surpass 0.0.4 → 0.0.6

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.
Files changed (259) hide show
  1. data/History.txt +4 -0
  2. data/README.txt +3 -20
  3. data/Rakefile +2 -13
  4. data/bin/surpass +8 -0
  5. data/examples/big-16mb.rb +25 -0
  6. data/examples/big-random-strings.rb +28 -0
  7. data/examples/blanks.rb +34 -0
  8. data/examples/blanks.xls +0 -0
  9. data/examples/col_width.rb +16 -0
  10. data/examples/col_width.xls +0 -0
  11. data/examples/dates.rb +31 -0
  12. data/examples/dates.xls +0 -0
  13. data/examples/format.rb +23 -0
  14. data/examples/format.xls +0 -0
  15. data/examples/hello-world.rb +9 -0
  16. data/examples/hello-world.xls +0 -0
  17. data/examples/image.rb +10 -0
  18. data/examples/image.xls +0 -0
  19. data/examples/merged.rb +36 -0
  20. data/examples/merged.xls +0 -0
  21. data/examples/merged0.rb +27 -0
  22. data/examples/merged0.xls +0 -0
  23. data/examples/merged1.rb +99 -0
  24. data/examples/merged1.xls +0 -0
  25. data/examples/num_formats.rb +55 -0
  26. data/examples/num_formats.xls +0 -0
  27. data/examples/numbers.rb +24 -0
  28. data/examples/numbers.xls +0 -0
  29. data/examples/outline.rb +110 -0
  30. data/examples/outline.xls +0 -0
  31. data/examples/panes.rb +48 -0
  32. data/examples/panes.xls +0 -0
  33. data/examples/protection.rb +132 -0
  34. data/examples/protection.xls +0 -0
  35. data/examples/python.bmp +0 -0
  36. data/examples/row_styles.rb +16 -0
  37. data/examples/row_styles.xls +0 -0
  38. data/examples/row_styles_empty.rb +15 -0
  39. data/examples/row_styles_empty.xls +0 -0
  40. data/examples/set_cell_and_range_style.rb +12 -0
  41. data/examples/set_cell_and_range_style.xls +0 -0
  42. data/examples/wrapped-text.rb +13 -0
  43. data/examples/wrapped-text.xls +0 -0
  44. data/examples/write_arrays.rb +22 -0
  45. data/examples/write_arrays.xls +0 -0
  46. data/examples/ws_props.rb +80 -0
  47. data/lib/surpass/ExcelFormula.g +366 -0
  48. data/lib/surpass/ExcelFormula.tokens +30 -0
  49. data/lib/surpass/ExcelFormulaLexer.rb +922 -0
  50. data/lib/surpass/ExcelFormulaParser.rb +602 -0
  51. data/lib/{biff_record.rb → surpass/biff_record.rb} +0 -0
  52. data/lib/{bitmap.rb → surpass/bitmap.rb} +0 -0
  53. data/lib/{cell.rb → surpass/cell.rb} +2 -34
  54. data/lib/{chart.rb → surpass/chart.rb} +0 -0
  55. data/lib/{column.rb → surpass/column.rb} +0 -0
  56. data/lib/{document.rb → surpass/document.rb} +0 -0
  57. data/lib/surpass/excel_formula.rb +23 -0
  58. data/lib/{excel_magic.rb → surpass/excel_magic.rb} +0 -0
  59. data/lib/{formatting.rb → surpass/formatting.rb} +93 -53
  60. data/lib/{row.rb → surpass/row.rb} +0 -0
  61. data/lib/{style.rb → surpass/style.rb} +2 -1
  62. data/lib/surpass/tokens.txt +2 -0
  63. data/lib/{utilities.rb → surpass/utilities.rb} +0 -0
  64. data/lib/{workbook.rb → surpass/workbook.rb} +0 -0
  65. data/lib/{worksheet.rb → surpass/worksheet.rb} +15 -6
  66. data/lib/surpass.rb +1 -1
  67. data/spec/biff_record_spec.rb +268 -0
  68. data/spec/cell_spec.rb +56 -0
  69. data/spec/data/random-strings.txt +10000 -0
  70. data/spec/document_spec.rb +168 -0
  71. data/spec/excel_formula_spec.rb +27 -0
  72. data/spec/formatting_spec.rb +53 -0
  73. data/spec/output/cells-rk.xls +0 -0
  74. data/spec/output/cells.xls +0 -0
  75. data/spec/output/mini.xls +0 -0
  76. data/spec/reference/P-0508-0000507647-3280-5298.xls +0 -0
  77. data/spec/reference/all-cell-styles.bin +0 -0
  78. data/spec/reference/all-number-formats.bin +0 -0
  79. data/spec/reference/all-styles.bin +0 -0
  80. data/spec/reference/mini.xls +0 -0
  81. data/spec/row_spec.rb +19 -0
  82. data/spec/spec_helper.rb +10 -0
  83. data/spec/style_spec.rb +89 -0
  84. data/spec/surpass_spec.rb +7 -0
  85. data/spec/utilities_spec.rb +57 -0
  86. data/spec/workbook_spec.rb +48 -0
  87. data/spec/worksheet_spec.rb +0 -0
  88. data/stats/cloc.txt +8 -0
  89. data/stats/rcov.txt +0 -0
  90. data/stats/specdoc.txt +158 -0
  91. data/surpass.gemspec +40 -0
  92. data/tasks/setup.rb +1 -1
  93. data/tasks/zentest.rake +36 -0
  94. data/webby/README.txt +6 -0
  95. data/webby/Sitefile +43 -0
  96. data/webby/content/css/pygments.txt +6 -0
  97. data/webby/content/css/style.css +279 -0
  98. data/webby/content/examples/autoformat.png +0 -0
  99. data/webby/content/examples/autoformat.rb +32 -0
  100. data/webby/content/examples/autoformat.xls +0 -0
  101. data/webby/content/examples/borders.png +0 -0
  102. data/webby/content/examples/borders.rb +15 -0
  103. data/webby/content/examples/borders.xls +0 -0
  104. data/webby/content/examples/colours.png +0 -0
  105. data/webby/content/examples/colours.rb +23 -0
  106. data/webby/content/examples/colours.xls +0 -0
  107. data/webby/content/examples/data.png +0 -0
  108. data/webby/content/examples/data.rb +11 -0
  109. data/webby/content/examples/data.xls +0 -0
  110. data/webby/content/examples/formatting.png +0 -0
  111. data/webby/content/examples/formatting.rb +78 -0
  112. data/webby/content/examples/formatting.xls +0 -0
  113. data/webby/content/examples/hello-world.png +0 -0
  114. data/webby/content/examples/hello-world.py +8 -0
  115. data/webby/content/examples/hello-world.rb +9 -0
  116. data/webby/content/examples/hello-world.xls +0 -0
  117. data/webby/content/examples/number-format-string.png +0 -0
  118. data/webby/content/examples/number-format-string.rb +14 -0
  119. data/webby/content/examples/number-format-string.xls +0 -0
  120. data/webby/content/examples/patterns.png +0 -0
  121. data/webby/content/examples/patterns.rb +26 -0
  122. data/webby/content/examples/patterns.xls +0 -0
  123. data/webby/content/examples/show-greens.sh +1 -0
  124. data/webby/content/examples/surpass-info.sh +1 -0
  125. data/webby/content/img/Thumbs.db +0 -0
  126. data/webby/content/img/bg_menu.gif +0 -0
  127. data/webby/content/img/bg_t.gif +0 -0
  128. data/webby/content/img/bullet.gif +0 -0
  129. data/webby/content/img/logo.png +0 -0
  130. data/webby/content/img/logo_.jpg +0 -0
  131. data/webby/content/img/top_bg.gif +0 -0
  132. data/webby/content/img/top_bg_.gif +0 -0
  133. data/webby/content/index.txt +16 -0
  134. data/webby/content/installation/index.txt +24 -0
  135. data/webby/content/source/ExcelFormulaLexer.txt +7 -0
  136. data/webby/content/source/ExcelFormulaParser.txt +7 -0
  137. data/webby/content/source/biff_record.txt +7 -0
  138. data/webby/content/source/bitmap.txt +7 -0
  139. data/webby/content/source/cell.txt +7 -0
  140. data/webby/content/source/chart.txt +7 -0
  141. data/webby/content/source/column.txt +7 -0
  142. data/webby/content/source/document.txt +7 -0
  143. data/webby/content/source/excel_formula.txt +7 -0
  144. data/webby/content/source/excel_magic.txt +7 -0
  145. data/webby/content/source/formatting.txt +7 -0
  146. data/webby/content/source/row.txt +7 -0
  147. data/webby/content/source/style.txt +7 -0
  148. data/webby/content/source/utilities.txt +7 -0
  149. data/webby/content/source/workbook.txt +7 -0
  150. data/webby/content/source/worksheet.txt +7 -0
  151. data/webby/content/surpass-manual.erb +198 -0
  152. data/webby/layouts/book.txt +29 -0
  153. data/webby/layouts/default.txt +27 -0
  154. data/webby/layouts/two_column.txt +25 -0
  155. data/webby/layouts/web.txt +66 -0
  156. data/webby/output/.cairn +0 -0
  157. data/webby/output/css/blueprint/ie.css +26 -0
  158. data/webby/output/css/blueprint/plugins/buttons/icons/cross.png +0 -0
  159. data/webby/output/css/blueprint/plugins/buttons/icons/key.png +0 -0
  160. data/webby/output/css/blueprint/plugins/buttons/icons/tick.png +0 -0
  161. data/webby/output/css/blueprint/plugins/buttons/readme.txt +32 -0
  162. data/webby/output/css/blueprint/plugins/buttons/screen.css +97 -0
  163. data/webby/output/css/blueprint/plugins/fancy-type/readme.txt +14 -0
  164. data/webby/output/css/blueprint/plugins/fancy-type/screen.css +71 -0
  165. data/webby/output/css/blueprint/plugins/link-icons/icons/doc.png +0 -0
  166. data/webby/output/css/blueprint/plugins/link-icons/icons/email.png +0 -0
  167. data/webby/output/css/blueprint/plugins/link-icons/icons/external.png +0 -0
  168. data/webby/output/css/blueprint/plugins/link-icons/icons/feed.png +0 -0
  169. data/webby/output/css/blueprint/plugins/link-icons/icons/im.png +0 -0
  170. data/webby/output/css/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  171. data/webby/output/css/blueprint/plugins/link-icons/icons/visited.png +0 -0
  172. data/webby/output/css/blueprint/plugins/link-icons/icons/xls.png +0 -0
  173. data/webby/output/css/blueprint/plugins/link-icons/readme.txt +18 -0
  174. data/webby/output/css/blueprint/plugins/link-icons/screen.css +40 -0
  175. data/webby/output/css/blueprint/plugins/rtl/readme.txt +10 -0
  176. data/webby/output/css/blueprint/plugins/rtl/screen.css +109 -0
  177. data/webby/output/css/blueprint/print.css +30 -0
  178. data/webby/output/css/blueprint/screen.css +251 -0
  179. data/webby/output/css/blueprint/src/forms.css +49 -0
  180. data/webby/output/css/blueprint/src/grid.css +212 -0
  181. data/webby/output/css/blueprint/src/grid.png +0 -0
  182. data/webby/output/css/blueprint/src/ie.css +59 -0
  183. data/webby/output/css/blueprint/src/print.css +85 -0
  184. data/webby/output/css/blueprint/src/reset.css +38 -0
  185. data/webby/output/css/blueprint/src/typography.css +105 -0
  186. data/webby/output/css/pygments.css +59 -0
  187. data/webby/output/css/site.css +62 -0
  188. data/webby/output/css/style.css +279 -0
  189. data/webby/output/examples/autoformat.png +0 -0
  190. data/webby/output/examples/autoformat.rb +32 -0
  191. data/webby/output/examples/autoformat.xls +0 -0
  192. data/webby/output/examples/borders.png +0 -0
  193. data/webby/output/examples/borders.rb +15 -0
  194. data/webby/output/examples/borders.xls +0 -0
  195. data/webby/output/examples/colours.png +0 -0
  196. data/webby/output/examples/colours.rb +23 -0
  197. data/webby/output/examples/colours.xls +0 -0
  198. data/webby/output/examples/data.png +0 -0
  199. data/webby/output/examples/data.rb +11 -0
  200. data/webby/output/examples/data.xls +0 -0
  201. data/webby/output/examples/formatting.png +0 -0
  202. data/webby/output/examples/formatting.rb +78 -0
  203. data/webby/output/examples/formatting.xls +0 -0
  204. data/webby/output/examples/hello-world.png +0 -0
  205. data/webby/output/examples/hello-world.py +8 -0
  206. data/webby/output/examples/hello-world.rb +9 -0
  207. data/webby/output/examples/hello-world.xls +0 -0
  208. data/webby/output/examples/number-format-string.png +0 -0
  209. data/webby/output/examples/number-format-string.rb +14 -0
  210. data/webby/output/examples/number-format-string.xls +0 -0
  211. data/webby/output/examples/patterns.png +0 -0
  212. data/webby/output/examples/patterns.rb +26 -0
  213. data/webby/output/examples/patterns.xls +0 -0
  214. data/webby/output/examples/show-greens.sh +1 -0
  215. data/webby/output/examples/surpass-info.sh +1 -0
  216. data/webby/output/img/Thumbs.db +0 -0
  217. data/webby/output/img/bg_menu.gif +0 -0
  218. data/webby/output/img/bg_t.gif +0 -0
  219. data/webby/output/img/bullet.gif +0 -0
  220. data/webby/output/img/logo.png +0 -0
  221. data/webby/output/img/logo_.jpg +0 -0
  222. data/webby/output/img/top_bg.gif +0 -0
  223. data/webby/output/img/top_bg_.gif +0 -0
  224. data/webby/output/index.html +138 -0
  225. data/webby/output/installation/index.html +64 -0
  226. data/webby/output/installation/installation.html +1 -0
  227. data/webby/output/installation.html +1 -0
  228. data/webby/output/source/ExcelFormulaLexer.html +981 -0
  229. data/webby/output/source/ExcelFormulaParser.html +661 -0
  230. data/webby/output/source/biff_record.html +462 -0
  231. data/webby/output/source/bitmap.html +277 -0
  232. data/webby/output/source/cell.html +241 -0
  233. data/webby/output/source/chart.html +64 -0
  234. data/webby/output/source/column.html +99 -0
  235. data/webby/output/source/document.html +465 -0
  236. data/webby/output/source/excel_formula.html +82 -0
  237. data/webby/output/source/excel_magic.html +1072 -0
  238. data/webby/output/source/formatting.html +664 -0
  239. data/webby/output/source/row.html +169 -0
  240. data/webby/output/source/style.html +158 -0
  241. data/webby/output/source/surpass.html +110 -0
  242. data/webby/output/source/utilities.html +145 -0
  243. data/webby/output/source/workbook.html +265 -0
  244. data/webby/output/source/worksheet.html +331 -0
  245. data/webby/output/surpass-manual-0-0-5.pdf +0 -0
  246. data/webby/output/surpass-manual.aux +50 -0
  247. data/webby/output/surpass-manual.log +366 -0
  248. data/webby/output/surpass-manual.out +20 -0
  249. data/webby/output/surpass-manual.tex +582 -0
  250. data/webby/output/surpass-manual.toc +20 -0
  251. data/webby/rsync-exclude +7 -0
  252. data/webby/tasks/latex.rake +14 -0
  253. data/webby/tasks/screenshots.rb +58 -0
  254. data/webby/templates/article.erb +15 -0
  255. data/webby/templates/book.erb +16 -0
  256. data/webby/templates/page.erb +9 -0
  257. metadata +302 -24
  258. data/bin/surpass-info +0 -20
  259. data/lib/excel_formula.rb +0 -6
