booky 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.pdf +0 -0
- data/README.textile +35 -8
- data/booky.gemspec +7 -2
- data/lib/booky.rb +40 -36
- data/lib/booky/ast.rb +10 -0
- data/lib/booky/exceptions.rb +1 -1
- data/lib/booky/layout.rb +103 -0
- data/lib/booky/layout/base.rb +70 -0
- data/lib/booky/layout/base/author.rb +15 -0
- data/lib/booky/layout/base/blockquote.rb +58 -0
- data/lib/booky/layout/base/chart.rb +26 -0
- data/lib/booky/layout/base/charts/bar.rb +164 -0
- data/lib/booky/layout/base/charts/base.rb +82 -0
- data/lib/booky/layout/base/charts/line.rb +249 -0
- data/lib/booky/layout/base/code.rb +185 -0
- data/lib/booky/layout/base/copyright.rb +16 -0
- data/lib/booky/layout/base/footnote.rb +10 -0
- data/lib/booky/layout/base/h0.rb +26 -0
- data/lib/booky/layout/base/h1.rb +29 -0
- data/lib/booky/layout/base/h2.rb +29 -0
- data/lib/booky/layout/base/h3.rb +29 -0
- data/lib/booky/layout/base/h4.rb +29 -0
- data/lib/booky/layout/base/image.rb +39 -0
- data/lib/booky/layout/base/import.rb +11 -0
- data/lib/booky/layout/base/numbered_list.rb +45 -0
- data/lib/booky/layout/base/outline.rb +21 -0
- data/lib/booky/layout/base/p.rb +15 -0
- data/lib/booky/layout/base/subtitle.rb +18 -0
- data/lib/booky/layout/base/table.rb +58 -0
- data/lib/booky/layout/base/title.rb +22 -0
- data/lib/booky/layout/base/toc.rb +131 -0
- data/lib/booky/layout/base/tof.rb +73 -0
- data/lib/booky/layout/base/unnumbered_list.rb +36 -0
- data/lib/booky/layout/element.rb +28 -0
- data/lib/booky/layout/helpers.rb +29 -0
- data/lib/booky/pdf.rb +12 -10
- data/lib/booky/textile.rb +6 -4
- data/lib/booky/textile/load.rb +1 -1
- data/lib/booky/textile/precompiler.rb +1 -0
- data/lib/booky/textile/source.rb +31 -5
- data/lib/booky/textile/table.rb +52 -0
- data/lib/booky/version.rb +1 -1
- data/pdfs/Rakefile +16 -0
- data/pdfs/blockquote_source.pdf +15641 -1
- data/pdfs/footnotes.pdf +1991 -0
- data/pdfs/link_image.pdf +0 -0
- data/pdfs/lists.pdf +706 -1
- data/pdfs/tables.pdf +2162 -0
- data/pdfs/title_subtitle.pdf +3454 -0
- data/spec/ast_spec.rb +12 -0
- data/{lib/fop/lib → spec/fixtures}/.DS_Store +0 -0
- data/spec/fixtures/bar_chart.json +35 -0
- data/spec/fixtures/blockquote_pagebreak.textile +27 -0
- data/spec/fixtures/blockquote_source.textile +35 -0
- data/spec/fixtures/chart.textile +9 -0
- data/spec/fixtures/footnotes.textile +57 -0
- data/spec/fixtures/footnotes_tables.textile +29 -0
- data/spec/fixtures/image_big.jpg +0 -0
- data/spec/fixtures/image_small.jpg +0 -0
- data/spec/fixtures/import.textile +7 -0
- data/spec/fixtures/line_chart.json +49 -0
- data/spec/fixtures/link_image.textile +18 -0
- data/spec/fixtures/lists.textile +98 -0
- data/spec/fixtures/request_flow.pdf +477 -0
- data/spec/fixtures/some_code.rb +138 -0
- data/spec/fixtures/some_text.txt +10 -0
- data/spec/fixtures/source_plain_text.textile +1 -0
- data/spec/fixtures/tables.textile +42 -0
- data/spec/fixtures/textile/basic.textile +3 -0
- data/spec/fixtures/textile/source/precompiled_index.textile +2 -2
- data/spec/fixtures/textile/tables/names.xls +0 -0
- data/spec/fixtures/textile/tables/request_limits_hardware.xls +0 -0
- data/spec/fixtures/title_subtitle.textile +110 -0
- data/spec/helpers.rb +2 -1
- data/spec/pdf_spec.rb +107 -0
- data/test.pdf +16657 -0
- metadata +152 -1551
- data/lib/booky/docbook.rb +0 -13
- data/lib/booky/fo.rb +0 -15
- data/lib/booky/fonts.rb +0 -104
- data/lib/custom_fonts.xml +0 -91
- data/lib/fop/KEYS +0 -248
- data/lib/fop/LICENSE +0 -202
- data/lib/fop/NOTICE +0 -10
- data/lib/fop/README +0 -286
- data/lib/fop/build/fop.jar +0 -0
- data/lib/fop/conf/fop.xconf +0 -464
- data/lib/fop/fop +0 -254
- data/lib/fop/fop.bat +0 -85
- data/lib/fop/fop.cmd +0 -75
- data/lib/fop/fop.js +0 -341
- data/lib/fop/lib/README.txt +0 -243
- data/lib/fop/lib/avalon-framework-4.2.0.jar +0 -0
- data/lib/fop/lib/avalon-framework.LICENSE.txt +0 -175
- data/lib/fop/lib/avalon-framework.NOTICE.TXT +0 -11
- data/lib/fop/lib/batik-all-1.7.jar +0 -0
- data/lib/fop/lib/batik.LICENSE.txt +0 -201
- data/lib/fop/lib/batik.NOTICE.txt +0 -18
- data/lib/fop/lib/commons-io-1.3.1.jar +0 -0
- data/lib/fop/lib/commons-io.LICENSE.txt +0 -203
- data/lib/fop/lib/commons-io.NOTICE.txt +0 -6
- data/lib/fop/lib/commons-logging-1.0.4.jar +0 -0
- data/lib/fop/lib/commons-logging.LICENSE.txt +0 -202
- data/lib/fop/lib/commons-logging.NOTICE.txt +0 -3
- data/lib/fop/lib/jeuclid-core-3.1.9.jar +0 -0
- data/lib/fop/lib/jeuclid-fop-3.1.9.jar +0 -0
- data/lib/fop/lib/serializer-2.7.0.jar +0 -0
- data/lib/fop/lib/serializer.LICENSE.txt +0 -201
- data/lib/fop/lib/serializer.NOTICE.txt +0 -15
- data/lib/fop/lib/xalan-2.7.0.jar +0 -0
- data/lib/fop/lib/xalan.BCEL.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.LICENSE.txt +0 -202
- data/lib/fop/lib/xalan.NOTICE.txt +0 -44
- data/lib/fop/lib/xalan.regexp.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.runtime.LICENSE.txt +0 -20
- data/lib/fop/lib/xerces.LICENSE.txt +0 -56
- data/lib/fop/lib/xercesImpl-2.7.1.jar +0 -0
- data/lib/fop/lib/xercesImpl.LICENSE.txt +0 -201
- data/lib/fop/lib/xercesImpl.NOTICE.txt +0 -14
- data/lib/fop/lib/xml-apis-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-documentation.txt +0 -73
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-software.txt +0 -61
- data/lib/fop/lib/xml-apis-ext.LICENSE.sac.html +0 -75
- data/lib/fop/lib/xml-apis-ext.LICENSE.txt +0 -202
- data/lib/fop/lib/xml-apis-ext.NOTICE.txt +0 -16
- data/lib/fop/lib/xml-apis-ext.README.dom.txt +0 -56
- data/lib/fop/lib/xml-apis.LICENSE-SAX.html +0 -17
- data/lib/fop/lib/xml-apis.LICENSE.DOM-documentation.html +0 -74
- data/lib/fop/lib/xml-apis.LICENSE.DOM-software.html +0 -66
- data/lib/fop/lib/xml-apis.LICENSE.txt +0 -201
- data/lib/fop/lib/xml-apis.NOTICE.txt +0 -13
- data/lib/fop/lib/xmlgraphics-commons-1.4.jar +0 -0
- data/lib/fop/lib/xmlgraphics-commons.LICENSE.txt +0 -202
- data/lib/fop/lib/xmlgraphics-commons.NOTICE.txt +0 -5
- data/lib/fop/lib/xslthl-2.0.2.jar +0 -0
- data/lib/fop/status.xml +0 -1809
- data/lib/params.pdf +0 -0
- data/lib/stylesheets/.CatalogManager.properties.example +0 -61
- data/lib/stylesheets/.urilist +0 -1
- data/lib/stylesheets/AUTHORS +0 -4
- data/lib/stylesheets/BUGS +0 -21
- data/lib/stylesheets/COPYING +0 -47
- data/lib/stylesheets/INSTALL +0 -88
- data/lib/stylesheets/Makefile +0 -89
- data/lib/stylesheets/NEWS +0 -139
- data/lib/stylesheets/NEWS.html +0 -25
- data/lib/stylesheets/NEWS.xml +0 -145
- data/lib/stylesheets/README +0 -166
- data/lib/stylesheets/RELEASE-NOTES.html +0 -8353
- data/lib/stylesheets/RELEASE-NOTES.pdf +6 -24345
- data/lib/stylesheets/RELEASE-NOTES.txt +0 -8575
- data/lib/stylesheets/RELEASE-NOTES.xml +0 -10327
- data/lib/stylesheets/TODO +0 -23
- data/lib/stylesheets/VERSION +0 -115
- data/lib/stylesheets/catalog.xml +0 -8
- data/lib/stylesheets/common/addns.xsl +0 -118
- data/lib/stylesheets/common/af.xml +0 -1229
- data/lib/stylesheets/common/am.xml +0 -1229
- data/lib/stylesheets/common/ar.xml +0 -1229
- data/lib/stylesheets/common/as.xml +0 -660
- data/lib/stylesheets/common/ast.xml +0 -660
- data/lib/stylesheets/common/autoidx-kimber.xsl +0 -45
- data/lib/stylesheets/common/autoidx-kosek.xsl +0 -155
- data/lib/stylesheets/common/az.xml +0 -672
- data/lib/stylesheets/common/bg.xml +0 -724
- data/lib/stylesheets/common/bn.xml +0 -1229
- data/lib/stylesheets/common/bn_in.xml +0 -660
- data/lib/stylesheets/common/bs.xml +0 -662
- data/lib/stylesheets/common/ca.xml +0 -660
- data/lib/stylesheets/common/charmap.xml +0 -185
- data/lib/stylesheets/common/charmap.xsl +0 -222
- data/lib/stylesheets/common/common.xml +0 -622
- data/lib/stylesheets/common/common.xsl +0 -2040
- data/lib/stylesheets/common/cs.xml +0 -700
- data/lib/stylesheets/common/cy.xml +0 -1245
- data/lib/stylesheets/common/da.xml +0 -664
- data/lib/stylesheets/common/de.xml +0 -666
- data/lib/stylesheets/common/el.xml +0 -729
- data/lib/stylesheets/common/en.xml +0 -1230
- data/lib/stylesheets/common/entities.ent +0 -67
- data/lib/stylesheets/common/eo.xml +0 -1229
- data/lib/stylesheets/common/es.xml +0 -676
- data/lib/stylesheets/common/et.xml +0 -1229
- data/lib/stylesheets/common/eu.xml +0 -1229
- data/lib/stylesheets/common/fa.xml +0 -660
- data/lib/stylesheets/common/fi.xml +0 -670
- data/lib/stylesheets/common/fr.xml +0 -690
- data/lib/stylesheets/common/ga.xml +0 -1229
- data/lib/stylesheets/common/gentext.xsl +0 -840
- data/lib/stylesheets/common/gl.xml +0 -1229
- data/lib/stylesheets/common/gu.xml +0 -660
- data/lib/stylesheets/common/he.xml +0 -1229
- data/lib/stylesheets/common/hi.xml +0 -660
- data/lib/stylesheets/common/hr.xml +0 -662
- data/lib/stylesheets/common/hu.xml +0 -678
- data/lib/stylesheets/common/id.xml +0 -1229
- data/lib/stylesheets/common/insertfile.xsl +0 -113
- data/lib/stylesheets/common/is.xml +0 -672
- data/lib/stylesheets/common/it.xml +0 -1229
- data/lib/stylesheets/common/ja.xml +0 -660
- data/lib/stylesheets/common/ka.xml +0 -700
- data/lib/stylesheets/common/kn.xml +0 -1229
- data/lib/stylesheets/common/ko.xml +0 -1229
- data/lib/stylesheets/common/ky.xml +0 -732
- data/lib/stylesheets/common/l10n.dtd +0 -64
- data/lib/stylesheets/common/l10n.xml +0 -77
- data/lib/stylesheets/common/l10n.xsl +0 -594
- data/lib/stylesheets/common/la.xml +0 -1229
- data/lib/stylesheets/common/labels.xsl +0 -888
- data/lib/stylesheets/common/lt.xml +0 -678
- data/lib/stylesheets/common/lv.xml +0 -1229
- data/lib/stylesheets/common/ml.xml +0 -660
- data/lib/stylesheets/common/mn.xml +0 -730
- data/lib/stylesheets/common/mr.xml +0 -660
- data/lib/stylesheets/common/nb.xml +0 -1229
- data/lib/stylesheets/common/nds.xml +0 -666
- data/lib/stylesheets/common/nl.xml +0 -660
- data/lib/stylesheets/common/nn.xml +0 -1229
- data/lib/stylesheets/common/olink.xsl +0 -1227
- data/lib/stylesheets/common/or.xml +0 -1229
- data/lib/stylesheets/common/pa.xml +0 -660
- data/lib/stylesheets/common/pi.xml +0 -168
- data/lib/stylesheets/common/pi.xsl +0 -347
- data/lib/stylesheets/common/pl.xml +0 -678
- data/lib/stylesheets/common/pt.xml +0 -1229
- data/lib/stylesheets/common/pt_br.xml +0 -1229
- data/lib/stylesheets/common/refentry.xml +0 -781
- data/lib/stylesheets/common/refentry.xsl +0 -1353
- data/lib/stylesheets/common/ro.xml +0 -1229
- data/lib/stylesheets/common/ru.xml +0 -726
- data/lib/stylesheets/common/sk.xml +0 -1229
- data/lib/stylesheets/common/sl.xml +0 -1229
- data/lib/stylesheets/common/sq.xml +0 -1229
- data/lib/stylesheets/common/sr.xml +0 -720
- data/lib/stylesheets/common/sr_Latn.xml +0 -679
- data/lib/stylesheets/common/subtitles.xsl +0 -156
- data/lib/stylesheets/common/sv.xml +0 -664
- data/lib/stylesheets/common/ta.xml +0 -660
- data/lib/stylesheets/common/table.xsl +0 -515
- data/lib/stylesheets/common/targetdatabase.dtd +0 -49
- data/lib/stylesheets/common/targets.xsl +0 -334
- data/lib/stylesheets/common/te.xml +0 -660
- data/lib/stylesheets/common/th.xml +0 -1229
- data/lib/stylesheets/common/titles.xsl +0 -806
- data/lib/stylesheets/common/tl.xml +0 -1229
- data/lib/stylesheets/common/tr.xml +0 -666
- data/lib/stylesheets/common/uk.xml +0 -726
- data/lib/stylesheets/common/utility.xml +0 -259
- data/lib/stylesheets/common/utility.xsl +0 -291
- data/lib/stylesheets/common/vi.xml +0 -1229
- data/lib/stylesheets/common/xh.xml +0 -1229
- data/lib/stylesheets/common/zh.xml +0 -660
- data/lib/stylesheets/common/zh_cn.xml +0 -660
- data/lib/stylesheets/common/zh_tw.xml +0 -660
- data/lib/stylesheets/docsrc/authors.xml +0 -10
- data/lib/stylesheets/docsrc/copyright.xml +0 -18
- data/lib/stylesheets/docsrc/license.xml +0 -23
- data/lib/stylesheets/docsrc/page.png +0 -0
- data/lib/stylesheets/docsrc/reference.css +0 -79
- data/lib/stylesheets/docsrc/reference.xml +0 -229
- data/lib/stylesheets/docsrc/reference.xml.included +0 -33905
- data/lib/stylesheets/docsrc/warranty.xml +0 -11
- data/lib/stylesheets/eclipse/eclipse.xsl +0 -294
- data/lib/stylesheets/eclipse/eclipse3.xsl +0 -112
- data/lib/stylesheets/eclipse/profile-eclipse.xsl +0 -268
- data/lib/stylesheets/epub/README +0 -88
- data/lib/stylesheets/epub/bin/dbtoepub +0 -76
- data/lib/stylesheets/epub/bin/lib/docbook.rb +0 -227
- data/lib/stylesheets/epub/bin/xslt/obfuscate.xsl +0 -14
- data/lib/stylesheets/epub/docbook.xsl +0 -1678
- data/lib/stylesheets/extensions/LICENSE.txt +0 -264
- data/lib/stylesheets/extensions/NOTICE.txt +0 -12
- data/lib/stylesheets/extensions/README.LIBXSLT +0 -52
- data/lib/stylesheets/extensions/README.txt +0 -4
- data/lib/stylesheets/extensions/docbook.py +0 -239
- data/lib/stylesheets/extensions/lucene-analyzers-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/lucene-core-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/saxon65.jar +0 -0
- data/lib/stylesheets/extensions/webhelpindexer.jar +0 -0
- data/lib/stylesheets/extensions/xalan27.jar +0 -0
- data/lib/stylesheets/extensions/xslt.py +0 -84
- data/lib/stylesheets/fo/admon.xsl +0 -132
- data/lib/stylesheets/fo/annotations.xsl +0 -20
- data/lib/stylesheets/fo/autoidx-kimber.xsl +0 -173
- data/lib/stylesheets/fo/autoidx-kosek.xsl +0 -140
- data/lib/stylesheets/fo/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/fo/autoidx.xsl +0 -1331
- data/lib/stylesheets/fo/autotoc.xsl +0 -917
- data/lib/stylesheets/fo/axf.xsl +0 -112
- data/lib/stylesheets/fo/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/fo/biblio.xsl +0 -1171
- data/lib/stylesheets/fo/block.xsl +0 -656
- data/lib/stylesheets/fo/callout.xsl +0 -232
- data/lib/stylesheets/fo/component.xsl +0 -900
- data/lib/stylesheets/fo/division.xsl +0 -614
- data/lib/stylesheets/fo/docbook.xsl +0 -333
- data/lib/stylesheets/fo/ebnf.xsl +0 -326
- data/lib/stylesheets/fo/fo-rtf.xsl +0 -155
- data/lib/stylesheets/fo/fo.xsl +0 -120
- data/lib/stylesheets/fo/footnote.xsl +0 -221
- data/lib/stylesheets/fo/fop.xsl +0 -95
- data/lib/stylesheets/fo/fop1.xsl +0 -225
- data/lib/stylesheets/fo/formal.xsl +0 -644
- data/lib/stylesheets/fo/glossary.xsl +0 -1170
- data/lib/stylesheets/fo/graphics.xsl +0 -649
- data/lib/stylesheets/fo/highlight.xsl +0 -78
- data/lib/stylesheets/fo/htmltbl.xsl +0 -427
- data/lib/stylesheets/fo/index.xsl +0 -486
- data/lib/stylesheets/fo/info.xsl +0 -36
- data/lib/stylesheets/fo/inline.xsl +0 -1289
- data/lib/stylesheets/fo/keywords.xsl +0 -23
- data/lib/stylesheets/fo/lists.xsl +0 -1395
- data/lib/stylesheets/fo/math.xsl +0 -141
- data/lib/stylesheets/fo/pagesetup.xsl +0 -2571
- data/lib/stylesheets/fo/param.xml +0 -12445
- data/lib/stylesheets/fo/param.xsl +0 -969
- data/lib/stylesheets/fo/passivetex.xsl +0 -38
- data/lib/stylesheets/fo/pdf2index +0 -140
- data/lib/stylesheets/fo/pi.xml +0 -1002
- data/lib/stylesheets/fo/pi.xsl +0 -1093
- data/lib/stylesheets/fo/profile-docbook.xsl +0 -288
- data/lib/stylesheets/fo/ptc.xsl +0 -79
- data/lib/stylesheets/fo/qandaset.xsl +0 -397
- data/lib/stylesheets/fo/refentry.xsl +0 -640
- data/lib/stylesheets/fo/sections.xsl +0 -766
- data/lib/stylesheets/fo/spaces.xsl +0 -276
- data/lib/stylesheets/fo/synop.xsl +0 -1009
- data/lib/stylesheets/fo/table.xml +0 -135
- data/lib/stylesheets/fo/table.xsl +0 -1682
- data/lib/stylesheets/fo/task.xsl +0 -93
- data/lib/stylesheets/fo/titlepage.templates.xml +0 -1354
- data/lib/stylesheets/fo/titlepage.templates.xsl +0 -5186
- data/lib/stylesheets/fo/titlepage.xsl +0 -769
- data/lib/stylesheets/fo/toc.xsl +0 -334
- data/lib/stylesheets/fo/verbatim.xsl +0 -466
- data/lib/stylesheets/fo/xep.xsl +0 -182
- data/lib/stylesheets/fo/xref.xsl +0 -1539
- data/lib/stylesheets/highlighting/README +0 -16
- data/lib/stylesheets/highlighting/c-hl.xml +0 -101
- data/lib/stylesheets/highlighting/common.xsl +0 -121
- data/lib/stylesheets/highlighting/cpp-hl.xml +0 -150
- data/lib/stylesheets/highlighting/csharp-hl.xml +0 -187
- data/lib/stylesheets/highlighting/delphi-hl.xml +0 -200
- data/lib/stylesheets/highlighting/ini-hl.xml +0 -45
- data/lib/stylesheets/highlighting/java-hl.xml +0 -117
- data/lib/stylesheets/highlighting/javascript-hl.xml +0 -147
- data/lib/stylesheets/highlighting/m2-hl.xml +0 -90
- data/lib/stylesheets/highlighting/myxml-hl.xml +0 -116
- data/lib/stylesheets/highlighting/perl-hl.xml +0 -120
- data/lib/stylesheets/highlighting/php-hl.xml +0 -149
- data/lib/stylesheets/highlighting/python-hl.xml +0 -100
- data/lib/stylesheets/highlighting/ruby-hl.xml +0 -109
- data/lib/stylesheets/highlighting/tcl-hl.xml +0 -180
- data/lib/stylesheets/highlighting/xslthl-config.xml +0 -46
- data/lib/stylesheets/html/admon.xsl +0 -136
- data/lib/stylesheets/html/annotations.xsl +0 -171
- data/lib/stylesheets/html/autoidx-kimber.xsl +0 -166
- data/lib/stylesheets/html/autoidx-kosek.xsl +0 -121
- data/lib/stylesheets/html/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/html/autoidx.xsl +0 -740
- data/lib/stylesheets/html/autotoc.xsl +0 -709
- data/lib/stylesheets/html/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/html/biblio.xsl +0 -1255
- data/lib/stylesheets/html/block.xsl +0 -540
- data/lib/stylesheets/html/callout.xsl +0 -202
- data/lib/stylesheets/html/changebars.xsl +0 -123
- data/lib/stylesheets/html/chunk-changebars.xsl +0 -100
- data/lib/stylesheets/html/chunk-code.xsl +0 -672
- data/lib/stylesheets/html/chunk-common.xsl +0 -1921
- data/lib/stylesheets/html/chunk.xsl +0 -53
- data/lib/stylesheets/html/chunker.xsl +0 -440
- data/lib/stylesheets/html/chunkfast.xsl +0 -73
- data/lib/stylesheets/html/chunktoc.xsl +0 -541
- data/lib/stylesheets/html/component.xsl +0 -427
- data/lib/stylesheets/html/division.xsl +0 -219
- data/lib/stylesheets/html/docbook.css.xml +0 -109
- data/lib/stylesheets/html/docbook.xsl +0 -468
- data/lib/stylesheets/html/ebnf.xsl +0 -330
- data/lib/stylesheets/html/footnote.xsl +0 -314
- data/lib/stylesheets/html/formal.xsl +0 -427
- data/lib/stylesheets/html/glossary.xsl +0 -493
- data/lib/stylesheets/html/graphics.xsl +0 -1516
- data/lib/stylesheets/html/highlight.xsl +0 -87
- data/lib/stylesheets/html/html-rtf.xsl +0 -336
- data/lib/stylesheets/html/html.xsl +0 -614
- data/lib/stylesheets/html/htmltbl.xsl +0 -137
- data/lib/stylesheets/html/index.xsl +0 -290
- data/lib/stylesheets/html/info.xsl +0 -45
- data/lib/stylesheets/html/inline.xsl +0 -1491
- data/lib/stylesheets/html/keywords.xsl +0 -37
- data/lib/stylesheets/html/lists.xsl +0 -1185
- data/lib/stylesheets/html/maketoc.xsl +0 -87
- data/lib/stylesheets/html/manifest.xsl +0 -23
- data/lib/stylesheets/html/math.xsl +0 -271
- data/lib/stylesheets/html/oldchunker.xsl +0 -203
- data/lib/stylesheets/html/onechunk.xsl +0 -38
- data/lib/stylesheets/html/param.xml +0 -10905
- data/lib/stylesheets/html/param.xsl +0 -436
- data/lib/stylesheets/html/pi.xml +0 -1113
- data/lib/stylesheets/html/pi.xsl +0 -1264
- data/lib/stylesheets/html/profile-chunk-code.xsl +0 -614
- data/lib/stylesheets/html/profile-chunk.xsl +0 -53
- data/lib/stylesheets/html/profile-docbook.xsl +0 -412
- data/lib/stylesheets/html/profile-onechunk.xsl +0 -38
- data/lib/stylesheets/html/qandaset.xsl +0 -438
- data/lib/stylesheets/html/refentry.xsl +0 -301
- data/lib/stylesheets/html/sections.xsl +0 -617
- data/lib/stylesheets/html/synop.xsl +0 -1556
- data/lib/stylesheets/html/table.xsl +0 -1201
- data/lib/stylesheets/html/task.xsl +0 -78
- data/lib/stylesheets/html/titlepage.templates.xml +0 -708
- data/lib/stylesheets/html/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/html/titlepage.xsl +0 -1049
- data/lib/stylesheets/html/toc.xsl +0 -352
- data/lib/stylesheets/html/verbatim.xsl +0 -411
- data/lib/stylesheets/html/xref.xsl +0 -1378
- data/lib/stylesheets/htmlhelp/htmlhelp-common.xsl +0 -1108
- data/lib/stylesheets/htmlhelp/htmlhelp.xsl +0 -23
- data/lib/stylesheets/htmlhelp/profile-htmlhelp-common.xsl +0 -1082
- data/lib/stylesheets/htmlhelp/profile-htmlhelp.xsl +0 -23
- data/lib/stylesheets/images/annot-close.png +0 -0
- data/lib/stylesheets/images/annot-open.png +0 -0
- data/lib/stylesheets/images/blank.png +0 -0
- data/lib/stylesheets/images/callouts/1.gif +0 -0
- data/lib/stylesheets/images/callouts/1.png +0 -0
- data/lib/stylesheets/images/callouts/1.svg +0 -15
- data/lib/stylesheets/images/callouts/10.gif +0 -0
- data/lib/stylesheets/images/callouts/10.png +0 -0
- data/lib/stylesheets/images/callouts/10.svg +0 -18
- data/lib/stylesheets/images/callouts/11.gif +0 -0
- data/lib/stylesheets/images/callouts/11.png +0 -0
- data/lib/stylesheets/images/callouts/11.svg +0 -16
- data/lib/stylesheets/images/callouts/12.gif +0 -0
- data/lib/stylesheets/images/callouts/12.png +0 -0
- data/lib/stylesheets/images/callouts/12.svg +0 -18
- data/lib/stylesheets/images/callouts/13.gif +0 -0
- data/lib/stylesheets/images/callouts/13.png +0 -0
- data/lib/stylesheets/images/callouts/13.svg +0 -20
- data/lib/stylesheets/images/callouts/14.gif +0 -0
- data/lib/stylesheets/images/callouts/14.png +0 -0
- data/lib/stylesheets/images/callouts/14.svg +0 -17
- data/lib/stylesheets/images/callouts/15.gif +0 -0
- data/lib/stylesheets/images/callouts/15.png +0 -0
- data/lib/stylesheets/images/callouts/15.svg +0 -19
- data/lib/stylesheets/images/callouts/16.svg +0 -20
- data/lib/stylesheets/images/callouts/17.svg +0 -17
- data/lib/stylesheets/images/callouts/18.svg +0 -21
- data/lib/stylesheets/images/callouts/19.svg +0 -20
- data/lib/stylesheets/images/callouts/2.gif +0 -0
- data/lib/stylesheets/images/callouts/2.png +0 -0
- data/lib/stylesheets/images/callouts/2.svg +0 -17
- data/lib/stylesheets/images/callouts/20.svg +0 -20
- data/lib/stylesheets/images/callouts/21.svg +0 -18
- data/lib/stylesheets/images/callouts/22.svg +0 -20
- data/lib/stylesheets/images/callouts/23.svg +0 -22
- data/lib/stylesheets/images/callouts/24.svg +0 -19
- data/lib/stylesheets/images/callouts/25.svg +0 -21
- data/lib/stylesheets/images/callouts/26.svg +0 -22
- data/lib/stylesheets/images/callouts/27.svg +0 -19
- data/lib/stylesheets/images/callouts/28.svg +0 -23
- data/lib/stylesheets/images/callouts/29.svg +0 -22
- data/lib/stylesheets/images/callouts/3.gif +0 -0
- data/lib/stylesheets/images/callouts/3.png +0 -0
- data/lib/stylesheets/images/callouts/3.svg +0 -19
- data/lib/stylesheets/images/callouts/30.svg +0 -22
- data/lib/stylesheets/images/callouts/4.gif +0 -0
- data/lib/stylesheets/images/callouts/4.png +0 -0
- data/lib/stylesheets/images/callouts/4.svg +0 -16
- data/lib/stylesheets/images/callouts/5.gif +0 -0
- data/lib/stylesheets/images/callouts/5.png +0 -0
- data/lib/stylesheets/images/callouts/5.svg +0 -18
- data/lib/stylesheets/images/callouts/6.gif +0 -0
- data/lib/stylesheets/images/callouts/6.png +0 -0
- data/lib/stylesheets/images/callouts/6.svg +0 -19
- data/lib/stylesheets/images/callouts/7.gif +0 -0
- data/lib/stylesheets/images/callouts/7.png +0 -0
- data/lib/stylesheets/images/callouts/7.svg +0 -16
- data/lib/stylesheets/images/callouts/8.gif +0 -0
- data/lib/stylesheets/images/callouts/8.png +0 -0
- data/lib/stylesheets/images/callouts/8.svg +0 -20
- data/lib/stylesheets/images/callouts/9.gif +0 -0
- data/lib/stylesheets/images/callouts/9.png +0 -0
- data/lib/stylesheets/images/callouts/9.svg +0 -19
- data/lib/stylesheets/images/caution.gif +0 -0
- data/lib/stylesheets/images/caution.png +0 -0
- data/lib/stylesheets/images/caution.svg +0 -25
- data/lib/stylesheets/images/caution.tif +0 -0
- data/lib/stylesheets/images/colorsvg/caution.svg +0 -141
- data/lib/stylesheets/images/colorsvg/home.svg +0 -498
- data/lib/stylesheets/images/colorsvg/important.svg +0 -239
- data/lib/stylesheets/images/colorsvg/next.svg +0 -338
- data/lib/stylesheets/images/colorsvg/note.svg +0 -200
- data/lib/stylesheets/images/colorsvg/prev.svg +0 -338
- data/lib/stylesheets/images/colorsvg/tip.svg +0 -367
- data/lib/stylesheets/images/colorsvg/up.svg +0 -338
- data/lib/stylesheets/images/colorsvg/warning.svg +0 -232
- data/lib/stylesheets/images/draft.png +0 -0
- data/lib/stylesheets/images/home.gif +0 -0
- data/lib/stylesheets/images/home.png +0 -0
- data/lib/stylesheets/images/home.svg +0 -26
- data/lib/stylesheets/images/important.gif +0 -0
- data/lib/stylesheets/images/important.png +0 -0
- data/lib/stylesheets/images/important.svg +0 -25
- data/lib/stylesheets/images/important.tif +0 -0
- data/lib/stylesheets/images/next.gif +0 -0
- data/lib/stylesheets/images/next.png +0 -0
- data/lib/stylesheets/images/next.svg +0 -19
- data/lib/stylesheets/images/note.gif +0 -0
- data/lib/stylesheets/images/note.png +0 -0
- data/lib/stylesheets/images/note.svg +0 -33
- data/lib/stylesheets/images/note.tif +0 -0
- data/lib/stylesheets/images/prev.gif +0 -0
- data/lib/stylesheets/images/prev.png +0 -0
- data/lib/stylesheets/images/prev.svg +0 -19
- data/lib/stylesheets/images/tip.gif +0 -0
- data/lib/stylesheets/images/tip.png +0 -0
- data/lib/stylesheets/images/tip.svg +0 -31
- data/lib/stylesheets/images/tip.tif +0 -0
- data/lib/stylesheets/images/toc-blank.png +0 -0
- data/lib/stylesheets/images/toc-minus.png +0 -0
- data/lib/stylesheets/images/toc-plus.png +0 -0
- data/lib/stylesheets/images/up.gif +0 -0
- data/lib/stylesheets/images/up.png +0 -0
- data/lib/stylesheets/images/up.svg +0 -19
- data/lib/stylesheets/images/warning.gif +0 -0
- data/lib/stylesheets/images/warning.png +0 -0
- data/lib/stylesheets/images/warning.svg +0 -23
- data/lib/stylesheets/images/warning.tif +0 -0
- data/lib/stylesheets/install.sh +0 -977
- data/lib/stylesheets/javahelp/javahelp.xsl +0 -613
- data/lib/stylesheets/javahelp/profile-javahelp.xsl +0 -548
- data/lib/stylesheets/lib/lib.xsl +0 -482
- data/lib/stylesheets/manpages/ChangeLog.20020917 +0 -195
- data/lib/stylesheets/manpages/block.xsl +0 -412
- data/lib/stylesheets/manpages/charmap.groff.xsl +0 -6014
- data/lib/stylesheets/manpages/docbook.xsl +0 -302
- data/lib/stylesheets/manpages/endnotes.xsl +0 -587
- data/lib/stylesheets/manpages/html-synop.xsl +0 -1569
- data/lib/stylesheets/manpages/info.xsl +0 -801
- data/lib/stylesheets/manpages/inline.xsl +0 -221
- data/lib/stylesheets/manpages/lists.xsl +0 -606
- data/lib/stylesheets/manpages/other.xsl +0 -889
- data/lib/stylesheets/manpages/param.xml +0 -3220
- data/lib/stylesheets/manpages/param.xsl +0 -195
- data/lib/stylesheets/manpages/pi.xml +0 -70
- data/lib/stylesheets/manpages/pi.xsl +0 -80
- data/lib/stylesheets/manpages/profile-docbook.xsl +0 -282
- data/lib/stylesheets/manpages/refentry.xsl +0 -321
- data/lib/stylesheets/manpages/synop.xsl +0 -433
- data/lib/stylesheets/manpages/table.xsl +0 -633
- data/lib/stylesheets/manpages/utility.xsl +0 -556
- data/lib/stylesheets/params/abstract.notitle.enabled.xml +0 -22
- data/lib/stylesheets/params/abstract.properties.xml +0 -32
- data/lib/stylesheets/params/abstract.title.properties.xml +0 -39
- data/lib/stylesheets/params/active.toc.xml +0 -29
- data/lib/stylesheets/params/ade.extensions.xml +0 -32
- data/lib/stylesheets/params/admon.graphics.extension.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.path.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.xml +0 -29
- data/lib/stylesheets/params/admon.style.xml +0 -31
- data/lib/stylesheets/params/admon.textlabel.xml +0 -32
- data/lib/stylesheets/params/admonition.properties.xml +0 -25
- data/lib/stylesheets/params/admonition.title.properties.xml +0 -32
- data/lib/stylesheets/params/alignment.xml +0 -41
- data/lib/stylesheets/params/annotate.toc.xml +0 -28
- data/lib/stylesheets/params/annotation.css.xml +0 -71
- data/lib/stylesheets/params/annotation.graphic.close.xml +0 -31
- data/lib/stylesheets/params/annotation.graphic.open.xml +0 -28
- data/lib/stylesheets/params/annotation.js.xml +0 -33
- data/lib/stylesheets/params/annotation.support.xml +0 -29
- data/lib/stylesheets/params/appendix.autolabel.xml +0 -73
- data/lib/stylesheets/params/arbortext.extensions.xml +0 -30
- data/lib/stylesheets/params/article.appendix.title.properties.xml +0 -33
- data/lib/stylesheets/params/author.othername.in.middle.xml +0 -31
- data/lib/stylesheets/params/autolayout-file.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.in.hyperlink.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.separator.xml +0 -27
- data/lib/stylesheets/params/axf.extensions.xml +0 -33
- data/lib/stylesheets/params/banner.before.navigation.xml +0 -25
- data/lib/stylesheets/params/base.dir.xml +0 -29
- data/lib/stylesheets/params/biblioentry.item.separator.xml +0 -26
- data/lib/stylesheets/params/biblioentry.properties.xml +0 -28
- data/lib/stylesheets/params/bibliography.collection.xml +0 -104
- data/lib/stylesheets/params/bibliography.numbered.xml +0 -27
- data/lib/stylesheets/params/bibliography.style.xml +0 -35
- data/lib/stylesheets/params/blockquote.properties.xml +0 -34
- data/lib/stylesheets/params/blurb.on.titlepage.enabled.xml +0 -31
- data/lib/stylesheets/params/body.attributes.xml +0 -31
- data/lib/stylesheets/params/body.bg.color.xml +0 -28
- data/lib/stylesheets/params/body.end.indent.xml +0 -37
- data/lib/stylesheets/params/body.font.family.xml +0 -32
- data/lib/stylesheets/params/body.font.master.xml +0 -30
- data/lib/stylesheets/params/body.font.size.xml +0 -31
- data/lib/stylesheets/params/body.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/body.margin.top.xml +0 -28
- data/lib/stylesheets/params/body.start.indent.xml +0 -64
- data/lib/stylesheets/params/bookmarks.collapse.xml +0 -31
- data/lib/stylesheets/params/bridgehead.in.toc.xml +0 -28
- data/lib/stylesheets/params/bullet.image.xml +0 -28
- data/lib/stylesheets/params/callout.defaultcolumn.xml +0 -30
- data/lib/stylesheets/params/callout.graphics.extension.xml +0 -33
- data/lib/stylesheets/params/callout.graphics.number.limit.xml +0 -34
- data/lib/stylesheets/params/callout.graphics.path.xml +0 -31
- data/lib/stylesheets/params/callout.graphics.xml +0 -30
- data/lib/stylesheets/params/callout.icon.size.xml +0 -28
- data/lib/stylesheets/params/callout.list.table.xml +0 -32
- data/lib/stylesheets/params/callout.unicode.font.xml +0 -29
- data/lib/stylesheets/params/callout.unicode.number.limit.xml +0 -35
- data/lib/stylesheets/params/callout.unicode.start.character.xml +0 -33
- data/lib/stylesheets/params/callout.unicode.xml +0 -26
- data/lib/stylesheets/params/callouts.extension.xml +0 -30
- data/lib/stylesheets/params/chapter.autolabel.xml +0 -71
- data/lib/stylesheets/params/chunk.append.xml +0 -30
- data/lib/stylesheets/params/chunk.first.sections.xml +0 -31
- data/lib/stylesheets/params/chunk.quietly.xml +0 -30
- data/lib/stylesheets/params/chunk.section.depth.xml +0 -27
- data/lib/stylesheets/params/chunk.sections.xml +0 -30
- data/lib/stylesheets/params/chunk.separate.lots.xml +0 -36
- data/lib/stylesheets/params/chunk.toc.xml +0 -30
- data/lib/stylesheets/params/chunk.tocs.and.lots.has.title.xml +0 -28
- data/lib/stylesheets/params/chunk.tocs.and.lots.xml +0 -32
- data/lib/stylesheets/params/chunker.output.cdata-section-elements.xml +0 -30
- data/lib/stylesheets/params/chunker.output.doctype-public.xml +0 -31
- data/lib/stylesheets/params/chunker.output.doctype-system.xml +0 -31
- data/lib/stylesheets/params/chunker.output.encoding.xml +0 -31
- data/lib/stylesheets/params/chunker.output.indent.xml +0 -30
- data/lib/stylesheets/params/chunker.output.media-type.xml +0 -35
- data/lib/stylesheets/params/chunker.output.method.xml +0 -32
- data/lib/stylesheets/params/chunker.output.omit-xml-declaration.xml +0 -30
- data/lib/stylesheets/params/chunker.output.standalone.xml +0 -31
- data/lib/stylesheets/params/citerefentry.link.xml +0 -29
- data/lib/stylesheets/params/collect.xref.targets.xml +0 -33
- data/lib/stylesheets/params/column.count.back.xml +0 -27
- data/lib/stylesheets/params/column.count.body.xml +0 -27
- data/lib/stylesheets/params/column.count.front.xml +0 -27
- data/lib/stylesheets/params/column.count.index.xml +0 -27
- data/lib/stylesheets/params/column.count.lot.xml +0 -28
- data/lib/stylesheets/params/column.count.titlepage.xml +0 -27
- data/lib/stylesheets/params/column.gap.back.xml +0 -28
- data/lib/stylesheets/params/column.gap.body.xml +0 -28
- data/lib/stylesheets/params/column.gap.front.xml +0 -28
- data/lib/stylesheets/params/column.gap.index.xml +0 -28
- data/lib/stylesheets/params/column.gap.lot.xml +0 -28
- data/lib/stylesheets/params/column.gap.titlepage.xml +0 -29
- data/lib/stylesheets/params/compact.list.item.spacing.xml +0 -28
- data/lib/stylesheets/params/component.label.includes.part.label.xml +0 -39
- data/lib/stylesheets/params/component.title.properties.xml +0 -40
- data/lib/stylesheets/params/component.titlepage.properties.xml +0 -33
- data/lib/stylesheets/params/contrib.inline.enabled.xml +0 -26
- data/lib/stylesheets/params/crop.mark.bleed.xml +0 -28
- data/lib/stylesheets/params/crop.mark.offset.xml +0 -28
- data/lib/stylesheets/params/crop.mark.width.xml +0 -28
- data/lib/stylesheets/params/crop.marks.xml +0 -28
- data/lib/stylesheets/params/css.decoration.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.dir.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.xml +0 -29
- data/lib/stylesheets/params/current.docid.xml +0 -27
- data/lib/stylesheets/params/currentpage.marker.xml +0 -25
- data/lib/stylesheets/params/custom.css.source.xml +0 -119
- data/lib/stylesheets/params/default.float.class.xml +0 -34
- data/lib/stylesheets/params/default.image.width.xml +0 -30
- data/lib/stylesheets/params/default.table.frame.xml +0 -28
- data/lib/stylesheets/params/default.table.rules.xml +0 -76
- data/lib/stylesheets/params/default.table.width.xml +0 -26
- data/lib/stylesheets/params/default.units.xml +0 -37
- data/lib/stylesheets/params/dingbat.font.family.xml +0 -33
- data/lib/stylesheets/params/docbook.css.link.xml +0 -42
- data/lib/stylesheets/params/docbook.css.source.xml +0 -83
- data/lib/stylesheets/params/double.sided.xml +0 -31
- data/lib/stylesheets/params/draft.mode.xml +0 -36
- data/lib/stylesheets/params/draft.watermark.image.xml +0 -27
- data/lib/stylesheets/params/dry-run.xml +0 -27
- data/lib/stylesheets/params/dynamic.toc.xml +0 -29
- data/lib/stylesheets/params/ebnf.assignment.xml +0 -39
- data/lib/stylesheets/params/ebnf.statement.terminator.xml +0 -32
- data/lib/stylesheets/params/ebnf.table.bgcolor.xml +0 -30
- data/lib/stylesheets/params/ebnf.table.border.xml +0 -26
- data/lib/stylesheets/params/eclipse.autolabel.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.id.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.name.xml +0 -27
- data/lib/stylesheets/params/eclipse.plugin.provider.xml +0 -27
- data/lib/stylesheets/params/editedby.enabled.xml +0 -27
- data/lib/stylesheets/params/email.delimiters.enabled.xml +0 -34
- data/lib/stylesheets/params/email.mailto.enabled.xml +0 -29
- data/lib/stylesheets/params/emphasis.propagates.style.xml +0 -26
- data/lib/stylesheets/params/entry.propagates.style.xml +0 -30
- data/lib/stylesheets/params/epub.autolabel.xml +0 -28
- data/lib/stylesheets/params/equation.number.properties.xml +0 -28
- data/lib/stylesheets/params/equation.properties.xml +0 -27
- data/lib/stylesheets/params/example.properties.xml +0 -27
- data/lib/stylesheets/params/exsl.node.set.available.xml +0 -44
- data/lib/stylesheets/params/feedback.href.xml +0 -28
- data/lib/stylesheets/params/feedback.link.text.xml +0 -28
- data/lib/stylesheets/params/feedback.with.ids.xml +0 -27
- data/lib/stylesheets/params/figure.properties.xml +0 -27
- data/lib/stylesheets/params/filename-prefix.xml +0 -28
- data/lib/stylesheets/params/firstterm.only.link.xml +0 -29
- data/lib/stylesheets/params/foil.properties.xml +0 -37
- data/lib/stylesheets/params/foil.subtitle.properties.xml +0 -36
- data/lib/stylesheets/params/foil.title.master.xml +0 -29
- data/lib/stylesheets/params/foil.title.size.xml +0 -32
- data/lib/stylesheets/params/foilgroup.properties.xml +0 -31
- data/lib/stylesheets/params/foilgroup.toc.xml +0 -29
- data/lib/stylesheets/params/footer.column.widths.xml +0 -80
- data/lib/stylesheets/params/footer.content.properties.xml +0 -34
- data/lib/stylesheets/params/footer.hr.xml +0 -26
- data/lib/stylesheets/params/footer.rule.xml +0 -27
- data/lib/stylesheets/params/footer.table.height.xml +0 -32
- data/lib/stylesheets/params/footer.table.properties.xml +0 -30
- data/lib/stylesheets/params/footers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/footnote.font.size.xml +0 -28
- data/lib/stylesheets/params/footnote.mark.properties.xml +0 -41
- data/lib/stylesheets/params/footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/footnote.properties.xml +0 -43
- data/lib/stylesheets/params/footnote.sep.leader.properties.xml +0 -39
- data/lib/stylesheets/params/fop.extensions.xml +0 -36
- data/lib/stylesheets/params/fop1.extensions.xml +0 -34
- data/lib/stylesheets/params/formal.object.properties.xml +0 -36
- data/lib/stylesheets/params/formal.procedures.xml +0 -28
- data/lib/stylesheets/params/formal.title.placement.xml +0 -41
- data/lib/stylesheets/params/formal.title.properties.xml +0 -34
- data/lib/stylesheets/params/funcsynopsis.decoration.xml +0 -30
- data/lib/stylesheets/params/funcsynopsis.style.xml +0 -31
- data/lib/stylesheets/params/function.parens.xml +0 -29
- data/lib/stylesheets/params/generate.css.header.xml +0 -40
- data/lib/stylesheets/params/generate.id.attributes.xml +0 -59
- data/lib/stylesheets/params/generate.index.xml +0 -25
- data/lib/stylesheets/params/generate.legalnotice.link.xml +0 -72
- data/lib/stylesheets/params/generate.manifest.xml +0 -27
- data/lib/stylesheets/params/generate.meta.abstract.xml +0 -29
- data/lib/stylesheets/params/generate.revhistory.link.xml +0 -50
- data/lib/stylesheets/params/generate.section.toc.level.xml +0 -35
- data/lib/stylesheets/params/generate.toc.xml +0 -108
- data/lib/stylesheets/params/glossary.as.blocks.xml +0 -38
- data/lib/stylesheets/params/glossary.collection.xml +0 -252
- data/lib/stylesheets/params/glossary.sort.xml +0 -32
- data/lib/stylesheets/params/glossdef.block.properties.xml +0 -32
- data/lib/stylesheets/params/glossdef.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossentry.list.item.properties.xml +0 -32
- data/lib/stylesheets/params/glossentry.show.acronym.xml +0 -37
- data/lib/stylesheets/params/glosslist.as.blocks.xml +0 -27
- data/lib/stylesheets/params/glossterm.auto.link.xml +0 -33
- data/lib/stylesheets/params/glossterm.block.properties.xml +0 -35
- data/lib/stylesheets/params/glossterm.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossterm.separation.xml +0 -31
- data/lib/stylesheets/params/glossterm.width.xml +0 -28
- data/lib/stylesheets/params/graphic.default.extension.xml +0 -29
- data/lib/stylesheets/params/graphical.admonition.properties.xml +0 -42
- data/lib/stylesheets/params/graphics.dir.xml +0 -33
- data/lib/stylesheets/params/graphicsize.extension.xml +0 -30
- data/lib/stylesheets/params/graphicsize.use.img.src.path.xml +0 -30
- data/lib/stylesheets/params/header.column.widths.xml +0 -80
- data/lib/stylesheets/params/header.content.properties.xml +0 -34
- data/lib/stylesheets/params/header.hr.xml +0 -26
- data/lib/stylesheets/params/header.rule.xml +0 -27
- data/lib/stylesheets/params/header.table.height.xml +0 -32
- data/lib/stylesheets/params/header.table.properties.xml +0 -30
- data/lib/stylesheets/params/headers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/hidetoc.image.xml +0 -29
- data/lib/stylesheets/params/highlight.default.language.xml +0 -27
- data/lib/stylesheets/params/highlight.source.xml +0 -82
- data/lib/stylesheets/params/highlight.xslthl.config.xml +0 -33
- data/lib/stylesheets/params/home.image.xml +0 -27
- data/lib/stylesheets/params/html.append.xml +0 -30
- data/lib/stylesheets/params/html.base.xml +0 -30
- data/lib/stylesheets/params/html.cellpadding.xml +0 -29
- data/lib/stylesheets/params/html.cellspacing.xml +0 -29
- data/lib/stylesheets/params/html.cleanup.xml +0 -34
- data/lib/stylesheets/params/html.ext.xml +0 -29
- data/lib/stylesheets/params/html.extra.head.links.xml +0 -31
- data/lib/stylesheets/params/html.head.legalnotice.link.multiple.xml +0 -44
- data/lib/stylesheets/params/html.head.legalnotice.link.types.xml +0 -75
- data/lib/stylesheets/params/html.longdesc.link.xml +0 -39
- data/lib/stylesheets/params/html.longdesc.xml +0 -28
- data/lib/stylesheets/params/html.stylesheet.type.xml +0 -26
- data/lib/stylesheets/params/html.stylesheet.xml +0 -36
- data/lib/stylesheets/params/htmlhelp.alias.file.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.autolabel.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.back.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.forward.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.hideshow.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.xml +0 -23
- data/lib/stylesheets/params/htmlhelp.button.jump2.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.locate.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.next.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.options.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.prev.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.print.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.refresh.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.stop.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.zoom.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.chm.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.default.topic.xml +0 -37
- data/lib/stylesheets/params/htmlhelp.display.progress.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.encoding.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.enhanced.decompilation.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.enumerate.images.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.force.map.and.alias.xml +0 -26
- data/lib/stylesheets/params/htmlhelp.hhc.binary.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.folders.instead.books.xml +0 -31
- data/lib/stylesheets/params/htmlhelp.hhc.section.depth.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhc.show.root.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.width.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhc.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhk.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhp.tail.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.window.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.windows.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhp.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.map.file.xml +0 -25
- data/lib/stylesheets/params/htmlhelp.only.xml +0 -32
- data/lib/stylesheets/params/htmlhelp.remember.window.position.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.show.advanced.search.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.favorities.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.menu.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.toolbar.text.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.title.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.use.hhk.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.window.geometry.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.characters.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.xml +0 -45
- data/lib/stylesheets/params/hyphenate.xml +0 -29
- data/lib/stylesheets/params/id.warnings.xml +0 -25
- data/lib/stylesheets/params/ignore.image.scaling.xml +0 -28
- data/lib/stylesheets/params/img.src.path.xml +0 -40
- data/lib/stylesheets/params/index.div.title.properties.xml +0 -39
- data/lib/stylesheets/params/index.entry.properties.xml +0 -33
- data/lib/stylesheets/params/index.links.to.section.xml +0 -76
- data/lib/stylesheets/params/index.method.xml +0 -162
- data/lib/stylesheets/params/index.number.separator.xml +0 -54
- data/lib/stylesheets/params/index.on.role.xml +0 -48
- data/lib/stylesheets/params/index.on.type.xml +0 -52
- data/lib/stylesheets/params/index.page.number.properties.xml +0 -31
- data/lib/stylesheets/params/index.prefer.titleabbrev.xml +0 -29
- data/lib/stylesheets/params/index.preferred.page.properties.xml +0 -32
- data/lib/stylesheets/params/index.range.separator.xml +0 -57
- data/lib/stylesheets/params/index.term.separator.xml +0 -54
- data/lib/stylesheets/params/informal.object.properties.xml +0 -29
- data/lib/stylesheets/params/informalequation.properties.xml +0 -27
- data/lib/stylesheets/params/informalexample.properties.xml +0 -27
- data/lib/stylesheets/params/informalfigure.properties.xml +0 -27
- data/lib/stylesheets/params/informaltable.properties.xml +0 -32
- data/lib/stylesheets/params/inherit.keywords.xml +0 -31
- data/lib/stylesheets/params/insert.link.page.number.xml +0 -69
- data/lib/stylesheets/params/insert.olink.page.number.xml +0 -83
- data/lib/stylesheets/params/insert.olink.pdf.frag.xml +0 -68
- data/lib/stylesheets/params/insert.xref.page.number.xml +0 -60
- data/lib/stylesheets/params/itemizedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/itemizedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/itemizedlist.properties.xml +0 -23
- data/lib/stylesheets/params/javahelp.encoding.xml +0 -31
- data/lib/stylesheets/params/keep.relative.image.uris.xml +0 -34
- data/lib/stylesheets/params/keyboard.nav.xml +0 -29
- data/lib/stylesheets/params/l10n.gentext.default.language.xml +0 -30
- data/lib/stylesheets/params/l10n.gentext.language.xml +0 -33
- data/lib/stylesheets/params/l10n.gentext.use.xref.language.xml +0 -53
- data/lib/stylesheets/params/l10n.lang.value.rfc.compliant.xml +0 -57
- data/lib/stylesheets/params/label.from.part.xml +0 -38
- data/lib/stylesheets/params/line-height.xml +0 -27
- data/lib/stylesheets/params/linenumbering.everyNth.xml +0 -29
- data/lib/stylesheets/params/linenumbering.extension.xml +0 -30
- data/lib/stylesheets/params/linenumbering.separator.xml +0 -30
- data/lib/stylesheets/params/linenumbering.width.xml +0 -29
- data/lib/stylesheets/params/link.mailto.url.xml +0 -29
- data/lib/stylesheets/params/list.block.properties.xml +0 -25
- data/lib/stylesheets/params/list.block.spacing.xml +0 -29
- data/lib/stylesheets/params/list.item.spacing.xml +0 -26
- data/lib/stylesheets/params/make.clean.html.xml +0 -51
- data/lib/stylesheets/params/make.graphic.viewport.xml +0 -35
- data/lib/stylesheets/params/make.index.markup.xml +0 -73
- data/lib/stylesheets/params/make.single.year.ranges.xml +0 -28
- data/lib/stylesheets/params/make.valid.html.xml +0 -35
- data/lib/stylesheets/params/make.year.ranges.xml +0 -32
- data/lib/stylesheets/params/man.authors.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.base.url.for.relative.links.xml +0 -76
- data/lib/stylesheets/params/man.break.after.slash.xml +0 -46
- data/lib/stylesheets/params/man.charmap.enabled.xml +0 -55
- data/lib/stylesheets/params/man.charmap.subset.profile.english.xml +0 -80
- data/lib/stylesheets/params/man.charmap.subset.profile.xml +0 -297
- data/lib/stylesheets/params/man.charmap.uri.xml +0 -42
- data/lib/stylesheets/params/man.charmap.use.subset.xml +0 -80
- data/lib/stylesheets/params/man.copyright.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.endnotes.are.numbered.xml +0 -106
- data/lib/stylesheets/params/man.endnotes.list.enabled.xml +0 -105
- data/lib/stylesheets/params/man.endnotes.list.heading.xml +0 -36
- data/lib/stylesheets/params/man.font.funcprototype.xml +0 -30
- data/lib/stylesheets/params/man.font.funcsynopsisinfo.xml +0 -30
- data/lib/stylesheets/params/man.font.links.xml +0 -64
- data/lib/stylesheets/params/man.font.table.headings.xml +0 -30
- data/lib/stylesheets/params/man.font.table.title.xml +0 -30
- data/lib/stylesheets/params/man.funcsynopsis.style.xml +0 -26
- data/lib/stylesheets/params/man.hyphenate.computer.inlines.xml +0 -53
- data/lib/stylesheets/params/man.hyphenate.filenames.xml +0 -47
- data/lib/stylesheets/params/man.hyphenate.urls.xml +0 -46
- data/lib/stylesheets/params/man.hyphenate.xml +0 -59
- data/lib/stylesheets/params/man.indent.blurbs.xml +0 -33
- data/lib/stylesheets/params/man.indent.lists.xml +0 -35
- data/lib/stylesheets/params/man.indent.refsect.xml +0 -70
- data/lib/stylesheets/params/man.indent.verbatims.xml +0 -33
- data/lib/stylesheets/params/man.indent.width.xml +0 -39
- data/lib/stylesheets/params/man.justify.xml +0 -52
- data/lib/stylesheets/params/man.output.base.dir.xml +0 -39
- data/lib/stylesheets/params/man.output.better.ps.enabled.xml +0 -61
- data/lib/stylesheets/params/man.output.encoding.xml +0 -53
- data/lib/stylesheets/params/man.output.in.separate.dir.xml +0 -32
- data/lib/stylesheets/params/man.output.lang.in.name.enabled.xml +0 -50
- data/lib/stylesheets/params/man.output.manifest.enabled.xml +0 -27
- data/lib/stylesheets/params/man.output.manifest.filename.xml +0 -29
- data/lib/stylesheets/params/man.output.quietly.xml +0 -37
- data/lib/stylesheets/params/man.output.subdirs.enabled.xml +0 -40
- data/lib/stylesheets/params/man.segtitle.suppress.xml +0 -28
- data/lib/stylesheets/params/man.string.subst.map.local.post.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.local.pre.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.xml +0 -162
- data/lib/stylesheets/params/man.subheading.divider.enabled.xml +0 -37
- data/lib/stylesheets/params/man.subheading.divider.xml +0 -37
- data/lib/stylesheets/params/man.table.footnotes.divider.xml +0 -29
- data/lib/stylesheets/params/man.th.extra1.suppress.xml +0 -32
- data/lib/stylesheets/params/man.th.extra2.max.length.xml +0 -43
- data/lib/stylesheets/params/man.th.extra2.suppress.xml +0 -44
- data/lib/stylesheets/params/man.th.extra3.max.length.xml +0 -42
- data/lib/stylesheets/params/man.th.extra3.suppress.xml +0 -34
- data/lib/stylesheets/params/man.th.title.max.length.xml +0 -63
- data/lib/stylesheets/params/manifest.in.base.dir.xml +0 -29
- data/lib/stylesheets/params/manifest.xml +0 -29
- data/lib/stylesheets/params/manual.toc.xml +0 -29
- data/lib/stylesheets/params/margin.note.float.type.xml +0 -77
- data/lib/stylesheets/params/margin.note.properties.xml +0 -54
- data/lib/stylesheets/params/margin.note.title.properties.xml +0 -32
- data/lib/stylesheets/params/margin.note.width.xml +0 -35
- data/lib/stylesheets/params/marker.section.level.xml +0 -50
- data/lib/stylesheets/params/menuchoice.menu.separator.xml +0 -42
- data/lib/stylesheets/params/menuchoice.separator.xml +0 -32
- data/lib/stylesheets/params/minus.image.xml +0 -29
- data/lib/stylesheets/params/monospace.font.family.xml +0 -29
- data/lib/stylesheets/params/monospace.properties.xml +0 -38
- data/lib/stylesheets/params/monospace.verbatim.font.width.xml +0 -40
- data/lib/stylesheets/params/monospace.verbatim.properties.xml +0 -27
- data/lib/stylesheets/params/multiframe.bottom.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.navigation.height.xml +0 -28
- data/lib/stylesheets/params/multiframe.top.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.xml +0 -31
- data/lib/stylesheets/params/nav.separator.xml +0 -28
- data/lib/stylesheets/params/nav.table.summary.xml +0 -27
- data/lib/stylesheets/params/navbgcolor.xml +0 -26
- data/lib/stylesheets/params/navbodywidth.xml +0 -26
- data/lib/stylesheets/params/navig.graphics.extension.xml +0 -28
- data/lib/stylesheets/params/navig.graphics.path.xml +0 -30
- data/lib/stylesheets/params/navig.graphics.xml +0 -31
- data/lib/stylesheets/params/navig.showtitles.xml +0 -32
- data/lib/stylesheets/params/navtocwidth.xml +0 -26
- data/lib/stylesheets/params/next.image.xml +0 -27
- data/lib/stylesheets/params/no.home.image.xml +0 -27
- data/lib/stylesheets/params/no.next.image.xml +0 -27
- data/lib/stylesheets/params/no.prev.image.xml +0 -27
- data/lib/stylesheets/params/no.toc.image.xml +0 -27
- data/lib/stylesheets/params/no.up.image.xml +0 -27
- data/lib/stylesheets/params/nominal.image.depth.xml +0 -27
- data/lib/stylesheets/params/nominal.image.width.xml +0 -43
- data/lib/stylesheets/params/nominal.table.width.xml +0 -30
- data/lib/stylesheets/params/nongraphical.admonition.properties.xml +0 -41
- data/lib/stylesheets/params/normal.para.spacing.xml +0 -26
- data/lib/stylesheets/params/olink.base.uri.xml +0 -35
- data/lib/stylesheets/params/olink.debug.xml +0 -36
- data/lib/stylesheets/params/olink.doctitle.xml +0 -146
- data/lib/stylesheets/params/olink.fragid.xml +0 -23
- data/lib/stylesheets/params/olink.lang.fallback.sequence.xml +0 -83
- data/lib/stylesheets/params/olink.outline.ext.xml +0 -28
- data/lib/stylesheets/params/olink.properties.xml +0 -33
- data/lib/stylesheets/params/olink.pubid.xml +0 -27
- data/lib/stylesheets/params/olink.resolver.xml +0 -23
- data/lib/stylesheets/params/olink.sysid.xml +0 -27
- data/lib/stylesheets/params/orderedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/orderedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/orderedlist.properties.xml +0 -24
- data/lib/stylesheets/params/othercredit.like.author.enabled.xml +0 -31
- data/lib/stylesheets/params/output-root.xml +0 -28
- data/lib/stylesheets/params/output.indent.xml +0 -32
- data/lib/stylesheets/params/overlay.js.xml +0 -28
- data/lib/stylesheets/params/overlay.logo.xml +0 -28
- data/lib/stylesheets/params/overlay.xml +0 -32
- data/lib/stylesheets/params/page.height.portrait.xml +0 -69
- data/lib/stylesheets/params/page.height.xml +0 -37
- data/lib/stylesheets/params/page.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/page.margin.inner.xml +0 -56
- data/lib/stylesheets/params/page.margin.outer.xml +0 -53
- data/lib/stylesheets/params/page.margin.top.xml +0 -28
- data/lib/stylesheets/params/page.orientation.xml +0 -32
- data/lib/stylesheets/params/page.width.portrait.xml +0 -67
- data/lib/stylesheets/params/page.width.xml +0 -36
- data/lib/stylesheets/params/pages.template.xml +0 -29
- data/lib/stylesheets/params/paper.type.xml +0 -73
- data/lib/stylesheets/params/para.propagates.style.xml +0 -29
- data/lib/stylesheets/params/part.autolabel.xml +0 -73
- data/lib/stylesheets/params/passivetex.extensions.xml +0 -37
- data/lib/stylesheets/params/pgwide.properties.xml +0 -52
- data/lib/stylesheets/params/phrase.propagates.style.xml +0 -29
- data/lib/stylesheets/params/pixels.per.inch.xml +0 -31
- data/lib/stylesheets/params/plus.image.xml +0 -29
- data/lib/stylesheets/params/points.per.em.xml +0 -29
- data/lib/stylesheets/params/preface.autolabel.xml +0 -71
- data/lib/stylesheets/params/prefer.internal.olink.xml +0 -78
- data/lib/stylesheets/params/preferred.mediaobject.role.xml +0 -40
- data/lib/stylesheets/params/prev.image.xml +0 -27
- data/lib/stylesheets/params/procedure.properties.xml +0 -29
- data/lib/stylesheets/params/process.empty.source.toc.xml +0 -39
- data/lib/stylesheets/params/process.source.toc.xml +0 -39
- data/lib/stylesheets/params/profile.arch.xml +0 -39
- data/lib/stylesheets/params/profile.attribute.xml +0 -34
- data/lib/stylesheets/params/profile.audience.xml +0 -38
- data/lib/stylesheets/params/profile.condition.xml +0 -38
- data/lib/stylesheets/params/profile.conformance.xml +0 -38
- data/lib/stylesheets/params/profile.lang.xml +0 -38
- data/lib/stylesheets/params/profile.os.xml +0 -38
- data/lib/stylesheets/params/profile.revision.xml +0 -38
- data/lib/stylesheets/params/profile.revisionflag.xml +0 -38
- data/lib/stylesheets/params/profile.role.xml +0 -54
- data/lib/stylesheets/params/profile.security.xml +0 -38
- data/lib/stylesheets/params/profile.separator.xml +0 -27
- data/lib/stylesheets/params/profile.status.xml +0 -38
- data/lib/stylesheets/params/profile.userlevel.xml +0 -38
- data/lib/stylesheets/params/profile.value.xml +0 -41
- data/lib/stylesheets/params/profile.vendor.xml +0 -38
- data/lib/stylesheets/params/profile.wordsize.xml +0 -38
- data/lib/stylesheets/params/punct.honorific.xml +0 -28
- data/lib/stylesheets/params/qanda.defaultlabel.xml +0 -86
- data/lib/stylesheets/params/qanda.in.toc.xml +0 -34
- data/lib/stylesheets/params/qanda.inherit.numeration.xml +0 -30
- data/lib/stylesheets/params/qanda.nested.in.toc.xml +0 -29
- data/lib/stylesheets/params/qanda.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level2.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level6.properties.xml +0 -34
- data/lib/stylesheets/params/qanda.title.properties.xml +0 -37
- data/lib/stylesheets/params/qandadiv.autolabel.xml +0 -26
- data/lib/stylesheets/params/rebuild-all.xml +0 -33
- data/lib/stylesheets/params/refclass.suppress.xml +0 -28
- data/lib/stylesheets/params/refentry.date.profile.enabled.xml +0 -46
- data/lib/stylesheets/params/refentry.date.profile.xml +0 -38
- data/lib/stylesheets/params/refentry.generate.name.xml +0 -33
- data/lib/stylesheets/params/refentry.generate.title.xml +0 -33
- data/lib/stylesheets/params/refentry.manual.fallback.profile.xml +0 -48
- data/lib/stylesheets/params/refentry.manual.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.manual.profile.xml +0 -72
- data/lib/stylesheets/params/refentry.meta.get.quietly.xml +0 -37
- data/lib/stylesheets/params/refentry.pagebreak.xml +0 -33
- data/lib/stylesheets/params/refentry.separator.xml +0 -29
- data/lib/stylesheets/params/refentry.source.fallback.profile.xml +0 -49
- data/lib/stylesheets/params/refentry.source.name.profile.enabled.xml +0 -48
- data/lib/stylesheets/params/refentry.source.name.profile.xml +0 -89
- data/lib/stylesheets/params/refentry.source.name.suppress.xml +0 -42
- data/lib/stylesheets/params/refentry.title.properties.xml +0 -59
- data/lib/stylesheets/params/refentry.version.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.version.profile.xml +0 -41
- data/lib/stylesheets/params/refentry.version.suppress.xml +0 -43
- data/lib/stylesheets/params/refentry.xref.manvolnum.xml +0 -31
- data/lib/stylesheets/params/reference.autolabel.xml +0 -67
- data/lib/stylesheets/params/region.after.extent.xml +0 -29
- data/lib/stylesheets/params/region.before.extent.xml +0 -29
- data/lib/stylesheets/params/revhistory.table.cell.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.table.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.title.properties.xml +0 -28
- data/lib/stylesheets/params/root.filename.xml +0 -29
- data/lib/stylesheets/params/root.properties.xml +0 -46
- data/lib/stylesheets/params/rootid.xml +0 -33
- data/lib/stylesheets/params/runinhead.default.title.end.punct.xml +0 -27
- data/lib/stylesheets/params/runinhead.title.end.punct.xml +0 -32
- data/lib/stylesheets/params/running.foot.properties.xml +0 -34
- data/lib/stylesheets/params/sans.font.family.xml +0 -29
- data/lib/stylesheets/params/saxon.callouts.xml +0 -30
- data/lib/stylesheets/params/saxon.character.representation.xml +0 -38
- data/lib/stylesheets/params/saxon.linenumbering.xml +0 -32
- data/lib/stylesheets/params/saxon.tablecolumns.xml +0 -30
- data/lib/stylesheets/params/script.dir.xml +0 -33
- data/lib/stylesheets/params/section.autolabel.max.depth.xml +0 -32
- data/lib/stylesheets/params/section.autolabel.xml +0 -26
- data/lib/stylesheets/params/section.container.element.xml +0 -62
- data/lib/stylesheets/params/section.label.includes.component.label.xml +0 -27
- data/lib/stylesheets/params/section.level1.properties.xml +0 -43
- data/lib/stylesheets/params/section.level2.properties.xml +0 -43
- data/lib/stylesheets/params/section.level3.properties.xml +0 -43
- data/lib/stylesheets/params/section.level4.properties.xml +0 -43
- data/lib/stylesheets/params/section.level5.properties.xml +0 -43
- data/lib/stylesheets/params/section.level6.properties.xml +0 -43
- data/lib/stylesheets/params/section.properties.xml +0 -35
- data/lib/stylesheets/params/section.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level2.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level6.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.properties.xml +0 -39
- data/lib/stylesheets/params/segmentedlist.as.table.xml +0 -28
- data/lib/stylesheets/params/sequential.links.xml +0 -25
- data/lib/stylesheets/params/shade.verbatim.style.xml +0 -36
- data/lib/stylesheets/params/shade.verbatim.xml +0 -30
- data/lib/stylesheets/params/show.comments.xml +0 -32
- data/lib/stylesheets/params/show.foil.number.xml +0 -28
- data/lib/stylesheets/params/show.revisionflag.xml +0 -42
- data/lib/stylesheets/params/showtoc.image.xml +0 -29
- data/lib/stylesheets/params/side.float.properties.xml +0 -50
- data/lib/stylesheets/params/sidebar.float.type.xml +0 -90
- data/lib/stylesheets/params/sidebar.float.width.xml +0 -35
- data/lib/stylesheets/params/sidebar.properties.xml +0 -42
- data/lib/stylesheets/params/sidebar.title.properties.xml +0 -32
- data/lib/stylesheets/params/simplesect.in.toc.xml +0 -26
- data/lib/stylesheets/params/slide.font.family.xml +0 -31
- data/lib/stylesheets/params/slide.title.font.family.xml +0 -31
- data/lib/stylesheets/params/slides.js.xml +0 -28
- data/lib/stylesheets/params/slides.properties.xml +0 -31
- data/lib/stylesheets/params/spacing.paras.xml +0 -30
- data/lib/stylesheets/params/speakernote.properties.xml +0 -32
- data/lib/stylesheets/params/subscript.properties.xml +0 -29
- data/lib/stylesheets/params/superscript.properties.xml +0 -29
- data/lib/stylesheets/params/suppress.footer.navigation.xml +0 -26
- data/lib/stylesheets/params/suppress.header.navigation.xml +0 -27
- data/lib/stylesheets/params/suppress.homepage.title.xml +0 -25
- data/lib/stylesheets/params/suppress.navigation.xml +0 -28
- data/lib/stylesheets/params/symbol.font.family.xml +0 -45
- data/lib/stylesheets/params/table.borders.with.css.xml +0 -28
- data/lib/stylesheets/params/table.cell.border.color.xml +0 -39
- data/lib/stylesheets/params/table.cell.border.style.xml +0 -42
- data/lib/stylesheets/params/table.cell.border.thickness.xml +0 -35
- data/lib/stylesheets/params/table.cell.padding.xml +0 -32
- data/lib/stylesheets/params/table.entry.padding.xml +0 -27
- data/lib/stylesheets/params/table.footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/table.footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/table.footnote.properties.xml +0 -39
- data/lib/stylesheets/params/table.frame.border.color.xml +0 -28
- data/lib/stylesheets/params/table.frame.border.style.xml +0 -37
- data/lib/stylesheets/params/table.frame.border.thickness.xml +0 -27
- data/lib/stylesheets/params/table.properties.xml +0 -34
- data/lib/stylesheets/params/table.spacer.image.xml +0 -26
- data/lib/stylesheets/params/table.table.properties.xml +0 -36
- data/lib/stylesheets/params/tablecolumns.extension.xml +0 -30
- data/lib/stylesheets/params/target.database.document.xml +0 -37
- data/lib/stylesheets/params/targets.filename.xml +0 -32
- data/lib/stylesheets/params/template.xml +0 -27
- data/lib/stylesheets/params/tex.math.delims.xml +0 -47
- data/lib/stylesheets/params/tex.math.file.xml +0 -42
- data/lib/stylesheets/params/tex.math.in.alt.xml +0 -76
- data/lib/stylesheets/params/text.home.xml +0 -27
- data/lib/stylesheets/params/text.next.xml +0 -27
- data/lib/stylesheets/params/text.prev.xml +0 -27
- data/lib/stylesheets/params/text.toc.xml +0 -27
- data/lib/stylesheets/params/text.up.xml +0 -27
- data/lib/stylesheets/params/textbgcolor.xml +0 -26
- data/lib/stylesheets/params/textdata.default.encoding.xml +0 -32
- data/lib/stylesheets/params/textinsert.extension.xml +0 -62
- data/lib/stylesheets/params/title.font.family.xml +0 -33
- data/lib/stylesheets/params/title.margin.left.xml +0 -65
- data/lib/stylesheets/params/titlefoil.html.xml +0 -27
- data/lib/stylesheets/params/toc.bg.color.xml +0 -27
- data/lib/stylesheets/params/toc.blank.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.blank.image.xml +0 -27
- data/lib/stylesheets/params/toc.blank.text.xml +0 -27
- data/lib/stylesheets/params/toc.hide.show.xml +0 -33
- data/lib/stylesheets/params/toc.html.xml +0 -27
- data/lib/stylesheets/params/toc.image.xml +0 -27
- data/lib/stylesheets/params/toc.indent.width.xml +0 -34
- data/lib/stylesheets/params/toc.line.properties.xml +0 -44
- data/lib/stylesheets/params/toc.list.type.xml +0 -30
- data/lib/stylesheets/params/toc.margin.properties.xml +0 -33
- data/lib/stylesheets/params/toc.max.depth.xml +0 -25
- data/lib/stylesheets/params/toc.pointer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.pointer.image.xml +0 -27
- data/lib/stylesheets/params/toc.pointer.text.xml +0 -27
- data/lib/stylesheets/params/toc.row.height.xml +0 -33
- data/lib/stylesheets/params/toc.section.depth.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.image.xml +0 -27
- data/lib/stylesheets/params/toc.spacer.text.xml +0 -27
- data/lib/stylesheets/params/toc.width.xml +0 -28
- data/lib/stylesheets/params/ua.js.xml +0 -28
- data/lib/stylesheets/params/ulink.footnotes.xml +0 -34
- data/lib/stylesheets/params/ulink.hyphenate.chars.xml +0 -37
- data/lib/stylesheets/params/ulink.hyphenate.xml +0 -35
- data/lib/stylesheets/params/ulink.show.xml +0 -37
- data/lib/stylesheets/params/ulink.target.xml +0 -29
- data/lib/stylesheets/params/up.image.xml +0 -27
- data/lib/stylesheets/params/use.embed.for.svg.xml +0 -33
- data/lib/stylesheets/params/use.extensions.xml +0 -31
- data/lib/stylesheets/params/use.id.as.filename.xml +0 -30
- data/lib/stylesheets/params/use.id.function.xml +0 -32
- data/lib/stylesheets/params/use.local.olink.style.xml +0 -28
- data/lib/stylesheets/params/use.role.as.xrefstyle.xml +0 -93
- data/lib/stylesheets/params/use.role.for.mediaobject.xml +0 -56
- data/lib/stylesheets/params/use.svg.xml +0 -30
- data/lib/stylesheets/params/variablelist.as.blocks.xml +0 -62
- data/lib/stylesheets/params/variablelist.as.table.xml +0 -54
- data/lib/stylesheets/params/variablelist.max.termlength.xml +0 -46
- data/lib/stylesheets/params/variablelist.term.break.after.xml +0 -39
- data/lib/stylesheets/params/variablelist.term.properties.xml +0 -29
- data/lib/stylesheets/params/variablelist.term.separator.xml +0 -40
- data/lib/stylesheets/params/verbatim.properties.xml +0 -38
- data/lib/stylesheets/params/wordml.template.xml +0 -29
- data/lib/stylesheets/params/writing.mode.xml +0 -83
- data/lib/stylesheets/params/xbCollapsibleLists.js.xml +0 -28
- data/lib/stylesheets/params/xbDOM.js.xml +0 -28
- data/lib/stylesheets/params/xbLibrary.js.xml +0 -28
- data/lib/stylesheets/params/xbStyle.js.xml +0 -28
- data/lib/stylesheets/params/xep.extensions.xml +0 -31
- data/lib/stylesheets/params/xep.index.item.properties.xml +0 -36
- data/lib/stylesheets/params/xref.label-page.separator.xml +0 -38
- data/lib/stylesheets/params/xref.label-title.separator.xml +0 -36
- data/lib/stylesheets/params/xref.properties.xml +0 -29
- data/lib/stylesheets/params/xref.title-page.separator.xml +0 -36
- data/lib/stylesheets/params/xref.with.number.and.title.xml +0 -30
- data/lib/stylesheets/profiling/profile-mode.xsl +0 -239
- data/lib/stylesheets/profiling/profile.xsl +0 -58
- data/lib/stylesheets/profiling/strip-attributes.xsl +0 -27
- data/lib/stylesheets/profiling/xsl2profile.xsl +0 -159
- data/lib/stylesheets/roundtrip/blocks-spec.xml +0 -11
- data/lib/stylesheets/roundtrip/blocks2dbk.dtd +0 -76
- data/lib/stylesheets/roundtrip/blocks2dbk.xsl +0 -1734
- data/lib/stylesheets/roundtrip/dbk2ooo.xsl +0 -178
- data/lib/stylesheets/roundtrip/dbk2pages.xsl +0 -442
- data/lib/stylesheets/roundtrip/dbk2wordml.xsl +0 -402
- data/lib/stylesheets/roundtrip/dbk2wp.xsl +0 -1376
- data/lib/stylesheets/roundtrip/normalise-common.xsl +0 -39
- data/lib/stylesheets/roundtrip/normalise2sections.xsl +0 -1270
- data/lib/stylesheets/roundtrip/pages2normalise.xsl +0 -352
- data/lib/stylesheets/roundtrip/param.xml +0 -105
- data/lib/stylesheets/roundtrip/param.xsl +0 -20
- data/lib/stylesheets/roundtrip/sections-spec.xml +0 -38
- data/lib/stylesheets/roundtrip/sections2blocks.xsl +0 -263
- data/lib/stylesheets/roundtrip/specifications.xml +0 -1420
- data/lib/stylesheets/roundtrip/template-pages.xml +0 -2
- data/lib/stylesheets/roundtrip/template.dot +0 -0
- data/lib/stylesheets/roundtrip/template.xml +0 -3
- data/lib/stylesheets/roundtrip/wordml2normalise.xsl +0 -446
- data/lib/stylesheets/slides/browser/CTOCWidget.js +0 -169
- data/lib/stylesheets/slides/browser/overlay.js +0 -142
- data/lib/stylesheets/slides/browser/slides-default.css +0 -9
- data/lib/stylesheets/slides/browser/slides-frames.css +0 -73
- data/lib/stylesheets/slides/browser/slides-plain.css +0 -1
- data/lib/stylesheets/slides/browser/slides-table.css +0 -41
- data/lib/stylesheets/slides/browser/slides-w3c.css +0 -1
- data/lib/stylesheets/slides/browser/slides.css +0 -119
- data/lib/stylesheets/slides/browser/slides.js +0 -120
- data/lib/stylesheets/slides/browser/ua.js +0 -135
- data/lib/stylesheets/slides/browser/xbCollapsibleLists.js +0 -537
- data/lib/stylesheets/slides/browser/xbDOM.js +0 -374
- data/lib/stylesheets/slides/browser/xbDebug.js +0 -311
- data/lib/stylesheets/slides/browser/xbLibrary.js +0 -80
- data/lib/stylesheets/slides/browser/xbStyle-css.js +0 -791
- data/lib/stylesheets/slides/browser/xbStyle-nn4.js +0 -485
- data/lib/stylesheets/slides/browser/xbStyle-not-supported.js +0 -77
- data/lib/stylesheets/slides/browser/xbStyle.js +0 -295
- data/lib/stylesheets/slides/fo/param.xml +0 -356
- data/lib/stylesheets/slides/fo/param.xsl +0 -74
- data/lib/stylesheets/slides/fo/plain-titlepage.xml +0 -79
- data/lib/stylesheets/slides/fo/plain-titlepage.xsl +0 -187
- data/lib/stylesheets/slides/fo/plain.xsl +0 -528
- data/lib/stylesheets/slides/graphics/active/arr-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/arr-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/arrow.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.png +0 -0
- data/lib/stylesheets/slides/graphics/hidetoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/plus.gif +0 -0
- data/lib/stylesheets/slides/graphics/pointer.png +0 -0
- data/lib/stylesheets/slides/graphics/showtoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/toc/bullet.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/closed.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/open.png +0 -0
- data/lib/stylesheets/slides/html/css.xsl +0 -46
- data/lib/stylesheets/slides/html/default.xsl +0 -261
- data/lib/stylesheets/slides/html/flat.xsl +0 -70
- data/lib/stylesheets/slides/html/frames.xsl +0 -2016
- data/lib/stylesheets/slides/html/graphics.xsl +0 -151
- data/lib/stylesheets/slides/html/jscript.xsl +0 -127
- data/lib/stylesheets/slides/html/param.xml +0 -1376
- data/lib/stylesheets/slides/html/param.xsl +0 -68
- data/lib/stylesheets/slides/html/plain.xsl +0 -472
- data/lib/stylesheets/slides/html/slides-common.xsl +0 -1541
- data/lib/stylesheets/slides/html/tables.xsl +0 -336
- data/lib/stylesheets/slides/html/vslides.xsl +0 -667
- data/lib/stylesheets/slides/html/w3c.xsl +0 -376
- data/lib/stylesheets/slides/htmlhelp/htmlhelp.xsl +0 -89
- data/lib/stylesheets/slides/keynote/default.xsl +0 -600
- data/lib/stylesheets/slides/keynote/xsltsl/cmp.xsl +0 -348
- data/lib/stylesheets/slides/keynote/xsltsl/date-time.xsl +0 -1524
- data/lib/stylesheets/slides/keynote/xsltsl/example.xsl +0 -90
- data/lib/stylesheets/slides/keynote/xsltsl/markup.xsl +0 -789
- data/lib/stylesheets/slides/keynote/xsltsl/math.xsl +0 -704
- data/lib/stylesheets/slides/keynote/xsltsl/node.xsl +0 -229
- data/lib/stylesheets/slides/keynote/xsltsl/stdlib.xsl +0 -340
- data/lib/stylesheets/slides/keynote/xsltsl/string.xsl +0 -1233
- data/lib/stylesheets/slides/keynote/xsltsl/svg.xsl +0 -177
- data/lib/stylesheets/slides/keynote/xsltsl/uri.xsl +0 -580
- data/lib/stylesheets/slides/svg/default.xsl +0 -686
- data/lib/stylesheets/slides/xhtml/css.xsl +0 -47
- data/lib/stylesheets/slides/xhtml/default.xsl +0 -246
- data/lib/stylesheets/slides/xhtml/flat.xsl +0 -71
- data/lib/stylesheets/slides/xhtml/frames.xsl +0 -1982
- data/lib/stylesheets/slides/xhtml/graphics.xsl +0 -152
- data/lib/stylesheets/slides/xhtml/jscript.xsl +0 -128
- data/lib/stylesheets/slides/xhtml/param.xsl +0 -70
- data/lib/stylesheets/slides/xhtml/plain.xsl +0 -470
- data/lib/stylesheets/slides/xhtml/slides-common.xsl +0 -1534
- data/lib/stylesheets/slides/xhtml/tables.xsl +0 -334
- data/lib/stylesheets/slides/xhtml/vslides.xsl +0 -652
- data/lib/stylesheets/slides/xhtml/w3c.xsl +0 -358
- data/lib/stylesheets/template/titlepage.xml +0 -478
- data/lib/stylesheets/template/titlepage.xsl +0 -1355
- data/lib/stylesheets/tests/refentry.007.ns.xml +0 -325
- data/lib/stylesheets/tests/refentry.007.xml +0 -340
- data/lib/stylesheets/tools/bin/docbook-xsl-update +0 -53
- data/lib/stylesheets/tools/make/Makefile.DocBook +0 -698
- data/lib/stylesheets/tools/make/Makefile.combine +0 -182
- data/lib/stylesheets/tools/make/Makefile.docParam +0 -59
- data/lib/stylesheets/webhelp/LICENSE +0 -1
- data/lib/stylesheets/webhelp/build.properties +0 -43
- data/lib/stylesheets/webhelp/build.xml +0 -112
- data/lib/stylesheets/webhelp/docs/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/docs/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/main.js +0 -161
- data/lib/stylesheets/webhelp/docs/content/ch01.html +0 -61
- data/lib/stylesheets/webhelp/docs/content/ch02.html +0 -32
- data/lib/stylesheets/webhelp/docs/content/ch02s01.html +0 -117
- data/lib/stylesheets/webhelp/docs/content/ch02s02.html +0 -102
- data/lib/stylesheets/webhelp/docs/content/ch02s03.html +0 -36
- data/lib/stylesheets/webhelp/docs/content/ch02s04.html +0 -42
- data/lib/stylesheets/webhelp/docs/content/ch03.html +0 -37
- data/lib/stylesheets/webhelp/docs/content/ch03s01.html +0 -62
- data/lib/stylesheets/webhelp/docs/content/ch03s02.html +0 -124
- data/lib/stylesheets/webhelp/docs/content/index.html +0 -71
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileInfoList.js +0 -10
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileList.js +0 -11
- data/lib/stylesheets/webhelp/docs/content/search/index-1.js +0 -224
- data/lib/stylesheets/webhelp/docs/content/search/index-2.js +0 -223
- data/lib/stylesheets/webhelp/docs/content/search/index-3.js +0 -221
- data/lib/stylesheets/webhelp/docs/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/docs/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/docs/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/docs/index.html +0 -13
- data/lib/stylesheets/webhelp/docsrc/readme.xml +0 -891
- data/lib/stylesheets/webhelp/template/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/template/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/template/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/template/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/template/common/main.js +0 -161
- data/lib/stylesheets/webhelp/template/content/search/default.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/en-us.props +0 -45
- data/lib/stylesheets/webhelp/template/content/search/es-es.props +0 -179
- data/lib/stylesheets/webhelp/template/content/search/ja-jp.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/template/content/search/punctuation.props +0 -31
- data/lib/stylesheets/webhelp/template/content/search/stemmers/de_stemmer.js +0 -247
- data/lib/stylesheets/webhelp/template/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/template/content/search/stemmers/fr_stemmer.js +0 -299
- data/lib/stylesheets/webhelp/template/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/xsl/webhelp.xsl +0 -772
- data/lib/stylesheets/website/autolayout.xsl +0 -258
- data/lib/stylesheets/website/chunk-common.xsl +0 -227
- data/lib/stylesheets/website/chunk-tabular.xsl +0 -12
- data/lib/stylesheets/website/chunk-website.xsl +0 -12
- data/lib/stylesheets/website/head.xsl +0 -316
- data/lib/stylesheets/website/makefile-dep.xsl +0 -143
- data/lib/stylesheets/website/olink.xsl +0 -297
- data/lib/stylesheets/website/param.xml +0 -788
- data/lib/stylesheets/website/param.xsl +0 -53
- data/lib/stylesheets/website/rss.xsl +0 -143
- data/lib/stylesheets/website/tabular.xsl +0 -213
- data/lib/stylesheets/website/toc-tabular.xsl +0 -480
- data/lib/stylesheets/website/toc.xsl +0 -286
- data/lib/stylesheets/website/website-common.xsl +0 -821
- data/lib/stylesheets/website/website-targets.xsl +0 -27
- data/lib/stylesheets/website/website.xsl +0 -132
- data/lib/stylesheets/website/xbel.xsl +0 -114
- data/lib/stylesheets/xhtml-1_1/admon.xsl +0 -135
- data/lib/stylesheets/xhtml-1_1/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml-1_1/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml-1_1/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml-1_1/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml-1_1/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml-1_1/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml-1_1/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml-1_1/block.xsl +0 -537
- data/lib/stylesheets/xhtml-1_1/callout.xsl +0 -189
- data/lib/stylesheets/xhtml-1_1/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml-1_1/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml-1_1/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml-1_1/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml-1_1/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml-1_1/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml-1_1/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml-1_1/component.xsl +0 -397
- data/lib/stylesheets/xhtml-1_1/division.xsl +0 -219
- data/lib/stylesheets/xhtml-1_1/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml-1_1/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml-1_1/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml-1_1/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml-1_1/formal.xsl +0 -413
- data/lib/stylesheets/xhtml-1_1/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml-1_1/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml-1_1/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml-1_1/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml-1_1/html.xsl +0 -600
- data/lib/stylesheets/xhtml-1_1/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml-1_1/index.xsl +0 -266
- data/lib/stylesheets/xhtml-1_1/info.xsl +0 -46
- data/lib/stylesheets/xhtml-1_1/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml-1_1/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml-1_1/lists.xsl +0 -1090
- data/lib/stylesheets/xhtml-1_1/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml-1_1/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/math.xsl +0 -285
- data/lib/stylesheets/xhtml-1_1/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml-1_1/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/param.xsl +0 -438
- data/lib/stylesheets/xhtml-1_1/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml-1_1/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml-1_1/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml-1_1/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml-1_1/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml-1_1/sections.xsl +0 -543
- data/lib/stylesheets/xhtml-1_1/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml-1_1/table.xsl +0 -1169
- data/lib/stylesheets/xhtml-1_1/task.xsl +0 -75
- data/lib/stylesheets/xhtml-1_1/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml-1_1/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml-1_1/toc.xsl +0 -332
- data/lib/stylesheets/xhtml-1_1/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml-1_1/xref.xsl +0 -1317
- data/lib/stylesheets/xhtml/admon.xsl +0 -137
- data/lib/stylesheets/xhtml/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml/block.xsl +0 -537
- data/lib/stylesheets/xhtml/callout.xsl +0 -189
- data/lib/stylesheets/xhtml/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml/component.xsl +0 -397
- data/lib/stylesheets/xhtml/division.xsl +0 -219
- data/lib/stylesheets/xhtml/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml/formal.xsl +0 -413
- data/lib/stylesheets/xhtml/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml/html.xsl +0 -600
- data/lib/stylesheets/xhtml/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml/index.xsl +0 -266
- data/lib/stylesheets/xhtml/info.xsl +0 -46
- data/lib/stylesheets/xhtml/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml/lists.xsl +0 -1123
- data/lib/stylesheets/xhtml/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml/math.xsl +0 -285
- data/lib/stylesheets/xhtml/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/param.xsl +0 -438
- data/lib/stylesheets/xhtml/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml/sections.xsl +0 -543
- data/lib/stylesheets/xhtml/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml/table.xsl +0 -1169
- data/lib/stylesheets/xhtml/task.xsl +0 -75
- data/lib/stylesheets/xhtml/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml/toc.xsl +0 -332
- data/lib/stylesheets/xhtml/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml/xref.xsl +0 -1317
data/spec/ast_spec.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require "booky"
|
2
|
+
require_relative "helpers"
|
3
|
+
|
4
|
+
describe Booky::AST do
|
5
|
+
|
6
|
+
it "should compile a textile file to an ast" do
|
7
|
+
Booky.source = File.expand_path("spec/fixtures/textile/source/index.textile")
|
8
|
+
Booky::AST.create.should_not be_empty
|
9
|
+
Booky::AST.create.should be_a(Array)
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
File without changes
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"type" : "bar",
|
3
|
+
"height" : "5.cm",
|
4
|
+
"grid_x_steps" : 12,
|
5
|
+
"grid_y_steps" : 6,
|
6
|
+
|
7
|
+
"sort" : "ASC",
|
8
|
+
|
9
|
+
"max_x" : 180,
|
10
|
+
|
11
|
+
"label_x_axis" : "New Users per Day",
|
12
|
+
|
13
|
+
"bars" : [
|
14
|
+
{
|
15
|
+
"name" : "NginX",
|
16
|
+
"width" : 140
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"name" : "Apache2",
|
20
|
+
"width" : 60
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"name" : "Thing",
|
24
|
+
"width" : 160
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"name" : "Google+",
|
28
|
+
"width" : 5
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"name" : "LinkedIn",
|
32
|
+
"width" : 25
|
33
|
+
}
|
34
|
+
]
|
35
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
h1. Super Scale Systems
|
2
|
+
|
3
|
+
Let's first engage with what super scale systems actually are. In the beginning of the web, websites were simple documents accessed by a few dozen people a day, if at all. One could say that at this stage of development the web itself could be called a super scale system because for the first time in history, a resource was simultaneously accessible and changeable from any location of the world. Back then, this was super scale just because it expanded the reachability of resources from single computers or very small networks out to the world.
|
4
|
+
|
5
|
+
h2. Scalability
|
6
|
+
|
7
|
+
In times of the social web, every super scale system has to fight the human introduced load changes which, maybe follow a currently erratic complex system. For example the rush hour is a great example for a human driven event, missing the necessary scalability[4].
|
8
|
+
|
9
|
+
fn4. Not all countries, like for example the Switzerland have huge problems with the admittedly not so hard to foresee rush hour.
|
10
|
+
|
11
|
+
In software development every system has to be scaleable. In fact, scaleability might be the second highest requirement for every project right after "it should work at all". But the term alone says nothing about the type of scaling, nor the dimensions. André B. Bondi introduces two important aspects of scalability[bondi]:
|
12
|
+
|
13
|
+
h3. Structural
|
14
|
+
|
15
|
+
bq{by:Andre B. Bondi - Characteristics of Scalability and Their Impact on Performance}.. Structural scalability is the ability of a system to expand in a chosen dimension without major modifications to its architecture.
|
16
|
+
|
17
|
+
p. To super scale systems this means, that the contents of the system is growing and shrinking along a dimension like the stored data volume or amount of different resources to serve.
|
18
|
+
|
19
|
+
In the rush hour example this would mean to easily add and remove streets to and from the roadmap. While this would maybe also help to level the rush hour, it's not the intend to do so. Adding new streets without construction works, is key here.
|
20
|
+
|
21
|
+
h3. Load
|
22
|
+
|
23
|
+
bq{by:Andre B. Bondi - Characteristics of Scalability and Their Impact on Performance}.. Load scalability is the ability of a system to perform gracefully as the offered traffic increases.
|
24
|
+
|
25
|
+
p. To super scale systems this means, that the contents might stay the same but the the amount of requests is growing and shrinking.
|
26
|
+
|
27
|
+
In the rush hour example this would mean to broaden the streets to x lanes just when required and close them if nobody wants to use them.
|
@@ -0,0 +1,35 @@
|
|
1
|
+
bq{by:Thomas Fankhauser}.. This is a blockquote that spans multiple lines. And I don't know if it is important, but generally speaking this should look really great!
|
2
|
+
|
3
|
+
Here is the second part of the quote. Here is the second part of the quote. Here is the second part of the quote. Here is the second part of the quote. part of the quote a
|
4
|
+
|
5
|
+
bq{by:Thomas Fankhauser}.. And a short one!
|
6
|
+
|
7
|
+
p. This is some more normal paragraph text. This is some more normal paragraph text. This is some more normal paragraph text. This is some more normal paragraph text.
|
8
|
+
|
9
|
+
bc{name:A Ruby Racer;language:ruby}.. module RedCloth
|
10
|
+
class TextileDoc
|
11
|
+
|
12
|
+
#
|
13
|
+
# Generates an AST from the Textile contents.
|
14
|
+
#
|
15
|
+
# RedCloth.new( "!some/image/path.png!" ).to_ast
|
16
|
+
# #=> { :type => :image, :src => "some/image/path.png" }
|
17
|
+
#
|
18
|
+
def to_ast(*rules)
|
19
|
+
apply_rules(rules)
|
20
|
+
|
21
|
+
@name = 56
|
22
|
+
@a_float = 5.345
|
23
|
+
@a_string = "something #{@name}"
|
24
|
+
@a = proc do
|
25
|
+
"Some string"
|
26
|
+
end
|
27
|
+
|
28
|
+
RedCloth::Formatters::AST.reset!
|
29
|
+
to(RedCloth::Formatters::AST)
|
30
|
+
RedCloth::Formatters::AST.ast
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
source. some_code.rb
|
@@ -0,0 +1,9 @@
|
|
1
|
+
This is some text before the line chart
|
2
|
+
|
3
|
+
chart{name:Line Chart}. spec/fixtures/line_chart.json
|
4
|
+
|
5
|
+
That is followd by another one. And this is followed after the bar chart That is followd by another one. And this is followed after the bar chart That the bar chart That is followd by another one. And this is followed after the bar chart chart That is followd by another one. And this is followed after the bar chartchart That is followd by another one. And this is followed after the bar chartchart That is followd by another one. And this is followed after the bar chart chart That is followd by another one. And this is followed after the bar chartchart That is followd by another one. And this is followed after the bar chartchart That is followd by another one. And this is followed after the bar chartchart That is followd by another one. And this is followed after the bar chartchart That is followd by another one. And this is followed after the bar chart chart That is followd by another one. And this is followed after the bar chart chart That is followd by another one. And this is followed after the bar chart chart That is followd by another one. And this is followed after the bar chart chart That is followd by another one. And this is followed after the bar chart chart
|
6
|
+
|
7
|
+
chart{name:Bar Chart}. spec/fixtures/bar_chart.json
|
8
|
+
|
9
|
+
And this is followed after the bar chart
|
@@ -0,0 +1,57 @@
|
|
1
|
+
fn1. This is the actual footnote.
|
2
|
+
|
3
|
+
fn2. A Footnote is this.
|
4
|
+
|
5
|
+
fn3. A Footnote is this.
|
6
|
+
|
7
|
+
fn4. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here. A Footnote is this with quite a lot of text in it. Let's see how we can adjust the heights here.
|
8
|
+
|
9
|
+
fn5. A Footnote is this.
|
10
|
+
|
11
|
+
This is a normal text[1] with a footnote in it.
|
12
|
+
|
13
|
+
And here is some more text with even more footnotes[2] in it. But I guess[3] we need so much more[4] of them, right[5]?
|
14
|
+
|
15
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
16
|
+
|
17
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
18
|
+
|
19
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
24
|
+
|
25
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
26
|
+
|
27
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
28
|
+
|
29
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
30
|
+
|
31
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
36
|
+
|
37
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
38
|
+
|
39
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
40
|
+
|
41
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
42
|
+
|
43
|
+
This is a lot of other[6] text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
44
|
+
|
45
|
+
fn6. A Footnote is this.
|
46
|
+
|
47
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
48
|
+
|
49
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
54
|
+
|
55
|
+
This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages. This is a lot of other text that will span over multiple pages.
|
56
|
+
|
57
|
+
tof. Footnotes
|
@@ -0,0 +1,29 @@
|
|
1
|
+
table{name:Hardware Setup in Amazon's Elastic Cloud}. textile/tables/request_limits_hardware.xls
|
2
|
+
|
3
|
+
h3. The C10K Problem
|
4
|
+
|
5
|
+
The C10K problem[5] is a general optimization problem for web server developers. The main goal is to achieve a design so that the server can handle at least *10,000 concurrent connections*. Numerous familiar web servers like _NGINX_, _Lighttpd_, _JBoss Netty_, _Node.js_ and _EventMachine_ have been build to counter that problem. This investigation allows to compare the results for the current _Apache2_ and _NGINX_ implementations in the cloud.
|
6
|
+
|
7
|
+
fn5. "kegel.com/c10k.html":http://www.kegel.com/c10k.html
|
8
|
+
|
9
|
+
h3. Optimum
|
10
|
+
|
11
|
+
The application server is able to serve more than 10,000 requests per second.
|
12
|
+
|
13
|
+
h3. Hypothesis
|
14
|
+
|
15
|
+
The application server is able to serve around 2,000 requests per second.
|
16
|
+
|
17
|
+
h3. Setup
|
18
|
+
|
19
|
+
The test servers are hosted in Amazon's Elastic Cloud. One server is the application server running either _Apache2_ or _NGINX_. The load testing itself is done with a custom made Rubygem called *BigBench[6]*. BigBench uses Ruby's EventMachine[7] library for async IO at its core and is able to create 16% more load than, for example JMeter. The load is created with a bot system where each spawned bot increases the amount of requests.
|
20
|
+
|
21
|
+
fn6. Available at "github.com/southdesign/bigbench":https://github.com/southdesign/bigbench
|
22
|
+
|
23
|
+
fn7. EventMachine uses its own async IO C implementation and is available at "github.com/eventmachine/eventmachine":https://github.com/eventmachine/eventmachine
|
24
|
+
|
25
|
+
There are two test cases that distinguish themselves by the hardware of the application server.
|
26
|
+
|
27
|
+
table{name:Hardware Setup in Amazon's Elastic Cloud}. textile/tables/request_limits_hardware.xls
|
28
|
+
|
29
|
+
A single test run bombardes the application server for 2 minutes with as much load as the sum of the bots can create. After each run 5 more bots are added to increase the load just until either the error rate increases tremendously or the requests per second level off or even decrease. A cubic regression with the collected data then allows to calculate the maximum requests per second for that setup.
|
Binary file
|
Binary file
|
@@ -0,0 +1,49 @@
|
|
1
|
+
{
|
2
|
+
"type" : "line",
|
3
|
+
"height" : "6.cm",
|
4
|
+
"grid_x_steps" : 12,
|
5
|
+
"grid_y_steps" : 6,
|
6
|
+
|
7
|
+
"min_x" : 0,
|
8
|
+
"min_y" : 0,
|
9
|
+
"max_x" : 120,
|
10
|
+
"max_y" : 60,
|
11
|
+
|
12
|
+
"labels_x" : [ [10, 10], [40, 40], [60, 60], [80, 80], [90, 90] ],
|
13
|
+
"labels_y" : [ [10, 10], [30, 30], [50, 50] ],
|
14
|
+
|
15
|
+
"label_x_axis" : "Requests in k",
|
16
|
+
"label_y_axis" : "Time in ms",
|
17
|
+
|
18
|
+
"lines" : [
|
19
|
+
{
|
20
|
+
"name" : "NginX",
|
21
|
+
"points" : [ [0, 30], [40, 20], [80, 60], [120, 10] ]
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"name" : "Apache2",
|
25
|
+
"points" : [ [0, 20], [40, 50], [80, 40], [120, 20] ]
|
26
|
+
}
|
27
|
+
],
|
28
|
+
|
29
|
+
"points" : [
|
30
|
+
{
|
31
|
+
"name" : "Maximum Turning Point",
|
32
|
+
"point" : [40, 50]
|
33
|
+
}
|
34
|
+
],
|
35
|
+
|
36
|
+
"markers_x" : [
|
37
|
+
{
|
38
|
+
"name" : "Nielson Responsive Line",
|
39
|
+
"y" : 40
|
40
|
+
}
|
41
|
+
],
|
42
|
+
|
43
|
+
"markers_y" : [
|
44
|
+
{
|
45
|
+
"name" : "Out of Bounds Line",
|
46
|
+
"x" : 100
|
47
|
+
}
|
48
|
+
]
|
49
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
This is some text that includes a link to "Google":http://google.com and this follows
|
2
|
+
the link.
|
3
|
+
|
4
|
+
"southdesign":http://southdesign.de
|
5
|
+
|
6
|
+
This is some text that is right before the picture
|
7
|
+
|
8
|
+
!{width: 50%;}image_small.jpg(Oh what a blue)!
|
9
|
+
|
10
|
+
This is after the first small picture!
|
11
|
+
|
12
|
+
!image_big.jpg(Full size picture)!
|
13
|
+
!{width: 90%;}image_big.jpg(90 percent size picture)!
|
14
|
+
|
15
|
+
!image_big.jpg(Full size picture)!
|
16
|
+
!image_big.jpg(Full size picture)!
|
17
|
+
|
18
|
+
!image_big.jpg!
|
@@ -0,0 +1,98 @@
|
|
1
|
+
This is some text before the lists.
|
2
|
+
|
3
|
+
* First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry First Entry
|
4
|
+
* Second Entry
|
5
|
+
** Sub *Entry 1*
|
6
|
+
** Sub _Entry 2_
|
7
|
+
* Third Entry
|
8
|
+
* Third Entry
|
9
|
+
* Third Entry
|
10
|
+
* Third Entry
|
11
|
+
* Third Entry
|
12
|
+
* Third Entry
|
13
|
+
* Third Entry
|
14
|
+
* Third Entry
|
15
|
+
* Third Entry
|
16
|
+
* Third Entry
|
17
|
+
* Third Entry
|
18
|
+
* Third Entry
|
19
|
+
* Third Entry
|
20
|
+
* Third Entry
|
21
|
+
* Third Entry
|
22
|
+
* Third Entry
|
23
|
+
* Third Entry
|
24
|
+
* Third Entry
|
25
|
+
* Third Entry
|
26
|
+
* Third Entry
|
27
|
+
* Third Entry
|
28
|
+
* Third Entry
|
29
|
+
* Third Entry
|
30
|
+
* Third Entry
|
31
|
+
* Third Entry
|
32
|
+
* Third Entry
|
33
|
+
* Third Entry
|
34
|
+
* Third Entry
|
35
|
+
* Third Entry
|
36
|
+
** Third Entry
|
37
|
+
** Third Entry
|
38
|
+
* Third Entry
|
39
|
+
* Third Entry
|
40
|
+
* Third Entry
|
41
|
+
* Third Entry
|
42
|
+
* Third Entry
|
43
|
+
* Third Entry
|
44
|
+
* Third Entry
|
45
|
+
* Third Entry
|
46
|
+
* Third Entry
|
47
|
+
* Third Entry
|
48
|
+
* Third Entry
|
49
|
+
* Third Entry
|
50
|
+
* Third Entry
|
51
|
+
* Third Entry
|
52
|
+
* Third Entry
|
53
|
+
* Third Entry
|
54
|
+
* Third Entry
|
55
|
+
* Third Entry
|
56
|
+
* Third Entry
|
57
|
+
* Third Entry
|
58
|
+
* Third Entry
|
59
|
+
* Third Entry
|
60
|
+
* Third Entry
|
61
|
+
* Third Entry
|
62
|
+
* Third Entry
|
63
|
+
** Third Entry
|
64
|
+
* Third Entry
|
65
|
+
** Third Entry
|
66
|
+
** Third Entry
|
67
|
+
* Third Entry
|
68
|
+
* Third Entry
|
69
|
+
** Third Entry
|
70
|
+
** Third Entry
|
71
|
+
* Third Entry
|
72
|
+
* Third Entry
|
73
|
+
* Third Entry
|
74
|
+
* Third Entry
|
75
|
+
* Third Entry
|
76
|
+
* Third Entry
|
77
|
+
* Third Entry
|
78
|
+
* Third Entry
|
79
|
+
* Third Entry
|
80
|
+
* Third Entry
|
81
|
+
* Third Entry
|
82
|
+
|
83
|
+
This is some in between:
|
84
|
+
|
85
|
+
# A numbered entry
|
86
|
+
## A sub numbered entry
|
87
|
+
## A sub numbered entry
|
88
|
+
## A sub numbered entry
|
89
|
+
## A sub numbered entry
|
90
|
+
### A sub numbered entry
|
91
|
+
### A sub numbered entry
|
92
|
+
### A sub numbered entry
|
93
|
+
### A sub numbered entry
|
94
|
+
# Another numbered entry
|
95
|
+
# "Google":http://www.google.de me
|
96
|
+
# Another numbered entry
|
97
|
+
|
98
|
+
And the next text is continuing here:
|
@@ -0,0 +1,476 @@
|
|
1
|
+
%PDF-1.5
|
2
|
+
1 0 obj
|
3
|
+
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
|
4
|
+
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00 ">
|
5
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
6
|
+
<rdf:Description rdf:about=""
|
7
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
8
|
+
<dc:format>application/pdf</dc:format>
|
9
|
+
<dc:title>
|
10
|
+
<rdf:Alt>
|
11
|
+
<rdf:li xml:lang="x-default">request_flow</rdf:li>
|
12
|
+
</rdf:Alt>
|
13
|
+
</dc:title>
|
14
|
+
</rdf:Description>
|
15
|
+
<rdf:Description rdf:about=""
|
16
|
+
xmlns:xmp="http://ns.adobe.com/xap/1.0/"
|
17
|
+
xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/">
|
18
|
+
<xmp:MetadataDate>2012-08-05T04:10:51+02:00</xmp:MetadataDate>
|
19
|
+
<xmp:ModifyDate>2012-08-05T04:10:51+02:00</xmp:ModifyDate>
|
20
|
+
<xmp:CreateDate>2012-08-05T04:10:51+02:00</xmp:CreateDate>
|
21
|
+
<xmp:CreatorTool>Adobe Illustrator CS5</xmp:CreatorTool>
|
22
|
+
<xmp:Thumbnails>
|
23
|
+
<rdf:Alt>
|
24
|
+
<rdf:li rdf:parseType="Resource">
|
25
|
+
<xmpGImg:width>184</xmpGImg:width>
|
26
|
+
<xmpGImg:height>256</xmpGImg:height>
|
27
|
+
<xmpGImg:format>JPEG</xmpGImg:format>
|
28
|
+
<xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAC4AwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A4ezNyO564q1ybxOKu5N4
nFXcm8TiruTeJxV3JvE4q7k3icVdybxOKu5N4nFXcm8TiruTeJxVss9BUnpt9+Ktcm8TiruTeJxV
3JvE4q7k3icVdybxOKu5N4nFXcm8TiruTeJxV3JvE4q7k3icVe1/84mkn8xNSqf+lRN/1E2+KvFG
+0fnirWKuxV2KuxV2KuxV2KuxV2KuxVs1oK+G334q1irsVdirsVdirsVdirsVdirsVe1/wDOJv8A
5MTUv+2RN/1E2+KvFW+0fnirWKuxV2KuxV2KuxV2KuxV2KuxVe8ciqpYEBhtUU74LSQQswodirsV
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
TUqj/pUTf9RNvir/AP/Z</xmpGImg:image>
|
29
|
+
</rdf:li>
|
30
|
+
</rdf:Alt>
|
31
|
+
</xmp:Thumbnails>
|
32
|
+
</rdf:Description>
|
33
|
+
<rdf:Description rdf:about=""
|
34
|
+
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
35
|
+
xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
|
36
|
+
xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
|
37
|
+
<xmpMM:InstanceID>uuid:d4a1033a-13f3-9a47-87bf-78cc6bbaa978</xmpMM:InstanceID>
|
38
|
+
<xmpMM:DocumentID>xmp.did:FA7F1174072068118A6D803DAA9804E1</xmpMM:DocumentID>
|
39
|
+
<xmpMM:OriginalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</xmpMM:OriginalDocumentID>
|
40
|
+
<xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
|
41
|
+
<xmpMM:DerivedFrom rdf:parseType="Resource">
|
42
|
+
<stRef:instanceID>xmp.iid:F97F1174072068118A6D803DAA9804E1</stRef:instanceID>
|
43
|
+
<stRef:documentID>xmp.did:F97F1174072068118A6D803DAA9804E1</stRef:documentID>
|
44
|
+
<stRef:originalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</stRef:originalDocumentID>
|
45
|
+
<stRef:renditionClass>default</stRef:renditionClass>
|
46
|
+
</xmpMM:DerivedFrom>
|
47
|
+
<xmpMM:History>
|
48
|
+
<rdf:Seq>
|
49
|
+
<rdf:li rdf:parseType="Resource">
|
50
|
+
<stEvt:action>saved</stEvt:action>
|
51
|
+
<stEvt:instanceID>xmp.iid:F77F1174072068118A6D803DAA9804E1</stEvt:instanceID>
|
52
|
+
<stEvt:when>2012-08-05T02:54:32+02:00</stEvt:when>
|
53
|
+
<stEvt:softwareAgent>Adobe Illustrator CS5</stEvt:softwareAgent>
|
54
|
+
<stEvt:changed>/</stEvt:changed>
|
55
|
+
</rdf:li>
|
56
|
+
<rdf:li rdf:parseType="Resource">
|
57
|
+
<stEvt:action>saved</stEvt:action>
|
58
|
+
<stEvt:instanceID>xmp.iid:F87F1174072068118A6D803DAA9804E1</stEvt:instanceID>
|
59
|
+
<stEvt:when>2012-08-05T03:03:55+02:00</stEvt:when>
|
60
|
+
<stEvt:softwareAgent>Adobe Illustrator CS5</stEvt:softwareAgent>
|
61
|
+
<stEvt:changed>/</stEvt:changed>
|
62
|
+
</rdf:li>
|
63
|
+
<rdf:li rdf:parseType="Resource">
|
64
|
+
<stEvt:action>saved</stEvt:action>
|
65
|
+
<stEvt:instanceID>xmp.iid:F97F1174072068118A6D803DAA9804E1</stEvt:instanceID>
|
66
|
+
<stEvt:when>2012-08-05T03:05:02+02:00</stEvt:when>
|
67
|
+
<stEvt:softwareAgent>Adobe Illustrator CS5</stEvt:softwareAgent>
|
68
|
+
<stEvt:changed>/</stEvt:changed>
|
69
|
+
</rdf:li>
|
70
|
+
<rdf:li rdf:parseType="Resource">
|
71
|
+
<stEvt:action>saved</stEvt:action>
|
72
|
+
<stEvt:instanceID>xmp.iid:FA7F1174072068118A6D803DAA9804E1</stEvt:instanceID>
|
73
|
+
<stEvt:when>2012-08-05T04:10:37+02:00</stEvt:when>
|
74
|
+
<stEvt:softwareAgent>Adobe Illustrator CS5</stEvt:softwareAgent>
|
75
|
+
<stEvt:changed>/</stEvt:changed>
|
76
|
+
</rdf:li>
|
77
|
+
</rdf:Seq>
|
78
|
+
</xmpMM:History>
|
79
|
+
</rdf:Description>
|
80
|
+
<rdf:Description rdf:about=""
|
81
|
+
xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
|
82
|
+
<illustrator:StartupProfile>Print</illustrator:StartupProfile>
|
83
|
+
</rdf:Description>
|
84
|
+
<rdf:Description rdf:about=""
|
85
|
+
xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
|
86
|
+
xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
|
87
|
+
xmlns:stFnt="http://ns.adobe.com/xap/1.0/sType/Font#"
|
88
|
+
xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/">
|
89
|
+
<xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
|
90
|
+
<xmpTPg:HasVisibleTransparency>False</xmpTPg:HasVisibleTransparency>
|
91
|
+
<xmpTPg:NPages>1</xmpTPg:NPages>
|
92
|
+
<xmpTPg:MaxPageSize rdf:parseType="Resource">
|
93
|
+
<stDim:w>595.280273</stDim:w>
|
94
|
+
<stDim:h>841.889648</stDim:h>
|
95
|
+
<stDim:unit>Pixels</stDim:unit>
|
96
|
+
</xmpTPg:MaxPageSize>
|
97
|
+
<xmpTPg:Fonts>
|
98
|
+
<rdf:Bag>
|
99
|
+
<rdf:li rdf:parseType="Resource">
|
100
|
+
<stFnt:fontName>Ubuntu-Light</stFnt:fontName>
|
101
|
+
<stFnt:fontFamily>Ubuntu</stFnt:fontFamily>
|
102
|
+
<stFnt:fontFace>Light</stFnt:fontFace>
|
103
|
+
<stFnt:fontType>Open Type</stFnt:fontType>
|
104
|
+
<stFnt:versionString>Version 0.80</stFnt:versionString>
|
105
|
+
<stFnt:composite>False</stFnt:composite>
|
106
|
+
<stFnt:fontFileName>Ubuntu-L.ttf</stFnt:fontFileName>
|
107
|
+
</rdf:li>
|
108
|
+
<rdf:li rdf:parseType="Resource">
|
109
|
+
<stFnt:fontName>Ubuntu</stFnt:fontName>
|
110
|
+
<stFnt:fontFamily>Ubuntu</stFnt:fontFamily>
|
111
|
+
<stFnt:fontFace>Regular</stFnt:fontFace>
|
112
|
+
<stFnt:fontType>Open Type</stFnt:fontType>
|
113
|
+
<stFnt:versionString>Version 0.80</stFnt:versionString>
|
114
|
+
<stFnt:composite>False</stFnt:composite>
|
115
|
+
<stFnt:fontFileName>Ubuntu-R.ttf</stFnt:fontFileName>
|
116
|
+
</rdf:li>
|
117
|
+
</rdf:Bag>
|
118
|
+
</xmpTPg:Fonts>
|
119
|
+
<xmpTPg:PlateNames>
|
120
|
+
<rdf:Seq>
|
121
|
+
<rdf:li>Cyan</rdf:li>
|
122
|
+
<rdf:li>Magenta</rdf:li>
|
123
|
+
<rdf:li>Yellow</rdf:li>
|
124
|
+
<rdf:li>Black</rdf:li>
|
125
|
+
</rdf:Seq>
|
126
|
+
</xmpTPg:PlateNames>
|
127
|
+
<xmpTPg:SwatchGroups>
|
128
|
+
<rdf:Seq>
|
129
|
+
<rdf:li rdf:parseType="Resource">
|
130
|
+
<xmpG:groupName>Default Swatch Group</xmpG:groupName>
|
131
|
+
<xmpG:groupType>0</xmpG:groupType>
|
132
|
+
</rdf:li>
|
133
|
+
<rdf:li rdf:parseType="Resource">
|
134
|
+
<xmpG:groupName>Grays</xmpG:groupName>
|
135
|
+
<xmpG:groupType>1</xmpG:groupType>
|
136
|
+
<xmpG:Colorants>
|
137
|
+
<rdf:Seq>
|
138
|
+
<rdf:li rdf:parseType="Resource">
|
139
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=100</xmpG:swatchName>
|
140
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
141
|
+
<xmpG:type>PROCESS</xmpG:type>
|
142
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
143
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
144
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
145
|
+
<xmpG:black>100.000000</xmpG:black>
|
146
|
+
</rdf:li>
|
147
|
+
<rdf:li rdf:parseType="Resource">
|
148
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=90</xmpG:swatchName>
|
149
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
150
|
+
<xmpG:type>PROCESS</xmpG:type>
|
151
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
152
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
153
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
154
|
+
<xmpG:black>89.999405</xmpG:black>
|
155
|
+
</rdf:li>
|
156
|
+
<rdf:li rdf:parseType="Resource">
|
157
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=80</xmpG:swatchName>
|
158
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
159
|
+
<xmpG:type>PROCESS</xmpG:type>
|
160
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
161
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
162
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
163
|
+
<xmpG:black>79.998795</xmpG:black>
|
164
|
+
</rdf:li>
|
165
|
+
<rdf:li rdf:parseType="Resource">
|
166
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=70</xmpG:swatchName>
|
167
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
168
|
+
<xmpG:type>PROCESS</xmpG:type>
|
169
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
170
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
171
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
172
|
+
<xmpG:black>69.999702</xmpG:black>
|
173
|
+
</rdf:li>
|
174
|
+
<rdf:li rdf:parseType="Resource">
|
175
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=60</xmpG:swatchName>
|
176
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
177
|
+
<xmpG:type>PROCESS</xmpG:type>
|
178
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
179
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
180
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
181
|
+
<xmpG:black>59.999104</xmpG:black>
|
182
|
+
</rdf:li>
|
183
|
+
<rdf:li rdf:parseType="Resource">
|
184
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=50</xmpG:swatchName>
|
185
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
186
|
+
<xmpG:type>PROCESS</xmpG:type>
|
187
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
188
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
189
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
190
|
+
<xmpG:black>50.000000</xmpG:black>
|
191
|
+
</rdf:li>
|
192
|
+
<rdf:li rdf:parseType="Resource">
|
193
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=40</xmpG:swatchName>
|
194
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
195
|
+
<xmpG:type>PROCESS</xmpG:type>
|
196
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
197
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
198
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
199
|
+
<xmpG:black>39.999401</xmpG:black>
|
200
|
+
</rdf:li>
|
201
|
+
<rdf:li rdf:parseType="Resource">
|
202
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=30</xmpG:swatchName>
|
203
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
204
|
+
<xmpG:type>PROCESS</xmpG:type>
|
205
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
206
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
207
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
208
|
+
<xmpG:black>29.998802</xmpG:black>
|
209
|
+
</rdf:li>
|
210
|
+
<rdf:li rdf:parseType="Resource">
|
211
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=20</xmpG:swatchName>
|
212
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
213
|
+
<xmpG:type>PROCESS</xmpG:type>
|
214
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
215
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
216
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
217
|
+
<xmpG:black>19.999701</xmpG:black>
|
218
|
+
</rdf:li>
|
219
|
+
<rdf:li rdf:parseType="Resource">
|
220
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=10</xmpG:swatchName>
|
221
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
222
|
+
<xmpG:type>PROCESS</xmpG:type>
|
223
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
224
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
225
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
226
|
+
<xmpG:black>9.999103</xmpG:black>
|
227
|
+
</rdf:li>
|
228
|
+
<rdf:li rdf:parseType="Resource">
|
229
|
+
<xmpG:swatchName>C=0 M=0 Y=0 K=5</xmpG:swatchName>
|
230
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
231
|
+
<xmpG:type>PROCESS</xmpG:type>
|
232
|
+
<xmpG:cyan>0.000000</xmpG:cyan>
|
233
|
+
<xmpG:magenta>0.000000</xmpG:magenta>
|
234
|
+
<xmpG:yellow>0.000000</xmpG:yellow>
|
235
|
+
<xmpG:black>4.998803</xmpG:black>
|
236
|
+
</rdf:li>
|
237
|
+
</rdf:Seq>
|
238
|
+
</xmpG:Colorants>
|
239
|
+
</rdf:li>
|
240
|
+
<rdf:li rdf:parseType="Resource">
|
241
|
+
<xmpG:groupName>thesis</xmpG:groupName>
|
242
|
+
<xmpG:groupType>1</xmpG:groupType>
|
243
|
+
<xmpG:Colorants>
|
244
|
+
<rdf:Seq>
|
245
|
+
<rdf:li rdf:parseType="Resource">
|
246
|
+
<xmpG:swatchName>thesis</xmpG:swatchName>
|
247
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
248
|
+
<xmpG:type>PROCESS</xmpG:type>
|
249
|
+
<xmpG:cyan>0.003052</xmpG:cyan>
|
250
|
+
<xmpG:magenta>0.003052</xmpG:magenta>
|
251
|
+
<xmpG:yellow>0.003052</xmpG:yellow>
|
252
|
+
<xmpG:black>0.003052</xmpG:black>
|
253
|
+
</rdf:li>
|
254
|
+
<rdf:li rdf:parseType="Resource">
|
255
|
+
<xmpG:swatchName>C=59 M=29 Y=14 K=0 1</xmpG:swatchName>
|
256
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
257
|
+
<xmpG:type>PROCESS</xmpG:type>
|
258
|
+
<xmpG:cyan>59.148544</xmpG:cyan>
|
259
|
+
<xmpG:magenta>28.708321</xmpG:magenta>
|
260
|
+
<xmpG:yellow>13.656825</xmpG:yellow>
|
261
|
+
<xmpG:black>0.009155</xmpG:black>
|
262
|
+
</rdf:li>
|
263
|
+
<rdf:li rdf:parseType="Resource">
|
264
|
+
<xmpG:swatchName>C=40 M=7 Y=79 K=0 1</xmpG:swatchName>
|
265
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
266
|
+
<xmpG:type>PROCESS</xmpG:type>
|
267
|
+
<xmpG:cyan>39.682613</xmpG:cyan>
|
268
|
+
<xmpG:magenta>7.132065</xmpG:magenta>
|
269
|
+
<xmpG:yellow>79.360649</xmpG:yellow>
|
270
|
+
<xmpG:black>0.003052</xmpG:black>
|
271
|
+
</rdf:li>
|
272
|
+
<rdf:li rdf:parseType="Resource">
|
273
|
+
<xmpG:swatchName>C=9 M=86 Y=85 K=1 1</xmpG:swatchName>
|
274
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
275
|
+
<xmpG:type>PROCESS</xmpG:type>
|
276
|
+
<xmpG:cyan>9.100479</xmpG:cyan>
|
277
|
+
<xmpG:magenta>86.373695</xmpG:magenta>
|
278
|
+
<xmpG:yellow>85.204849</xmpG:yellow>
|
279
|
+
<xmpG:black>0.927746</xmpG:black>
|
280
|
+
</rdf:li>
|
281
|
+
<rdf:li rdf:parseType="Resource">
|
282
|
+
<xmpG:swatchName>C=0 M=24 Y=66 K=0 1</xmpG:swatchName>
|
283
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
284
|
+
<xmpG:type>PROCESS</xmpG:type>
|
285
|
+
<xmpG:cyan>0.003052</xmpG:cyan>
|
286
|
+
<xmpG:magenta>23.868162</xmpG:magenta>
|
287
|
+
<xmpG:yellow>65.584793</xmpG:yellow>
|
288
|
+
<xmpG:black>0.003052</xmpG:black>
|
289
|
+
</rdf:li>
|
290
|
+
<rdf:li rdf:parseType="Resource">
|
291
|
+
<xmpG:swatchName>C=16 M=16 Y=0 K=0 1</xmpG:swatchName>
|
292
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
293
|
+
<xmpG:type>PROCESS</xmpG:type>
|
294
|
+
<xmpG:cyan>15.765619</xmpG:cyan>
|
295
|
+
<xmpG:magenta>15.753412</xmpG:magenta>
|
296
|
+
<xmpG:yellow>0.003052</xmpG:yellow>
|
297
|
+
<xmpG:black>0.003052</xmpG:black>
|
298
|
+
</rdf:li>
|
299
|
+
<rdf:li rdf:parseType="Resource">
|
300
|
+
<xmpG:swatchName>C=14 M=0 Y=4 K=0 1</xmpG:swatchName>
|
301
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
302
|
+
<xmpG:type>PROCESS</xmpG:type>
|
303
|
+
<xmpG:cyan>14.407569</xmpG:cyan>
|
304
|
+
<xmpG:magenta>0.003052</xmpG:magenta>
|
305
|
+
<xmpG:yellow>3.698784</xmpG:yellow>
|
306
|
+
<xmpG:black>0.003052</xmpG:black>
|
307
|
+
</rdf:li>
|
308
|
+
<rdf:li rdf:parseType="Resource">
|
309
|
+
<xmpG:swatchName>C=70 M=64 Y=63 K=65 1</xmpG:swatchName>
|
310
|
+
<xmpG:mode>CMYK</xmpG:mode>
|
311
|
+
<xmpG:type>PROCESS</xmpG:type>
|
312
|
+
<xmpG:cyan>70.437172</xmpG:cyan>
|
313
|
+
<xmpG:magenta>64.312195</xmpG:magenta>
|
314
|
+
<xmpG:yellow>63.378345</xmpG:yellow>
|
315
|
+
<xmpG:black>65.276566</xmpG:black>
|
316
|
+
</rdf:li>
|
317
|
+
</rdf:Seq>
|
318
|
+
</xmpG:Colorants>
|
319
|
+
</rdf:li>
|
320
|
+
</rdf:Seq>
|
321
|
+
</xmpTPg:SwatchGroups>
|
322
|
+
</rdf:Description>
|
323
|
+
<rdf:Description rdf:about=""
|
324
|
+
xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
|
325
|
+
<pdf:Producer>Adobe PDF library 9.90</pdf:Producer>
|
326
|
+
</rdf:Description>
|
327
|
+
</rdf:RDF>
|
328
|
+
</x:xmpmeta>
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
|
348
|
+
|
349
|
+
|
350
|
+
<?xpacket end="w"?>
|
351
|
+
H��WMo7��W�:��~[H�8�l�H#'�i�&�����+q%�V��Ѓ��]�p�͛�=��Pgo/�zqy�fFG���;�we�N�1;{�6�gFř�M��'��������i���Z�^�SA�H����F-�j�qݶ�q�l�B#��A9��gV���V�_{<�ղv���&��=��y�o9tBrS��b|8���hz��v�����n�O7I�V�6�妡��K�BP����쁬66�zyoԇ�:��)X7ё�}5}S��ɷ�� �g���m>�|}����sfR@���|�
|
352
|
+
����-R�&�Ĩ� �V�3A5D��%|��ټ1d�0��#̣���6z
|
353
|
+
�z�I�aF:5��-xm�m�t���{@��`;�h�E�9� 0� ����J��Ag;E���uMѾN#��o�5n:� ڈ����=䀑��)u�N=�� ː0F�i`DIǤU�A���2 �8�jY��>��'�G���i�lAl
|
354
|
+
\�Ǹ�I�%ea@�#��!�&fhȓ#|#1!��VZ�;"�cq
|
355
|
+
��I�$���,���� �A��*LB�XkQ�-�A�W��|��$�-�6�u�x|Zŧ<�V;T3aB�q���+9����:��S(p�� ����kd��ķ�G�b��Rfl}ngH#s�TI��D��@g:�!F�p4֘�
|
356
|
+
�����SF������G�i����$B�E�9��i�}TD�/�?�H?��T�?��ka��RD��Z�Ü1�Qg�9�vLS��%����)�֤>~2/D4��$��$
|
357
|
+
�T8{�C��"�`�a�Y�ӀrR�����82��3���?N� lB�����"m�ָ�]��.O�%m��2�}��=("$�O{@\��X
|
358
|
+
'�I&����L} �w;��X�ih�e�k��J�*:�i�[����v�`��=No6T�+�R��Ҧ�r�O��ˍ�Y&+�%�c���`]��1)���lJe2�.�\0�?�F^��$u�S��e>n[��&[ū�2D�m{0�r+��H
|
359
|
+
��ݛ��w��!�ڂX�Pð�lEǕ�5m�GQ��&h=�o�j�UC�[8�����
|
360
|
+
8;Y!G4*'C)&3t@[HlfS]Ze-4qHilg_2KGL):1-SPjP$Q9ZS^PD\cHSH/#pXq"R,BQ
|
361
|
+
"cQ>\*Qs.V*RdF(1UXAs)B.!&e'b%iWH'<60Xg@Y]-O"4D+?K2R.rD6o5/j/>gRhT
|
362
|
+
WCmb=91osl=[SD!bg_Y2s1b6R(JE/UX^<m[VrhW?DQn[T+qpe+\OK^7/T#G+Q;?C.
|
363
|
+
p@Ne*lZR@130(2'BZcnWlM$*Nfg7m]H'bNinuq*J@08)%rqriFa)J!;4.V@uUlek;
|
364
|
+
LC5.%*bX@kkK2E!BBMB/d>hPGZ1IboO>r=-\s9o'"CT->)r%QIe+46+Lju"B<5"D]
|
365
|
+
r3U6tnLiai-chn\7Osn,QVXTYeA7mR':(KMfa@4)SEhOS6?Pa<?/**u9PS!bj=.>^
|
366
|
+
ID=ZH1")#<Hp!TL@ZPWCa&:c]0bp;iT'5ku7Pkin8"M3+qs@]ektKY%6u<K.0&.24
|
367
|
+
*O\Ys88Cj%P;9*pf2bhEn5O2DY&tRh9kC2h?bE<-#g">G;(A`^Xt<dPYJcZCR*0mY
|
368
|
+
Rg\bWTM0_BV@Up+W@"6*.cHr?:Mb)WnYTE_oK8r@QCt6D\T<h6.4@u/jh8\d&lBuh
|
369
|
+
.0WY_-Rd;_EJ^Z\qiD3d[+?R%Cd,CBRGAY".!p=i3O6>P[=ll[bobu?[dk]3P-W1A
|
370
|
+
@EBM918QiuB%lXf6<%!mA4g7`'@WO5G%d8C4Cab[+dB.rhgG*Fon>=^`T3*Q3>U0[
|
371
|
+
6faUWR>P&j;+1YVM)j5WDRD;U>#QVDb,9>u'q!E1_lr5_pdF22/."@c`[FNK*`G'$
|
372
|
+
pg$2%oZlN^YfDRs'KV;YX'/Q3/ng-Ab;7-#OBEQUob9n=m<e=gjU-qmAlMnlcKHem
|
373
|
+
;AEtQLt:"9akgok4B5sLQkGcc@46gS!iYpA9Is%EM30!sQ[L4+&k6sFjNTg-'\;9W
|
374
|
+
Qn;!eM78/smtY'&LDui',S<Hl6^WheUJ"R<,o\M?"d#,nk*W7(S(et'/,BDWOt8]'
|
375
|
+
G;BHE9Tl7LmD[m/Q>fP$@35HRV_40t:Z8o1QM*Mkcgkf7A\"%$l2@MA#6j*N;`<`U
|
376
|
+
QLCAU')#*A;grn1F27r`d>:H=.=$C5<ZX`t&+ac-+nm^Z;h!$aZi&jgK+/hjg\hjK
|
377
|
+
R)dIh"K#bG<53k+)N:7%AWkq7q@+XjJt^>TgpJeY`mT5UMRWl2XH7qP(([+NVd]nm
|
378
|
+
gR>/@L^EC[gHOj?S</D2Z4)r$Iu9QWp,snj#llG!l=o1VhIhE@Zsu=OD`^=O*!,ji
|
379
|
+
6Lq*c961oim07i9HtR$:D&G-([@6*D)=9,e::6LdM>d0Ak]4,o,tFG#9^%<o(Gf>q
|
380
|
+
XulUm!*DF90)~>
|
381
|
+
8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
|
382
|
+
b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
|
383
|
+
E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn
|
384
|
+
6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1
|
385
|
+
VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH<
|
386
|
+
PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O(
|
387
|
+
l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~>
|
388
|
+
H��V{X��ݙW�
|
389
|
+
���̝�* >�"�.�.`|�ɮ����T�*R�MBS��>��j����������b�_5S���
|
390
|
+
|
391
|
+
�P�IHƏ�}�)HE�!�11O`0�`(20��,��H�"��
|
392
|
+
l�#���<����@�+@!&����4pb2�`*��L�TSl�l�v�A~�w�G�a��#8�f���q�8���3N�>�Y��_�1��Tb���xs��R,D~�_�x
|
393
|
+
����Az|����L1�B�_e�sq��SW屻l�^Sd�U��G���)"��H���jM�=� ��=�I�)��V���2���a�%(�3(�5��n����3����7��,?�WJ�2��=ա�nr�v�g����QmZ��x�\���6����bc'�m����h�{n��W�������'E߆A��D��4(6���)�˲���5:Zy���}���85�eh�<�t�dhj��]�b���
|
394
|
+
]uU�ZC OK���$�H�51�URZe����fk�[�C�؈��CX�M�����"3�4:�t�F�SG���5�Q���ܴ8�F�!/-�n3��v������Z�x�t_�<�M��iġu�RQ��GY�&���|VpG��Y��>��(wUR��>>�N ��"l߰~hl o�d�!At�"ϡ?ut)��\A֨��,�` xhF��,�u���y�J4\�y �Si� )!Sؿ�ژ��3|ι����^�{�/�K��/�[0�8��� F\A01�w!�)i�))U���*�4M��iZ����c(cM��`SʏI�:i�*m�&M���ۏ����{�
|
395
|
+
q�{����x���TM�tt��qf9�]>�!ɲc��v�_0�Ώ��X�[(������Gdz�l��tC>����O�!��L��s�kok۬�~P
|
396
|
+
L����e����ңƉL�a3�`Ƣz�
|
397
|
+
q�<)8�~v�蹳�`���Ym���W��\&��bo5��Zv������*�ˢO���]�����w!��X�m��\�U�U���~Ƒ�9|��3����d���L�)���'wɄ�y.F��O���HoG˚��{����e�9��e5��6F,�t���^J�KG/}�
|
398
|
+
�5�����Lh��d#��͕��(�_z�}�Q�Z0��
|
399
|
+
S(Ѫh�V��ȶ�2S)Sk�P�*��&P
|
400
|
+
��65�n�3��9uz����A/h��Й��-3��IuEfT�2h'ݶ����*;���'��$3�N,�&·z'�Lo(ԛI$&{Cxvze��}vez�&/��_HVl�������:EU`��s�i����6����p��� ���Xh�.�<R�gIB��X1Vѡ��C�����X
|
401
|
+
���2��N����qݣH�LwTH��#)��ȇ�&�"{���O�1���
|
402
|
+
�K>t.��_|"�@� D3X!�{d�?���U"d�(��9|�2�ڸ�P��z��q��5�F˶�������+������2�[�ٌ����䖣�)ǥ�R���&tr�����Q��U(�7D@h��
|
403
|
+
�DM�5j���Q�����\9P-���(\8�,���#�߾j�N�p��� w�$�%nW���^��i� +��rk�UqZپ��N����t��9���h4���M�G����!��Mx�*�Lz_�*�<�}�AƤP$�F�a6�H�^Ji�HJ3��:�q³x�~q�Ҡ3����FX���6�&d�H3О�A[[�`��s)�Ta!q�ն�|�Dy|i��+�xj��@�����J��Z#Mk��c���j�!ck��HS4�ҢM+��*��kAW�:XQ
|
404
|
+
��U��[�;ݞ�-���:�Z�Xj�%UŇE2J̬�������-�W�]��C"��s�ofkz&�� Lsi%XU٪T_���b�����`n�
|
405
|
+
o���y|M����H8��]s ��lڳ�X���Og�����+��c�c��vT-�����.
|
406
|
+
�x�۽�����S̯�E����
|
407
|
+
��ce!Yhz>�/��pN��T�<����6=~��~2#~�����]���'-l���f�Y�6���u1�0j��U���^}���uVuM#Տ�u��j�M��mې�D��PgYʯQ#O��">���]ڠ��f�=��=eKY:�|f3s�#r��y�+W�l�^N�.�4�6�����_���B�(z�蠟���"�K��
|
408
|
+
�nT��n�V��H4�Z��P��,�
|
409
|
+
��Mw}�-l[���V��U����\������WV�_�kn:7�=�+�ߌ�r��~�7���緹�}NA���y��s�����g��������Y�ǹQ�O���B{�i�Dn�{?�u����I`|��V+��B�����QBy��t�Vs�6�����J7��Eo�">������@H+�e����/Ɗ9
|
410
|
+
��ɧ�C��dW�GC�^Z������HC���ϷQg�!u7�R�
|
411
|
+
�@�p^�6?E�Vҕ���r���B9H�2DE�rD�^{��c�f�4�8�r�A
|
412
|
+
L����n��
|
413
|
+
�G���w[TW�z
|
414
|
+
�6@d�ι�Z��cR�>���<W���2D��YV�|U�%�|,�A)�����4g�9�z�3���{��'�5m�]8����i����}>�
|
415
|
+
Ε,�`8(`헩�>���E2��B���Q��D���[����K�%���دj��L
|
416
|
+
G��?|պ6|ه�d��b8V�7���K\��T������>'�EF���m�\�g��8}χ>�??�ϰV�i?�x
|
417
|
+
�[UN9>m��4�e�=b�����Ü9�&M����Xev�bߎI��{R�J���b�4)Ss%���K/�sy��c�of�M~�}�+�����B�<%W"��N�7�rT�-X�P��L~�ٚ1��;���
|
418
|
+
�d�p��������p������t>�`n3/sNRC����v�LG\��bx������v����!��ߣ���f��]o?��n��L����E���or�{8��`�"r;�W�}�E�A�6��7�>t'�?���w������Q�!�����298�y&2��w�O#�3N����=�փ�`>�S�Lƽۏ��!�#_F��{'��qO�1�k����I��k?m��f�m�!���<�{���Ƽ�1�i�%��}��y����{���[w�B�g�=�Q����<����k���S� 9���E�A�.!�[��#���Y�mp���
|
419
|
+
~љ�v��ϵ�n٘�n��5w� �ݍ*�ݠ"����w�>�}|�2w=����Z}���C��-s��V��܇U���*p;��>�sg�����z{�*m���v��֜�f���%߷z�{o[���6B�m+is��j۴q��6��F��������>��Y��{����Up�\��]���+��FW���u��l���֘�T˽��f�6��V=�]�(p�,w�s[�27��j�6���h��f����7z��/����xsjf{�����j���kn�n��λ�|���rϫ��]�q�7��J���қ�1�+���T��+�+jʽ��)��5e^c����Kɮ3T��RWu�[�σ�7pDo`�ؠ"�6�ul`������������$�A68b��H�
|
420
|
+
H��V{xS��}眖��hi�B��K�Z�R.BH����Ң IڦG�����s��A��#r���SE��(8��3�C�d]t��`lxz��������y�%_�����y0 h����y#W���Q�\�����6�r� `�@���F> ?�&Mz!��a~}�a�1 �*ɔ��מ+q�}�)��:��=K'�(ޘ:$�5i:0d4�C���뎞o'�
|
421
|
+
'�v1I|\�kĵ��^QO���yR��L�2me�?�~��!����ny�<W~X> ����+�?�Nޏ�i��3�p>��y_Ο���~~��nN6�7[��a�J�,��m�c�k�gdI�d[��ŗ~2�]�uU��]���/�ܐ4�1��l$+`S�V�<T�f����V���*&<���C��<-�w�/�m�I R��D]�!��\v�e<����|\>/�����x2O�97��5�4�;�0�4ώ�I"<���D����n��0�K�����]�.i��GZ}��M�������ӊ��2�n�u��>��x�]�@φSXI����#J��y��ζ�-�t�}
|
422
|
+
�:B��G��Х��ЅЇ�B�C�΅Ά�h��_u�4
|
423
|
+
ss�C��)���Y�.���+n�~jХ-eL1f3ypGj�����jIS���S���X�b����-6��8��L���eNd!d:Ƶ �IЏU�t��F-+w9�&��m�`3b��6���/�s�jޖsĿ�P"�<��5J�w�K���~�jR����լ�T��Ss�C�V(���05*=Q����O/��x#������Ibw�H�E�r� �٬���UĨ-�0�Qezּl�*xt͑.M�����K���Q�z��Ȼ�.Um��9T}�No�sU��TU���^�_���u�t�V;Vo��mx�{=b�^�r���4�)Jq\���
|
424
|
+
��qSSl*�Q�x�y��w�=�p�z,���:Fi�����U�_�[�C�o��d8���ZU��j�~�r�ɬZ�T>����.)�jV��3'^��k�]�:�^�1�%�D��-��P�I�H�2X��Ņ��L�2�S":�#1b�ͩ�D���4�������L�����b%��;��9ߘZ�ZO(�;|���4*�`$ڝ��ZD&����.��NO.�
|
425
|
+
c��.�reܥ��Bw�Z�ұ�6�;�B�Z>�et;rK*{pa}A�.B���.`I����?�_|W]l���y?���<ZE�DR$%�"�cK�x�iZ�H5�i,ʖq�N���k�5j�A�
|
426
|
+
�oA����v�6����yH�H
|
427
|
+
Td�J��d���C�=䏖��˾�/��Qj�>�����%���U�������:��Dh� �>]��[#��-�e�ӭJ*�1ᠮ��ؐT]R�Щ��$&I=I� ��1]WA"Jp��S����K�?^^��~i�ȯ_��ڦksS����@67i���x��E��b�@3 ���0Q� a
|
428
|
+
m���@���K���USS�C�l����4ͤg��CC����~��|������9���N�>a��&I��=ҳ�u'"���ݧv#xw��^��m�4�������cKBC�@��4EPYiЉ($/'
|
429
|
+
i��W#i� A ���#���h0��h��O���A�I�8��4�7�M�%��Ȭd�Qw��9��k��^|�����W�q�9.)�;�ગ4p���ۥ|�R�#��_�K�E���"�?��gz�d���N�r)��b��I����'@�}��#c?�d�bRE��~��HXK��p@L�ּ�3�N��V�^���w���:�2����.U�1_w�ͮ��p\N��W��A�Qׁ�ϣqp_ԐQa�1����8�Ӱi��4���Bq#���NHR���I&
|
430
|
+
��y�3/��=����n��wd��v(=xq�UI��6��:Q���~��S.��@5����������+�A�1;Ҹ5%�7�#�+�hEBa�U�J@��0�vvL����yt_�=��x�P'�v�a&�]w[�
|
431
|
+
h'�q�5e�-H5�&��#8'��J�������Y���b��}�z�$�$KR�P����.��^�ls/m��Ϸ�/�g��E8}�!�v�_.�R��6p�/����G�E<�
|
432
|
+
�Ⱦ�f{+} �<|r��r��u~Q�k�^�����A�8Q���7Y�����������1&�#�� �(��\~��QƤs�k�[
|
433
|
+
��`�$�b��:X��c<�d�Ȣ���K���j�q��@K�,� �̔�r){B�4��36�r�oY��
|
434
|
+
V�co�xq�ָ�k����E{;�>8-yP��A��PA�Rp &���pq��H�b�4g(�Z���v��������;�!煒w�~�V)w*�Pܺ�N(�G%�U%��������� V��Ե��G�l1/��lE���`���Nz@�|�ع �<��zW�S�W��3h�����3Q��������Z���������c����d�V�\�Nt|8��'�������Lf����:P�WBJ�098UM�͈���̴�H*���;����|�B����x�{�ͽJ'7��~��E��BD�2���P��.I��la
|
435
|
+
��c`+B�#F'����_�YVw���Zz�-�P.ʭ��"�V
|
436
|
+
|
437
|
+
��#~*������`�V�]�UQ��E��;ڡA���\X$
|
438
|
+
�m��K2���.���IhH����,6G%�.�����R�i�����ӕ��D��ɳ[d��U2��K��Q�m
|
439
|
+
�&Eq_'�"߫��B�}-�[�O�mw��m���?���WAO*��(�������7v���œRtu�L����<�y���kL�}J.�j�L聒O�x��7ﭑ4l|=�;{�p���O�9ء7t��=D��"�45\>��a�G�{J�����JM�,t�*YhcԢP�ԟΦI4�C����-�M���o�f%�k���Qj���d�J��R�'��_ηZS��d*v���r��EV���0 �,sA����i�����k%`��(�`�6!��ѹ+�;�I�`�L
|
440
|
+
���ˤ��rP�i|_�C���n�+���tyG)3�X�z��
|
441
|
+
�]g�x�K�xOr(s�%�::>�������8���������fJ�و���_n���{�� �s��ϫ� ��6���w�����`#�7F:�o��YLj�)��m��nx�g6� ����+��x���K�=���)2wJ;���H���}����&��]0���T��8���s�ϝ�k�35���Kv���c�E�#Y��z5G~u�������rt�;��{[$�ͫ;����=O��,a�s�cn�>����~�gUn�Y�5 x����:r��܋�'J������U|��Оl�%�>/�\.��ƻ��f]�]r\{O�tNus]19��0��ɵ�A���?�u�(>/1?(�Uk}�s��M����Z7'�99�<4��ц�S%'G�c�QԜ:�4�e�Do|��B����I,�c�z��"���Mg��N������
|
442
|
+
���9O5�\|�#�ę|�(�Q�����˦1��pq����Ĺ�q^���}Z���y�����S..����ÌE���5>�ߒ��1���Jl&z��������Gލ�繜ѹ@e���sCm�rF{��ƃ����
|
443
|
+
��-�
|
444
|
+
�����
|
445
|
+
Av=����f�˷�A;g� �s^4x�������ݰ��G<�k��[}�&"�7��a{,�}��
|
446
|
+
�P^(g.s�n��ѷ�z�����l��Y�d�yJ2$���߂��@���8�@8x��D�D���H���H��RH!�RH!�RH!�RH!�R����u+ٲY2�J����E.�B��D�J�lpT3A�$����MOQ�ϙ��b��M��P;��,��,ӆ����D>q���d�V- "j�cܸe���A7��.��?��|;��Y8���瞏;���b��(�n�1p5�8�h�M`��>��t��CƗy%��[!G�oC�����
|
447
|
+
:%��4�%Afб� sq�����H�"������%8�ʞ���v\���"t�2� �wm�=3��5�߅���J/9N�`�-�Q��:�LI0�g�?8�;T�.�Ϡ��}�f��I�R7��c~\�Ps���C}�Y�5`r�W1K��
|
448
|
+
fT�+��|�~E�(t�e�R��U0/C6T�Lh��4�[�
|
449
|
+
&x<�X�%2dM��%��<gJ
|
450
|
+
0000000016 00000 n
|
451
|
+
0000000169 00000 n
|
452
|
+
0000033459 00000 n
|
453
|
+
0000000000 00000 f
|
454
|
+
0000038378 00000 n
|
455
|
+
0000038598 00000 n
|
456
|
+
0000037817 00000 n
|
457
|
+
0000037890 00000 n
|
458
|
+
0000037959 00000 n
|
459
|
+
0000057043 00000 n
|
460
|
+
0000033511 00000 n
|
461
|
+
0000033841 00000 n
|
462
|
+
0000056930 00000 n
|
463
|
+
0000035779 00000 n
|
464
|
+
0000037256 00000 n
|
465
|
+
0000037304 00000 n
|
466
|
+
0000038262 00000 n
|
467
|
+
0000038293 00000 n
|
468
|
+
0000038146 00000 n
|
469
|
+
0000038177 00000 n
|
470
|
+
0000038030 00000 n
|
471
|
+
0000038061 00000 n
|
472
|
+
0000048715 00000 n
|
473
|
+
0000038902 00000 n
|
474
|
+
0000039147 00000 n
|
475
|
+
0000048972 00000 n
|
476
|
+
0000057079 00000 n
|
477
|
+
trailer
|