lunks_rghost 0.8.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. data/lib/rghost/border.rb +44 -0
  2. data/lib/rghost/callback.rb +58 -0
  3. data/lib/rghost/circle.rb +102 -0
  4. data/lib/rghost/color.rb +175 -0
  5. data/lib/rghost/constants.rb +626 -0
  6. data/lib/rghost/convert.rb +43 -0
  7. data/lib/rghost/cursor.rb +124 -0
  8. data/lib/rghost/dash.rb +59 -0
  9. data/lib/rghost/document.rb +546 -0
  10. data/lib/rghost/document_callback_facade.rb +64 -0
  11. data/lib/rghost/dsc_entry.rb +20 -0
  12. data/lib/rghost/dynamic_document_callback.rb +15 -0
  13. data/lib/rghost/eps.rb +31 -0
  14. data/lib/rghost/font.rb +48 -0
  15. data/lib/rghost/font_map.rb +54 -0
  16. data/lib/rghost/frame.rb +105 -0
  17. data/lib/rghost/function.rb +38 -0
  18. data/lib/rghost/gif.rb +41 -0
  19. data/lib/rghost/graphic.rb +26 -0
  20. data/lib/rghost/grid/base_grid.rb +228 -0
  21. data/lib/rghost/grid/callback_facade.rb +136 -0
  22. data/lib/rghost/grid/csv_grid.rb +51 -0
  23. data/lib/rghost/grid/dynamic_callback.rb +12 -0
  24. data/lib/rghost/grid/field_format.rb +43 -0
  25. data/lib/rghost/grid/grid.rb +15 -0
  26. data/lib/rghost/grid/header.rb +120 -0
  27. data/lib/rghost/grid/matrix.rb +10 -0
  28. data/lib/rghost/grid/rails_grid.rb +74 -0
  29. data/lib/rghost/grid/static_callback.rb +13 -0
  30. data/lib/rghost/grid/style/border_lines.rb +44 -0
  31. data/lib/rghost/grid/style/bottom_lines.rb +28 -0
  32. data/lib/rghost/grid/style/old_forms.rb +28 -0
  33. data/lib/rghost/grid/style/style.rb +8 -0
  34. data/lib/rghost/gs_alone.rb +25 -0
  35. data/lib/rghost/helpers.rb +13 -0
  36. data/lib/rghost/horizontal_line.rb +45 -0
  37. data/lib/rghost/how_to.rb +75 -0
  38. data/lib/rghost/image.rb +29 -0
  39. data/lib/rghost/jpeg.rb +39 -0
  40. data/lib/rghost/line.rb +89 -0
  41. data/lib/rghost/line_width.rb +28 -0
  42. data/lib/rghost/load.rb +43 -0
  43. data/lib/rghost/newpath.rb +19 -0
  44. data/lib/rghost/paper.rb +147 -0
  45. data/lib/rghost/parse_text.rb +53 -0
  46. data/lib/rghost/pdf_security.rb +36 -0
  47. data/lib/rghost/point.rb +23 -0
  48. data/lib/rghost/point_with_command.rb +17 -0
  49. data/lib/rghost/polygon.rb +75 -0
  50. data/lib/rghost/ps/AdobeExpert.enc +258 -0
  51. data/lib/rghost/ps/AdobeLatinEncoding.enc +258 -0
  52. data/lib/rghost/ps/Bengali.enc +386 -0
  53. data/lib/rghost/ps/CodePage1250.enc +258 -0
  54. data/lib/rghost/ps/CodePage1251.enc +258 -0
  55. data/lib/rghost/ps/CodePage1252.enc +258 -0
  56. data/lib/rghost/ps/CodePage1253.enc +258 -0
  57. data/lib/rghost/ps/CodePage1254.enc +258 -0
  58. data/lib/rghost/ps/CodePage1256.enc +258 -0
  59. data/lib/rghost/ps/CodePage1257.enc +258 -0
  60. data/lib/rghost/ps/CodePage1258.enc +258 -0
  61. data/lib/rghost/ps/CodePage874.enc +258 -0
  62. data/lib/rghost/ps/Fontmap +5 -0
  63. data/lib/rghost/ps/IsoLatin.enc +352 -0
  64. data/lib/rghost/ps/MacCentralEuropean.enc +258 -0
  65. data/lib/rghost/ps/MacCyrillice.desnc +258 -0
  66. data/lib/rghost/ps/MacGreek.enc +258 -0
  67. data/lib/rghost/ps/MacHebrew.enc +258 -0
  68. data/lib/rghost/ps/TeX-CorkEncoding.enc +258 -0
  69. data/lib/rghost/ps/TeX-LGR-Greek.enc +258 -0
  70. data/lib/rghost/ps/TeX-T2AModified2Encoding.enc +258 -0
  71. data/lib/rghost/ps/TeX-T2BAdobeEncoding.enc +258 -0
  72. data/lib/rghost/ps/TeX-T2CAdobeEncoding.enc +258 -0
  73. data/lib/rghost/ps/TeX-X2AdobeEncoding.enc +258 -0
  74. data/lib/rghost/ps/TeX-XL2encoding.enc +258 -0
  75. data/lib/rghost/ps/TeXMathExtensionEncoding.enc +258 -0
  76. data/lib/rghost/ps/TeXMathItalicEncoding.enc +258 -0
  77. data/lib/rghost/ps/TeXMathSymbolEncoding.enc +258 -0
  78. data/lib/rghost/ps/US-ASCII.enc +258 -0
  79. data/lib/rghost/ps/UTF-8.enc +3 -0
  80. data/lib/rghost/ps/_cusor.ps +46 -0
  81. data/lib/rghost/ps/basic.ps +25 -0
  82. data/lib/rghost/ps/begin_document.ps +8 -0
  83. data/lib/rghost/ps/callbacks.ps +175 -0
  84. data/lib/rghost/ps/code128.font +344 -0
  85. data/lib/rghost/ps/code39.font +195 -0
  86. data/lib/rghost/ps/cursor.ps +106 -0
  87. data/lib/rghost/ps/datagrid.ps +55 -0
  88. data/lib/rghost/ps/developer.ps +237 -0
  89. data/lib/rghost/ps/ean.font +150 -0
  90. data/lib/rghost/ps/eps.ps +42 -0
  91. data/lib/rghost/ps/font.ps +38 -0
  92. data/lib/rghost/ps/frame.ps +16 -0
  93. data/lib/rghost/ps/gif.ps +150 -0
  94. data/lib/rghost/ps/horizontal_line.ps +4 -0
  95. data/lib/rghost/ps/i25.font +103 -0
  96. data/lib/rghost/ps/jpeg.ps +122 -0
  97. data/lib/rghost/ps/link.ps +22 -0
  98. data/lib/rghost/ps/paper.ps +8 -0
  99. data/lib/rghost/ps/rect_link.ps +17 -0
  100. data/lib/rghost/ps/rectangle.ps +5 -0
  101. data/lib/rghost/ps/rghost_default_template.eps +1532 -0
  102. data/lib/rghost/ps/row.ps +4 -0
  103. data/lib/rghost/ps/show.ps +21 -0
  104. data/lib/rghost/ps/table_callbacks.ps +96 -0
  105. data/lib/rghost/ps/text.ps +63 -0
  106. data/lib/rghost/ps/textarea.ps +11 -0
  107. data/lib/rghost/ps/type.ps +1 -0
  108. data/lib/rghost/ps/unit.ps +3 -0
  109. data/lib/rghost/ps/vertical_line.ps +12 -0
  110. data/lib/rghost/ps/virtual_pages.ps +55 -0
  111. data/lib/rghost/ps_facade.rb +253 -0
  112. data/lib/rghost/ps_object.rb +55 -0
  113. data/lib/rghost/rectangle_link.rb +65 -0
  114. data/lib/rghost/rgengine.so +0 -0
  115. data/lib/rghost/ruby_ghost_config.rb +252 -0
  116. data/lib/rghost/ruby_ghost_engine.rb +174 -0
  117. data/lib/rghost/ruby_ghost_version.rb +8 -0
  118. data/lib/rghost/ruby_to_ps.rb +78 -0
  119. data/lib/rghost/scale.rb +29 -0
  120. data/lib/rghost/shape_content.rb +23 -0
  121. data/lib/rghost/show.rb +88 -0
  122. data/lib/rghost/static_document_callback.rb +18 -0
  123. data/lib/rghost/text.rb +44 -0
  124. data/lib/rghost/text_in.rb +51 -0
  125. data/lib/rghost/text_link_in.rb +42 -0
  126. data/lib/rghost/textarea.rb +88 -0
  127. data/lib/rghost/units.rb +82 -0
  128. data/lib/rghost/variable.rb +12 -0
  129. data/lib/rghost/vertical_line.rb +37 -0
  130. data/lib/rghost/virtual_pages.rb +42 -0
  131. data/lib/rghost.rb +18 -0
  132. metadata +181 -0
