pdf-reader 0.10.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +4 -1
- data/lib/pdf/reader/glyphlist.txt +1 -40
- metadata +29 -29
data/CHANGELOG
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
v0.
|
|
1
|
+
v0.10.1 (20th October 2011)
|
|
2
|
+
- simple license change to glyph data file, no code changes
|
|
3
|
+
|
|
4
|
+
v0.10.0 (6th July 2011)
|
|
2
5
|
- support multiple receivers within a single pass over a source file
|
|
3
6
|
- massive time saving when dealing with multiple receivers
|
|
4
7
|
|
|
@@ -1,43 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright (c) 1997,1998,2002,2007 Adobe Systems Incorporated
|
|
3
|
-
#
|
|
4
|
-
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
5
|
-
# copy of this documentation file to use, copy, publish, distribute,
|
|
6
|
-
# sublicense, and/or sell copies of the documentation, and to permit
|
|
7
|
-
# others to do the same, provided that:
|
|
8
|
-
# - No modification, editing or other alteration of this document is
|
|
9
|
-
# allowed; and
|
|
10
|
-
# - The above copyright notice and this permission notice shall be
|
|
11
|
-
# included in all copies of the documentation.
|
|
12
|
-
#
|
|
13
|
-
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
14
|
-
# copy of this documentation file, to create their own derivative works
|
|
15
|
-
# from the content of this document to use, copy, publish, distribute,
|
|
16
|
-
# sublicense, and/or sell the derivative works, and to permit others to do
|
|
17
|
-
# the same, provided that the derived work is not represented as being a
|
|
18
|
-
# copy or version of this document.
|
|
19
|
-
#
|
|
20
|
-
# Adobe shall not be liable to any party for any loss of revenue or profit
|
|
21
|
-
# or for indirect, incidental, special, consequential, or other similar
|
|
22
|
-
# damages, whether based on tort (including without limitation negligence
|
|
23
|
-
# or strict liability), contract or other legal or equitable grounds even
|
|
24
|
-
# if Adobe has been advised or had reason to know of the possibility of
|
|
25
|
-
# such damages.� The Adobe materials are provided on an "AS IS" basis.�
|
|
26
|
-
# Adobe specifically disclaims all express, statutory, or implied
|
|
27
|
-
# warranties relating to the Adobe materials, including but not limited to
|
|
28
|
-
# those concerning merchantability or fitness for a particular purpose or
|
|
29
|
-
# non-infringement of any third party rights regarding the Adobe
|
|
30
|
-
# materials.
|
|
31
|
-
# ###################################################################################
|
|
32
|
-
# Name: Adobe Glyph List
|
|
33
|
-
# Table version: 2.0
|
|
34
|
-
# Date: September 20, 2002
|
|
35
|
-
#
|
|
36
|
-
# See http://partners.adobe.com/asn/developer/typeforum/unicodegn.html
|
|
37
|
-
#
|
|
38
|
-
# Format: Semicolon-delimited fields:
|
|
39
|
-
# (1) glyph name
|
|
40
|
-
# (2) Unicode scalar value
|
|
1
|
+
# This file maps glyph names to unicode codepoints
|
|
41
2
|
A;0041
|
|
42
3
|
AE;00C6
|
|
43
4
|
AEacute;01FC
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 10
|
|
8
|
-
-
|
|
9
|
-
version: 0.10.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.10.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- James Healy
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-
|
|
17
|
+
date: 2011-10-20 00:00:00 +11:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -87,46 +87,46 @@ extra_rdoc_files:
|
|
|
87
87
|
- CHANGELOG
|
|
88
88
|
- MIT-LICENSE
|
|
89
89
|
files:
|
|
90
|
-
- examples/page_counter_naive.rb
|
|
91
|
-
- examples/rspec.rb
|
|
92
90
|
- examples/metadata.rb
|
|
91
|
+
- examples/extract_images.rb
|
|
93
92
|
- examples/extract_bates.rb
|
|
94
|
-
- examples/
|
|
93
|
+
- examples/page_counter_improved.rb
|
|
95
94
|
- examples/callbacks.rb
|
|
95
|
+
- examples/rspec.rb
|
|
96
|
+
- examples/hash.rb
|
|
96
97
|
- examples/text.rb
|
|
98
|
+
- examples/page_counter_naive.rb
|
|
97
99
|
- examples/version.rb
|
|
98
|
-
-
|
|
99
|
-
-
|
|
100
|
-
- lib/pdf/reader/glyphlist.txt
|
|
101
|
-
- lib/pdf/reader/error.rb
|
|
102
|
-
- lib/pdf/reader/font.rb
|
|
103
|
-
- lib/pdf/reader/lzw.rb
|
|
100
|
+
- lib/pdf/reader.rb
|
|
101
|
+
- lib/pdf/hash.rb
|
|
104
102
|
- lib/pdf/reader/print_receiver.rb
|
|
105
|
-
- lib/pdf/reader/
|
|
103
|
+
- lib/pdf/reader/xref.rb
|
|
104
|
+
- lib/pdf/reader/buffer.rb
|
|
105
|
+
- lib/pdf/reader/font.rb
|
|
106
|
+
- lib/pdf/reader/parser.rb
|
|
107
|
+
- lib/pdf/reader/error.rb
|
|
106
108
|
- lib/pdf/reader/filter.rb
|
|
107
|
-
- lib/pdf/reader/text_receiver.rb
|
|
108
|
-
- lib/pdf/reader/pages_strategy.rb
|
|
109
|
-
- lib/pdf/reader/abstract_strategy.rb
|
|
110
|
-
- lib/pdf/reader/encoding.rb
|
|
111
|
-
- lib/pdf/reader/stream.rb
|
|
112
|
-
- lib/pdf/reader/register_receiver.rb
|
|
113
109
|
- lib/pdf/reader/object_hash.rb
|
|
114
|
-
- lib/pdf/reader/
|
|
115
|
-
- lib/pdf/reader/xref.rb
|
|
110
|
+
- lib/pdf/reader/stream.rb
|
|
116
111
|
- lib/pdf/reader/cmap.rb
|
|
117
112
|
- lib/pdf/reader/object_stream.rb
|
|
118
|
-
- lib/pdf/reader/
|
|
119
|
-
- lib/pdf/reader/
|
|
120
|
-
- lib/pdf/reader/
|
|
113
|
+
- lib/pdf/reader/encoding.rb
|
|
114
|
+
- lib/pdf/reader/text_receiver.rb
|
|
115
|
+
- lib/pdf/reader/glyphlist.txt
|
|
116
|
+
- lib/pdf/reader/lzw.rb
|
|
117
|
+
- lib/pdf/reader/register_receiver.rb
|
|
118
|
+
- lib/pdf/reader/abstract_strategy.rb
|
|
119
|
+
- lib/pdf/reader/pages_strategy.rb
|
|
120
|
+
- lib/pdf/reader/reference.rb
|
|
121
121
|
- lib/pdf/reader/encodings/standard.txt
|
|
122
122
|
- lib/pdf/reader/encodings/mac_roman.txt
|
|
123
|
-
- lib/pdf/reader/encodings/mac_expert.txt
|
|
124
|
-
- lib/pdf/reader/encodings/win_ansi.txt
|
|
125
123
|
- lib/pdf/reader/encodings/symbol.txt
|
|
124
|
+
- lib/pdf/reader/encodings/win_ansi.txt
|
|
125
|
+
- lib/pdf/reader/encodings/zapf_dingbats.txt
|
|
126
126
|
- lib/pdf/reader/encodings/pdf_doc.txt
|
|
127
|
-
- lib/pdf/reader/
|
|
128
|
-
- lib/pdf/
|
|
129
|
-
- lib/pdf/reader.rb
|
|
127
|
+
- lib/pdf/reader/encodings/mac_expert.txt
|
|
128
|
+
- lib/pdf/reader/metadata_strategy.rb
|
|
129
|
+
- lib/pdf/reader/token.rb
|
|
130
130
|
- lib/pdf-reader.rb
|
|
131
131
|
- Rakefile
|
|
132
132
|
- README.rdoc
|