[Pkg-javascript-commits] [pdf.js] 153/157: Merge tag 'upstream/1.1.366+dfsg'

David Prévot taffit at moszumanska.debian.org
Tue Aug 11 06:46:55 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository pdf.js.

commit 0733a08a362baaf5f4beedb02c254e3329fad7fa
Merge: 5c2b155 e314a67
Author: David Prévot <david at tilapin.org>
Date:   Tue Aug 11 06:12:30 2015 +0200

    Merge tag 'upstream/1.1.366+dfsg'
    
    Upstream version 1.1.366+dfsg
    
    # gpg: Signature made mar. 11 août 2015 06:12:24 CEST
    # gpg:                using RSA key 058C1CF944F6BD3C
    # gpg: Good signature from "David Prévot <david at tilapin.org>"
    # gpg:                 aka "David Prévot <davidp at altern.org>"
    # gpg:                 aka "David Prévot <davidp at no-log.org>"
    # gpg:                 aka "David Prévot <taffit at debian.org>"
    # gpg: WARNING: This key is not certified with a trusted signature!
    # gpg:          There is no indication that the signature belongs to the owner.
    # Primary key fingerprint: AE14 AD01 426D 2BFB 82EF  7E1E B82A 217A FDFE 09F2
    #      Subkey fingerprint: 7875 4D07 BC09 5C74 48F7  8D66 058C 1CF9 44F6 BD3C

 .gitmodules                                        |   2 +-
 examples/components/simpleviewer.html              |   6 +
 examples/components/simpleviewer.js                |  15 +-
 extensions/b2g/viewer.css                          |  18 +-
 extensions/b2g/viewer.html                         | 214 +---------
 extensions/b2g/viewer.js                           | 349 ++++++++++++++++
 extensions/chromium/contentscript.js               |  13 +
 extensions/chromium/pdfHandler.js                  |  12 +-
 extensions/firefox/bootstrap.js                    |   9 +
 extensions/firefox/content/PdfJs.jsm               |  22 +-
 extensions/firefox/content/PdfStreamConverter.jsm  |  19 +-
 extensions/firefox/content/PdfjsChromeUtils.jsm    |  30 +-
 extensions/firefox/content/PdfjsContentUtils.jsm   |   4 +-
 external/builder/builder.js                        | 158 +++++--
 .../builder/fixtures/confusing-comment-expected.js |   4 +
 external/builder/fixtures/confusing-comment.js     |   6 +
 external/builder/fixtures/elif-expected.js         |   1 +
 external/builder/fixtures/elif.js                  |   4 +
 external/builder/fixtures/else-expected.js         |   1 +
 external/builder/fixtures/else.js                  |   3 +
 external/builder/fixtures/error-expected.js        |   1 +
 external/builder/fixtures/error-false-expected.js  |   2 +
 external/builder/fixtures/error-false.js           |   5 +
 external/builder/fixtures/error.js                 |   5 +
 external/builder/fixtures/expand-expected.html     |   1 +
 external/builder/fixtures/expand.html              |   1 +
 external/builder/fixtures/if-empty-expected.js     |   1 +
 external/builder/fixtures/if-empty.js              |   6 +
 .../fixtures/if-false-elif-false-else-expected.js  |   2 +
 .../builder/fixtures/if-false-elif-false-else.js   |   8 +
 .../fixtures/if-false-elif-true-else-expected.js   |   2 +
 .../builder/fixtures/if-false-elif-true-else.js    |   8 +
 .../builder/fixtures/if-false-else-expected.js     |   2 +
 external/builder/fixtures/if-false-else.js         |   6 +
 external/builder/fixtures/if-nested-expected.js    |   6 +
 external/builder/fixtures/if-nested.js             |  19 +
 external/builder/fixtures/if-true-else-expected.js |   2 +
 external/builder/fixtures/if-true-else.js          |   6 +
 external/builder/fixtures/if-unclosed-expected.js  |   1 +
 external/builder/fixtures/if-unclosed.js           |   3 +
 external/builder/fixtures/include-expected.html    |   5 +
 .../fixtures/include-non-existent-expected.html    |   1 +
 .../builder/fixtures/include-non-existent.html     |   2 +
 external/builder/fixtures/include.html             |   5 +
 external/builder/fixtures/js-comment-expected.js   |   4 +
 external/builder/fixtures/js-comment.js            |   6 +
 .../builder/fixtures/undefined-define-expected.js  |   2 +
 external/builder/fixtures/undefined-define.js      |   6 +
 .../builder/fixtures/unsupported-ifdef-expected.js |   1 +
 external/builder/fixtures/unsupported-ifdef.js     |   5 +
 external/builder/test.js                           |  54 +++
 l10n/ach/viewer.properties                         |   2 +-
 l10n/bn-BD/chrome.properties                       |   1 +
 l10n/bn-BD/viewer.properties                       |   5 +
 l10n/bs/chrome.properties                          |  17 +-
 l10n/bs/viewer.properties                          |  70 +++-
 l10n/el/chrome.properties                          |  18 +-
 l10n/el/viewer.properties                          | 150 ++++---
 l10n/eo/viewer.properties                          |   6 +-
 l10n/es-ES/viewer.properties                       |   4 +-
 l10n/fa/viewer.properties                          |   2 +-
 l10n/mr/viewer.properties                          |   2 +
 l10n/pt-BR/viewer.properties                       |   2 +-
 l10n/pt-PT/viewer.properties                       |  18 +-
 l10n/ro/viewer.properties                          |   2 +-
 l10n/sl/viewer.properties                          |   4 +-
 l10n/sq/viewer.properties                          |  10 +-
 l10n/th/viewer.properties                          |   4 +-
 l10n/tn/viewer.properties                          |   3 +
 l10n/vi/chrome.properties                          |   1 +
 l10n/vi/viewer.properties                          |  56 ++-
 make.js                                            |  73 ++--
 package.json                                       |   1 +
 pdfjs.config                                       |   6 +-
 src/core/annotation.js                             | 455 ++++++++++++++-------
 src/core/chunked_stream.js                         |  26 +-
 src/core/colorspace.js                             |   8 +-
 src/core/core.js                                   |  18 +-
 src/core/evaluator.js                              |   4 +
 src/core/fonts.js                                  |  89 ++--
 src/core/murmurhash3.js                            |   2 +-
 src/core/network.js                                |  50 ++-
 src/core/obj.js                                    |  82 ++--
 src/core/parser.js                                 |  27 +-
 src/core/pattern.js                                | 124 +++---
 src/core/stream.js                                 |   7 +-
 src/display/annotation_helper.js                   |  88 +++-
 src/display/api.js                                 |   9 +-
 src/display/font_loader.js                         |  11 +-
 src/shared/util.js                                 |  12 +-
 test/driver.js                                     |  11 +-
 test/pdfs/.gitignore                               |  16 +
 test/pdfs/annotation-border-styles.pdf             | Bin 0 -> 89833 bytes
 test/pdfs/bug1001080.pdf                           | Bin 0 -> 12423 bytes
 test/pdfs/bug1151216.pdf                           | Bin 0 -> 17254 bytes
 test/pdfs/bug1175962.pdf                           | Bin 0 -> 20894 bytes
 test/pdfs/bug1186827.pdf                           | Bin 0 -> 45013 bytes
 test/pdfs/coons-allflags-withfunction.pdf          | Bin 0 -> 3285 bytes
 test/pdfs/issue215.pdf                             | Bin 0 -> 82195 bytes
 test/pdfs/issue2948.pdf                            | Bin 0 -> 23038 bytes
 test/pdfs/issue4909.pdf                            | Bin 0 -> 12688 bytes
 test/pdfs/issue5540.pdf                            | Bin 0 -> 17459 bytes
 test/pdfs/issue5677.pdf                            | Bin 0 -> 194851 bytes
 test/pdfs/issue6069.pdf                            |  28 ++
 test/pdfs/issue6106.pdf                            |  70 ++++
 test/pdfs/issue6108.pdf                            |  28 ++
 test/pdfs/issue6231_1.pdf                          | Bin 0 -> 23748 bytes
 test/pdfs/issue6238.pdf.link                       |   1 +
 test/pdfs/tensor-allflags-withfunction.pdf         | Bin 0 -> 3381 bytes
 test/test.js                                       |  47 ++-
 test/test_manifest.json                            | 102 +++++
 test/testutils.js                                  |  14 +-
 test/unit/annotation_layer_spec.js                 | 156 +++++++
 test/unit/api_spec.js                              |  58 ++-
 test/unit/evaluator_spec.js                        |  11 +
 test/unit/parser_spec.js                           |   7 +
 test/unit/unit_test.html                           |   1 +
 test/webbrowser.js                                 | 150 +++++--
 web/annotations_layer_builder.css                  |  64 +++
 web/annotations_layer_builder.js                   |   5 +-
 web/default_preferences.js                         |   5 -
 web/pdf_presentation_mode.js                       |  25 +-
 web/pdf_viewer.component.js                        |   3 +-
 web/pdf_viewer.css                                 |  52 +--
 web/pdf_viewer.js                                  |  77 ++--
 web/preferences.js                                 |  20 +-
 web/text_layer_builder.js                          |   2 +-
 web/ui_utils.js                                    |   3 +-
 web/view_history.js                                |  13 +-
 web/viewer.css                                     |   1 +
 web/viewer.html                                    |  15 +-
 web/viewer.js                                      | 216 ++++------
 132 files changed, 2592 insertions(+), 1146 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/pdf.js.git



More information about the Pkg-javascript-commits mailing list