Skip to content

Commit

Permalink
Merge pull request #3060 from saebekassebil/fixpassword
Browse files Browse the repository at this point in the history
Ask for password on failed decryption
  • Loading branch information
brendandahl committed May 7, 2013
2 parents 5db963a + 297c305 commit e5b5c94
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions l10n/da/viewer.properties
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ missing_file_error=Manglende PDF-fil
# Nogle almindelige typer er f.eks.: "Check", "Text", "Comment" og "Note"
text_annotation_type=[{{type}} Kommentar]
request_password=PDF filen er beskyttet med et kodeord:
invalid_password=Ugyldigt kodeord.

printing_not_supported=Advarsel: Denne browser er ikke fuldt understøttet ved udskrift.
printing_not_ready=Advarsel: PDF-filen er ikke helt klar til udskrivning.
Expand Down
1 change: 1 addition & 0 deletions l10n/en-US/viewer.properties
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ missing_file_error=Missing PDF file.
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type=[{{type}} Annotation]
request_password=PDF is protected by a password:
invalid_password=Invalid Password.

printing_not_supported=Warning: Printing is not fully supported by this browser.
printing_not_ready=Warning: The PDF is not fully loaded for printing.
Expand Down
9 changes: 8 additions & 1 deletion web/viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1057,9 +1057,16 @@ var PDFView = {
},
function getDocumentError(message, exception) {
if (exception && exception.name === 'PasswordException') {
if (exception.code === 'needpassword') {
if (exception.code === 'needpassword' ||
exception.code === 'incorrectpassword') {
var promptString = mozL10n.get('request_password', null,
'PDF is protected by a password:');

if (exception.code === 'incorrectpassword') {
promptString += '\n' + mozL10n.get('invalid_password', null,
'Invalid Password.');
}

password = prompt(promptString);
if (password && password.length > 0) {
return PDFView.open(url, scale, password);
Expand Down

0 comments on commit e5b5c94

Please sign in to comment.