docgenerator 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/examples/creole_example_tabular.rb +95 -0
- data/examples/docgenerator_example.rb +5 -5
- data/lib/creole/creole2doc.rb +28 -18
- data/lib/creole/creole_inclusions.rb +4 -4
- data/lib/creole/creole_placeholder.rb +4 -1
- data/lib/creole/creole_tabular.rb +173 -155
- data/lib/creole/plugins/rail.rb +118 -119
- data/lib/creole/plugins/struktex.rb +35 -35
- data/lib/creole/plugins/todonotes.rb +8 -1
- data/lib/docgenerator/attribute.rb +160 -160
- data/lib/docgenerator/characters.rb +343 -311
- data/lib/docgenerator/css.rb +167 -167
- data/lib/docgenerator/document.rb +525 -511
- data/lib/docgenerator/element.rb +316 -316
- data/lib/docgenerator/element_meta.rb +114 -114
- data/lib/docgenerator/elements.rb +19 -9
- data/lib/docgenerator/environments.rb +3 -1
- data/lib/docgenerator/lists.rb +177 -174
- data/lib/docgenerator/packages/hyperref.rb +74 -70
- data/lib/docgenerator/packages/multicol.rb +33 -0
- data/lib/docgenerator/packages/scrlettr2.rb +152 -151
- data/lib/docgenerator/packages/todonotes.rb +1 -1
- data/lib/docgenerator/tabular.rb +463 -400
- data/lib/docgenerator/templates/docgenerator_template.rb +94 -84
- data/lib/docgenerator/templates/docgenerator_template.yaml +75 -15
- data/lib/docgenerator.rb +1 -1
- data/lib/wiki2doc/wiki2docgenerator.rb +1 -1
- data/meta_test_and_doc/build__meta.rb +125 -0
- data/meta_test_and_doc/build_doc.rb +333 -0
- data/meta_test_and_doc/build_test.rb +251 -0
- data/meta_test_and_doc/manpages/attachfile.rb +389 -0
- data/meta_test_and_doc/manpages/caption.rb +133 -0
- data/meta_test_and_doc/manpages/characters.rb +3738 -0
- data/meta_test_and_doc/manpages/elements.rb +6851 -0
- data/meta_test_and_doc/manpages/environments.rb +985 -0
- data/meta_test_and_doc/manpages/footnote.rb +439 -0
- data/meta_test_and_doc/manpages/hyperref.rb +605 -0
- data/meta_test_and_doc/manpages/listings.rb +988 -0
- data/meta_test_and_doc/manpages/lists.rb +1463 -0
- data/meta_test_and_doc/manpages/others.rb +129 -0
- data/meta_test_and_doc/manpages/packages.rb +13 -0
- data/meta_test_and_doc/manpages/pdfpages.rb +108 -0
- data/meta_test_and_doc/manpages/readme.rdoc +9 -0
- data/meta_test_and_doc/manpages/scrlettr2.rb +362 -0
- data/meta_test_and_doc/manpages/scrpage2.rb +2028 -0
- data/meta_test_and_doc/manpages/sectioning.rb +2467 -0
- data/meta_test_and_doc/manpages/tables.rb +2088 -0
- data/meta_test_and_doc/manpages/todonotes.rb +235 -0
- data/meta_test_and_doc/manpages/wiki2docgenerator.rb +64 -0
- data/{readme.rd → readme.rdoc} +18 -1
- data/unittest/expected/test_tabular.creole +33 -0
- data/unittest/expected_creole/test_creole_creole1.0test.html +3 -3
- data/unittest/expected_creole/test_creole_creole1.0test.latex +3 -3
- data/unittest/expected_creole/test_creole_creole1.0test.text +3 -3
- data/unittest/expected_creole/test_creole_inline_apostroph.html +6 -0
- data/unittest/expected_creole/test_creole_inline_apostroph.latex +8 -0
- data/unittest/expected_creole/test_creole_inline_apostroph.text +4 -0
- data/unittest/expected_creole/test_creole_input.normsource +12 -12
- data/unittest/expected_creole/test_creole_input.normsource_1.8 +23 -0
- data/unittest/expected_creole/test_creole_links_external_implicit.html +2 -2
- data/unittest/expected_creole/test_creole_links_external_implicit.latex +2 -2
- data/unittest/expected_creole/test_creole_links_external_implicit.text +2 -2
- data/unittest/expected_creole/test_creole_links_implicit_end.html +1 -1
- data/unittest/expected_creole/test_creole_links_implicit_end.latex +1 -1
- data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
- data/unittest/expected_creole/test_creole_list_ul.normsource_1.8 +83 -0
- data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
- data/unittest/expected_creole/test_creole_paragraphs.normsource_1.8 +27 -0
- data/unittest/expected_creole/test_creole_tabular.creole +22 -0
- data/unittest/expected_creole/test_creole_tabular_creole.creole +19 -0
- data/unittest/expected_creole/test_creole_tabular_css.creole +24 -0
- data/unittest/expected_creole/test_creole_tabular_multicols.creole +16 -0
- data/unittest/expected_creole/test_creole_tabular_multicols.html +14 -0
- data/unittest/expected_creole/test_creole_tabular_multicols.latex +16 -0
- data/unittest/expected_creole/test_creole_tabular_with_cell_option.creole +21 -0
- data/unittest/expected_creole/test_creole_toc_level_text.html +2 -2
- data/unittest/expected_creole/test_creole_toc_level_text.latex +2 -2
- data/unittest/expected_packages/test_multicol_3.tex +2 -0
- data/unittest/expected_packages/test_multicol_3_titleline.tex +2 -0
- data/unittest/expected_templates/test_article.tex +23 -0
- data/unittest/expected_templates/test_article_utf8.tex +34 -0
- data/unittest/expected_templates/test_context.miv +18 -0
- data/unittest/expected_templates/test_creole.creole +8 -0
- data/unittest/expected_templates/test_html.html +12 -0
- data/unittest/expected_templates/test_html401_strict.html +14 -0
- data/unittest/expected_templates/test_html401_trans.html +14 -0
- data/unittest/expected_templates/test_html_utf8.html +14 -0
- data/unittest/expected_templates/test_include.tex +17 -0
- data/unittest/expected_templates/test_include_utf8.tex +17 -0
- data/unittest/expected_templates/test_text.txt +6 -0
- data/unittest/expected_templates/test_wiki.wiki +6 -0
- data/unittest/expected_templates/test_xhtml_strict.html +14 -0
- data/unittest/expected_templates/test_xhtml_trans.html +14 -0
- data/unittest/unittest_creole.rb +27 -6
- data/unittest/unittest_creole_placeholders.rb +1 -123
- data/unittest/unittest_creole_tabular.rb +174 -0
- data/unittest/unittest_docgenerator.rb +4 -3
- data/unittest/unittest_docgenerator_characters.rb +4769 -615
- data/unittest/unittest_packages_multicol.rb +84 -0
- data/unittest/unittest_rubycode4doc.rb +0 -1
- data/unittest/unittest_templates.rb +64 -0
- metadata +163 -77
- data/build_test_and_doc.rb +0 -505
- data/manpage_elements.rb +0 -10411
|
@@ -0,0 +1,2088 @@
|
|
|
1
|
+
#encoding utf-8
|
|
2
|
+
=begin rdoc
|
|
3
|
+
Generated manpages for elements.
|
|
4
|
+
|
|
5
|
+
This document does not contain the implementation or code documentation.
|
|
6
|
+
|
|
7
|
+
This document is the source for a manpage for usage of Docgenerator elements.
|
|
8
|
+
|
|
9
|
+
The following Element are documented in this document:
|
|
10
|
+
|
|
11
|
+
* Docgenerator::Tables::Table
|
|
12
|
+
* Docgenerator::Tables::Tabular
|
|
13
|
+
* Docgenerator::Tables::Longtable
|
|
14
|
+
* Docgenerator::Tables::Tabularx
|
|
15
|
+
* Docgenerator::Tables::Row
|
|
16
|
+
* Docgenerator::Tables::Hline
|
|
17
|
+
* Docgenerator::Tables::Toprule
|
|
18
|
+
* Docgenerator::Tables::Midrule
|
|
19
|
+
* Docgenerator::Tables::Bottomrule
|
|
20
|
+
* Docgenerator::Tables::Endfirsthead
|
|
21
|
+
* Docgenerator::Tables::Endhead
|
|
22
|
+
* Docgenerator::Tables::Endfoot
|
|
23
|
+
* Docgenerator::Tables::Endlastfoot
|
|
24
|
+
* Docgenerator::Tables::Column
|
|
25
|
+
* Docgenerator::Tables::Column_th
|
|
26
|
+
* Docgenerator::Tables::Multicolumn
|
|
27
|
+
* Docgenerator::Tables::Caption
|
|
28
|
+
=end
|
|
29
|
+
|
|
30
|
+
#
|
|
31
|
+
module Docgenerator
|
|
32
|
+
module Tables
|
|
33
|
+
=begin rdoc
|
|
34
|
+
=Docgenerator::Tables::Table
|
|
35
|
+
|
|
36
|
+
==Attributes
|
|
37
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
38
|
+
====================================================================================================
|
|
39
|
+
lang : - X - - - - - -
|
|
40
|
+
id : - X - - - - - -
|
|
41
|
+
class : - X - - - - - -
|
|
42
|
+
style : - X - - - - - -
|
|
43
|
+
title : - X - - - - - -
|
|
44
|
+
dir : - X - - - - - -
|
|
45
|
+
onclick : - X - - - - - -
|
|
46
|
+
ondblclick : - X - - - - - -
|
|
47
|
+
onmousedown : - X - - - - - -
|
|
48
|
+
onmouseup : - X - - - - - -
|
|
49
|
+
onmouseover : - X - - - - - -
|
|
50
|
+
onmousemove : - X - - - - - -
|
|
51
|
+
onmouseout : - X - - - - - -
|
|
52
|
+
onkeypress : - X - - - - - -
|
|
53
|
+
onkeyup : - X - - - - - -
|
|
54
|
+
onkeydown : - X - - - - - -
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
Docgenerator::Tables::Table can contain content.
|
|
58
|
+
|
|
59
|
+
==Generate an object
|
|
60
|
+
test = Docgenerator::Tables::Table.new( {
|
|
61
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
62
|
+
#:id => <<value>>, % optional
|
|
63
|
+
#:class => <<value>>, % optional
|
|
64
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
65
|
+
#:title => <<value>>, % optional
|
|
66
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
67
|
+
#:onclick => <<value>>, % optional
|
|
68
|
+
#:ondblclick => <<value>>, % optional
|
|
69
|
+
#:onmousedown => <<value>>, % optional
|
|
70
|
+
#:onmouseup => <<value>>, % optional
|
|
71
|
+
#:onmouseover => <<value>>, % optional
|
|
72
|
+
#:onmousemove => <<value>>, % optional
|
|
73
|
+
#:onmouseout => <<value>>, % optional
|
|
74
|
+
#:onkeypress => <<value>>, % optional
|
|
75
|
+
#:onkeyup => <<value>>, % optional
|
|
76
|
+
#:onkeydown => <<value>>, % optional
|
|
77
|
+
}, 'content')
|
|
78
|
+
|
|
79
|
+
Alternative generation
|
|
80
|
+
test = element(:table, {...Attributes...}, 'content' )
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
==Outputs
|
|
84
|
+
===Docgenerator::Tables::Table#to_latex
|
|
85
|
+
|
|
86
|
+
\begin{table}content\end{table}
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Table#.to_latex
|
|
90
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
91
|
+
|
|
92
|
+
Default:
|
|
93
|
+
<<START>>
|
|
94
|
+
\begin{table}content\end{table}
|
|
95
|
+
<<END>>
|
|
96
|
+
|
|
97
|
+
* Result after Docgenerator::Tables::Table#cr:
|
|
98
|
+
|
|
99
|
+
<<START>>
|
|
100
|
+
\begin{table}content\end{table}
|
|
101
|
+
|
|
102
|
+
<<END>>
|
|
103
|
+
|
|
104
|
+
* Result after Docgenerator::Tables::Table#cR:
|
|
105
|
+
|
|
106
|
+
<<START>>
|
|
107
|
+
\begin{table}
|
|
108
|
+
content
|
|
109
|
+
\end{table}
|
|
110
|
+
|
|
111
|
+
<<END>>
|
|
112
|
+
|
|
113
|
+
* Result after Docgenerator::Tables::Table#Cr:
|
|
114
|
+
|
|
115
|
+
<<START>>
|
|
116
|
+
|
|
117
|
+
\begin{table}
|
|
118
|
+
content
|
|
119
|
+
\end{table}
|
|
120
|
+
|
|
121
|
+
<<END>>
|
|
122
|
+
|
|
123
|
+
* Result after Docgenerator::Tables::Table#CR:
|
|
124
|
+
|
|
125
|
+
<<START>>
|
|
126
|
+
|
|
127
|
+
\begin{table}
|
|
128
|
+
content
|
|
129
|
+
\end{table}
|
|
130
|
+
|
|
131
|
+
<<END>>
|
|
132
|
+
|
|
133
|
+
===Docgenerator::Tables::Table#to_html
|
|
134
|
+
<div >content</div>
|
|
135
|
+
|
|
136
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Table#.to_html
|
|
137
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
138
|
+
|
|
139
|
+
Default:
|
|
140
|
+
<<START>><div >content</div><<END>>
|
|
141
|
+
|
|
142
|
+
* Result after Docgenerator::Tables::Table#cr:
|
|
143
|
+
|
|
144
|
+
<<START>><div >content</div>
|
|
145
|
+
<<END>>
|
|
146
|
+
|
|
147
|
+
* Result after Docgenerator::Tables::Table#cR:
|
|
148
|
+
|
|
149
|
+
<<START>><div >
|
|
150
|
+
content
|
|
151
|
+
</div>
|
|
152
|
+
<<END>>
|
|
153
|
+
|
|
154
|
+
* Result after Docgenerator::Tables::Table#Cr:
|
|
155
|
+
|
|
156
|
+
<<START>>
|
|
157
|
+
<div >
|
|
158
|
+
content
|
|
159
|
+
</div>
|
|
160
|
+
<<END>>
|
|
161
|
+
|
|
162
|
+
* Result after Docgenerator::Tables::Table#CR:
|
|
163
|
+
|
|
164
|
+
<<START>>
|
|
165
|
+
<div >
|
|
166
|
+
content
|
|
167
|
+
</div>
|
|
168
|
+
<<END>>
|
|
169
|
+
|
|
170
|
+
===Docgenerator::Tables::Table#to_context
|
|
171
|
+
\table{content}
|
|
172
|
+
|
|
173
|
+
* No output routine defined for context - use a dummy
|
|
174
|
+
===Docgenerator::Tables::Table#to_text
|
|
175
|
+
content
|
|
176
|
+
|
|
177
|
+
* No output routine defined for text - use a dummy
|
|
178
|
+
===Docgenerator::Tables::Table#to_wiki
|
|
179
|
+
content
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
* No output routine defined for wiki - use a dummy
|
|
183
|
+
===Docgenerator::Tables::Table#to_creole
|
|
184
|
+
content
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
* No output routine defined for creole - use a dummy
|
|
188
|
+
=end
|
|
189
|
+
class Table << Docgenerator::Environments::Environment
|
|
190
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
191
|
+
end #class Table
|
|
192
|
+
end #module Tables
|
|
193
|
+
end #module Docgenerator
|
|
194
|
+
module Docgenerator
|
|
195
|
+
module Tables
|
|
196
|
+
=begin rdoc
|
|
197
|
+
=Docgenerator::Tables::Tabular
|
|
198
|
+
|
|
199
|
+
==Attributes
|
|
200
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
201
|
+
====================================================================================================
|
|
202
|
+
lang : - X - - - - - -
|
|
203
|
+
id : - X - - - - - -
|
|
204
|
+
class : - X - - - - - -
|
|
205
|
+
style : - X - - - - - -
|
|
206
|
+
title : - X - - - - - -
|
|
207
|
+
dir : - X - - - - - -
|
|
208
|
+
onclick : - X - - - - - -
|
|
209
|
+
ondblclick : - X - - - - - -
|
|
210
|
+
onmousedown : - X - - - - - -
|
|
211
|
+
onmouseup : - X - - - - - -
|
|
212
|
+
onmouseover : - X - - - - - -
|
|
213
|
+
onmousemove : - X - - - - - -
|
|
214
|
+
onmouseout : - X - - - - - -
|
|
215
|
+
onkeypress : - X - - - - - -
|
|
216
|
+
onkeyup : - X - - - - - -
|
|
217
|
+
onkeydown : - X - - - - - -
|
|
218
|
+
align : - X - - - - - -
|
|
219
|
+
columndescription : X - X - - - - -
|
|
220
|
+
columns : X - - - - - - -
|
|
221
|
+
border : - X - - - - - -
|
|
222
|
+
bgcolor : - X - - - - - -
|
|
223
|
+
width : - X - - - - - -
|
|
224
|
+
frame : - X - - - - - -
|
|
225
|
+
rules : - X - - - - - -
|
|
226
|
+
height : - X - - - - - -
|
|
227
|
+
cellspacing : - X - - - - - -
|
|
228
|
+
cellpadding : - X - - - - - -
|
|
229
|
+
summary : - X - - - - - -
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Docgenerator::Tables::Tabular can contain content.
|
|
233
|
+
|
|
234
|
+
==Generate an object
|
|
235
|
+
test = Docgenerator::Tables::Tabular.new( {
|
|
236
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
237
|
+
#:id => <<value>>, % optional
|
|
238
|
+
#:class => <<value>>, % optional
|
|
239
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
240
|
+
#:title => <<value>>, % optional
|
|
241
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
242
|
+
#:onclick => <<value>>, % optional
|
|
243
|
+
#:ondblclick => <<value>>, % optional
|
|
244
|
+
#:onmousedown => <<value>>, % optional
|
|
245
|
+
#:onmouseup => <<value>>, % optional
|
|
246
|
+
#:onmouseover => <<value>>, % optional
|
|
247
|
+
#:onmousemove => <<value>>, % optional
|
|
248
|
+
#:onmouseout => <<value>>, % optional
|
|
249
|
+
#:onkeypress => <<value>>, % optional
|
|
250
|
+
#:onkeyup => <<value>>, % optional
|
|
251
|
+
#:onkeydown => <<value>>, % optional
|
|
252
|
+
#:align => <<value>>, % optional, values: ["left", "center", "right", "justify", "char"]
|
|
253
|
+
:columndescription => <<value>>, % required
|
|
254
|
+
:columns => <<value>>, % required, values: [Fixnum]
|
|
255
|
+
#:border => <<value>>, % optional
|
|
256
|
+
#:bgcolor => <<value>>, % optional
|
|
257
|
+
#:width => <<value>>, % optional, values: [Integer, String]
|
|
258
|
+
#:frame => <<value>>, % optional, values: ["box", "above", "below", "hsides", "vsides", "lhs", "rhs"]
|
|
259
|
+
#:rules => <<value>>, % optional, values: ["none", "rows", "cols", "groups", "all"]
|
|
260
|
+
#:height => <<value>>, % optional, values: [Integer]
|
|
261
|
+
#:cellspacing => <<value>>, % optional, values: [Integer]
|
|
262
|
+
#:cellpadding => <<value>>, % optional, values: [Integer]
|
|
263
|
+
#:summary => <<value>>, % optional
|
|
264
|
+
}, 'content')
|
|
265
|
+
|
|
266
|
+
Alternative generation
|
|
267
|
+
test = element(:tabular, {...Attributes...}, 'content' )
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
==Outputs
|
|
271
|
+
===Docgenerator::Tables::Tabular#to_latex
|
|
272
|
+
\begin{tabular}{Value for columndescription}content\end{tabular}
|
|
273
|
+
|
|
274
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabular#.to_latex
|
|
275
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
276
|
+
|
|
277
|
+
Default:
|
|
278
|
+
<<START>>\begin{tabular}{Value for columndescription}content\end{tabular}<<END>>
|
|
279
|
+
|
|
280
|
+
* Result after Docgenerator::Tables::Tabular#cr:
|
|
281
|
+
|
|
282
|
+
<<START>>\begin{tabular}{Value for columndescription}content\end{tabular}
|
|
283
|
+
<<END>>
|
|
284
|
+
|
|
285
|
+
* Result after Docgenerator::Tables::Tabular#cR:
|
|
286
|
+
|
|
287
|
+
<<START>>\begin{tabular}{Value for columndescription}
|
|
288
|
+
content\end{tabular}
|
|
289
|
+
<<END>>
|
|
290
|
+
|
|
291
|
+
* Result after Docgenerator::Tables::Tabular#Cr:
|
|
292
|
+
|
|
293
|
+
<<START>>
|
|
294
|
+
\begin{tabular}{Value for columndescription}
|
|
295
|
+
content\end{tabular}
|
|
296
|
+
<<END>>
|
|
297
|
+
|
|
298
|
+
* Result after Docgenerator::Tables::Tabular#CR:
|
|
299
|
+
|
|
300
|
+
<<START>>
|
|
301
|
+
\begin{tabular}{Value for columndescription}
|
|
302
|
+
content\end{tabular}
|
|
303
|
+
<<END>>
|
|
304
|
+
|
|
305
|
+
===Docgenerator::Tables::Tabular#to_html
|
|
306
|
+
<table >content</table>
|
|
307
|
+
|
|
308
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabular#.to_html
|
|
309
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
310
|
+
|
|
311
|
+
Default:
|
|
312
|
+
<<START>><table >content</table><<END>>
|
|
313
|
+
|
|
314
|
+
* Result after Docgenerator::Tables::Tabular#cr:
|
|
315
|
+
|
|
316
|
+
<<START>><table >content</table>
|
|
317
|
+
<<END>>
|
|
318
|
+
|
|
319
|
+
* Result after Docgenerator::Tables::Tabular#cR:
|
|
320
|
+
|
|
321
|
+
<<START>><table >
|
|
322
|
+
content
|
|
323
|
+
</table>
|
|
324
|
+
<<END>>
|
|
325
|
+
|
|
326
|
+
* Result after Docgenerator::Tables::Tabular#Cr:
|
|
327
|
+
|
|
328
|
+
<<START>>
|
|
329
|
+
<table >
|
|
330
|
+
content
|
|
331
|
+
</table>
|
|
332
|
+
<<END>>
|
|
333
|
+
|
|
334
|
+
* Result after Docgenerator::Tables::Tabular#CR:
|
|
335
|
+
|
|
336
|
+
<<START>>
|
|
337
|
+
<table >
|
|
338
|
+
content
|
|
339
|
+
</table>
|
|
340
|
+
<<END>>
|
|
341
|
+
|
|
342
|
+
===Docgenerator::Tables::Tabular#to_context
|
|
343
|
+
\tabular{content}
|
|
344
|
+
|
|
345
|
+
* No output routine defined for context - use a dummy
|
|
346
|
+
===Docgenerator::Tables::Tabular#to_text
|
|
347
|
+
content
|
|
348
|
+
|
|
349
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabular#.to_text
|
|
350
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
351
|
+
|
|
352
|
+
Default:
|
|
353
|
+
<<START>>content<<END>>
|
|
354
|
+
|
|
355
|
+
* Docgenerator::Tables::Tabular#cr has no effect, same result as default
|
|
356
|
+
* Docgenerator::Tables::Tabular#cR has no effect, same result as default
|
|
357
|
+
* Docgenerator::Tables::Tabular#Cr has no effect, same result as default
|
|
358
|
+
* Docgenerator::Tables::Tabular#CR has no effect, same result as default
|
|
359
|
+
===Docgenerator::Tables::Tabular#to_wiki
|
|
360
|
+
{|
|
|
361
|
+
content
|
|
362
|
+
|}
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabular#.to_wiki
|
|
366
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
367
|
+
|
|
368
|
+
Default:
|
|
369
|
+
<<START>>{|
|
|
370
|
+
content
|
|
371
|
+
|}
|
|
372
|
+
<<END>>
|
|
373
|
+
|
|
374
|
+
* Docgenerator::Tables::Tabular#cr has no effect, same result as default
|
|
375
|
+
* Docgenerator::Tables::Tabular#cR has no effect, same result as default
|
|
376
|
+
* Docgenerator::Tables::Tabular#Cr has no effect, same result as default
|
|
377
|
+
* Docgenerator::Tables::Tabular#CR has no effect, same result as default
|
|
378
|
+
===Docgenerator::Tables::Tabular#to_creole
|
|
379
|
+
<<<tabular
|
|
380
|
+
|!columns=Value for columns
|
|
381
|
+
|!columndescription=Value for columndescription
|
|
382
|
+
content
|
|
383
|
+
>>>
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabular#.to_creole
|
|
387
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
388
|
+
|
|
389
|
+
Default:
|
|
390
|
+
<<START>><<<tabular
|
|
391
|
+
|!columns=Value for columns
|
|
392
|
+
|!columndescription=Value for columndescription
|
|
393
|
+
content
|
|
394
|
+
>>>
|
|
395
|
+
<<END>>
|
|
396
|
+
|
|
397
|
+
* Docgenerator::Tables::Tabular#cr has no effect, same result as default
|
|
398
|
+
* Docgenerator::Tables::Tabular#cR has no effect, same result as default
|
|
399
|
+
* Docgenerator::Tables::Tabular#Cr has no effect, same result as default
|
|
400
|
+
* Docgenerator::Tables::Tabular#CR has no effect, same result as default
|
|
401
|
+
=end
|
|
402
|
+
class Tabular << Docgenerator::Element
|
|
403
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
404
|
+
end #class Tabular
|
|
405
|
+
end #module Tables
|
|
406
|
+
end #module Docgenerator
|
|
407
|
+
module Docgenerator
|
|
408
|
+
module Tables
|
|
409
|
+
=begin rdoc
|
|
410
|
+
=Docgenerator::Tables::Longtable
|
|
411
|
+
|
|
412
|
+
==Attributes
|
|
413
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
414
|
+
====================================================================================================
|
|
415
|
+
lang : - X - - - - - -
|
|
416
|
+
id : - X - - - - - -
|
|
417
|
+
class : - X - - - - - -
|
|
418
|
+
style : - X - - - - - -
|
|
419
|
+
title : - X - - - - - -
|
|
420
|
+
dir : - X - - - - - -
|
|
421
|
+
onclick : - X - - - - - -
|
|
422
|
+
ondblclick : - X - - - - - -
|
|
423
|
+
onmousedown : - X - - - - - -
|
|
424
|
+
onmouseup : - X - - - - - -
|
|
425
|
+
onmouseover : - X - - - - - -
|
|
426
|
+
onmousemove : - X - - - - - -
|
|
427
|
+
onmouseout : - X - - - - - -
|
|
428
|
+
onkeypress : - X - - - - - -
|
|
429
|
+
onkeyup : - X - - - - - -
|
|
430
|
+
onkeydown : - X - - - - - -
|
|
431
|
+
align : - X - - - - - -
|
|
432
|
+
columndescription : X - X - - - - -
|
|
433
|
+
columns : X - - - - - - -
|
|
434
|
+
border : - X - - - - - -
|
|
435
|
+
bgcolor : - X - - - - - -
|
|
436
|
+
width : - X - - - - - -
|
|
437
|
+
frame : - X - - - - - -
|
|
438
|
+
rules : - X - - - - - -
|
|
439
|
+
height : - X - - - - - -
|
|
440
|
+
cellspacing : - X - - - - - -
|
|
441
|
+
cellpadding : - X - - - - - -
|
|
442
|
+
summary : - X - - - - - -
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
Docgenerator::Tables::Longtable can contain content.
|
|
446
|
+
|
|
447
|
+
==Generate an object
|
|
448
|
+
test = Docgenerator::Tables::Longtable.new( {
|
|
449
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
450
|
+
#:id => <<value>>, % optional
|
|
451
|
+
#:class => <<value>>, % optional
|
|
452
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
453
|
+
#:title => <<value>>, % optional
|
|
454
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
455
|
+
#:onclick => <<value>>, % optional
|
|
456
|
+
#:ondblclick => <<value>>, % optional
|
|
457
|
+
#:onmousedown => <<value>>, % optional
|
|
458
|
+
#:onmouseup => <<value>>, % optional
|
|
459
|
+
#:onmouseover => <<value>>, % optional
|
|
460
|
+
#:onmousemove => <<value>>, % optional
|
|
461
|
+
#:onmouseout => <<value>>, % optional
|
|
462
|
+
#:onkeypress => <<value>>, % optional
|
|
463
|
+
#:onkeyup => <<value>>, % optional
|
|
464
|
+
#:onkeydown => <<value>>, % optional
|
|
465
|
+
#:align => <<value>>, % optional, values: ["left", "center", "right", "justify", "char"]
|
|
466
|
+
:columndescription => <<value>>, % required
|
|
467
|
+
:columns => <<value>>, % required, values: [Fixnum]
|
|
468
|
+
#:border => <<value>>, % optional
|
|
469
|
+
#:bgcolor => <<value>>, % optional
|
|
470
|
+
#:width => <<value>>, % optional, values: [Integer, String]
|
|
471
|
+
#:frame => <<value>>, % optional, values: ["box", "above", "below", "hsides", "vsides", "lhs", "rhs"]
|
|
472
|
+
#:rules => <<value>>, % optional, values: ["none", "rows", "cols", "groups", "all"]
|
|
473
|
+
#:height => <<value>>, % optional, values: [Integer]
|
|
474
|
+
#:cellspacing => <<value>>, % optional, values: [Integer]
|
|
475
|
+
#:cellpadding => <<value>>, % optional, values: [Integer]
|
|
476
|
+
#:summary => <<value>>, % optional
|
|
477
|
+
}, 'content')
|
|
478
|
+
|
|
479
|
+
Alternative generation
|
|
480
|
+
test = element(:longtable, {...Attributes...}, 'content' )
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
==Outputs
|
|
484
|
+
===Docgenerator::Tables::Longtable#to_latex
|
|
485
|
+
\begin{longtable}{Value for columndescription}content\end{longtable}
|
|
486
|
+
|
|
487
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Longtable#.to_latex
|
|
488
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
489
|
+
|
|
490
|
+
Default:
|
|
491
|
+
<<START>>\begin{longtable}{Value for columndescription}content\end{longtable}<<END>>
|
|
492
|
+
|
|
493
|
+
* Result after Docgenerator::Tables::Longtable#cr:
|
|
494
|
+
|
|
495
|
+
<<START>>\begin{longtable}{Value for columndescription}content\end{longtable}
|
|
496
|
+
<<END>>
|
|
497
|
+
|
|
498
|
+
* Result after Docgenerator::Tables::Longtable#cR:
|
|
499
|
+
|
|
500
|
+
<<START>>\begin{longtable}{Value for columndescription}
|
|
501
|
+
content\end{longtable}
|
|
502
|
+
<<END>>
|
|
503
|
+
|
|
504
|
+
* Result after Docgenerator::Tables::Longtable#Cr:
|
|
505
|
+
|
|
506
|
+
<<START>>
|
|
507
|
+
\begin{longtable}{Value for columndescription}
|
|
508
|
+
content\end{longtable}
|
|
509
|
+
<<END>>
|
|
510
|
+
|
|
511
|
+
* Result after Docgenerator::Tables::Longtable#CR:
|
|
512
|
+
|
|
513
|
+
<<START>>
|
|
514
|
+
\begin{longtable}{Value for columndescription}
|
|
515
|
+
content\end{longtable}
|
|
516
|
+
<<END>>
|
|
517
|
+
|
|
518
|
+
===Docgenerator::Tables::Longtable#to_html
|
|
519
|
+
<table >content</table>
|
|
520
|
+
|
|
521
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Longtable#.to_html
|
|
522
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
523
|
+
|
|
524
|
+
Default:
|
|
525
|
+
<<START>><table >content</table><<END>>
|
|
526
|
+
|
|
527
|
+
* Result after Docgenerator::Tables::Longtable#cr:
|
|
528
|
+
|
|
529
|
+
<<START>><table >content</table>
|
|
530
|
+
<<END>>
|
|
531
|
+
|
|
532
|
+
* Result after Docgenerator::Tables::Longtable#cR:
|
|
533
|
+
|
|
534
|
+
<<START>><table >
|
|
535
|
+
content
|
|
536
|
+
</table>
|
|
537
|
+
<<END>>
|
|
538
|
+
|
|
539
|
+
* Result after Docgenerator::Tables::Longtable#Cr:
|
|
540
|
+
|
|
541
|
+
<<START>>
|
|
542
|
+
<table >
|
|
543
|
+
content
|
|
544
|
+
</table>
|
|
545
|
+
<<END>>
|
|
546
|
+
|
|
547
|
+
* Result after Docgenerator::Tables::Longtable#CR:
|
|
548
|
+
|
|
549
|
+
<<START>>
|
|
550
|
+
<table >
|
|
551
|
+
content
|
|
552
|
+
</table>
|
|
553
|
+
<<END>>
|
|
554
|
+
|
|
555
|
+
===Docgenerator::Tables::Longtable#to_context
|
|
556
|
+
\longtable{content}
|
|
557
|
+
|
|
558
|
+
* No output routine defined for context - use a dummy
|
|
559
|
+
===Docgenerator::Tables::Longtable#to_text
|
|
560
|
+
content
|
|
561
|
+
|
|
562
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Longtable#.to_text
|
|
563
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
564
|
+
|
|
565
|
+
Default:
|
|
566
|
+
<<START>>content<<END>>
|
|
567
|
+
|
|
568
|
+
* Docgenerator::Tables::Longtable#cr has no effect, same result as default
|
|
569
|
+
* Docgenerator::Tables::Longtable#cR has no effect, same result as default
|
|
570
|
+
* Docgenerator::Tables::Longtable#Cr has no effect, same result as default
|
|
571
|
+
* Docgenerator::Tables::Longtable#CR has no effect, same result as default
|
|
572
|
+
===Docgenerator::Tables::Longtable#to_wiki
|
|
573
|
+
{|
|
|
574
|
+
content
|
|
575
|
+
|}
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Longtable#.to_wiki
|
|
579
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
580
|
+
|
|
581
|
+
Default:
|
|
582
|
+
<<START>>{|
|
|
583
|
+
content
|
|
584
|
+
|}
|
|
585
|
+
<<END>>
|
|
586
|
+
|
|
587
|
+
* Docgenerator::Tables::Longtable#cr has no effect, same result as default
|
|
588
|
+
* Docgenerator::Tables::Longtable#cR has no effect, same result as default
|
|
589
|
+
* Docgenerator::Tables::Longtable#Cr has no effect, same result as default
|
|
590
|
+
* Docgenerator::Tables::Longtable#CR has no effect, same result as default
|
|
591
|
+
===Docgenerator::Tables::Longtable#to_creole
|
|
592
|
+
<<<tabular
|
|
593
|
+
|!columns=Value for columns
|
|
594
|
+
|!columndescription=Value for columndescription
|
|
595
|
+
content
|
|
596
|
+
>>>
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Longtable#.to_creole
|
|
600
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
601
|
+
|
|
602
|
+
Default:
|
|
603
|
+
<<START>><<<tabular
|
|
604
|
+
|!columns=Value for columns
|
|
605
|
+
|!columndescription=Value for columndescription
|
|
606
|
+
content
|
|
607
|
+
>>>
|
|
608
|
+
<<END>>
|
|
609
|
+
|
|
610
|
+
* Docgenerator::Tables::Longtable#cr has no effect, same result as default
|
|
611
|
+
* Docgenerator::Tables::Longtable#cR has no effect, same result as default
|
|
612
|
+
* Docgenerator::Tables::Longtable#Cr has no effect, same result as default
|
|
613
|
+
* Docgenerator::Tables::Longtable#CR has no effect, same result as default
|
|
614
|
+
=end
|
|
615
|
+
class Longtable << Docgenerator::Tables::Tabular
|
|
616
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
617
|
+
end #class Longtable
|
|
618
|
+
end #module Tables
|
|
619
|
+
end #module Docgenerator
|
|
620
|
+
module Docgenerator
|
|
621
|
+
module Tables
|
|
622
|
+
=begin rdoc
|
|
623
|
+
=Docgenerator::Tables::Tabularx
|
|
624
|
+
|
|
625
|
+
==Attributes
|
|
626
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
627
|
+
====================================================================================================
|
|
628
|
+
lang : - X - - - - - -
|
|
629
|
+
id : - X - - - - - -
|
|
630
|
+
class : - X - - - - - -
|
|
631
|
+
style : - X - - - - - -
|
|
632
|
+
title : - X - - - - - -
|
|
633
|
+
dir : - X - - - - - -
|
|
634
|
+
onclick : - X - - - - - -
|
|
635
|
+
ondblclick : - X - - - - - -
|
|
636
|
+
onmousedown : - X - - - - - -
|
|
637
|
+
onmouseup : - X - - - - - -
|
|
638
|
+
onmouseover : - X - - - - - -
|
|
639
|
+
onmousemove : - X - - - - - -
|
|
640
|
+
onmouseout : - X - - - - - -
|
|
641
|
+
onkeypress : - X - - - - - -
|
|
642
|
+
onkeyup : - X - - - - - -
|
|
643
|
+
onkeydown : - X - - - - - -
|
|
644
|
+
align : - X - - - - - -
|
|
645
|
+
columndescription : X - X - - - - -
|
|
646
|
+
columns : X - - - - - - -
|
|
647
|
+
border : - X - - - - - -
|
|
648
|
+
bgcolor : - X - - - - - -
|
|
649
|
+
width : - X - - - - - -
|
|
650
|
+
frame : - X - - - - - -
|
|
651
|
+
rules : - X - - - - - -
|
|
652
|
+
height : - X - - - - - -
|
|
653
|
+
cellspacing : - X - - - - - -
|
|
654
|
+
cellpadding : - X - - - - - -
|
|
655
|
+
summary : - X - - - - - -
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
Docgenerator::Tables::Tabularx can contain content.
|
|
659
|
+
|
|
660
|
+
==Generate an object
|
|
661
|
+
test = Docgenerator::Tables::Tabularx.new( {
|
|
662
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
663
|
+
#:id => <<value>>, % optional
|
|
664
|
+
#:class => <<value>>, % optional
|
|
665
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
666
|
+
#:title => <<value>>, % optional
|
|
667
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
668
|
+
#:onclick => <<value>>, % optional
|
|
669
|
+
#:ondblclick => <<value>>, % optional
|
|
670
|
+
#:onmousedown => <<value>>, % optional
|
|
671
|
+
#:onmouseup => <<value>>, % optional
|
|
672
|
+
#:onmouseover => <<value>>, % optional
|
|
673
|
+
#:onmousemove => <<value>>, % optional
|
|
674
|
+
#:onmouseout => <<value>>, % optional
|
|
675
|
+
#:onkeypress => <<value>>, % optional
|
|
676
|
+
#:onkeyup => <<value>>, % optional
|
|
677
|
+
#:onkeydown => <<value>>, % optional
|
|
678
|
+
#:align => <<value>>, % optional, values: ["left", "center", "right", "justify", "char"]
|
|
679
|
+
:columndescription => <<value>>, % required
|
|
680
|
+
:columns => <<value>>, % required, values: [Fixnum]
|
|
681
|
+
#:border => <<value>>, % optional
|
|
682
|
+
#:bgcolor => <<value>>, % optional
|
|
683
|
+
#:width => <<value>>, % optional, values: [Integer, String]
|
|
684
|
+
#:frame => <<value>>, % optional, values: ["box", "above", "below", "hsides", "vsides", "lhs", "rhs"]
|
|
685
|
+
#:rules => <<value>>, % optional, values: ["none", "rows", "cols", "groups", "all"]
|
|
686
|
+
#:height => <<value>>, % optional, values: [Integer]
|
|
687
|
+
#:cellspacing => <<value>>, % optional, values: [Integer]
|
|
688
|
+
#:cellpadding => <<value>>, % optional, values: [Integer]
|
|
689
|
+
#:summary => <<value>>, % optional
|
|
690
|
+
}, 'content')
|
|
691
|
+
|
|
692
|
+
Alternative generation
|
|
693
|
+
test = element(:tabularx, {...Attributes...}, 'content' )
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
==Outputs
|
|
697
|
+
===Docgenerator::Tables::Tabularx#to_latex
|
|
698
|
+
\begin{tabularx}{[]}{["Value for columndescription"]}content\end{tabularx}
|
|
699
|
+
|
|
700
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabularx#.to_latex
|
|
701
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
702
|
+
|
|
703
|
+
Default:
|
|
704
|
+
<<START>>\begin{tabularx}{[]}{["Value for columndescription"]}content\end{tabularx}<<END>>
|
|
705
|
+
|
|
706
|
+
* Result after Docgenerator::Tables::Tabularx#cr:
|
|
707
|
+
|
|
708
|
+
<<START>>\begin{tabularx}{[]}{["Value for columndescription"]}content\end{tabularx}
|
|
709
|
+
<<END>>
|
|
710
|
+
|
|
711
|
+
* Result after Docgenerator::Tables::Tabularx#cR:
|
|
712
|
+
|
|
713
|
+
<<START>>\begin{tabularx}{[]}{["Value for columndescription"]}
|
|
714
|
+
content\end{tabularx}
|
|
715
|
+
<<END>>
|
|
716
|
+
|
|
717
|
+
* Result after Docgenerator::Tables::Tabularx#Cr:
|
|
718
|
+
|
|
719
|
+
<<START>>
|
|
720
|
+
\begin{tabularx}{[]}{["Value for columndescription"]}
|
|
721
|
+
content\end{tabularx}
|
|
722
|
+
<<END>>
|
|
723
|
+
|
|
724
|
+
* Result after Docgenerator::Tables::Tabularx#CR:
|
|
725
|
+
|
|
726
|
+
<<START>>
|
|
727
|
+
\begin{tabularx}{[]}{["Value for columndescription"]}
|
|
728
|
+
content\end{tabularx}
|
|
729
|
+
<<END>>
|
|
730
|
+
|
|
731
|
+
===Docgenerator::Tables::Tabularx#to_html
|
|
732
|
+
<table >content</table>
|
|
733
|
+
|
|
734
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabularx#.to_html
|
|
735
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
736
|
+
|
|
737
|
+
Default:
|
|
738
|
+
<<START>><table >content</table><<END>>
|
|
739
|
+
|
|
740
|
+
* Result after Docgenerator::Tables::Tabularx#cr:
|
|
741
|
+
|
|
742
|
+
<<START>><table >content</table>
|
|
743
|
+
<<END>>
|
|
744
|
+
|
|
745
|
+
* Result after Docgenerator::Tables::Tabularx#cR:
|
|
746
|
+
|
|
747
|
+
<<START>><table >
|
|
748
|
+
content
|
|
749
|
+
</table>
|
|
750
|
+
<<END>>
|
|
751
|
+
|
|
752
|
+
* Result after Docgenerator::Tables::Tabularx#Cr:
|
|
753
|
+
|
|
754
|
+
<<START>>
|
|
755
|
+
<table >
|
|
756
|
+
content
|
|
757
|
+
</table>
|
|
758
|
+
<<END>>
|
|
759
|
+
|
|
760
|
+
* Result after Docgenerator::Tables::Tabularx#CR:
|
|
761
|
+
|
|
762
|
+
<<START>>
|
|
763
|
+
<table >
|
|
764
|
+
content
|
|
765
|
+
</table>
|
|
766
|
+
<<END>>
|
|
767
|
+
|
|
768
|
+
===Docgenerator::Tables::Tabularx#to_context
|
|
769
|
+
\tabularx{content}
|
|
770
|
+
|
|
771
|
+
* No output routine defined for context - use a dummy
|
|
772
|
+
===Docgenerator::Tables::Tabularx#to_text
|
|
773
|
+
content
|
|
774
|
+
|
|
775
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabularx#.to_text
|
|
776
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
777
|
+
|
|
778
|
+
Default:
|
|
779
|
+
<<START>>content<<END>>
|
|
780
|
+
|
|
781
|
+
* Docgenerator::Tables::Tabularx#cr has no effect, same result as default
|
|
782
|
+
* Docgenerator::Tables::Tabularx#cR has no effect, same result as default
|
|
783
|
+
* Docgenerator::Tables::Tabularx#Cr has no effect, same result as default
|
|
784
|
+
* Docgenerator::Tables::Tabularx#CR has no effect, same result as default
|
|
785
|
+
===Docgenerator::Tables::Tabularx#to_wiki
|
|
786
|
+
{|
|
|
787
|
+
content
|
|
788
|
+
|}
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabularx#.to_wiki
|
|
792
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
793
|
+
|
|
794
|
+
Default:
|
|
795
|
+
<<START>>{|
|
|
796
|
+
content
|
|
797
|
+
|}
|
|
798
|
+
<<END>>
|
|
799
|
+
|
|
800
|
+
* Docgenerator::Tables::Tabularx#cr has no effect, same result as default
|
|
801
|
+
* Docgenerator::Tables::Tabularx#cR has no effect, same result as default
|
|
802
|
+
* Docgenerator::Tables::Tabularx#Cr has no effect, same result as default
|
|
803
|
+
* Docgenerator::Tables::Tabularx#CR has no effect, same result as default
|
|
804
|
+
===Docgenerator::Tables::Tabularx#to_creole
|
|
805
|
+
<<<tabular
|
|
806
|
+
|!columns=Value for columns
|
|
807
|
+
|!columndescription=Value for columndescription
|
|
808
|
+
content
|
|
809
|
+
>>>
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Tabularx#.to_creole
|
|
813
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
814
|
+
|
|
815
|
+
Default:
|
|
816
|
+
<<START>><<<tabular
|
|
817
|
+
|!columns=Value for columns
|
|
818
|
+
|!columndescription=Value for columndescription
|
|
819
|
+
content
|
|
820
|
+
>>>
|
|
821
|
+
<<END>>
|
|
822
|
+
|
|
823
|
+
* Docgenerator::Tables::Tabularx#cr has no effect, same result as default
|
|
824
|
+
* Docgenerator::Tables::Tabularx#cR has no effect, same result as default
|
|
825
|
+
* Docgenerator::Tables::Tabularx#Cr has no effect, same result as default
|
|
826
|
+
* Docgenerator::Tables::Tabularx#CR has no effect, same result as default
|
|
827
|
+
=end
|
|
828
|
+
class Tabularx << Docgenerator::Tables::Tabular
|
|
829
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
830
|
+
end #class Tabularx
|
|
831
|
+
end #module Tables
|
|
832
|
+
end #module Docgenerator
|
|
833
|
+
module Docgenerator
|
|
834
|
+
module Tables
|
|
835
|
+
=begin rdoc
|
|
836
|
+
=Docgenerator::Tables::Row
|
|
837
|
+
|
|
838
|
+
==Attributes
|
|
839
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
840
|
+
====================================================================================================
|
|
841
|
+
lang : - X - - - - - -
|
|
842
|
+
id : - X - - - - - -
|
|
843
|
+
class : - X - - - - - -
|
|
844
|
+
style : - X - - - - - -
|
|
845
|
+
title : - X - - - - - -
|
|
846
|
+
dir : - X - - - - - -
|
|
847
|
+
onclick : - X - - - - - -
|
|
848
|
+
ondblclick : - X - - - - - -
|
|
849
|
+
onmousedown : - X - - - - - -
|
|
850
|
+
onmouseup : - X - - - - - -
|
|
851
|
+
onmouseover : - X - - - - - -
|
|
852
|
+
onmousemove : - X - - - - - -
|
|
853
|
+
onmouseout : - X - - - - - -
|
|
854
|
+
onkeypress : - X - - - - - -
|
|
855
|
+
onkeyup : - X - - - - - -
|
|
856
|
+
onkeydown : - X - - - - - -
|
|
857
|
+
add_vspace : - - X - - - - -
|
|
858
|
+
bgcolor : - X - - - - - -
|
|
859
|
+
width : - X - - - - - -
|
|
860
|
+
height : - X - - - - - -
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
Docgenerator::Tables::Row can contain content.
|
|
864
|
+
|
|
865
|
+
==Generate an object
|
|
866
|
+
test = Docgenerator::Tables::Row.new( {
|
|
867
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
868
|
+
#:id => <<value>>, % optional
|
|
869
|
+
#:class => <<value>>, % optional
|
|
870
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
871
|
+
#:title => <<value>>, % optional
|
|
872
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
873
|
+
#:onclick => <<value>>, % optional
|
|
874
|
+
#:ondblclick => <<value>>, % optional
|
|
875
|
+
#:onmousedown => <<value>>, % optional
|
|
876
|
+
#:onmouseup => <<value>>, % optional
|
|
877
|
+
#:onmouseover => <<value>>, % optional
|
|
878
|
+
#:onmousemove => <<value>>, % optional
|
|
879
|
+
#:onmouseout => <<value>>, % optional
|
|
880
|
+
#:onkeypress => <<value>>, % optional
|
|
881
|
+
#:onkeyup => <<value>>, % optional
|
|
882
|
+
#:onkeydown => <<value>>, % optional
|
|
883
|
+
#:add_vspace => <<value>>, % optional
|
|
884
|
+
#:bgcolor => <<value>>, % optional
|
|
885
|
+
#:width => <<value>>, % optional
|
|
886
|
+
#:height => <<value>>, % optional
|
|
887
|
+
}, 'content')
|
|
888
|
+
|
|
889
|
+
Alternative generation
|
|
890
|
+
test = element(:row, {...Attributes...}, 'content' )
|
|
891
|
+
test = element(:tr, {...Attributes...}, 'content' )
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
==Outputs
|
|
895
|
+
===Docgenerator::Tables::Row#to_latex
|
|
896
|
+
content\\
|
|
897
|
+
|
|
898
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Row#.to_latex
|
|
899
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
900
|
+
|
|
901
|
+
Default:
|
|
902
|
+
<<START>>content\\<<END>>
|
|
903
|
+
|
|
904
|
+
* Result after Docgenerator::Tables::Row#cr:
|
|
905
|
+
|
|
906
|
+
<<START>>content\\
|
|
907
|
+
<<END>>
|
|
908
|
+
|
|
909
|
+
* Result after Docgenerator::Tables::Row#cR:
|
|
910
|
+
|
|
911
|
+
<<START>>content\\
|
|
912
|
+
<<END>>
|
|
913
|
+
|
|
914
|
+
* Result after Docgenerator::Tables::Row#Cr:
|
|
915
|
+
|
|
916
|
+
<<START>>
|
|
917
|
+
content\\
|
|
918
|
+
<<END>>
|
|
919
|
+
|
|
920
|
+
* Result after Docgenerator::Tables::Row#CR:
|
|
921
|
+
|
|
922
|
+
<<START>>
|
|
923
|
+
content\\
|
|
924
|
+
<<END>>
|
|
925
|
+
|
|
926
|
+
===Docgenerator::Tables::Row#to_html
|
|
927
|
+
<tr >content</tr>
|
|
928
|
+
|
|
929
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Row#.to_html
|
|
930
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
931
|
+
|
|
932
|
+
Default:
|
|
933
|
+
<<START>><tr >content</tr><<END>>
|
|
934
|
+
|
|
935
|
+
* Result after Docgenerator::Tables::Row#cr:
|
|
936
|
+
|
|
937
|
+
<<START>><tr >content</tr>
|
|
938
|
+
<<END>>
|
|
939
|
+
|
|
940
|
+
* Result after Docgenerator::Tables::Row#cR:
|
|
941
|
+
|
|
942
|
+
<<START>><tr >content
|
|
943
|
+
</tr>
|
|
944
|
+
<<END>>
|
|
945
|
+
|
|
946
|
+
* Result after Docgenerator::Tables::Row#Cr:
|
|
947
|
+
|
|
948
|
+
<<START>>
|
|
949
|
+
<tr >content
|
|
950
|
+
</tr>
|
|
951
|
+
<<END>>
|
|
952
|
+
|
|
953
|
+
* Result after Docgenerator::Tables::Row#CR:
|
|
954
|
+
|
|
955
|
+
<<START>>
|
|
956
|
+
<tr >content
|
|
957
|
+
</tr>
|
|
958
|
+
<<END>>
|
|
959
|
+
|
|
960
|
+
===Docgenerator::Tables::Row#to_context
|
|
961
|
+
\tr{content}
|
|
962
|
+
|
|
963
|
+
* No output routine defined for context - use a dummy
|
|
964
|
+
===Docgenerator::Tables::Row#to_text
|
|
965
|
+
content
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Row#.to_text
|
|
969
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
970
|
+
|
|
971
|
+
Default:
|
|
972
|
+
<<START>>content
|
|
973
|
+
<<END>>
|
|
974
|
+
|
|
975
|
+
* Docgenerator::Tables::Row#cr has no effect, same result as default
|
|
976
|
+
* Docgenerator::Tables::Row#cR has no effect, same result as default
|
|
977
|
+
* Docgenerator::Tables::Row#Cr has no effect, same result as default
|
|
978
|
+
* Docgenerator::Tables::Row#CR has no effect, same result as default
|
|
979
|
+
===Docgenerator::Tables::Row#to_wiki
|
|
980
|
+
|
|
981
|
+
|-
|
|
982
|
+
content
|
|
983
|
+
|
|
984
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Row#.to_wiki
|
|
985
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
986
|
+
|
|
987
|
+
Default:
|
|
988
|
+
<<START>>
|
|
989
|
+
|-
|
|
990
|
+
content<<END>>
|
|
991
|
+
|
|
992
|
+
* Docgenerator::Tables::Row#cr has no effect, same result as default
|
|
993
|
+
* Docgenerator::Tables::Row#cR has no effect, same result as default
|
|
994
|
+
* Docgenerator::Tables::Row#Cr has no effect, same result as default
|
|
995
|
+
* Docgenerator::Tables::Row#CR has no effect, same result as default
|
|
996
|
+
===Docgenerator::Tables::Row#to_creole
|
|
997
|
+
|
|
998
|
+
|-
|
|
999
|
+
content
|
|
1000
|
+
|
|
1001
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Row#.to_creole
|
|
1002
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1003
|
+
|
|
1004
|
+
Default:
|
|
1005
|
+
<<START>>
|
|
1006
|
+
|-
|
|
1007
|
+
content<<END>>
|
|
1008
|
+
|
|
1009
|
+
* Docgenerator::Tables::Row#cr has no effect, same result as default
|
|
1010
|
+
* Docgenerator::Tables::Row#cR has no effect, same result as default
|
|
1011
|
+
* Docgenerator::Tables::Row#Cr has no effect, same result as default
|
|
1012
|
+
* Docgenerator::Tables::Row#CR has no effect, same result as default
|
|
1013
|
+
=end
|
|
1014
|
+
class Row << Docgenerator::Element
|
|
1015
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1016
|
+
end #class Row
|
|
1017
|
+
end #module Tables
|
|
1018
|
+
end #module Docgenerator
|
|
1019
|
+
module Docgenerator
|
|
1020
|
+
module Tables
|
|
1021
|
+
=begin rdoc
|
|
1022
|
+
=Docgenerator::Tables::Hline
|
|
1023
|
+
|
|
1024
|
+
Docgenerator::Tables::Hline does not contain attributes
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
Docgenerator::Tables::Hline allows no content.
|
|
1028
|
+
|
|
1029
|
+
==Generate an object
|
|
1030
|
+
test = Docgenerator::Tables::Hline.new( )
|
|
1031
|
+
|
|
1032
|
+
Alternative generation
|
|
1033
|
+
test = element(:hline)
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
==Outputs
|
|
1037
|
+
===Docgenerator::Tables::Hline#to_latex
|
|
1038
|
+
\hline
|
|
1039
|
+
|
|
1040
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Hline#.to_latex
|
|
1041
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1042
|
+
|
|
1043
|
+
Default:
|
|
1044
|
+
<<START>>\hline <<END>>
|
|
1045
|
+
|
|
1046
|
+
* Docgenerator::Tables::Hline#cr has no effect, same result as default
|
|
1047
|
+
* Docgenerator::Tables::Hline#cR has no effect, same result as default
|
|
1048
|
+
* Docgenerator::Tables::Hline#Cr has no effect, same result as default
|
|
1049
|
+
* Docgenerator::Tables::Hline#CR has no effect, same result as default
|
|
1050
|
+
===Docgenerator::Tables::Hline#to_html
|
|
1051
|
+
<span />
|
|
1052
|
+
|
|
1053
|
+
* No output routine defined for html - use a dummy
|
|
1054
|
+
===Docgenerator::Tables::Hline#to_context
|
|
1055
|
+
\hline{}
|
|
1056
|
+
|
|
1057
|
+
* No output routine defined for context - use a dummy
|
|
1058
|
+
===Docgenerator::Tables::Hline#to_text
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
* No output routine defined for text - use a dummy
|
|
1062
|
+
===Docgenerator::Tables::Hline#to_wiki
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
* No output routine defined for wiki - use a dummy
|
|
1067
|
+
===Docgenerator::Tables::Hline#to_creole
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
* No output routine defined for creole - use a dummy
|
|
1072
|
+
=end
|
|
1073
|
+
class Hline << Docgenerator::Element
|
|
1074
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1075
|
+
end #class Hline
|
|
1076
|
+
end #module Tables
|
|
1077
|
+
end #module Docgenerator
|
|
1078
|
+
module Docgenerator
|
|
1079
|
+
module Tables
|
|
1080
|
+
=begin rdoc
|
|
1081
|
+
=Docgenerator::Tables::Toprule
|
|
1082
|
+
|
|
1083
|
+
Docgenerator::Tables::Toprule does not contain attributes
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
Docgenerator::Tables::Toprule allows no content.
|
|
1087
|
+
|
|
1088
|
+
==Generate an object
|
|
1089
|
+
test = Docgenerator::Tables::Toprule.new( )
|
|
1090
|
+
|
|
1091
|
+
Alternative generation
|
|
1092
|
+
test = element(:toprule)
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
==Outputs
|
|
1096
|
+
===Docgenerator::Tables::Toprule#to_latex
|
|
1097
|
+
\toprule
|
|
1098
|
+
|
|
1099
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Toprule#.to_latex
|
|
1100
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1101
|
+
|
|
1102
|
+
Default:
|
|
1103
|
+
<<START>>\toprule<<END>>
|
|
1104
|
+
|
|
1105
|
+
* Docgenerator::Tables::Toprule#cr has no effect, same result as default
|
|
1106
|
+
* Docgenerator::Tables::Toprule#cR has no effect, same result as default
|
|
1107
|
+
* Docgenerator::Tables::Toprule#Cr has no effect, same result as default
|
|
1108
|
+
* Docgenerator::Tables::Toprule#CR has no effect, same result as default
|
|
1109
|
+
===Docgenerator::Tables::Toprule#to_html
|
|
1110
|
+
<span />
|
|
1111
|
+
|
|
1112
|
+
* No output routine defined for html - use a dummy
|
|
1113
|
+
===Docgenerator::Tables::Toprule#to_context
|
|
1114
|
+
\toprule{}
|
|
1115
|
+
|
|
1116
|
+
* No output routine defined for context - use a dummy
|
|
1117
|
+
===Docgenerator::Tables::Toprule#to_text
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
* No output routine defined for text - use a dummy
|
|
1121
|
+
===Docgenerator::Tables::Toprule#to_wiki
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
* No output routine defined for wiki - use a dummy
|
|
1126
|
+
===Docgenerator::Tables::Toprule#to_creole
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
* No output routine defined for creole - use a dummy
|
|
1131
|
+
=end
|
|
1132
|
+
class Toprule << Docgenerator::Element
|
|
1133
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1134
|
+
end #class Toprule
|
|
1135
|
+
end #module Tables
|
|
1136
|
+
end #module Docgenerator
|
|
1137
|
+
module Docgenerator
|
|
1138
|
+
module Tables
|
|
1139
|
+
=begin rdoc
|
|
1140
|
+
=Docgenerator::Tables::Midrule
|
|
1141
|
+
|
|
1142
|
+
Docgenerator::Tables::Midrule does not contain attributes
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
Docgenerator::Tables::Midrule allows no content.
|
|
1146
|
+
|
|
1147
|
+
==Generate an object
|
|
1148
|
+
test = Docgenerator::Tables::Midrule.new( )
|
|
1149
|
+
|
|
1150
|
+
Alternative generation
|
|
1151
|
+
test = element(:midrule)
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
==Outputs
|
|
1155
|
+
===Docgenerator::Tables::Midrule#to_latex
|
|
1156
|
+
\midrule
|
|
1157
|
+
|
|
1158
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Midrule#.to_latex
|
|
1159
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1160
|
+
|
|
1161
|
+
Default:
|
|
1162
|
+
<<START>>\midrule <<END>>
|
|
1163
|
+
|
|
1164
|
+
* Docgenerator::Tables::Midrule#cr has no effect, same result as default
|
|
1165
|
+
* Docgenerator::Tables::Midrule#cR has no effect, same result as default
|
|
1166
|
+
* Docgenerator::Tables::Midrule#Cr has no effect, same result as default
|
|
1167
|
+
* Docgenerator::Tables::Midrule#CR has no effect, same result as default
|
|
1168
|
+
===Docgenerator::Tables::Midrule#to_html
|
|
1169
|
+
<span />
|
|
1170
|
+
|
|
1171
|
+
* No output routine defined for html - use a dummy
|
|
1172
|
+
===Docgenerator::Tables::Midrule#to_context
|
|
1173
|
+
\midrule{}
|
|
1174
|
+
|
|
1175
|
+
* No output routine defined for context - use a dummy
|
|
1176
|
+
===Docgenerator::Tables::Midrule#to_text
|
|
1177
|
+
|
|
1178
|
+
|
|
1179
|
+
* No output routine defined for text - use a dummy
|
|
1180
|
+
===Docgenerator::Tables::Midrule#to_wiki
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
|
|
1184
|
+
* No output routine defined for wiki - use a dummy
|
|
1185
|
+
===Docgenerator::Tables::Midrule#to_creole
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
* No output routine defined for creole - use a dummy
|
|
1190
|
+
=end
|
|
1191
|
+
class Midrule << Docgenerator::Element
|
|
1192
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1193
|
+
end #class Midrule
|
|
1194
|
+
end #module Tables
|
|
1195
|
+
end #module Docgenerator
|
|
1196
|
+
module Docgenerator
|
|
1197
|
+
module Tables
|
|
1198
|
+
=begin rdoc
|
|
1199
|
+
=Docgenerator::Tables::Bottomrule
|
|
1200
|
+
|
|
1201
|
+
Docgenerator::Tables::Bottomrule does not contain attributes
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
Docgenerator::Tables::Bottomrule allows no content.
|
|
1205
|
+
|
|
1206
|
+
==Generate an object
|
|
1207
|
+
test = Docgenerator::Tables::Bottomrule.new( )
|
|
1208
|
+
|
|
1209
|
+
Alternative generation
|
|
1210
|
+
test = element(:bottomrule)
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
==Outputs
|
|
1214
|
+
===Docgenerator::Tables::Bottomrule#to_latex
|
|
1215
|
+
\bottomrule
|
|
1216
|
+
|
|
1217
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Bottomrule#.to_latex
|
|
1218
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1219
|
+
|
|
1220
|
+
Default:
|
|
1221
|
+
<<START>>\bottomrule <<END>>
|
|
1222
|
+
|
|
1223
|
+
* Docgenerator::Tables::Bottomrule#cr has no effect, same result as default
|
|
1224
|
+
* Docgenerator::Tables::Bottomrule#cR has no effect, same result as default
|
|
1225
|
+
* Docgenerator::Tables::Bottomrule#Cr has no effect, same result as default
|
|
1226
|
+
* Docgenerator::Tables::Bottomrule#CR has no effect, same result as default
|
|
1227
|
+
===Docgenerator::Tables::Bottomrule#to_html
|
|
1228
|
+
<span />
|
|
1229
|
+
|
|
1230
|
+
* No output routine defined for html - use a dummy
|
|
1231
|
+
===Docgenerator::Tables::Bottomrule#to_context
|
|
1232
|
+
\bottomrule{}
|
|
1233
|
+
|
|
1234
|
+
* No output routine defined for context - use a dummy
|
|
1235
|
+
===Docgenerator::Tables::Bottomrule#to_text
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
* No output routine defined for text - use a dummy
|
|
1239
|
+
===Docgenerator::Tables::Bottomrule#to_wiki
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
|
|
1243
|
+
* No output routine defined for wiki - use a dummy
|
|
1244
|
+
===Docgenerator::Tables::Bottomrule#to_creole
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
* No output routine defined for creole - use a dummy
|
|
1249
|
+
=end
|
|
1250
|
+
class Bottomrule << Docgenerator::Element
|
|
1251
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1252
|
+
end #class Bottomrule
|
|
1253
|
+
end #module Tables
|
|
1254
|
+
end #module Docgenerator
|
|
1255
|
+
module Docgenerator
|
|
1256
|
+
module Tables
|
|
1257
|
+
=begin rdoc
|
|
1258
|
+
=Docgenerator::Tables::Endfirsthead
|
|
1259
|
+
|
|
1260
|
+
Docgenerator::Tables::Endfirsthead does not contain attributes
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
Docgenerator::Tables::Endfirsthead allows no content.
|
|
1264
|
+
|
|
1265
|
+
==Generate an object
|
|
1266
|
+
test = Docgenerator::Tables::Endfirsthead.new( )
|
|
1267
|
+
|
|
1268
|
+
Alternative generation
|
|
1269
|
+
test = element(:endfirsthead)
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
==Outputs
|
|
1273
|
+
===Docgenerator::Tables::Endfirsthead#to_latex
|
|
1274
|
+
\endfirsthead
|
|
1275
|
+
|
|
1276
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Endfirsthead#.to_latex
|
|
1277
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1278
|
+
|
|
1279
|
+
Default:
|
|
1280
|
+
<<START>>\endfirsthead <<END>>
|
|
1281
|
+
|
|
1282
|
+
* Docgenerator::Tables::Endfirsthead#cr has no effect, same result as default
|
|
1283
|
+
* Docgenerator::Tables::Endfirsthead#cR has no effect, same result as default
|
|
1284
|
+
* Docgenerator::Tables::Endfirsthead#Cr has no effect, same result as default
|
|
1285
|
+
* Docgenerator::Tables::Endfirsthead#CR has no effect, same result as default
|
|
1286
|
+
===Docgenerator::Tables::Endfirsthead#to_html
|
|
1287
|
+
<span />
|
|
1288
|
+
|
|
1289
|
+
* No output routine defined for html - use a dummy
|
|
1290
|
+
===Docgenerator::Tables::Endfirsthead#to_context
|
|
1291
|
+
\endfirsthead{}
|
|
1292
|
+
|
|
1293
|
+
* No output routine defined for context - use a dummy
|
|
1294
|
+
===Docgenerator::Tables::Endfirsthead#to_text
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
* No output routine defined for text - use a dummy
|
|
1298
|
+
===Docgenerator::Tables::Endfirsthead#to_wiki
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
* No output routine defined for wiki - use a dummy
|
|
1303
|
+
===Docgenerator::Tables::Endfirsthead#to_creole
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
* No output routine defined for creole - use a dummy
|
|
1308
|
+
=end
|
|
1309
|
+
class Endfirsthead << Docgenerator::Element
|
|
1310
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1311
|
+
end #class Endfirsthead
|
|
1312
|
+
end #module Tables
|
|
1313
|
+
end #module Docgenerator
|
|
1314
|
+
module Docgenerator
|
|
1315
|
+
module Tables
|
|
1316
|
+
=begin rdoc
|
|
1317
|
+
=Docgenerator::Tables::Endhead
|
|
1318
|
+
|
|
1319
|
+
Docgenerator::Tables::Endhead does not contain attributes
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
Docgenerator::Tables::Endhead allows no content.
|
|
1323
|
+
|
|
1324
|
+
==Generate an object
|
|
1325
|
+
test = Docgenerator::Tables::Endhead.new( )
|
|
1326
|
+
|
|
1327
|
+
Alternative generation
|
|
1328
|
+
test = element(:endhead)
|
|
1329
|
+
|
|
1330
|
+
|
|
1331
|
+
==Outputs
|
|
1332
|
+
===Docgenerator::Tables::Endhead#to_latex
|
|
1333
|
+
\endhead
|
|
1334
|
+
|
|
1335
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Endhead#.to_latex
|
|
1336
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1337
|
+
|
|
1338
|
+
Default:
|
|
1339
|
+
<<START>>\endhead <<END>>
|
|
1340
|
+
|
|
1341
|
+
* Docgenerator::Tables::Endhead#cr has no effect, same result as default
|
|
1342
|
+
* Docgenerator::Tables::Endhead#cR has no effect, same result as default
|
|
1343
|
+
* Docgenerator::Tables::Endhead#Cr has no effect, same result as default
|
|
1344
|
+
* Docgenerator::Tables::Endhead#CR has no effect, same result as default
|
|
1345
|
+
===Docgenerator::Tables::Endhead#to_html
|
|
1346
|
+
<span />
|
|
1347
|
+
|
|
1348
|
+
* No output routine defined for html - use a dummy
|
|
1349
|
+
===Docgenerator::Tables::Endhead#to_context
|
|
1350
|
+
\endhead{}
|
|
1351
|
+
|
|
1352
|
+
* No output routine defined for context - use a dummy
|
|
1353
|
+
===Docgenerator::Tables::Endhead#to_text
|
|
1354
|
+
|
|
1355
|
+
|
|
1356
|
+
* No output routine defined for text - use a dummy
|
|
1357
|
+
===Docgenerator::Tables::Endhead#to_wiki
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
* No output routine defined for wiki - use a dummy
|
|
1362
|
+
===Docgenerator::Tables::Endhead#to_creole
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
* No output routine defined for creole - use a dummy
|
|
1367
|
+
=end
|
|
1368
|
+
class Endhead << Docgenerator::Element
|
|
1369
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1370
|
+
end #class Endhead
|
|
1371
|
+
end #module Tables
|
|
1372
|
+
end #module Docgenerator
|
|
1373
|
+
module Docgenerator
|
|
1374
|
+
module Tables
|
|
1375
|
+
=begin rdoc
|
|
1376
|
+
=Docgenerator::Tables::Endfoot
|
|
1377
|
+
|
|
1378
|
+
Docgenerator::Tables::Endfoot does not contain attributes
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
Docgenerator::Tables::Endfoot allows no content.
|
|
1382
|
+
|
|
1383
|
+
==Generate an object
|
|
1384
|
+
test = Docgenerator::Tables::Endfoot.new( )
|
|
1385
|
+
|
|
1386
|
+
Alternative generation
|
|
1387
|
+
test = element(:endfoot)
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
==Outputs
|
|
1391
|
+
===Docgenerator::Tables::Endfoot#to_latex
|
|
1392
|
+
\endfoot
|
|
1393
|
+
|
|
1394
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Endfoot#.to_latex
|
|
1395
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1396
|
+
|
|
1397
|
+
Default:
|
|
1398
|
+
<<START>>\endfoot <<END>>
|
|
1399
|
+
|
|
1400
|
+
* Docgenerator::Tables::Endfoot#cr has no effect, same result as default
|
|
1401
|
+
* Docgenerator::Tables::Endfoot#cR has no effect, same result as default
|
|
1402
|
+
* Docgenerator::Tables::Endfoot#Cr has no effect, same result as default
|
|
1403
|
+
* Docgenerator::Tables::Endfoot#CR has no effect, same result as default
|
|
1404
|
+
===Docgenerator::Tables::Endfoot#to_html
|
|
1405
|
+
<span />
|
|
1406
|
+
|
|
1407
|
+
* No output routine defined for html - use a dummy
|
|
1408
|
+
===Docgenerator::Tables::Endfoot#to_context
|
|
1409
|
+
\endfoot{}
|
|
1410
|
+
|
|
1411
|
+
* No output routine defined for context - use a dummy
|
|
1412
|
+
===Docgenerator::Tables::Endfoot#to_text
|
|
1413
|
+
|
|
1414
|
+
|
|
1415
|
+
* No output routine defined for text - use a dummy
|
|
1416
|
+
===Docgenerator::Tables::Endfoot#to_wiki
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
* No output routine defined for wiki - use a dummy
|
|
1421
|
+
===Docgenerator::Tables::Endfoot#to_creole
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
* No output routine defined for creole - use a dummy
|
|
1426
|
+
=end
|
|
1427
|
+
class Endfoot << Docgenerator::Element
|
|
1428
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1429
|
+
end #class Endfoot
|
|
1430
|
+
end #module Tables
|
|
1431
|
+
end #module Docgenerator
|
|
1432
|
+
module Docgenerator
|
|
1433
|
+
module Tables
|
|
1434
|
+
=begin rdoc
|
|
1435
|
+
=Docgenerator::Tables::Endlastfoot
|
|
1436
|
+
|
|
1437
|
+
Docgenerator::Tables::Endlastfoot does not contain attributes
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
Docgenerator::Tables::Endlastfoot allows no content.
|
|
1441
|
+
|
|
1442
|
+
==Generate an object
|
|
1443
|
+
test = Docgenerator::Tables::Endlastfoot.new( )
|
|
1444
|
+
|
|
1445
|
+
Alternative generation
|
|
1446
|
+
test = element(:endlastfoot)
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
==Outputs
|
|
1450
|
+
===Docgenerator::Tables::Endlastfoot#to_latex
|
|
1451
|
+
\endlastfoot
|
|
1452
|
+
|
|
1453
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Endlastfoot#.to_latex
|
|
1454
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1455
|
+
|
|
1456
|
+
Default:
|
|
1457
|
+
<<START>>\endlastfoot <<END>>
|
|
1458
|
+
|
|
1459
|
+
* Docgenerator::Tables::Endlastfoot#cr has no effect, same result as default
|
|
1460
|
+
* Docgenerator::Tables::Endlastfoot#cR has no effect, same result as default
|
|
1461
|
+
* Docgenerator::Tables::Endlastfoot#Cr has no effect, same result as default
|
|
1462
|
+
* Docgenerator::Tables::Endlastfoot#CR has no effect, same result as default
|
|
1463
|
+
===Docgenerator::Tables::Endlastfoot#to_html
|
|
1464
|
+
<span />
|
|
1465
|
+
|
|
1466
|
+
* No output routine defined for html - use a dummy
|
|
1467
|
+
===Docgenerator::Tables::Endlastfoot#to_context
|
|
1468
|
+
\endlastfoot{}
|
|
1469
|
+
|
|
1470
|
+
* No output routine defined for context - use a dummy
|
|
1471
|
+
===Docgenerator::Tables::Endlastfoot#to_text
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
* No output routine defined for text - use a dummy
|
|
1475
|
+
===Docgenerator::Tables::Endlastfoot#to_wiki
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
* No output routine defined for wiki - use a dummy
|
|
1480
|
+
===Docgenerator::Tables::Endlastfoot#to_creole
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
|
|
1484
|
+
* No output routine defined for creole - use a dummy
|
|
1485
|
+
=end
|
|
1486
|
+
class Endlastfoot << Docgenerator::Element
|
|
1487
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1488
|
+
end #class Endlastfoot
|
|
1489
|
+
end #module Tables
|
|
1490
|
+
end #module Docgenerator
|
|
1491
|
+
module Docgenerator
|
|
1492
|
+
module Tables
|
|
1493
|
+
=begin rdoc
|
|
1494
|
+
=Docgenerator::Tables::Column
|
|
1495
|
+
|
|
1496
|
+
==Attributes
|
|
1497
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1498
|
+
====================================================================================================
|
|
1499
|
+
lang : - X - - - - - -
|
|
1500
|
+
id : - X - - - - - -
|
|
1501
|
+
class : - X - - - - - -
|
|
1502
|
+
style : - X - - - - - -
|
|
1503
|
+
title : - X - - - - - -
|
|
1504
|
+
dir : - X - - - - - -
|
|
1505
|
+
onclick : - X - - - - - -
|
|
1506
|
+
ondblclick : - X - - - - - -
|
|
1507
|
+
onmousedown : - X - - - - - -
|
|
1508
|
+
onmouseup : - X - - - - - -
|
|
1509
|
+
onmouseover : - X - - - - - -
|
|
1510
|
+
onmousemove : - X - - - - - -
|
|
1511
|
+
onmouseout : - X - - - - - -
|
|
1512
|
+
onkeypress : - X - - - - - -
|
|
1513
|
+
onkeyup : - X - - - - - -
|
|
1514
|
+
onkeydown : - X - - - - - -
|
|
1515
|
+
align : - X - - - - - -
|
|
1516
|
+
width : - X - - - - - -
|
|
1517
|
+
height : - X - - - - - -
|
|
1518
|
+
bgcolor : - X - - - - - -
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
Docgenerator::Tables::Column can contain content.
|
|
1522
|
+
|
|
1523
|
+
==Generate an object
|
|
1524
|
+
test = Docgenerator::Tables::Column.new( {
|
|
1525
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
1526
|
+
#:id => <<value>>, % optional
|
|
1527
|
+
#:class => <<value>>, % optional
|
|
1528
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
1529
|
+
#:title => <<value>>, % optional
|
|
1530
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
1531
|
+
#:onclick => <<value>>, % optional
|
|
1532
|
+
#:ondblclick => <<value>>, % optional
|
|
1533
|
+
#:onmousedown => <<value>>, % optional
|
|
1534
|
+
#:onmouseup => <<value>>, % optional
|
|
1535
|
+
#:onmouseover => <<value>>, % optional
|
|
1536
|
+
#:onmousemove => <<value>>, % optional
|
|
1537
|
+
#:onmouseout => <<value>>, % optional
|
|
1538
|
+
#:onkeypress => <<value>>, % optional
|
|
1539
|
+
#:onkeyup => <<value>>, % optional
|
|
1540
|
+
#:onkeydown => <<value>>, % optional
|
|
1541
|
+
#:align => <<value>>, % optional, values: ["left", "center", "right", "justify", "char"]
|
|
1542
|
+
#:width => <<value>>, % optional
|
|
1543
|
+
#:height => <<value>>, % optional
|
|
1544
|
+
#:bgcolor => <<value>>, % optional
|
|
1545
|
+
}, 'content')
|
|
1546
|
+
|
|
1547
|
+
Alternative generation
|
|
1548
|
+
test = element(:column, {...Attributes...}, 'content' )
|
|
1549
|
+
test = element(:col, {...Attributes...}, 'content' )
|
|
1550
|
+
test = element(:td, {...Attributes...}, 'content' )
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
==Outputs
|
|
1554
|
+
===Docgenerator::Tables::Column#to_latex
|
|
1555
|
+
content
|
|
1556
|
+
|
|
1557
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column#.to_latex
|
|
1558
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1559
|
+
|
|
1560
|
+
Default:
|
|
1561
|
+
<<START>>content<<END>>
|
|
1562
|
+
|
|
1563
|
+
* Result after Docgenerator::Tables::Column#cr:
|
|
1564
|
+
|
|
1565
|
+
<<START>>content
|
|
1566
|
+
<<END>>
|
|
1567
|
+
|
|
1568
|
+
* Result after Docgenerator::Tables::Column#cR:
|
|
1569
|
+
|
|
1570
|
+
<<START>>content
|
|
1571
|
+
<<END>>
|
|
1572
|
+
|
|
1573
|
+
* Result after Docgenerator::Tables::Column#Cr:
|
|
1574
|
+
|
|
1575
|
+
<<START>>
|
|
1576
|
+
content
|
|
1577
|
+
<<END>>
|
|
1578
|
+
|
|
1579
|
+
* Result after Docgenerator::Tables::Column#CR:
|
|
1580
|
+
|
|
1581
|
+
<<START>>
|
|
1582
|
+
content
|
|
1583
|
+
<<END>>
|
|
1584
|
+
|
|
1585
|
+
===Docgenerator::Tables::Column#to_html
|
|
1586
|
+
<td >content</td>
|
|
1587
|
+
|
|
1588
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column#.to_html
|
|
1589
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1590
|
+
|
|
1591
|
+
Default:
|
|
1592
|
+
<<START>><td >content</td><<END>>
|
|
1593
|
+
|
|
1594
|
+
* Result after Docgenerator::Tables::Column#cr:
|
|
1595
|
+
|
|
1596
|
+
<<START>><td >content</td>
|
|
1597
|
+
<<END>>
|
|
1598
|
+
|
|
1599
|
+
* Result after Docgenerator::Tables::Column#cR:
|
|
1600
|
+
|
|
1601
|
+
<<START>><td >
|
|
1602
|
+
content
|
|
1603
|
+
</td>
|
|
1604
|
+
<<END>>
|
|
1605
|
+
|
|
1606
|
+
* Result after Docgenerator::Tables::Column#Cr:
|
|
1607
|
+
|
|
1608
|
+
<<START>>
|
|
1609
|
+
<td >
|
|
1610
|
+
content
|
|
1611
|
+
</td>
|
|
1612
|
+
<<END>>
|
|
1613
|
+
|
|
1614
|
+
* Result after Docgenerator::Tables::Column#CR:
|
|
1615
|
+
|
|
1616
|
+
<<START>>
|
|
1617
|
+
<td >
|
|
1618
|
+
content
|
|
1619
|
+
</td>
|
|
1620
|
+
<<END>>
|
|
1621
|
+
|
|
1622
|
+
===Docgenerator::Tables::Column#to_context
|
|
1623
|
+
\td{content}
|
|
1624
|
+
|
|
1625
|
+
* No output routine defined for context - use a dummy
|
|
1626
|
+
===Docgenerator::Tables::Column#to_text
|
|
1627
|
+
content
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column#.to_text
|
|
1631
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1632
|
+
|
|
1633
|
+
Default:
|
|
1634
|
+
<<START>>content
|
|
1635
|
+
<<END>>
|
|
1636
|
+
|
|
1637
|
+
* Docgenerator::Tables::Column#cr has no effect, same result as default
|
|
1638
|
+
* Docgenerator::Tables::Column#cR has no effect, same result as default
|
|
1639
|
+
* Docgenerator::Tables::Column#Cr has no effect, same result as default
|
|
1640
|
+
* Docgenerator::Tables::Column#CR has no effect, same result as default
|
|
1641
|
+
===Docgenerator::Tables::Column#to_wiki
|
|
1642
|
+
|content
|
|
1643
|
+
|
|
1644
|
+
|
|
1645
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column#.to_wiki
|
|
1646
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1647
|
+
|
|
1648
|
+
Default:
|
|
1649
|
+
<<START>>|content
|
|
1650
|
+
<<END>>
|
|
1651
|
+
|
|
1652
|
+
* Docgenerator::Tables::Column#cr has no effect, same result as default
|
|
1653
|
+
* Docgenerator::Tables::Column#cR has no effect, same result as default
|
|
1654
|
+
* Docgenerator::Tables::Column#Cr has no effect, same result as default
|
|
1655
|
+
* Docgenerator::Tables::Column#CR has no effect, same result as default
|
|
1656
|
+
===Docgenerator::Tables::Column#to_creole
|
|
1657
|
+
|content
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column#.to_creole
|
|
1661
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1662
|
+
|
|
1663
|
+
Default:
|
|
1664
|
+
<<START>>|content
|
|
1665
|
+
<<END>>
|
|
1666
|
+
|
|
1667
|
+
* Docgenerator::Tables::Column#cr has no effect, same result as default
|
|
1668
|
+
* Docgenerator::Tables::Column#cR has no effect, same result as default
|
|
1669
|
+
* Docgenerator::Tables::Column#Cr has no effect, same result as default
|
|
1670
|
+
* Docgenerator::Tables::Column#CR has no effect, same result as default
|
|
1671
|
+
=end
|
|
1672
|
+
class Column << Docgenerator::Element
|
|
1673
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1674
|
+
end #class Column
|
|
1675
|
+
end #module Tables
|
|
1676
|
+
end #module Docgenerator
|
|
1677
|
+
module Docgenerator
|
|
1678
|
+
module Tables
|
|
1679
|
+
=begin rdoc
|
|
1680
|
+
=Docgenerator::Tables::Column_th
|
|
1681
|
+
|
|
1682
|
+
Docgenerator::Tables::Column_th does not contain attributes
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
Docgenerator::Tables::Column_th can contain content.
|
|
1686
|
+
|
|
1687
|
+
==Generate an object
|
|
1688
|
+
test = Docgenerator::Tables::Column_th.new( {}, 'content')
|
|
1689
|
+
|
|
1690
|
+
Alternative generation
|
|
1691
|
+
test = element(:column_th, {}, 'content' )
|
|
1692
|
+
test = element(:th, {}, 'content' )
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
==Outputs
|
|
1696
|
+
===Docgenerator::Tables::Column_th#to_latex
|
|
1697
|
+
content
|
|
1698
|
+
|
|
1699
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column_th#.to_latex
|
|
1700
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1701
|
+
|
|
1702
|
+
Default:
|
|
1703
|
+
<<START>>content<<END>>
|
|
1704
|
+
|
|
1705
|
+
* Result after Docgenerator::Tables::Column_th#cr:
|
|
1706
|
+
|
|
1707
|
+
<<START>>content
|
|
1708
|
+
<<END>>
|
|
1709
|
+
|
|
1710
|
+
* Result after Docgenerator::Tables::Column_th#cR:
|
|
1711
|
+
|
|
1712
|
+
<<START>>content
|
|
1713
|
+
<<END>>
|
|
1714
|
+
|
|
1715
|
+
* Result after Docgenerator::Tables::Column_th#Cr:
|
|
1716
|
+
|
|
1717
|
+
<<START>>
|
|
1718
|
+
content
|
|
1719
|
+
<<END>>
|
|
1720
|
+
|
|
1721
|
+
* Result after Docgenerator::Tables::Column_th#CR:
|
|
1722
|
+
|
|
1723
|
+
<<START>>
|
|
1724
|
+
content
|
|
1725
|
+
<<END>>
|
|
1726
|
+
|
|
1727
|
+
===Docgenerator::Tables::Column_th#to_html
|
|
1728
|
+
<th >content</th>
|
|
1729
|
+
|
|
1730
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column_th#.to_html
|
|
1731
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1732
|
+
|
|
1733
|
+
Default:
|
|
1734
|
+
<<START>><th >content</th><<END>>
|
|
1735
|
+
|
|
1736
|
+
* Result after Docgenerator::Tables::Column_th#cr:
|
|
1737
|
+
|
|
1738
|
+
<<START>><th >content</th>
|
|
1739
|
+
<<END>>
|
|
1740
|
+
|
|
1741
|
+
* Result after Docgenerator::Tables::Column_th#cR:
|
|
1742
|
+
|
|
1743
|
+
<<START>><th >
|
|
1744
|
+
content
|
|
1745
|
+
</th>
|
|
1746
|
+
<<END>>
|
|
1747
|
+
|
|
1748
|
+
* Result after Docgenerator::Tables::Column_th#Cr:
|
|
1749
|
+
|
|
1750
|
+
<<START>>
|
|
1751
|
+
<th >
|
|
1752
|
+
content
|
|
1753
|
+
</th>
|
|
1754
|
+
<<END>>
|
|
1755
|
+
|
|
1756
|
+
* Result after Docgenerator::Tables::Column_th#CR:
|
|
1757
|
+
|
|
1758
|
+
<<START>>
|
|
1759
|
+
<th >
|
|
1760
|
+
content
|
|
1761
|
+
</th>
|
|
1762
|
+
<<END>>
|
|
1763
|
+
|
|
1764
|
+
===Docgenerator::Tables::Column_th#to_context
|
|
1765
|
+
\th{content}
|
|
1766
|
+
|
|
1767
|
+
* No output routine defined for context - use a dummy
|
|
1768
|
+
===Docgenerator::Tables::Column_th#to_text
|
|
1769
|
+
content
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column_th#.to_text
|
|
1773
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1774
|
+
|
|
1775
|
+
Default:
|
|
1776
|
+
<<START>>content
|
|
1777
|
+
<<END>>
|
|
1778
|
+
|
|
1779
|
+
* Docgenerator::Tables::Column_th#cr has no effect, same result as default
|
|
1780
|
+
* Docgenerator::Tables::Column_th#cR has no effect, same result as default
|
|
1781
|
+
* Docgenerator::Tables::Column_th#Cr has no effect, same result as default
|
|
1782
|
+
* Docgenerator::Tables::Column_th#CR has no effect, same result as default
|
|
1783
|
+
===Docgenerator::Tables::Column_th#to_wiki
|
|
1784
|
+
|content
|
|
1785
|
+
|
|
1786
|
+
|
|
1787
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column_th#.to_wiki
|
|
1788
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1789
|
+
|
|
1790
|
+
Default:
|
|
1791
|
+
<<START>>|content
|
|
1792
|
+
<<END>>
|
|
1793
|
+
|
|
1794
|
+
* Docgenerator::Tables::Column_th#cr has no effect, same result as default
|
|
1795
|
+
* Docgenerator::Tables::Column_th#cR has no effect, same result as default
|
|
1796
|
+
* Docgenerator::Tables::Column_th#Cr has no effect, same result as default
|
|
1797
|
+
* Docgenerator::Tables::Column_th#CR has no effect, same result as default
|
|
1798
|
+
===Docgenerator::Tables::Column_th#to_creole
|
|
1799
|
+
|content
|
|
1800
|
+
|
|
1801
|
+
|
|
1802
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Column_th#.to_creole
|
|
1803
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1804
|
+
|
|
1805
|
+
Default:
|
|
1806
|
+
<<START>>|content
|
|
1807
|
+
<<END>>
|
|
1808
|
+
|
|
1809
|
+
* Docgenerator::Tables::Column_th#cr has no effect, same result as default
|
|
1810
|
+
* Docgenerator::Tables::Column_th#cR has no effect, same result as default
|
|
1811
|
+
* Docgenerator::Tables::Column_th#Cr has no effect, same result as default
|
|
1812
|
+
* Docgenerator::Tables::Column_th#CR has no effect, same result as default
|
|
1813
|
+
=end
|
|
1814
|
+
class Column_th << Docgenerator::Tables::Column
|
|
1815
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
1816
|
+
end #class Column_th
|
|
1817
|
+
end #module Tables
|
|
1818
|
+
end #module Docgenerator
|
|
1819
|
+
module Docgenerator
|
|
1820
|
+
module Tables
|
|
1821
|
+
=begin rdoc
|
|
1822
|
+
=Docgenerator::Tables::Multicolumn
|
|
1823
|
+
|
|
1824
|
+
==Attributes
|
|
1825
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
1826
|
+
====================================================================================================
|
|
1827
|
+
colspan : X X X - - - - -
|
|
1828
|
+
rowspan : - X - - - - - -
|
|
1829
|
+
lang : - X - - - - - -
|
|
1830
|
+
id : - X - - - - - -
|
|
1831
|
+
class : - X - - - - - -
|
|
1832
|
+
style : - X - - - - - -
|
|
1833
|
+
title : - X - - - - - -
|
|
1834
|
+
dir : - X - - - - - -
|
|
1835
|
+
onclick : - X - - - - - -
|
|
1836
|
+
ondblclick : - X - - - - - -
|
|
1837
|
+
onmousedown : - X - - - - - -
|
|
1838
|
+
onmouseup : - X - - - - - -
|
|
1839
|
+
onmouseover : - X - - - - - -
|
|
1840
|
+
onmousemove : - X - - - - - -
|
|
1841
|
+
onmouseout : - X - - - - - -
|
|
1842
|
+
onkeypress : - X - - - - - -
|
|
1843
|
+
onkeyup : - X - - - - - -
|
|
1844
|
+
onkeydown : - X - - - - - -
|
|
1845
|
+
align : - X - - - - - -
|
|
1846
|
+
pos : - - X - - - - -
|
|
1847
|
+
width : - X - - - - - -
|
|
1848
|
+
height : - X - - - - - -
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
Docgenerator::Tables::Multicolumn can contain content.
|
|
1852
|
+
|
|
1853
|
+
==Generate an object
|
|
1854
|
+
test = Docgenerator::Tables::Multicolumn.new( {
|
|
1855
|
+
:colspan => <<value>>, % required, values: [Fixnum]
|
|
1856
|
+
#:rowspan => <<value>>, % optional, values: [Fixnum]
|
|
1857
|
+
#:lang => <<value>>, % optional, values: ["en", "de"]
|
|
1858
|
+
#:id => <<value>>, % optional
|
|
1859
|
+
#:class => <<value>>, % optional
|
|
1860
|
+
#:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
|
|
1861
|
+
#:title => <<value>>, % optional
|
|
1862
|
+
#:dir => <<value>>, % optional, values: ["ltr", "rtl"]
|
|
1863
|
+
#:onclick => <<value>>, % optional
|
|
1864
|
+
#:ondblclick => <<value>>, % optional
|
|
1865
|
+
#:onmousedown => <<value>>, % optional
|
|
1866
|
+
#:onmouseup => <<value>>, % optional
|
|
1867
|
+
#:onmouseover => <<value>>, % optional
|
|
1868
|
+
#:onmousemove => <<value>>, % optional
|
|
1869
|
+
#:onmouseout => <<value>>, % optional
|
|
1870
|
+
#:onkeypress => <<value>>, % optional
|
|
1871
|
+
#:onkeyup => <<value>>, % optional
|
|
1872
|
+
#:onkeydown => <<value>>, % optional
|
|
1873
|
+
#:align => <<value>>, % optional, values: ["left", "center", "right", "justify", "char"]
|
|
1874
|
+
#:pos => <<value>>, % optional
|
|
1875
|
+
#:width => <<value>>, % optional
|
|
1876
|
+
#:height => <<value>>, % optional
|
|
1877
|
+
}, 'content')
|
|
1878
|
+
|
|
1879
|
+
Alternative generation
|
|
1880
|
+
test = element(:multicolumn, {...Attributes...}, 'content' )
|
|
1881
|
+
|
|
1882
|
+
|
|
1883
|
+
==Outputs
|
|
1884
|
+
===Docgenerator::Tables::Multicolumn#to_latex
|
|
1885
|
+
\multicolumn{Value for colspan}{}{content}
|
|
1886
|
+
|
|
1887
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Multicolumn#.to_latex
|
|
1888
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1889
|
+
|
|
1890
|
+
Default:
|
|
1891
|
+
<<START>>\multicolumn{Value for colspan}{}{content}<<END>>
|
|
1892
|
+
|
|
1893
|
+
* Result after Docgenerator::Tables::Multicolumn#cr:
|
|
1894
|
+
|
|
1895
|
+
<<START>>\multicolumn{Value for colspan}{}{content}
|
|
1896
|
+
<<END>>
|
|
1897
|
+
|
|
1898
|
+
* Result after Docgenerator::Tables::Multicolumn#cR:
|
|
1899
|
+
|
|
1900
|
+
<<START>>\multicolumn{Value for colspan}{}{content}
|
|
1901
|
+
<<END>>
|
|
1902
|
+
|
|
1903
|
+
* Result after Docgenerator::Tables::Multicolumn#Cr:
|
|
1904
|
+
|
|
1905
|
+
<<START>>
|
|
1906
|
+
\multicolumn{Value for colspan}{}{content}
|
|
1907
|
+
<<END>>
|
|
1908
|
+
|
|
1909
|
+
* Result after Docgenerator::Tables::Multicolumn#CR:
|
|
1910
|
+
|
|
1911
|
+
<<START>>
|
|
1912
|
+
\multicolumn{Value for colspan}{}{content}
|
|
1913
|
+
<<END>>
|
|
1914
|
+
|
|
1915
|
+
===Docgenerator::Tables::Multicolumn#to_html
|
|
1916
|
+
<td colspan = "Value for colspan" >content</td>
|
|
1917
|
+
|
|
1918
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Multicolumn#.to_html
|
|
1919
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1920
|
+
|
|
1921
|
+
Default:
|
|
1922
|
+
<<START>><td colspan = "Value for colspan" >content</td><<END>>
|
|
1923
|
+
|
|
1924
|
+
* Result after Docgenerator::Tables::Multicolumn#cr:
|
|
1925
|
+
|
|
1926
|
+
<<START>><td colspan = "Value for colspan" >content</td>
|
|
1927
|
+
<<END>>
|
|
1928
|
+
|
|
1929
|
+
* Result after Docgenerator::Tables::Multicolumn#cR:
|
|
1930
|
+
|
|
1931
|
+
<<START>><td colspan = "Value for colspan" >
|
|
1932
|
+
content
|
|
1933
|
+
</td>
|
|
1934
|
+
<<END>>
|
|
1935
|
+
|
|
1936
|
+
* Result after Docgenerator::Tables::Multicolumn#Cr:
|
|
1937
|
+
|
|
1938
|
+
<<START>>
|
|
1939
|
+
<td colspan = "Value for colspan" >
|
|
1940
|
+
content
|
|
1941
|
+
</td>
|
|
1942
|
+
<<END>>
|
|
1943
|
+
|
|
1944
|
+
* Result after Docgenerator::Tables::Multicolumn#CR:
|
|
1945
|
+
|
|
1946
|
+
<<START>>
|
|
1947
|
+
<td colspan = "Value for colspan" >
|
|
1948
|
+
content
|
|
1949
|
+
</td>
|
|
1950
|
+
<<END>>
|
|
1951
|
+
|
|
1952
|
+
===Docgenerator::Tables::Multicolumn#to_context
|
|
1953
|
+
\multicolumn{content}
|
|
1954
|
+
|
|
1955
|
+
* No output routine defined for context - use a dummy
|
|
1956
|
+
===Docgenerator::Tables::Multicolumn#to_text
|
|
1957
|
+
content
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Multicolumn#.to_text
|
|
1961
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1962
|
+
|
|
1963
|
+
Default:
|
|
1964
|
+
<<START>>content
|
|
1965
|
+
<<END>>
|
|
1966
|
+
|
|
1967
|
+
* Docgenerator::Tables::Multicolumn#cr has no effect, same result as default
|
|
1968
|
+
* Docgenerator::Tables::Multicolumn#cR has no effect, same result as default
|
|
1969
|
+
* Docgenerator::Tables::Multicolumn#Cr has no effect, same result as default
|
|
1970
|
+
* Docgenerator::Tables::Multicolumn#CR has no effect, same result as default
|
|
1971
|
+
===Docgenerator::Tables::Multicolumn#to_wiki
|
|
1972
|
+
|columns=Value for colspan|pos=||content
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Multicolumn#.to_wiki
|
|
1976
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1977
|
+
|
|
1978
|
+
Default:
|
|
1979
|
+
<<START>>|columns=Value for colspan|pos=||content
|
|
1980
|
+
<<END>>
|
|
1981
|
+
|
|
1982
|
+
* Docgenerator::Tables::Multicolumn#cr has no effect, same result as default
|
|
1983
|
+
* Docgenerator::Tables::Multicolumn#cR has no effect, same result as default
|
|
1984
|
+
* Docgenerator::Tables::Multicolumn#Cr has no effect, same result as default
|
|
1985
|
+
* Docgenerator::Tables::Multicolumn#CR has no effect, same result as default
|
|
1986
|
+
===Docgenerator::Tables::Multicolumn#to_creole
|
|
1987
|
+
|content||columns=Value for colspan
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Multicolumn#.to_creole
|
|
1991
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
1992
|
+
|
|
1993
|
+
Default:
|
|
1994
|
+
<<START>>|content||columns=Value for colspan
|
|
1995
|
+
<<END>>
|
|
1996
|
+
|
|
1997
|
+
* Docgenerator::Tables::Multicolumn#cr has no effect, same result as default
|
|
1998
|
+
* Docgenerator::Tables::Multicolumn#cR has no effect, same result as default
|
|
1999
|
+
* Docgenerator::Tables::Multicolumn#Cr has no effect, same result as default
|
|
2000
|
+
* Docgenerator::Tables::Multicolumn#CR has no effect, same result as default
|
|
2001
|
+
=end
|
|
2002
|
+
class Multicolumn << Docgenerator::Tables::Column
|
|
2003
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
2004
|
+
end #class Multicolumn
|
|
2005
|
+
end #module Tables
|
|
2006
|
+
end #module Docgenerator
|
|
2007
|
+
module Docgenerator
|
|
2008
|
+
module Tables
|
|
2009
|
+
=begin rdoc
|
|
2010
|
+
=Docgenerator::Tables::Caption
|
|
2011
|
+
|
|
2012
|
+
==Attributes
|
|
2013
|
+
Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
|
|
2014
|
+
====================================================================================================
|
|
2015
|
+
optional : - - X - - - - -
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
Docgenerator::Tables::Caption can contain content.
|
|
2019
|
+
|
|
2020
|
+
==Generate an object
|
|
2021
|
+
test = Docgenerator::Tables::Caption.new( {
|
|
2022
|
+
#:optional => <<value>>, % optional
|
|
2023
|
+
}, 'content')
|
|
2024
|
+
|
|
2025
|
+
Alternative generation
|
|
2026
|
+
test = element(:caption, {...Attributes...}, 'content' )
|
|
2027
|
+
|
|
2028
|
+
|
|
2029
|
+
==Outputs
|
|
2030
|
+
===Docgenerator::Tables::Caption#to_latex
|
|
2031
|
+
\caption{content}
|
|
2032
|
+
|
|
2033
|
+
====:cr, :cR, :Cr, :CR for Docgenerator::Tables::Caption#.to_latex
|
|
2034
|
+
<<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
|
|
2035
|
+
|
|
2036
|
+
Default:
|
|
2037
|
+
<<START>>\caption{content}<<END>>
|
|
2038
|
+
|
|
2039
|
+
* Result after Docgenerator::Tables::Caption#cr:
|
|
2040
|
+
|
|
2041
|
+
<<START>>\caption{content}
|
|
2042
|
+
<<END>>
|
|
2043
|
+
|
|
2044
|
+
* Result after Docgenerator::Tables::Caption#cR:
|
|
2045
|
+
|
|
2046
|
+
<<START>>\caption{content}
|
|
2047
|
+
<<END>>
|
|
2048
|
+
|
|
2049
|
+
* Result after Docgenerator::Tables::Caption#Cr:
|
|
2050
|
+
|
|
2051
|
+
<<START>>
|
|
2052
|
+
\caption{content}
|
|
2053
|
+
<<END>>
|
|
2054
|
+
|
|
2055
|
+
* Result after Docgenerator::Tables::Caption#CR:
|
|
2056
|
+
|
|
2057
|
+
<<START>>
|
|
2058
|
+
\caption{content}
|
|
2059
|
+
<<END>>
|
|
2060
|
+
|
|
2061
|
+
===Docgenerator::Tables::Caption#to_html
|
|
2062
|
+
<span >content</span>
|
|
2063
|
+
|
|
2064
|
+
* No output routine defined for html - use a dummy
|
|
2065
|
+
===Docgenerator::Tables::Caption#to_context
|
|
2066
|
+
\caption{content}
|
|
2067
|
+
|
|
2068
|
+
* No output routine defined for context - use a dummy
|
|
2069
|
+
===Docgenerator::Tables::Caption#to_text
|
|
2070
|
+
content
|
|
2071
|
+
|
|
2072
|
+
* No output routine defined for text - use a dummy
|
|
2073
|
+
===Docgenerator::Tables::Caption#to_wiki
|
|
2074
|
+
content
|
|
2075
|
+
|
|
2076
|
+
|
|
2077
|
+
* No output routine defined for wiki - use a dummy
|
|
2078
|
+
===Docgenerator::Tables::Caption#to_creole
|
|
2079
|
+
content
|
|
2080
|
+
|
|
2081
|
+
|
|
2082
|
+
* No output routine defined for creole - use a dummy
|
|
2083
|
+
=end
|
|
2084
|
+
class Caption << Docgenerator::Element
|
|
2085
|
+
#This coding is empty - this is the manpage definition, not the implementation
|
|
2086
|
+
end #class Caption
|
|
2087
|
+
end #module Tables
|
|
2088
|
+
end #module Docgenerator
|