mizuho 0.9.6 → 0.9.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. data/README.markdown +4 -2
  2. data/Rakefile +0 -37
  3. data/asciidoc/BUGS +9 -18
  4. data/asciidoc/BUGS.txt +5 -14
  5. data/asciidoc/CHANGELOG +1433 -266
  6. data/asciidoc/CHANGELOG.txt +2821 -1810
  7. data/asciidoc/COPYING +339 -339
  8. data/asciidoc/COPYRIGHT +18 -18
  9. data/asciidoc/INSTALL +189 -30
  10. data/asciidoc/INSTALL.txt +175 -19
  11. data/asciidoc/MANIFEST +88 -0
  12. data/asciidoc/Makefile.in +29 -13
  13. data/asciidoc/README +16 -17
  14. data/asciidoc/README.txt +35 -36
  15. data/asciidoc/a2x.py +902 -0
  16. data/asciidoc/asciidoc.conf +610 -455
  17. data/asciidoc/asciidoc.py +1965 -1061
  18. data/asciidoc/asciidocapi.py +257 -0
  19. data/asciidoc/common.aap +2 -2
  20. data/asciidoc/configure +1170 -1023
  21. data/asciidoc/configure.ac +1 -1
  22. data/asciidoc/dblatex/asciidoc-dblatex.xsl +42 -0
  23. data/asciidoc/doc/a2x.1 +559 -102
  24. data/asciidoc/doc/a2x.1.txt +233 -91
  25. data/asciidoc/doc/article-docinfo.xml +87 -0
  26. data/asciidoc/doc/article.pdf +0 -0
  27. data/asciidoc/doc/article.txt +139 -122
  28. data/asciidoc/doc/asciidoc.1 +157 -46
  29. data/asciidoc/doc/asciidoc.1.txt +171 -118
  30. data/asciidoc/doc/asciidoc.conf +7 -8
  31. data/asciidoc/doc/asciidoc.dict +960 -635
  32. data/asciidoc/doc/asciidoc.txt +2335 -1464
  33. data/asciidoc/doc/asciidocapi.txt +189 -0
  34. data/asciidoc/doc/asciimathml.txt +14 -17
  35. data/asciidoc/doc/book-multi.txt +181 -155
  36. data/asciidoc/doc/book.epub +0 -0
  37. data/asciidoc/doc/book.txt +156 -131
  38. data/asciidoc/doc/customers.csv +18 -18
  39. data/asciidoc/doc/epub-notes.txt +210 -0
  40. data/asciidoc/doc/faq.txt +1122 -547
  41. data/asciidoc/doc/latex-backend.txt +192 -191
  42. data/asciidoc/doc/latex-bugs.txt +134 -0
  43. data/asciidoc/doc/latex-filter.pdf +0 -0
  44. data/asciidoc/doc/latex-filter.txt +196 -0
  45. data/asciidoc/doc/latexmath.txt +13 -136
  46. data/asciidoc/doc/latexmathml.txt +2 -2
  47. data/asciidoc/doc/main.aap +233 -297
  48. data/asciidoc/doc/music-filter.pdf +0 -0
  49. data/asciidoc/doc/music-filter.txt +55 -65
  50. data/asciidoc/doc/publishing-ebooks-with-asciidoc.txt +398 -0
  51. data/asciidoc/doc/slidy-example.txt +167 -0
  52. data/asciidoc/doc/slidy.txt +113 -0
  53. data/asciidoc/doc/source-highlight-filter.pdf +0 -0
  54. data/asciidoc/doc/source-highlight-filter.txt +45 -20
  55. data/asciidoc/doc/testasciidoc.txt +231 -0
  56. data/asciidoc/docbook-xsl/asciidoc-docbook-xsl.txt +30 -8
  57. data/asciidoc/docbook-xsl/chunked.xsl +17 -19
  58. data/asciidoc/docbook-xsl/common.xsl +106 -67
  59. data/asciidoc/docbook-xsl/epub.xsl +35 -0
  60. data/asciidoc/docbook-xsl/fo.xsl +3 -0
  61. data/asciidoc/docbook-xsl/htmlhelp.xsl +16 -17
  62. data/asciidoc/docbook-xsl/manpage.xsl +31 -31
  63. data/asciidoc/docbook-xsl/text.xsl +6 -1
  64. data/asciidoc/docbook-xsl/xhtml.xsl +14 -14
  65. data/asciidoc/docbook45.conf +759 -0
  66. data/asciidoc/filters/code/code-filter-readme.txt +37 -37
  67. data/asciidoc/filters/code/code-filter-test.txt +15 -15
  68. data/asciidoc/filters/code/code-filter.conf +8 -8
  69. data/asciidoc/filters/graphviz/asciidoc-graphviz-sample.txt +104 -64
  70. data/asciidoc/filters/graphviz/graphviz-filter.conf +20 -16
  71. data/asciidoc/filters/graphviz/graphviz2png.py +54 -39
  72. data/asciidoc/filters/latex/latex-filter.conf +18 -0
  73. data/asciidoc/filters/latex/latex2png.py +216 -0
  74. data/asciidoc/filters/music/music-filter.conf +8 -17
  75. data/asciidoc/filters/music/music2png.py +40 -32
  76. data/asciidoc/filters/source/source-highlight-filter.conf +40 -34
  77. data/asciidoc/help.conf +261 -96
  78. data/asciidoc/html4.conf +505 -460
  79. data/asciidoc/html5.conf +686 -0
  80. data/asciidoc/images/highlighter.png +0 -0
  81. data/asciidoc/images/icons/caution.png +0 -0
  82. data/asciidoc/images/icons/example.png +0 -0
  83. data/asciidoc/images/icons/important.png +0 -0
  84. data/asciidoc/images/icons/note.png +0 -0
  85. data/asciidoc/images/icons/tip.png +0 -0
  86. data/asciidoc/images/icons/warning.png +0 -0
  87. data/asciidoc/images/smallnew.png +0 -0
  88. data/asciidoc/javascripts/asciidoc.js +189 -0
  89. data/asciidoc/javascripts/slidy.js +2845 -0
  90. data/asciidoc/javascripts/toc.js +8 -0
  91. data/asciidoc/lang-de.conf +57 -0
  92. data/asciidoc/lang-en.conf +54 -0
  93. data/asciidoc/lang-es.conf +49 -9
  94. data/asciidoc/lang-fr.conf +59 -0
  95. data/asciidoc/lang-hu.conf +55 -0
  96. data/asciidoc/lang-it.conf +55 -0
  97. data/asciidoc/lang-nl.conf +57 -0
  98. data/asciidoc/lang-pt-BR.conf +56 -0
  99. data/asciidoc/lang-ru.conf +60 -0
  100. data/asciidoc/lang-uk.conf +60 -0
  101. data/asciidoc/latex.conf +700 -663
  102. data/asciidoc/main.aap +77 -0
  103. data/asciidoc/slidy.conf +136 -0
  104. data/asciidoc/{examples/website/xhtml11-manpage.css → stylesheets/asciidoc-manpage.css} +1 -1
  105. data/asciidoc/stylesheets/asciidoc.css +508 -0
  106. data/asciidoc/stylesheets/docbook-xsl.css +322 -272
  107. data/asciidoc/stylesheets/flask-manpage.css +1 -0
  108. data/asciidoc/stylesheets/flask.css +584 -0
  109. data/asciidoc/stylesheets/pygments.css +66 -0
  110. data/asciidoc/stylesheets/slidy.css +445 -0
  111. data/asciidoc/stylesheets/toc2.css +33 -0
  112. data/asciidoc/stylesheets/volnitsky-manpage.css +1 -0
  113. data/asciidoc/stylesheets/volnitsky.css +435 -0
  114. data/asciidoc/stylesheets/xhtml11-quirks.css +5 -3
  115. data/asciidoc/tests/asciidocapi.py +257 -0
  116. data/asciidoc/tests/data/deprecated-quotes.txt +12 -0
  117. data/asciidoc/tests/data/filters-test.txt +90 -0
  118. data/asciidoc/tests/data/lang-de-test.txt +106 -0
  119. data/asciidoc/tests/data/lang-en-test.txt +114 -0
  120. data/asciidoc/tests/data/lang-es-test.txt +106 -0
  121. data/asciidoc/tests/data/lang-fr-test.txt +106 -0
  122. data/asciidoc/tests/data/lang-hu-test.txt +106 -0
  123. data/asciidoc/tests/data/lang-nl-test.txt +94 -0
  124. data/asciidoc/tests/data/lang-pt-BR-test.txt +106 -0
  125. data/asciidoc/tests/data/lang-ru-test.txt +106 -0
  126. data/asciidoc/tests/data/lang-uk-test.txt +106 -0
  127. data/asciidoc/tests/data/oldtables.txt +64 -0
  128. data/asciidoc/tests/data/rcs-id-marker-test.txt +6 -0
  129. data/asciidoc/tests/data/testcases.conf +2 -0
  130. data/asciidoc/tests/data/testcases.txt +740 -0
  131. data/asciidoc/tests/data/utf8-bom-test.txt +9 -0
  132. data/asciidoc/tests/data/utf8-examples.txt +217 -0
  133. data/asciidoc/tests/testasciidoc.conf +520 -0
  134. data/asciidoc/tests/testasciidoc.py +411 -0
  135. data/asciidoc/text.conf +16 -16
  136. data/asciidoc/vim/syntax/asciidoc.vim +99 -91
  137. data/asciidoc/wordpress.conf +43 -3
  138. data/asciidoc/xhtml11-quirks.conf +61 -57
  139. data/asciidoc/xhtml11.conf +684 -645
  140. data/lib/mizuho.rb +2 -0
  141. data/lib/mizuho/generator.rb +2 -2
  142. data/test/generator_spec.rb +1 -1
  143. data/test/parser_spec.rb +1 -1
  144. data/test/spec_helper.rb +3 -4
  145. metadata +87 -88
  146. data/asciidoc/a2x +0 -674
  147. data/asciidoc/doc/article.css-embedded.html +0 -602
  148. data/asciidoc/doc/article.html +0 -46
  149. data/asciidoc/doc/asciidoc-revhistory.xml +0 -27
  150. data/asciidoc/doc/asciidoc.1.css-embedded.html +0 -598
  151. data/asciidoc/doc/asciidoc.1.css.html +0 -212
  152. data/asciidoc/doc/asciidoc.1.html +0 -190
  153. data/asciidoc/doc/asciidoc.css-embedded.html +0 -7853
  154. data/asciidoc/doc/asciidoc.css.html +0 -7416
  155. data/asciidoc/doc/asciidoc.html +0 -3339
  156. data/asciidoc/doc/book-multi.css-embedded.html +0 -575
  157. data/asciidoc/doc/book-multi.html +0 -55
  158. data/asciidoc/doc/book.css-embedded.html +0 -607
  159. data/asciidoc/doc/book.html +0 -43
  160. data/asciidoc/doc/docbook-xsl.css +0 -272
  161. data/asciidoc/doc/latex-backend.html +0 -117
  162. data/asciidoc/doc/music-filter.html +0 -566
  163. data/asciidoc/doc/source-highlight-filter.html +0 -214
  164. data/asciidoc/docbook.conf +0 -721
  165. data/asciidoc/examples/website/ASCIIMathML.js +0 -938
  166. data/asciidoc/examples/website/CHANGELOG.html +0 -4389
  167. data/asciidoc/examples/website/CHANGELOG.txt +0 -1810
  168. data/asciidoc/examples/website/INSTALL.html +0 -161
  169. data/asciidoc/examples/website/INSTALL.txt +0 -71
  170. data/asciidoc/examples/website/LaTeXMathML.js +0 -1223
  171. data/asciidoc/examples/website/README-website.html +0 -118
  172. data/asciidoc/examples/website/README-website.txt +0 -29
  173. data/asciidoc/examples/website/README.html +0 -125
  174. data/asciidoc/examples/website/README.txt +0 -36
  175. data/asciidoc/examples/website/a2x.1.html +0 -419
  176. data/asciidoc/examples/website/a2x.1.txt +0 -204
  177. data/asciidoc/examples/website/asciidoc-docbook-xsl.html +0 -130
  178. data/asciidoc/examples/website/asciidoc-docbook-xsl.txt +0 -43
  179. data/asciidoc/examples/website/asciidoc-graphviz-sample.txt +0 -130
  180. data/asciidoc/examples/website/asciimathml.txt +0 -64
  181. data/asciidoc/examples/website/build-website.sh +0 -25
  182. data/asciidoc/examples/website/customers.csv +0 -18
  183. data/asciidoc/examples/website/downloads.html +0 -257
  184. data/asciidoc/examples/website/downloads.txt +0 -121
  185. data/asciidoc/examples/website/faq.html +0 -673
  186. data/asciidoc/examples/website/faq.txt +0 -547
  187. data/asciidoc/examples/website/index.html +0 -419
  188. data/asciidoc/examples/website/index.txt +0 -245
  189. data/asciidoc/examples/website/latex-backend.html +0 -535
  190. data/asciidoc/examples/website/latex-backend.txt +0 -191
  191. data/asciidoc/examples/website/latexmathml.txt +0 -41
  192. data/asciidoc/examples/website/layout1.conf +0 -161
  193. data/asciidoc/examples/website/layout1.css +0 -65
  194. data/asciidoc/examples/website/layout2.conf +0 -158
  195. data/asciidoc/examples/website/layout2.css +0 -93
  196. data/asciidoc/examples/website/manpage.html +0 -266
  197. data/asciidoc/examples/website/manpage.txt +0 -118
  198. data/asciidoc/examples/website/music-filter.html +0 -242
  199. data/asciidoc/examples/website/music-filter.txt +0 -158
  200. data/asciidoc/examples/website/music1.abc +0 -12
  201. data/asciidoc/examples/website/music1.png +0 -0
  202. data/asciidoc/examples/website/music2.ly +0 -9
  203. data/asciidoc/examples/website/music2.png +0 -0
  204. data/asciidoc/examples/website/newlists.txt +0 -40
  205. data/asciidoc/examples/website/newtables.txt +0 -397
  206. data/asciidoc/examples/website/sample1.png +0 -0
  207. data/asciidoc/examples/website/sample3.png +0 -0
  208. data/asciidoc/examples/website/sample4.png +0 -0
  209. data/asciidoc/examples/website/source-highlight-filter.html +0 -286
  210. data/asciidoc/examples/website/source-highlight-filter.txt +0 -203
  211. data/asciidoc/examples/website/support.html +0 -78
  212. data/asciidoc/examples/website/support.txt +0 -5
  213. data/asciidoc/examples/website/toc.js +0 -69
  214. data/asciidoc/examples/website/userguide.html +0 -7460
  215. data/asciidoc/examples/website/userguide.txt +0 -4979
  216. data/asciidoc/examples/website/version83.txt +0 -37
  217. data/asciidoc/examples/website/version9.html +0 -143
  218. data/asciidoc/examples/website/version9.txt +0 -48
  219. data/asciidoc/examples/website/xhtml11-quirks.css +0 -41
  220. data/asciidoc/examples/website/xhtml11.css +0 -328
  221. data/asciidoc/stylesheets/xhtml11-manpage.css +0 -18
  222. data/asciidoc/stylesheets/xhtml11.css +0 -328