@@ -0,0 +1,366 @@
1
+ This is pdfTeX, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=pdflatex 2009.4.7) 2 JUL 2009 20:07
2
+ entering extended mode
3
+ **surpass-manual.tex
4
+ (./surpass-manual.tex
5
+ LaTeX2e <2005/12/01>
6
+ Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh
7
+ yphenation, arabic, basque, bulgarian, coptic, welsh, czech, slovak, german, ng
8
+ erman, danish, esperanto, spanish, catalan, galician, estonian, farsi, finnish,
9
+ french, greek, monogreek, ancientgreek, croatian, hungarian, interlingua, ibyc
10
+ us, indonesian, icelandic, italian, latin, mongolian, dutch, norsk, polish, por
11
+ tuguese, pinyin, romanian, russian, slovenian, uppersorbian, serbian, swedish,
12
+ turkish, ukenglish, ukrainian, loaded.
13
+ (/opt/local/share/texmf-dist/tex/latex/base/book.cls
14
+ Document Class: book 2005/09/16 v1.4f Standard LaTeX document class
15
+ (/opt/local/share/texmf-dist/tex/latex/base/bk10.clo
16
+ File: bk10.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
17
+ )
18
+ \c@part=\count79
19
+ \c@chapter=\count80
20
+ \c@section=\count81
21
+ \c@subsection=\count82
22
+ \c@subsubsection=\count83
23
+ \c@paragraph=\count84
24
+ \c@subparagraph=\count85
25
+ \c@figure=\count86
26
+ \c@table=\count87
27
+ \abovecaptionskip=\skip41
28
+ \belowcaptionskip=\skip42
29
+ \bibindent=\dimen102
30
+ )
31
+ (/opt/local/share/texmf-dist/tex/latex/preprint/fullpage.sty
32
+ Package: fullpage 1999/02/23 1.1 (PWD)
33
+ \FP@margin=\skip43
34
+ )
35
+ (/opt/local/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
36
+ Package: fancyvrb 1998/07/17
37
+
38
+ Style option: `fancyvrb' v2.6, with DG/SPQR fixes <1998/07/17> (tvz)
39
+ (/opt/local/share/texmf-dist/tex/latex/graphics/keyval.sty
40
+ Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
41
+ \KV@toks@=\toks14
42
+ )
43
+ \FV@CodeLineNo=\count88
44
+ \FV@InFile=\read1
45
+ \FV@TabBox=\box26
46
+ \c@FancyVerbLine=\count89
47
+ \FV@StepNumber=\count90
48
+ \FV@OutFile=\write3
49
+
50
+ No file fancyvrb.cfg.
51
+ ) (/opt/local/share/texmf-dist/tex/latex/graphics/color.sty
52
+ Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
53
+
54
+ (/opt/local/share/texmf/tex/latex/config/color.cfg
55
+ File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
56
+ )
57
+ Package color Info: Driver file: pdftex.def on input line 130.
58
+
59
+ (/opt/local/share/texmf-dist/tex/latex/pdftex-def/pdftex.def
60
+ File: pdftex.def 2007/01/08 v0.04d Graphics/color for pdfTeX
61
+ \Gread@gobject=\count91
62
+ ))
63
+ (/opt/local/share/texmf-dist/tex/latex/base/inputenc.sty
64
+ Package: inputenc 2006/05/05 v1.1b Input encoding file
65
+ \inpenc@prehook=\toks15
66
+ \inpenc@posthook=\toks16
67
+
68
+ (/opt/local/share/texmf-dist/tex/latex/base/ascii.def
69
+ File: ascii.def 2006/05/05 v1.1b Input encoding file
70
+ ))
71
+ (/opt/local/share/texmf-dist/tex/latex/hyperref/hyperref.sty
72
+ Package: hyperref 2007/02/07 v6.75r Hypertext links for LaTeX
73
+ \@linkdim=\dimen103
74
+ \Hy@linkcounter=\count92
75
+ \Hy@pagecounter=\count93
76
+
77
+ (/opt/local/share/texmf-dist/tex/latex/hyperref/pd1enc.def
78
+ File: pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO)
79
+ )
80
+ (/opt/local/share/texmf/tex/latex/config/hyperref.cfg
81
+ File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
82
+ )
83
+ (/opt/local/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty
84
+ Package: kvoptions 2006/08/22 v2.4 Connects package keyval with LaTeX options (
85
+ HO)
86
+ )
87
+ Package hyperref Info: Hyper figures OFF on input line 2288.
88
+ Package hyperref Info: Link nesting OFF on input line 2293.
89
+ Package hyperref Info: Hyper index ON on input line 2296.
90
+ Package hyperref Info: Plain pages OFF on input line 2303.
91
+ Package hyperref Info: Backreferencing OFF on input line 2308.
92
+
93
+ Implicit mode ON; LaTeX internals redefined
94
+ Package hyperref Info: Bookmarks ON on input line 2444.
95
+ (/opt/local/share/texmf-dist/tex/latex/ltxmisc/url.sty
96
+ \Urlmuskip=\muskip10
97
+ Package: url 2005/06/27 ver 3.2 Verb mode for urls, etc.
98
+ )
99
+ LaTeX Info: Redefining \url on input line 2599.
100
+ \Fld@menulength=\count94
101
+ \Field@Width=\dimen104
102
+ \Fld@charsize=\dimen105
103
+ \Choice@toks=\toks17
104
+ \Field@toks=\toks18
105
+ Package hyperref Info: Hyper figures OFF on input line 3102.
106
+ Package hyperref Info: Link nesting OFF on input line 3107.
107
+ Package hyperref Info: Hyper index ON on input line 3110.
108
+ Package hyperref Info: backreferencing OFF on input line 3117.
109
+ Package hyperref Info: Link coloring OFF on input line 3122.
110
+ \Hy@abspage=\count95
111
+ \c@Item=\count96
112
+ \c@Hfootnote=\count97
113
+ )
114
+ *hyperref using default driver hpdftex*
115
+ (/opt/local/share/texmf-dist/tex/latex/hyperref/hpdftex.def
116
+ File: hpdftex.def 2007/02/07 v6.75r Hyperref driver for pdfTeX
117
+ \Fld@listcount=\count98
118
+ )
119
+ (/opt/local/share/texmf-dist/tex/latex/graphics/graphicx.sty
120
+ Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
121
+
122
+ (/opt/local/share/texmf-dist/tex/latex/graphics/graphics.sty
123
+ Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
124
+
125
+ (/opt/local/share/texmf-dist/tex/latex/graphics/trig.sty
126
+ Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
127
+ )
128
+ (/opt/local/share/texmf/tex/latex/config/graphics.cfg
129
+ File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
130
+ )
131
+ Package graphics Info: Driver file: pdftex.def on input line 90.
132
+ )
133
+ \Gin@req@height=\dimen106
134
+ \Gin@req@width=\dimen107
135
+ )
136
+ (/opt/local/share/texmf-dist/tex/latex/wrapfig/wrapfig.sty
137
+ \wrapoverhang=\dimen108
138
+ \WF@size=\dimen109
139
+ \c@WF@wrappedlines=\count99
140
+ \WF@box=\box27
141
+ \WF@everypar=\toks19
142
+ Package: wrapfig 2003/01/31 v 3.6
143
+ )
144
+ (/opt/local/share/texmf-dist/tex/latex/tools/multicol.sty
145
+ Package: multicol 2006/05/18 v1.6g multicolumn formatting (FMi)
146
+ \c@tracingmulticols=\count100
147
+ \mult@box=\box28
148
+ \multicol@leftmargin=\dimen110
149
+ \c@unbalance=\count101
150
+ \c@collectmore=\count102
151
+ \doublecol@number=\count103
152
+ \multicoltolerance=\count104
153
+ \multicolpretolerance=\count105
154
+ \full@width=\dimen111
155
+ \page@free=\dimen112
156
+ \premulticols=\dimen113
157
+ \postmulticols=\dimen114
158
+ \multicolsep=\skip44
159
+ \multicolbaselineskip=\skip45
160
+ \partial@page=\box29
161
+ \last@line=\box30
162
+ \mult@rightbox=\box31
163
+ \mult@grightbox=\box32
164
+ \mult@gfirstbox=\box33
165
+ \mult@firstbox=\box34
166
+ \@tempa=\box35
167
+ \@tempa=\box36
168
+ \@tempa=\box37
169
+ \@tempa=\box38
170
+ \@tempa=\box39
171
+ \@tempa=\box40
172
+ \@tempa=\box41
173
+ \@tempa=\box42
174
+ \@tempa=\box43
175
+ \@tempa=\box44
176
+ \@tempa=\box45
177
+ \@tempa=\box46
178
+ \@tempa=\box47
179
+ \@tempa=\box48
180
+ \@tempa=\box49
181
+ \@tempa=\box50
182
+ \@tempa=\box51
183
+ \c@columnbadness=\count106
184
+ \c@finalcolumnbadness=\count107
185
+ \last@try=\dimen115
186
+ \multicolovershoot=\dimen116
187
+ \multicolundershoot=\dimen117
188
+ \mult@nat@firstbox=\box52
189
+ \colbreak@box=\box53
190
+ )
191
+ (./surpass-manual.aux)
192
+ \openout1 = `surpass-manual.aux'.
193
+
194
+ LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 80.
195
+ LaTeX Font Info: ... okay on input line 80.
196
+ LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 80.
197
+ LaTeX Font Info: ... okay on input line 80.
198
+ LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 80.
199
+ LaTeX Font Info: ... okay on input line 80.
200
+ LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 80.
201
+ LaTeX Font Info: ... okay on input line 80.
202
+ LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 80.
203
+ LaTeX Font Info: ... okay on input line 80.
204
+ LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 80.
205
+ LaTeX Font Info: ... okay on input line 80.
206
+ LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 80.
207
+ LaTeX Font Info: ... okay on input line 80.
208
+
209
+ (/opt/local/share/texmf-dist/tex/context/base/supp-pdf.tex
210
+ [Loading MPS to PDF converter (version 2006.09.02).]
211
+ \scratchcounter=\count108
212
+ \scratchdimen=\dimen118
213
+ \scratchbox=\box54
214
+ \nofMPsegments=\count109
215
+ \nofMParguments=\count110
216
+ \MPscratchCnt=\count111
217
+ \MPscratchDim=\dimen119
218
+ \MPnumerator=\count112
219
+ \everyMPtoPDFconversion=\toks20
220
+ )
221
+ Package hyperref Info: Link coloring OFF on input line 80.
222
+ (/opt/local/share/texmf-dist/tex/latex/hyperref/nameref.sty
223
+ Package: nameref 2006/12/27 v2.28 Cross-referencing by name of section
224
+
225
+ (/opt/local/share/texmf-dist/tex/latex/oberdiek/refcount.sty
226
+ Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
227
+ )
228
+ \c@section@level=\count113
229
+ )
230
+ LaTeX Info: Redefining \ref on input line 80.
231
+ LaTeX Info: Redefining \pageref on input line 80.
232
+
233
+ (./surpass-manual.out) (./surpass-manual.out)
234
+ \@outlinefile=\write4
235
+ \openout4 = `surpass-manual.out'.
236
+
237
+ LaTeX Font Info: External font `cmex10' loaded for size
238
+ (Font) <12> on input line 83.
239
+ LaTeX Font Info: External font `cmex10' loaded for size
240
+ (Font) <8> on input line 83.
241
+ LaTeX Font Info: External font `cmex10' loaded for size
242
+ (Font) <6> on input line 83.
243
+ [1
244
+
245
+
246
+ {/opt/local/share/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2
247
+
248
+ ] (./surpass-manual.toc
249
+ LaTeX Font Info: External font `cmex10' loaded for size
250
+ (Font) <7> on input line 2.
251
+ LaTeX Font Info: External font `cmex10' loaded for size
252
+ (Font) <5> on input line 2.
253
+ )
254
+ \tf@toc=\write5
255
+ \openout5 = `surpass-manual.toc'.
256
+
257
+ [3] [4
258
+
259
+ ]
260
+ Chapter 1.
261
+ <examples/hello-world.png, id=131, 843.15pt x 572.1375pt>
262
+ File: examples/hello-world.png Graphic file (type png)
263
+
264
+ <use examples/hello-world.png> [5] [6 <./examples/hello-world.png (PNG copy)>]
265
+ Chapter 2.
266
+ LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <10> not available
267
+ (Font) Font shape `OT1/cmtt/m/n' tried instead on input line 152.
268
+ [7
269
+
270
+ ] [8] <examples/autoformat.png, id=151, 843.15pt x 572.1375pt>
271
+ File: examples/autoformat.png Graphic file (type png)
272
+
273
+ <use examples/autoformat.png> [9 <./examples/autoformat.png (PNG copy)>]
274
+ [10
275
+
276
+ ]
277
+ Chapter 3.
278
+ LaTeX Font Info: Try loading font information for OMS+cmr on input line 314.
279
+
280
+ (/opt/local/share/texmf-dist/tex/latex/base/omscmr.fd
281
+ File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
282
+ )
283
+ LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
284
+ (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 314.
285
+ [11] [12]
286
+ <examples/number-format-string.png, id=169, 843.15pt x 572.1375pt>
287
+ File: examples/number-format-string.png Graphic file (type png)
288
+
289
+ <use examples/number-format-string.png>
290
+ Overfull \hbox (17.27618pt too wide) in paragraph at lines 350--351
291
+ [][]
292
+ []
293
+
294
+ [13 <./examples/number-format-string.png (PNG copy)>]
295
+ <examples/colours.png, id=175, 843.15pt x 572.1375pt>
296
+ File: examples/colours.png Graphic file (type png)
297
+
298
+ <use examples/colours.png>
299
+ Overfull \hbox (17.27618pt too wide) in paragraph at lines 417--418
300
+ [][]
301
+ []
302
+
303
+ <examples/borders.png, id=176, 843.15pt x 572.1375pt>
304
+ File: examples/borders.png Graphic file (type png)
305
+
306
+ <use examples/borders.png>
307
+ Overfull \hbox (2.27618pt too wide) in paragraph at lines 438--439
308
+ []
309
+ []
310
+
311
+
312
+ Underfull \vbox (badness 1178) has occurred while \output is active []
313
+
314
+ [14 <./examples/colours.png (PNG copy)>]
315
+ <examples/patterns.png, id=181, 843.15pt x 572.1375pt>
316
+ File: examples/patterns.png Graphic file (type png)
317
+
318
+ <use examples/patterns.png>
319
+ Overfull \hbox (2.27618pt too wide) in paragraph at lines 464--465
320
+ []
321
+ []
322
+
323
+
324
+ Underfull \vbox (badness 10000) has occurred while \output is active []
325
+
326
+ [15 <./examples/borders.png (PNG copy)>] [16 <./examples/patterns.png (PNG cop
327
+ y)>]
328
+ <examples/formatting.png, id=190, 843.15pt x 572.1375pt>
329
+ File: examples/formatting.png Graphic file (type png)
330
+
331
+ <use examples/formatting.png>
332
+ Overfull \hbox (17.27618pt too wide) in paragraph at lines 551--552
333
+ [][]
334
+ []
335
+
336
+
337
+ Underfull \vbox (badness 10000) has occurred while \output is active []
338
+
339
+ [17]
340
+ [18 <./examples/formatting.png (PNG copy)>]
341
+ Chapter 4.
342
+ [19
343
+
344
+ ] (./surpass-manual.aux) )
345
+ Here is how much of TeX's memory you used:
346
+ 3562 strings out of 94073
347
+ 50299 string characters out of 1164798
348
+ 109534 words of memory out of 1500000
349
+ 6782 multiletter control sequences out of 10000+50000
350
+ 9443 words of font info for 34 fonts, out of 1200000 for 2000
351
+ 645 hyphenation exceptions out of 8191
352
+ 25i,6n,36p,881b,531s stack positions out of 5000i,500n,6000p,200000b,5000s
353
+ </opt/local/share/texmf-dist/fonts/type1/bluesky/cm/c
354
+ mbx10.pfb></opt/local/share/texmf-dist/fonts/type1/bluesky/cm/cmbx12.pfb></opt/
355
+ local/share/texmf-dist/fonts/type1/bluesky/cm/cmitt10.pfb></opt/local/share/tex
356
+ mf-dist/fonts/type1/bluesky/cm/cmr10.pfb></opt/local/share/texmf-dist/fonts/typ
357
+ e1/bluesky/cm/cmr12.pfb></opt/local/share/texmf-dist/fonts/type1/bluesky/cm/cmr
358
+ 17.pfb></opt/local/share/texmf-dist/fonts/type1/bluesky/cm/cmr7.pfb></opt/local
359
+ /share/texmf-dist/fonts/type1/bluesky/cm/cmsy10.pfb></opt/local/share/texmf-dis
360
+ t/fonts/type1/bluesky/cm/cmtt10.pfb>
361
+ Output written on surpass-manual.pdf (19 pages, 735198 bytes).
362
+ PDF statistics:
363
+ 245 PDF objects out of 1000 (max. 8388607)
364
+ 41 named destinations out of 1000 (max. 131072)
365
+ 212 words of extra memory for PDF output out of 10000 (max. 10000000)
366
+
@@ -0,0 +1,20 @@
1
+ \BOOKMARK [0][-]{chapter.1}{Installation and Hello World}{}
2
+ \BOOKMARK [1][-]{section.1.1}{Dependencies}{chapter.1}
3
+ \BOOKMARK [1][-]{section.1.2}{Gem Installation}{chapter.1}
4
+ \BOOKMARK [1][-]{section.1.3}{Source Installation}{chapter.1}
5
+ \BOOKMARK [1][-]{section.1.4}{Hello World}{chapter.1}
6
+ \BOOKMARK [2][-]{subsection.1.4.1}{Surpass}{section.1.4}
7
+ \BOOKMARK [2][-]{subsection.1.4.2}{Result}{section.1.4}
8
+ \BOOKMARK [0][-]{chapter.2}{Writing Data}{}
9
+ \BOOKMARK [1][-]{section.2.1}{write}{chapter.2}
10
+ \BOOKMARK [1][-]{section.2.2}{Writing Arrays of Data}{chapter.2}
11
+ \BOOKMARK [1][-]{section.2.3}{Autoformatting}{chapter.2}
12
+ \BOOKMARK [0][-]{chapter.3}{Formatting}{}
13
+ \BOOKMARK [1][-]{section.3.1}{Reference}{chapter.3}
14
+ \BOOKMARK [1][-]{section.3.2}{StyleFormat Class}{chapter.3}
15
+ \BOOKMARK [1][-]{section.3.3}{Number Format Strings}{chapter.3}
16
+ \BOOKMARK [2][-]{subsection.3.3.1}{Specifying Colours}{section.3.3}
17
+ \BOOKMARK [2][-]{subsection.3.3.2}{Border Formats}{section.3.3}
18
+ \BOOKMARK [2][-]{subsection.3.3.3}{Fill Patterns}{section.3.3}
19
+ \BOOKMARK [2][-]{subsection.3.3.4}{Surpass}{section.3.3}
20
+ \BOOKMARK [0][-]{chapter.4}{Saving}{}