Yury Delendik
398e6acbc5
Stops bleeding of pattern edges for mesh.
2016-04-11 18:21:44 -05:00
Yury Delendik
63f62a0e53
Finishing SMask at the end of operators list.
2016-04-11 08:02:06 -05:00
Yury Delendik
1485c1d1da
Suspending/resuming SMask operation during setGState/restore.
2016-04-11 08:02:06 -05:00
Yury Delendik
1e4886a15a
Remove global window and navigator usages from the core code.
2016-04-07 13:46:07 -05:00
Yury Delendik
1e3e14e6b2
Exposes all functional members via lib exports and use them in viewer.
2016-04-07 13:46:07 -05:00
Yury Delendik
1d12aed5ca
Move all PDFJS.xxx settings into display/global.
2016-04-07 13:46:07 -05:00
Yury Delendik
055d642bf2
Merge pull request #7107 from Rob--W/worker-loading
...
Detect premature worker load error
2016-04-02 10:40:26 -05:00
Rob Wu
c8996f654f
Detect and handle premature worker load error
...
Fall back to a fake worker if the worker fails to load or initialize,
e.g. due to a network error, a security error or simply a script error.
2016-04-02 11:06:15 +02:00
Brendan Dahl
4e2f70440f
Merge pull request #6711 from yurydelendik/errors
...
Better errors capturing at the core and stop rendering on error.
2016-03-29 09:19:28 -07:00
Yury Delendik
2fa4dd6f40
Proxy global PDFJS.verbosity to properly configure shared/util.
2016-03-23 19:24:37 -05:00
Yury Delendik
a8e5912cb1
Moves shared/global to display/global
2016-03-23 19:24:37 -05:00
Yury Delendik
e372f3608b
Makes WorkerMessageHandler non-global.
2016-03-23 19:24:37 -05:00
Yury Delendik
bda5e6235e
Removes global PDFJS usage from the src/core/.
2016-03-23 19:24:37 -05:00
Jonas Jenwald
91756f6e86
Pass the PDFJS.postMessageTransfer
parameter to the worker, so that the MessageHandler
can be setup correctly in createDocumentHandler
(issue 6957)
...
This regressed in commit acdd49f480
, i.e. PR 6571.
Fixes 6957.
2016-03-16 18:34:26 +01:00
Yury Delendik
c6d2b7f9d9
Merge pull request #6906 from KamiHQ/fix-printing
...
avoid apply transform twice for composite context
2016-03-11 08:26:59 -06:00
Yury Delendik
8ba413e761
Better errors capturing at the core and stop rendering on error.
2016-03-11 07:59:09 -06:00
Brendan Dahl
a6acf74b54
Merge pull request #7023 from brendandahl/issue6721
...
Only draw glyphs on canvas if they are in the font or the font file is missing.
2016-03-01 18:03:37 -08:00
Brendan Dahl
ff87f3fb86
Only draw glyphs on canvas if they are in the font or the font file is missing.
2016-03-01 13:24:58 -08:00
Tim van der Meij
ad31e52a26
Group popup creation code and apply it to more annotation types
2016-02-25 00:35:45 +01:00
Jonas Jenwald
41efb92d3a
Merge pull request #6988 from timvandermeij/fileattachment-annotation
...
Implement support for FileAttachment annotations
2016-02-24 12:58:06 +01:00
Tim van der Meij
0351c7eff4
Move the getFileName
helper function to the core
...
This is required to be able to use it in the annotation display code,
where we now apply it to sanitize the filename of the FileAttachment
annotation. The PDF file from https://bugzilla.mozilla.org/show_bug.cgi?id=1230933 has shown that some PDF generators include the path of the file rather than the filename, which causes filenames with weird initial characters. PDF viewers handle this differently (for example Foxit Reader just replaces forward slashes with spaces), but we think it's better to only show the filename as intended.
Additionally we add unit tests for the `getFilenameFromUrl` helper
function.
2016-02-23 22:49:53 +01:00
Tim van der Meij
6a33dfd13a
Implement support for FileAttachment annotations
2016-02-23 22:49:53 +01:00
Tim van der Meij
ebe6fb2560
Merge pull request #7012 from KamiHQ/fix-annotation-popup
...
don't render highlight/underline/squiggly/strikeout annotations that doesn't have popup
2016-02-22 21:54:08 +01:00
Xiliang Chen
6762ff2fd6
don't render highlight/underline/squiggly/strikeout annotations that doesn't have popup
2016-02-22 13:10:20 +13:00
Jonas Jenwald
7cf9de2c17
[api-minor] Change getOutline
to actually return the RGB color of outline items
...
Currently the `C` entry in an outline item is returned as is, which is neither particularly useful nor what the API documentation claims.
This patch also adds unit-tests for both the color handling, and the `F` entry (bold/italic flags).
2016-02-15 13:41:22 +01:00
Tim van der Meij
addc4a3ded
Merge pull request #6856 from KamiHQ/remove-has-html
...
move hasHtml to AnnotationElement
2016-02-13 20:12:09 +01:00
Prayag Verma
049beac346
Fix a typo in api.js
...
`fulfills` misspelt as `fullfills`
2016-02-11 07:18:56 +05:30
Xiliang Chen
e42da0f5e9
move hasHtml to AnnotationElement
2016-02-11 13:58:17 +13:00
Brendan Dahl
d7e5935f91
Merge pull request #6938 from yurydelendik/fix-ff-disableworker
...
Fix 'Ready' message sequence for Firefox ext disabled worker.
2016-02-09 10:50:12 -08:00
Tim van der Meij
a0aa781c39
Merge pull request #6913 from Rob--W/importScripts-work-around
...
Improve work-around for importScripts bug.
2016-02-04 19:51:26 +01:00
Rob Wu
097e273ca4
Improve work-around for importScripts bug.
...
Reverts "Hack to avoid intermidiate Chrome failures during tests."
(2b2c521213
).
require.js uses importScript asynchronously, which activates the worker
GC bug in WebKit. This patch works around a bug in a way that is similar
in the upcoming (but not yet released) require.js 2.1.23
The advantage of the new work-around is that it allows the runtime to
garbage-collect idle Workers.
References:
- https://crbug.com/572225
- https://webkit.org/b/153317
2016-02-03 23:30:27 +01:00
Yury Delendik
e36b04e1ff
Fix 'Ready' message sequence for Firefox ext disabled worker.
2016-01-29 11:43:19 -06:00
Jonas Jenwald
e401804f13
Remove the 'oplist' rendering intent when getOperatorList
has returned the complete OperatorList
, and prevent errors in PDFPageProxy_destroy
for the 'oplist' rendering intent
2016-01-29 12:34:26 +01:00
Yury Delendik
825a2225ab
Merge pull request #6915 from yurydelendik/lookuptables
...
Refactor lookup hash tables/objects
2016-01-28 15:01:06 -06:00
Yury Delendik
2edf2792dc
Replaces literal {} created lookup tables with Object.create
2016-01-28 12:18:38 -06:00
Brendan Dahl
252b9d5910
Merge pull request #6753 from yurydelendik/cdn-worker
...
Wraps worker script if its cross-origin location is detected.
2016-01-27 13:21:10 -08:00
Jonas Jenwald
1140a34f5c
[api-minor] Change getPageLabels
to always return the pageLabels, even if they are identical to standard page numbering
2016-01-27 13:36:03 +01:00
Xiliang Chen
069f4b9bdf
avoid apply transform twice for composite context
2016-01-21 14:25:39 +13:00
Jonas Jenwald
85cf90643f
[api-minor] Add support for PageLabels in the API
2016-01-19 22:49:04 +01:00
Jonas Jenwald
0030a82dc3
[api-minor] Add support for URLs in the document outline
...
Re: issue 5089.
(Note that since there are other outline features that we currently don't support, e.g. bold/italic text and custom colours, I thus think we can keep the referenced issue open.)
2016-01-19 21:36:27 +01:00
Yury Delendik
1e45f2d4e1
Wraps worker script if its cross-origin location is detected.
2016-01-15 15:05:46 -06:00
Tim van der Meij
30b8f41003
Merge pull request #6820 from Snuffleupagus/showText-shadingPattern
...
Apply Patterns, if necessary, when rendering text
2016-01-08 14:02:56 +01:00
Brendan Dahl
4a215f0892
Merge pull request #6825 from yurydelendik/pdfjsumd
...
Adds UMD header to pdf.js and pdf.worker.js files.
2016-01-07 15:07:58 -08:00
Jonas Jenwald
97c10e9c08
Strip null
(\x00) characters from the URLs in LinkAnnotations (issue 6832)
...
Apparently some PDF files can have annotations with `URI` entries ending with `null` characters, thus breaking the links.
To handle this edge-case of bad PDFs, this patch moves the already existing utility function from `ui_utils.js` into `util.js`, in order to fix those URLs.
Fixes 6832.
2016-01-04 21:55:20 +01:00
Tim van der Meij
6ef7120a04
Implement support for Highlight annotations
2016-01-01 15:31:46 +01:00
Yury Delendik
f340dd5cd5
Adds pdfjs/main_loader module to better mirror pdfjs-dist/build/pdf.
2015-12-30 13:28:57 -06:00
Tim van der Meij
34918a6666
Implement support for Squiggly annotations
2015-12-30 19:37:04 +01:00
Jonas Jenwald
d956177482
Merge pull request #6819 from timvandermeij/strikeout-annotation
...
Implement support for StrikeOut annotations
2015-12-30 14:44:50 +01:00
Yury Delendik
cbbb9bb82d
Adds UMD header to pdf.js and pdf.worker.js files.
2015-12-29 18:15:14 -06:00
Tim van der Meij
e8db825512
Merge pull request #6771 from yurydelendik/requirejs
...
Removes hardcoded module loading order
2015-12-30 00:37:32 +01:00