@@ -0,0 +1,352 @@
1
+ /IsoLatin [
2
+ /.notdef % 0x00
3
+ /.notdef
4
+ /.notdef
5
+ /.notdef
6
+ /.notdef
7
+ /.notdef
8
+ /.notdef
9
+ /.notdef
10
+ /.notdef
11
+ /.notdef
12
+ /.notdef
13
+ /.notdef
14
+ /.notdef
15
+ /.notdef
16
+ /.notdef
17
+ /.notdef
18
+ /.notdef % 0x10
19
+ /.notdef
20
+ /.notdef
21
+ /.notdef
22
+ /.notdef
23
+ /.notdef
24
+ /.notdef
25
+ /.notdef
26
+ /.notdef
27
+ /.notdef
28
+ /.notdef
29
+ /.notdef
30
+ /.notdef
31
+ /.notdef
32
+ /.notdef
33
+ /.notdef
34
+ /space % 0x20
35
+ /exclam
36
+ /quotedbl
37
+ /numbersign
38
+ /dollar
39
+ /percent
40
+ /ampersand
41
+ /quotesingle
42
+ /parenleft
43
+ /parenright
44
+ /asterisk
45
+ /plus
46
+ /comma
47
+ /hyphen
48
+ /period
49
+ /slash
50
+ /zero % 0x30
51
+ /one
52
+ /two
53
+ /three
54
+ /four
55
+ /five
56
+ /six
57
+ /seven
58
+ /eight
59
+ /nine
60
+ /colon
61
+ /semicolon
62
+ /less
63
+ /equal
64
+ /greater
65
+ /question
66
+ /at % 0x40
67
+ /A
68
+ /B
69
+ /C
70
+ /D
71
+ /E
72
+ /F
73
+ /G
74
+ /H
75
+ /I
76
+ /J
77
+ /K
78
+ /L
79
+ /M
80
+ /N
81
+ /O
82
+ /P % 0x50
83
+ /Q
84
+ /R
85
+ /S
86
+ /T
87
+ /U
88
+ /V
89
+ /W
90
+ /X
91
+ /Y
92
+ /Z
93
+ /bracketleft
94
+ /backslash
95
+ /bracketright
96
+ /asciicircum
97
+ /underscore
98
+ /grave % 0x60
99
+ /a
100
+ /b
101
+ /c
102
+ /d
103
+ /e
104
+ /f
105
+ /g
106
+ /h
107
+ /i
108
+ /j
109
+ /k
110
+ /l
111
+ /m
112
+ /n
113
+ /o
114
+ /p % 0x70
115
+ /q
116
+ /r
117
+ /s
118
+ /t
119
+ /u
120
+ /v
121
+ /w
122
+ /x
123
+ /y
124
+ /z
125
+ /braceleft
126
+ /bar
127
+ /braceright
128
+ /asciitilde
129
+ /.notdef
130
+ /.notdef % 0x80
131
+ /.notdef
132
+ /.notdef
133
+ /.notdef
134
+ /.notdef
135
+ /.notdef
136
+ /.notdef
137
+ /.notdef
138
+ /.notdef
139
+ /.notdef
140
+ /.notdef
141
+ /.notdef
142
+ /.notdef
143
+ /.notdef
144
+ /.notdef
145
+ /.notdef
146
+ /.notdef % 0x90
147
+ /.notdef
148
+ /.notdef
149
+ /.notdef
150
+ /.notdef
151
+ /.notdef
152
+ /.notdef
153
+ /.notdef
154
+ /.notdef
155
+ /.notdef
156
+ /.notdef
157
+ /.notdef
158
+ /.notdef
159
+ /.notdef
160
+ /.notdef
161
+ /.notdef
162
+ /uni00A0 % 0xa0
163
+ /exclamdown
164
+ /cent
165
+ /sterling
166
+ /Euro
167
+ /yen
168
+ /Scaron
169
+ /section
170
+ /scaron
171
+ /copyright
172
+ /ordfeminine
173
+ /guillemotleft
174
+ /logicalnot
175
+ /uni00AD
176
+ /registered
177
+ /macron
178
+ /degree % 0xb0
179
+ /plusminus
180
+ /twosuperior
181
+ /threesuperior
182
+ /Zcaron
183
+ /mu
184
+ /paragraph
185
+ /periodcentered
186
+ /zcaron
187
+ /onesuperior
188
+ /ordmasculine
189
+ /guillemotright
190
+ /OE
191
+ /oe
192
+ /Ydieresis
193
+ /questiondown
194
+ /Agrave % 0xc0
195
+ /Aacute
196
+ /Acircumflex
197
+ /Atilde
198
+ /Adieresis
199
+ /Aring
200
+ /AE
201
+ /Ccedilla
202
+ /Egrave
203
+ /Eacute
204
+ /Ecircumflex
205
+ /Edieresis
206
+ /Igrave
207
+ /Iacute
208
+ /Icircumflex
209
+ /Idieresis
210
+ /Eth % 0xd0
211
+ /Ntilde
212
+ /Ograve
213
+ /Oacute
214
+ /Ocircumflex
215
+ /Otilde
216
+ /Odieresis
217
+ /multiply
218
+ /Oslash
219
+ /Ugrave
220
+ /Uacute
221
+ /Ucircumflex
222
+ /Udieresis
223
+ /Yacute
224
+ /Thorn
225
+ /germandbls
226
+ /agrave % 0xe0
227
+ /aacute
228
+ /acircumflex
229
+ /atilde
230
+ /adieresis
231
+ /aring
232
+ /ae
233
+ /ccedilla
234
+ /egrave
235
+ /eacute
236
+ /ecircumflex
237
+ /edieresis
238
+ /igrave
239
+ /iacute
240
+ /icircumflex
241
+ /idieresis
242
+ /eth % 0xf0
243
+ /ntilde
244
+ /ograve
245
+ /oacute
246
+ /ocircumflex
247
+ /otilde
248
+ /odieresis
249
+ /divide
250
+ /oslash
251
+ /ugrave
252
+ /uacute
253
+ /ucircumflex
254
+ /udieresis
255
+ /yacute
256
+ /thorn
257
+ /ydieresis
258
+ /uni1E02 % 0x100
259
+ /uni1E03
260
+ /Cdotaccent
261
+ /cdotaccent
262
+ /uni1E0A
263
+ /Wgrave
264
+ /Wacute
265
+ /uni1E0B
266
+ /Ygrave
267
+ /uni1E1E
268
+ /uni1E1F
269
+ /Gdotaccent
270
+ /gdotaccent
271
+ /uni1E40
272
+ /uni1E41
273
+ /uni1E56
274
+ /wgrave % 0x110
275
+ /uni1E57
276
+ /wacute
277
+ /uni1E60
278
+ /ygrave
279
+ /Wdieresis
280
+ /wdieresis
281
+ /uni1E61
282
+ /Wcircumflex
283
+ /uni1E6A
284
+ /Ycircumflex
285
+ /wcircumflex
286
+ /uni1E6B
287
+ /ycircumflex
288
+ /quotedblright
289
+ /currency
290
+ /quotedblbase % 0x120
291
+ /brokenbar
292
+ /rcommaaccent
293
+ /quotedblleft
294
+ /onequarter
295
+ /onehalf
296
+ /threequarters
297
+ /Aogonek
298
+ /Iogonek
299
+ /Amacron
300
+ /Cacute
301
+ /Eogonek
302
+ /Emacron
303
+ /Ccaron
304
+ /Zacute
305
+ /Edotaccent
306
+ /Gcommaaccent % 0x130
307
+ /Kcommaaccent
308
+ /Imacron
309
+ /Lcommaaccent
310
+ /Nacute
311
+ /Ncommaaccent
312
+ /Omacron
313
+ /Uogonek
314
+ /Lslash
315
+ /Zdotaccent
316
+ /aogonek
317
+ /Iogonek
318
+ /amacron
319
+ /cacute
320
+ /eogonek
321
+ /emacron
322
+ /ccaron % 0x140
323
+ /zacute
324
+ /edotaccent
325
+ /gcommaaccent
326
+ /kcommaaccent
327
+ /imacron
328
+ /lcommaaccent
329
+ /nacute
330
+ /ncommaaccent
331
+ /omacron
332
+ /uogonek
333
+ /lslash
334
+ /zdotaccent
335
+ /quoteright
336
+ /Itilde
337
+ /Dcroat
338
+ /Tbar % 0x150
339
+ /Umacron
340
+ /Eng
341
+ /itilde
342
+ /dcroat
343
+ /tbar
344
+ /umacron
345
+ /eng
346
+ /Utilde
347
+ /iogonek
348
+ /utilde
349
+ /kgreenlandic
350
+ /dieresis
351
+ /a
352
+ ] def
@@ -0,0 +1,258 @@
1
+ /MacCentralEuropean [
2
+ /.notdef % 0x00
3
+ /.notdef
4
+ /.notdef
5
+ /.notdef
6
+ /.notdef
7
+ /.notdef
8
+ /.notdef
9
+ /.notdef
10
+ /.notdef
11
+ /.notdef
12
+ /.notdef
13
+ /.notdef
14
+ /.notdef
15
+ /.notdef
16
+ /.notdef
17
+ /.notdef
18
+ /.notdef % 0x10
19
+ /.notdef
20
+ /.notdef
21
+ /.notdef
22
+ /.notdef
23
+ /.notdef
24
+ /.notdef
25
+ /.notdef
26
+ /.notdef
27
+ /.notdef
28
+ /.notdef
29
+ /.notdef
30
+ /.notdef
31
+ /.notdef
32
+ /.notdef
33
+ /.notdef
34
+ /space % 0x20
35
+ /exclam
36
+ /quotedbl
37
+ /numbersign
38
+ /dollar
39
+ /percent
40
+ /ampersand
41
+ /quotesingle
42
+ /parenleft
43
+ /parenright
44
+ /asterisk
45
+ /plus
46
+ /comma
47
+ /hyphen
48
+ /period
49
+ /slash
50
+ /zero % 0x30
51
+ /one
52
+ /two
53
+ /three
54
+ /four
55
+ /five
56
+ /six
57
+ /seven
58
+ /eight
59
+ /nine
60
+ /colon
61
+ /semicolon
62
+ /less
63
+ /equal
64
+ /greater
65
+ /question
66
+ /at % 0x40
67
+ /A
68
+ /B
69
+ /C
70
+ /D
71
+ /E
72
+ /F
73
+ /G
74
+ /H
75
+ /I
76
+ /J
77
+ /K
78
+ /L
79
+ /M
80
+ /N
81
+ /O
82
+ /P % 0x50
83
+ /Q
84
+ /R
85
+ /S
86
+ /T
87
+ /U
88
+ /V
89
+ /W
90
+ /X
91
+ /Y
92
+ /Z
93
+ /bracketleft
94
+ /backslash
95
+ /bracketright
96
+ /asciicircum
97
+ /underscore
98
+ /grave % 0x60
99
+ /a
100
+ /b
101
+ /c
102
+ /d
103
+ /e
104
+ /f
105
+ /g
106
+ /h
107
+ /i
108
+ /j
109
+ /k
110
+ /l
111
+ /m
112
+ /n
113
+ /o
114
+ /p % 0x70
115
+ /q
116
+ /r
117
+ /s
118
+ /t
119
+ /u
120
+ /v
121
+ /w
122
+ /x
123
+ /y
124
+ /z
125
+ /braceleft
126
+ /bar
127
+ /braceright
128
+ /asciitilde
129
+ /.notdef
130
+ /Adieresis % 0x80
131
+ /Amacron
132
+ /amacron
133
+ /Eacute
134
+ /Aogonek
135
+ /Odieresis
136
+ /Udieresis
137
+ /aacute
138
+ /aogonek
139
+ /Ccaron
140
+ /adieresis
141
+ /ccaron
142
+ /Cacute
143
+ /cacute
144
+ /eacute
145
+ /Zacute
146
+ /zacute % 0x90
147
+ /Dcaron
148
+ /iacute
149
+ /dcaron
150
+ /Emacron
151
+ /emacron
152
+ /Edotaccent
153
+ /oacute
154
+ /edotaccent
155
+ /ocircumflex
156
+ /odieresis
157
+ /otilde
158
+ /uacute
159
+ /Ecaron
160
+ /ecaron
161
+ /udieresis
162
+ /dagger % 0xa0
163
+ /degree
164
+ /Eogonek
165
+ /sterling
166
+ /section
167
+ /bullet
168
+ /paragraph
169
+ /germandbls
170
+ /registered
171
+ /copyright
172
+ /trademark
173
+ /eogonek
174
+ /dieresis
175
+ /notequal
176
+ /gcommaaccent
177
+ /Iogonek
178
+ /iogonek % 0xb0
179
+ /Imacron
180
+ /lessequal
181
+ /greaterequal
182
+ /imacron
183
+ /Kcommaaccent
184
+ /partialdiff
185
+ /summation
186
+ /lslash
187
+ /Lcommaaccent
188
+ /lcommaaccent
189
+ /Lcaron
190
+ /lcaron
191
+ /Lacute
192
+ /lacute
193
+ /Ncommaaccent
194
+ /ncommaaccent % 0xc0
195
+ /Nacute
196
+ /logicalnot
197
+ /radical
198
+ /nacute
199
+ /Ncaron
200
+ /uni2206
201
+ /guillemotleft
202
+ /guillemotright
203
+ /ellipsis
204
+ /uni00A0
205
+ /ncaron
206
+ /Ohungarumlaut
207
+ /Otilde
208
+ /ohungarumlaut
209
+ /Omacron
210
+ /endash % 0xd0
211
+ /emdash
212
+ /quotedblleft
213
+ /quotedblright
214
+ /quoteleft
215
+ /quoteright
216
+ /divide
217
+ /lozenge
218
+ /omacron
219
+ /Racute
220
+ /racute
221
+ /Rcaron
222
+ /guilsinglleft
223
+ /guilsinglright
224
+ /rcaron
225
+ /Rcommaaccent
226
+ /rcommaaccent % 0xe0
227
+ /Scaron
228
+ /quotesinglbase
229
+ /quotedblbase
230
+ /scaron
231
+ /Sacute
232
+ /sacute
233
+ /Aacute
234
+ /Tcaron
235
+ /tcaron
236
+ /Iacute
237
+ /Zcaron
238
+ /zcaron
239
+ /Umacron
240
+ /Oacute
241
+ /Ocircumflex
242
+ /umacron % 0xf0
243
+ /Uring
244
+ /Uacute
245
+ /uring
246
+ /Uhungarumlaut
247
+ /uhungarumlaut
248
+ /Uogonek
249
+ /uogonek
250
+ /Yacute
251
+ /yacute
252
+ /kcommaaccent
253
+ /Zdotaccent
254
+ /Lslash
255
+ /zdotaccent
256
+ /Gcommaaccent
257
+ /caron
258
+ ] def