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,258 @@
1
+ /TeX-LGR-Greek [
2
+ /endash % 0x00
3
+ /uni032F
4
+ /Athenian50
5
+ /Athenian500
6
+ /Athenian5000
7
+ /Athenian50000
8
+ /uni03DB
9
+ /uni03DB.variant
10
+ /uni1FBE
11
+ /uni1FBC
12
+ /uni1FCC
13
+ /uni1FFC
14
+ /Alpha.shift
15
+ /Upsilondieresis.shift
16
+ /alpha.shift
17
+ /upsilondieresis.shift
18
+ /widecircumflex.left % 0x10
19
+ /widecircumflex.right
20
+ /uni03DF
21
+ /qoppa.variant
22
+ /uni032E
23
+ /Qoppa.variant
24
+ /uni03DA
25
+ /uni03E0
26
+ /uni20A0
27
+ /perthousand
28
+ /uni0259
29
+ /uni03E1
30
+ /quoteleft
31
+ /quoteright
32
+ /uni0306
33
+ /uni0304
34
+ /uni1FC1 % 0x20
35
+ /exclam
36
+ /dieresis
37
+ /uni1FEE
38
+ /uni1FED
39
+ /percent
40
+ /periodcentered
41
+ /uni1FFD
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
+ /anoteleia
62
+ /uni1FFE
63
+ /equal
64
+ /uni1FBF
65
+ /uni037E
66
+ /uni1FDF % 0x40
67
+ /Alpha
68
+ /Beta
69
+ /uni1FDD
70
+ /uni2206
71
+ /Epsilon
72
+ /Phi
73
+ /Gamma
74
+ /Eta
75
+ /Iota
76
+ /Theta
77
+ /Kappa
78
+ /Lambda
79
+ /Mu
80
+ /Nu
81
+ /Omicron
82
+ /Pi % 0x50
83
+ /Chi
84
+ /Rho
85
+ /Sigma
86
+ /Tau
87
+ /Upsilon
88
+ /uni1FDE
89
+ /uni2126
90
+ /Xi
91
+ /Psi
92
+ /Zeta
93
+ /bracketleft
94
+ /uni1FCF
95
+ /bracketright
96
+ /uni1FCE
97
+ /uni1FCD
98
+ /uni1FEF % 0x60
99
+ /alpha
100
+ /beta
101
+ /sigma1
102
+ /delta
103
+ /epsilon
104
+ /phi
105
+ /gamma
106
+ /eta
107
+ /iota
108
+ /theta
109
+ /kappa
110
+ /lambda
111
+ /uni03BC
112
+ /nu
113
+ /omicron
114
+ /pi % 0x70
115
+ /chi
116
+ /rho
117
+ /sigma
118
+ /tau
119
+ /upsilon
120
+ /.notdef
121
+ /omega
122
+ /xi
123
+ /psi
124
+ /zeta
125
+ /guillemotleft
126
+ /uni037A
127
+ /guillemotright
128
+ /uni1FC0
129
+ /emdash
130
+ /uni1F70 % 0x80
131
+ /uni1F01
132
+ /uni1F00
133
+ /uni1F03
134
+ /uni1FB2
135
+ /uni1F81
136
+ /uni1F80
137
+ /uni1F83
138
+ /uni1F71
139
+ /uni1F05
140
+ /uni1F04
141
+ /uni1F02
142
+ /uni1FB4
143
+ /uni1F85
144
+ /uni1F84
145
+ /uni1F82
146
+ /uni1FB6 % 0x90
147
+ /uni1F07
148
+ /uni1F06
149
+ /uni03DD
150
+ /uni1FB7
151
+ /uni1F87
152
+ /uni1F86
153
+ /breve.wide
154
+ /uni1F74
155
+ /uni1F21
156
+ /uni1F20
157
+ /.notdef
158
+ /uni1FC2
159
+ /uni1F91
160
+ /uni1F90
161
+ /uniFEFF
162
+ /uni1F75 % 0xa0
163
+ /uni1F25
164
+ /uni1F24
165
+ /uni1F23
166
+ /uni1FC4
167
+ /uni1F95
168
+ /uni1F94
169
+ /uni1F93
170
+ /uni1FC6
171
+ /uni1F27
172
+ /uni1F26
173
+ /uni1F22
174
+ /uni1FC7
175
+ /uni1F97
176
+ /uni1F96
177
+ /uni1F92
178
+ /uni1F7C % 0xb0
179
+ /uni1F61
180
+ /uni1F60
181
+ /uni1F63
182
+ /uni1FF2
183
+ /uni1FA1
184
+ /uni1FA0
185
+ /uni1FA3
186
+ /uni1F7D
187
+ /uni1F65
188
+ /uni1F64
189
+ /uni1F62
190
+ /uni1FF4
191
+ /uni1FA5
192
+ /uni1FA4
193
+ /uni1FA2
194
+ /uni1FF6 % 0xc0
195
+ /uni1F67
196
+ /uni1F66
197
+ /uni03DC
198
+ /uni1FF7
199
+ /uni1FA7
200
+ /uni1FA6
201
+ /.notdef
202
+ /uni1F76
203
+ /uni1F31
204
+ /uni1F30
205
+ /uni1F33
206
+ /uni1F7A
207
+ /uni1F51
208
+ /uni1F50
209
+ /uni1F53
210
+ /uni1F77 % 0xd0
211
+ /uni1F35
212
+ /uni1F34
213
+ /uni1F32
214
+ /uni1F7B
215
+ /uni1F55
216
+ /uni1F54
217
+ /uni1F52
218
+ /uni1FD6
219
+ /uni1F37
220
+ /uni1F36
221
+ /Iotadieresis
222
+ /uni1FE6
223
+ /uni1F57
224
+ /uni1F56
225
+ /Upsilondieresis
226
+ /uni1F72 % 0xe0
227
+ /uni1F11
228
+ /uni1F10
229
+ /uni1F13
230
+ /uni1F78
231
+ /uni1F41
232
+ /uni1F40
233
+ /uni1F43
234
+ /uni1F73
235
+ /uni1F15
236
+ /uni1F14
237
+ /uni1F12
238
+ /uni1F79
239
+ /uni1F45
240
+ /uni1F44
241
+ /uni1F42
242
+ /iotadieresis % 0xf0
243
+ /uni1FD2
244
+ /uni1FD3
245
+ /uni1FD7
246
+ /upsilondieresis
247
+ /uni1FE2
248
+ /uni1FE3
249
+ /uni1FE7
250
+ /uni1FB3
251
+ /uni1FC3
252
+ /uni1FF3
253
+ /uni1FE5
254
+ /uni1FE4
255
+ /.notdef
256
+ /uni0374
257
+ /uni0375
258
+ ] def
@@ -0,0 +1,258 @@
1
+ /TeX-T2AModified2Encoding [
2
+ /grave % 0x00
3
+ /acute
4
+ /circumflex
5
+ /tilde
6
+ /dieresis
7
+ /hungarumlaut
8
+ /ring
9
+ /caron
10
+ /breve
11
+ /macron
12
+ /dotaccent
13
+ /cedilla
14
+ /ogonek
15
+ /.notdef
16
+ /angleleft
17
+ /angleright
18
+ /quotedblleft % 0x10
19
+ /quotedblright
20
+ /cyrflex
21
+ /dblgrave
22
+ /cyrbreve
23
+ /endash
24
+ /emdash
25
+ /.notdef
26
+ /.notdef
27
+ /dotlessi
28
+ /.notdef
29
+ /ff
30
+ /fi
31
+ /fl
32
+ /ffi
33
+ /ffl
34
+ /.notdef % 0x20
35
+ /exclam
36
+ /quotedbl
37
+ /numbersign
38
+ /dollar
39
+ /percent
40
+ /ampersand
41
+ /quoteright
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
+ /quoteleft % 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
+ /hyphen
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
+ /threesuperior
159
+ /.notdef
160
+ /currency
161
+ /section
162
+ /.notdef % 0xa0
163
+ /.notdef
164
+ /.notdef
165
+ /.notdef
166
+ /.notdef
167
+ /.notdef
168
+ /.notdef
169
+ /.notdef
170
+ /.notdef
171
+ /.notdef
172
+ /.notdef
173
+ /.notdef
174
+ /.notdef
175
+ /.notdef
176
+ /.notdef
177
+ /.notdef
178
+ /.notdef % 0xb0
179
+ /.notdef
180
+ /.notdef
181
+ /.notdef
182
+ /.notdef
183
+ /.notdef
184
+ /.notdef
185
+ /.notdef
186
+ /.notdef
187
+ /.notdef
188
+ /.notdef
189
+ /.notdef
190
+ /sterling
191
+ /quotedblbase
192
+ /guillemotleft
193
+ /guillemotright
194
+ /aacute % 0xc0
195
+ /acircumflex
196
+ /divide
197
+ /ccedilla
198
+ /adieresis
199
+ /aring
200
+ /odieresis
201
+ /uacute
202
+ /eacute
203
+ /ecircumflex
204
+ /edieresis
205
+ /igrave
206
+ /iacute
207
+ /icircumflex
208
+ /idieresis
209
+ /eth
210
+ /ograve % 0xd0
211
+ /oacute
212
+ /ocircumflex
213
+ /otilde
214
+ /ae
215
+ /egrave
216
+ /atilde
217
+ /thorn
218
+ /ucircumflex
219
+ /yacute
220
+ /ydieresis
221
+ /ugrave
222
+ /oslash
223
+ /udieresis
224
+ /agrave
225
+ /ntilde
226
+ /Aacute % 0xe0
227
+ /Acircumflex
228
+ /multiply
229
+ /Ccedilla
230
+ /Adieresis
231
+ /Aring
232
+ /Odieresis
233
+ /Uacute
234
+ /Eacute
235
+ /Ecircumflex
236
+ /Edieresis
237
+ /Igrave
238
+ /Iacute
239
+ /Icircumflex
240
+ /Idieresis
241
+ /Eth
242
+ /Ograve % 0xf0
243
+ /Oacute
244
+ /Ocircumflex
245
+ /Otilde
246
+ /AE
247
+ /Egrave
248
+ /Atilde
249
+ /Thorn
250
+ /Ucircumflex
251
+ /Yacute
252
+ /germandbls
253
+ /Ugrave
254
+ /Oslash
255
+ /Udieresis
256
+ /Agrave
257
+ /Ntilde
258
+ ] def