@@ -1,37 +0,0 @@
1
- AsciiDoc Version 8.3
2
- ====================
3
-
4
- This is significant release, it gets rid of unused cruft, simplifies
5
- the http://www.methods.co.nz/asciidoc/newlists.html[lists] syntax and
6
- introduces a decent
7
- http://www.methods.co.nz/asciidoc/newtables.html[tables] syntax.
8
- There are a few fairly minor backward compatibility issues, please
9
- read the link:CHANGELOG.html#X1[compatibility issues] section in the
10
- CHANGLOG before upgrading.
11
-
12
- New Features
13
- ------------
14
- - AsciiDoc tables have been redesigned. The link:newtables.html[new
15
- syntax and features] are a huge improvement over the old tables. The
16
- old tables syntax has been deprecated but is currently still
17
- processed.
18
- - Lists can now be styled like other block elements. This allows a
19
- single list syntax for 'glossary', 'qanda' (Question and Answer) and
20
- 'bibliography' lists instead of having to remember a different
21
- syntax for each type. link:newlists.html[Here is some more
22
- information].
23
- - Inline passthroughs macros have been improved and block passthrough
24
- macros added. Attribute substitution can be optionally specified
25
- when the macro is called.
26
- - The passthrough block has a fully transparent passthrough delimited
27
- block block style called 'pass'.
28
- - The 'asciimath' and 'latexmath' link:userguide.html#X77[passthrough
29
- macros] along with 'asciimath' and 'latexmath'
30
- link:userguide.html#X76[passthrough blocks] provide a (backend
31
- dependent) mechanism for rendering mathematical formulas. There are
32
- link:latexmath.pdf[LaTeX Math], link:asciimathml.html[AsciiMathML]
33
- and link:latexmathml.html[LaTeXMathML] examples on the AsciiDoc
34
- website.
35
-
36
- Read the link:CHANGELOG.html[CHANGELOG] for a full list of all
37
- additions and changes.
@@ -1,143 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
- <meta name="generator" content="AsciiDoc 8.3.3" />
7
- <link rel="stylesheet" href="./xhtml11.css" type="text/css" />
8
- <link rel="stylesheet" href="./xhtml11-quirks.css" type="text/css" />
9
- <link rel="stylesheet" href="./layout1.css" type="text/css" />
10
- <title>AsciiDoc Version 9</title>
11
- </head>
12
- <body>
13
- <div id="layout-banner">
14
- <div id="layout-title">AsciiDoc</div>
15
- <div id="layout-description">Text based document generation</div>
16
- </div>
17
- <table>
18
- <tr valign="top">
19
- <td id="layout-menu">
20
- <div>&#187;<a href="index.html">Home</a></div>
21
- <div>&#187;<a href="manpage.html">Man&nbsp;Page</a></div>
22
- <div>&#187;<a href="userguide.html">User&nbsp;Guide</a></div>
23
- <div>&#187;<a href="http://powerman.name/doc/asciidoc">Cheatsheet</a></div>
24
- <div>&#187;<a href="a2x.1.html">a2x</a></div>
25
- <div>&#187;<a href="README.html">README</a></div>
26
- <div>&#187;<a href="CHANGELOG.html">ChangeLog</a></div>
27
- <div>&#187;<a href="INSTALL.html">Installation</a></div>
28
- <div>&#187;<a href="downloads.html">Downloads</a></div>
29
- <div>&#187;<a href="faq.html">FAQ</a></div>
30
- <div>&#187;<a href="support.html">Support</a></div>
31
- <div id="page-source">&#187;<a href="version9.txt">Page&nbsp;Source</a></div>
32
- </td>
33
- <td>
34
- <div id="layout-content">
35
- <div id="header">
36
- <h1>AsciiDoc Version 9</h1>
37
- </div>
38
- <div id="preamble">
39
- <div class="sectionbody">
40
- <div class="paragraph"><p>Installing and configuring the latest version of <em>AsciiDoc</em> across
41
- various distributions and platforms has never been easy and lots of
42
- contributors have put in <a href="downloads.html#X1">lots of effort</a> to do
43
- just this&#8201;&#8212;&#8201;this never ending and largely thankless task is the bane
44
- of the Open Source developer and user alike because invevitably
45
- distribution specific packages are either missing or are soon out of
46
- date.</p></div>
47
- <div class="paragraph"><p>But it doesn&#8217;t have to be like this&#8201;&#8212;&#8201;<em>AsciiDoc</em> is a pure Python
48
- application and could be distributed from the
49
- <a href="http://pypi.python.org/">Cheese Shop</a> as a stand-alone platform
50
- independent <a href="http://peak.telecommunity.com/DevCenter/PythonEggs">Python
51
- Egg</a>. The 9.x branch aims to attack this problem.</p></div>
52
- <div class="paragraph"><p>The feature plan for 9.0 is:</p></div>
53
- <div class="ulist"><ul>
54
- <li>
55
- <p>
56
- <em>AsciiDoc</em> easy_installable (done, not fully tested).
57
- </p>
58
- </li>
59
- <li>
60
- <p>
61
- <em>AsciiDoc</em> as a Python module with a decent API (now a module, no API
62
- yet).
63
- </p>
64
- </li>
65
- <li>
66
- <p>
67
- <em>AsciiDoc</em> 100% Python: no shell or unportable scripting (not done).
68
- </p>
69
- </li>
70
- </ul></div>
71
- <div class="paragraph"><p>Later in the 9.x branch:</p></div>
72
- <div class="ulist"><ul>
73
- <li>
74
- <p>
75
- plugin system for frontend and backends.
76
- </p>
77
- </li>
78
- <li>
79
- <p>
80
- plugin system for style-sheets.
81
- </p>
82
- </li>
83
- <li>
84
- <p>
85
- distutils commands to produce <em>AsciiDoc</em> rendered documentation of
86
- Python packages (minimal support now in buildutils).
87
- </p>
88
- </li>
89
- </ul></div>
90
- <div class="paragraph"><p><a href="http://ygingras.net">Yannick Gingras</a> is the maintainer of the 9.x branch;
91
- he can be contacted by <a href="mailto:ygingras@ygingras.net">email</a> or, preferably,
92
- on the <a href="support.html">mailing list</a>.</p></div>
93
- <div class="paragraph"><p>There is no release of the 9.x branch yet but adventurous users can
94
- still get the source with Mercurial:</p></div>
95
- <div class="literalblock">
96
- <div class="content">
97
- <pre><tt>hg clone static-http://ygingras.net/files/asciidoc.hg asciidoc-9x</tt></pre>
98
- </div></div>
99
- <div class="paragraph"><p>Using sources from the Mercurial repository will require
100
- <a href="http://peak.telecommunity.com/DevCenter/setuptools">Setuptools</a> and the
101
- <a href="http://pypi.python.org/pypi/hg.setuptools/">Mercurial plugin</a> for
102
- Setuptools.</p></div>
103
- <div class="admonitionblock">
104
- <table><tr>
105
- <td class="icon">
106
- <img src="./images/icons/note.png" alt="Note" />
107
- </td>
108
- <td class="content">The 9.x branch is still experimental. You should install it
109
- inside a <a href="http://pypi.python.org/pypi/virtualenv/">virtualenv</a> to
110
- prevent damages to your global Python environment.</td>
111
- </tr></table>
112
- </div>
113
- </div>
114
- </div>
115
- <div id="footer">
116
- <div id="footer-text">
117
- Version 8.3.3<br />
118
- Last updated 2009-01-02 11:19:06 NZDT
119
- </div>
120
- <div id="footer-badges">
121
- <a href="http://validator.w3.org/check?uri=referer">
122
- <img style="border:none; width:88px; height:31px;"
123
- src="http://www.w3.org/Icons/valid-xhtml11"
124
- alt="Valid XHTML 1.1!" />
125
- </a>
126
- <a href="http://jigsaw.w3.org/css-validator/check/referer">
127
- <img style="border:none; width:88px; height:31px;"
128
- src="http://jigsaw.w3.org/css-validator/images/vcss"
129
- alt="Valid CSS!" />
130
- </a>
131
- <a href="http://www.mozilla.org/products/firefox/">
132
- <img style="border:none; width:110px; height:32px;"
133
- src="http://www.spreadfirefox.com/community/images/affiliates/Buttons/110x32/safer.gif"
134
- alt="Get Firefox!" />
135
- </a>
136
- </div>
137
- </div>
138
- </div>
139
- </td>
140
- </tr>
141
- </table>
142
- </body>
143
- </html>
@@ -1,48 +0,0 @@
1
- AsciiDoc Version 9
2
- ==================
3
-
4
- Installing and configuring the latest version of AsciiDoc across
5
- various distributions and platforms has never been easy and lots of
6
- contributors have put in link:downloads.html#X1[lots of effort] to do
7
- just this -- this never ending and largely thankless task is the bane
8
- of the Open Source developer and user alike because invevitably
9
- distribution specific packages are either missing or are soon out of
10
- date.
11
-
12
- But it doesn't have to be like this -- AsciiDoc is a pure Python
13
- application and could be distributed from the
14
- http://pypi.python.org/[Cheese Shop] as a stand-alone platform
15
- independent http://peak.telecommunity.com/DevCenter/PythonEggs[Python
16
- Egg]. The 9.x branch aims to attack this problem.
17
-
18
- The feature plan for 9.0 is:
19
-
20
- - AsciiDoc easy_installable (done, not fully tested).
21
- - AsciiDoc as a Python module with a decent API (now a module, no API
22
- yet).
23
- - AsciiDoc 100% Python: no shell or unportable scripting (not done).
24
-
25
- Later in the 9.x branch:
26
-
27
- - plugin system for frontend and backends.
28
- - plugin system for style-sheets.
29
- - distutils commands to produce AsciiDoc rendered documentation of
30
- Python packages (minimal support now in buildutils).
31
-
32
- http://ygingras.net[Yannick Gingras] is the maintainer of the 9.x branch;
33
- he can be contacted by mailto:ygingras@ygingras.net[email] or, preferably,
34
- on the link:support.html[mailing list].
35
-
36
- There is no release of the 9.x branch yet but adventurous users can
37
- still get the source with Mercurial:
38
-
39
- hg clone static-http://ygingras.net/files/asciidoc.hg asciidoc-9x
40
-
41
- Using sources from the Mercurial repository will require
42
- http://peak.telecommunity.com/DevCenter/setuptools[Setuptools] and the
43
- http://pypi.python.org/pypi/hg.setuptools/[Mercurial plugin] for
44
- Setuptools.
45
-
46
- NOTE: The 9.x branch is still experimental. You should install it
47
- inside a http://pypi.python.org/pypi/virtualenv/[virtualenv] to
48
- prevent damages to your global Python environment.
@@ -1,41 +0,0 @@
1
- /* Workarounds for IE6's broken and incomplete CSS2. */
2
-
3
- div.sidebar-content {
4
- background: #ffffee;
5
- border: 1px solid silver;
6
- padding: 0.5em;
7
- }
8
- div.sidebar-title, div.image-title {
9
- color: #527bbd;
10
- font-family: sans-serif;
11
- font-weight: bold;
12
- margin-top: 0.0em;
13
- margin-bottom: 0.5em;
14
- }
15
-
16
- div.listingblock div.content {
17
- border: 1px solid silver;
18
- background: #f4f4f4;
19
- padding: 0.5em;
20
- }
21
-
22
- div.quoteblock-attribution {
23
- padding-top: 0.5em;
24
- text-align: right;
25
- }
26
-
27
- div.verseblock-content {
28
- white-space: pre;
29
- }
30
- div.verseblock-attribution {
31
- padding-top: 0.75em;
32
- text-align: left;
33
- }
34
-
35
- div.exampleblock-content {
36
- border-left: 2px solid silver;
37
- padding-left: 0.5em;
38
- }
39
-
40
- /* IE6 sets dynamically generated links as visited. */
41
- div#toc a:visited { color: blue; }
@@ -1,328 +0,0 @@
1
- /* Debug borders */
2
- p, li, dt, dd, div, pre, h1, h2, h3, h4, h5, h6 {
3
- /*
4
- border: 1px solid red;
5
- */
6
- }
7
-
8
- body {
9
- margin: 1em 5% 1em 5%;
10
- }
11
-
12
- a {
13
- color: blue;
14
- text-decoration: underline;
15
- }
16
- a:visited {
17
- color: fuchsia;
18
- }
19
-
20
- em {
21
- font-style: italic;
22
- color: navy;
23
- }
24
-
25
- strong {
26
- font-weight: bold;
27
- color: #083194;
28
- }
29
-
30
- tt {
31
- color: navy;
32
- }
33
-
34
- h1, h2, h3, h4, h5, h6 {
35
- color: #527bbd;
36
- font-family: sans-serif;
37
- margin-top: 1.2em;
38
- margin-bottom: 0.5em;
39
- line-height: 1.3;
40
- }
41
-
42
- h1, h2, h3 {
43
- border-bottom: 2px solid silver;
44
- }
45
- h2 {
46
- padding-top: 0.5em;
47
- }
48
- h3 {
49
- float: left;
50
- }
51
- h3 + * {
52
- clear: left;
53
- }
54
-
55
- div.sectionbody {
56
- font-family: serif;
57
- margin-left: 0;
58
- }
59
-
60
- hr {
61
- border: 1px solid silver;
62
- }
63
-
64
- p {
65
- margin-top: 0.5em;
66
- margin-bottom: 0.5em;
67
- }
68
-
69
- ul, ol, li > p {
70
- margin-top: 0;
71
- }
72
-
73
- pre {
74
- padding: 0;
75
- margin: 0;
76
- }
77
-
78
- span#author {
79
- color: #527bbd;
80
- font-family: sans-serif;
81
- font-weight: bold;
82
- font-size: 1.1em;
83
- }
84
- span#email {
85
- }
86
- span#revision {
87
- font-family: sans-serif;
88
- }
89
-
90
- div#footer {
91
- font-family: sans-serif;
92
- font-size: small;
93
- border-top: 2px solid silver;
94
- padding-top: 0.5em;
95
- margin-top: 4.0em;
96
- }
97
- div#footer-text {
98
- float: left;
99
- padding-bottom: 0.5em;
100
- }
101
- div#footer-badges {
102
- float: right;
103
- padding-bottom: 0.5em;
104
- }
105
-
106
- div#preamble,
107
- div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
108
- div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
109
- div.admonitionblock {
110
- margin-right: 10%;
111
- margin-top: 1.5em;
112
- margin-bottom: 1.5em;
113
- }
114
- div.admonitionblock {
115
- margin-top: 2.5em;
116
- margin-bottom: 2.5em;
117
- }
118
-
119
- div.content { /* Block element content. */
120
- padding: 0;
121
- }
122
-
123
- /* Block element titles. */
124
- div.title, caption.title {
125
- color: #527bbd;
126
- font-family: sans-serif;
127
- font-weight: bold;
128
- text-align: left;
129
- margin-top: 1.0em;
130
- margin-bottom: 0.5em;
131
- }
132
- div.title + * {
133
- margin-top: 0;
134
- }
135
-
136
- td div.title:first-child {
137
- margin-top: 0.0em;
138
- }
139
- div.content div.title:first-child {
140
- margin-top: 0.0em;
141
- }
142
- div.content + div.title {
143
- margin-top: 0.0em;
144
- }
145
-
146
- div.sidebarblock > div.content {
147
- background: #ffffee;
148
- border: 1px solid silver;
149
- padding: 0.5em;
150
- }
151
-
152
- div.listingblock {
153
- margin-right: 0%;
154
- }
155
- div.listingblock > div.content {
156
- border: 1px solid silver;
157
- background: #f4f4f4;
158
- padding: 0.5em;
159
- }
160
-
161
- div.quoteblock {
162
- padding-left: 2.0em;
163
- }
164
- div.quoteblock > div.attribution {
165
- padding-top: 0.5em;
166
- text-align: right;
167
- }
168
-
169
- div.verseblock {
170
- padding-left: 2.0em;
171
- }
172
- div.verseblock > div.content {
173
- white-space: pre;
174
- }
175
- div.verseblock > div.attribution {
176
- padding-top: 0.75em;
177
- text-align: left;
178
- }
179
- /* DEPRECATED: Pre version 8.2.7 verse style literal block. */
180
- div.verseblock + div.attribution {
181
- text-align: left;
182
- }
183
-
184
- div.admonitionblock .icon {
185
- vertical-align: top;
186
- font-size: 1.1em;
187
- font-weight: bold;
188
- text-decoration: underline;
189
- color: #527bbd;
190
- padding-right: 0.5em;
191
- }
192
- div.admonitionblock td.content {
193
- padding-left: 0.5em;
194
- border-left: 2px solid silver;
195
- }
196
-
197
- div.exampleblock > div.content {
198
- border-left: 2px solid silver;
199
- padding: 0.5em;
200
- }
201
-
202
- div.imageblock div.content { padding-left: 0; }
203
- div.imageblock img { border: 1px solid silver; }
204
- span.image img { border-style: none; }
205
-
206
- dl {
207
- margin-top: 0.8em;
208
- margin-bottom: 0.8em;
209
- }
210
- dt {
211
- margin-top: 0.5em;
212
- margin-bottom: 0;
213
- font-style: normal;
214
- color: navy;
215
- }
216
- dd > *:first-child {
217
- margin-top: 0.1em;
218
- }
219
-
220
- ul, ol {
221
- list-style-position: outside;
222
- }
223
- ol.arabic {
224
- list-style-type: decimal;
225
- }
226
- ol.loweralpha {
227
- list-style-type: lower-alpha;
228
- }
229
- ol.upperalpha {
230
- list-style-type: upper-alpha;
231
- }
232
- ol.lowerroman {
233
- list-style-type: lower-roman;
234
- }
235
- ol.upperroman {
236
- list-style-type: upper-roman;
237
- }
238
-
239
- div.compact ul, div.compact ol,
240
- div.compact p, div.compact p,
241
- div.compact div, div.compact div {
242
- margin-top: 0.1em;
243
- margin-bottom: 0.1em;
244
- }
245
-
246
- div.tableblock > table {
247
- border: 3px solid #527bbd;
248
- }
249
- thead {
250
- font-family: sans-serif;
251
- font-weight: bold;
252
- }
253
- tfoot {
254
- font-weight: bold;
255
- }
256
- td > div.verse {
257
- white-space: pre;
258
- }
259
- p.table {
260
- margin-top: 0;
261
- }
262
- /* Because the table frame attribute is overriden by CSS in most browsers. */
263
- div.tableblock > table[frame="void"] {
264
- border-style: none;
265
- }
266
- div.tableblock > table[frame="hsides"] {
267
- border-left-style: none;
268
- border-right-style: none;
269
- }
270
- div.tableblock > table[frame="vsides"] {
271
- border-top-style: none;
272
- border-bottom-style: none;
273
- }
274
-
275
-
276
- div.hdlist {
277
- margin-top: 0.8em;
278
- margin-bottom: 0.8em;
279
- }
280
- div.hdlist tr {
281
- padding-bottom: 15px;
282
- }
283
- dt.hdlist1.strong, td.hdlist1.strong {
284
- font-weight: bold;
285
- }
286
- td.hdlist1 {
287
- vertical-align: top;
288
- font-style: normal;
289
- padding-right: 0.8em;
290
- color: navy;
291
- }
292
- td.hdlist2 {
293
- vertical-align: top;
294
- }
295
- div.hdlist.compact tr {
296
- margin: 0;
297
- padding-bottom: 0;
298
- }
299
-
300
- @media print {
301
- div#footer-badges { display: none; }
302
- }
303
-
304
- div#toctitle {
305
- color: #527bbd;
306
- font-family: sans-serif;
307
- font-size: 1.1em;
308
- font-weight: bold;
309
- margin-top: 1.0em;
310
- margin-bottom: 0.1em;
311
- }
312
-
313
- div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
314
- margin-top: 0;
315
- margin-bottom: 0;
316
- }
317
- div.toclevel2 {
318
- margin-left: 2em;
319
- font-size: 0.9em;
320
- }
321
- div.toclevel3 {
322
- margin-left: 4em;
323
- font-size: 0.9em;
324
- }
325
- div.toclevel4 {
326
- margin-left: 6em;
327
- font-size: 0.9em;
328
- }