2001-03-07
2001-03-07 13:42:14 by Kenneth Johansson <kenneth.johansson.home@gmail.com>
-
9b0365f2c7e66ce9dd762c4fbac2d4059abe51e4
(33 lines)
(+17/-16)
[
Show
| Annotate
]
Branch: 5.2
[docs] Moving documentation from Roxen 2.1 to 2.2. Changes includes lots of tagdoc layoutfixes, mostly adding <p> inside <attr>.
Rev: server/base_server/image_cache.xml:1.3
Rev: server/base_server/rxml.pike:1.282
Rev: server/modules/database/sqltag.pike:1.75
Rev: server/modules/graphics/atlas.pike:1.3
Rev: server/modules/graphics/business.pike:1.139
Rev: server/modules/graphics/cimg.pike:1.37
Rev: server/modules/graphics/gbutton.pike:1.77
Rev: server/modules/graphics/graphic_text.pike:1.259
Rev: server/modules/graphics/tablist.pike:1.51
Rev: server/modules/ldap/ldaptag.pike:2.6
Rev: server/modules/scripting/perl.pike:2.17
Rev: server/modules/scripting/piketag.pike:2.30
Rev: server/modules/tags/accessed.pike:1.40
Rev: server/modules/tags/additional_rxml.pike:1.10
Rev: server/modules/tags/check_spelling.pike:1.15
Rev: server/modules/tags/countdown.pike:1.41
Rev: server/modules/tags/diremit.pike:1.6
Rev: server/modules/tags/email.pike:1.5
Rev: server/modules/tags/foldlist.pike:1.28
Rev: server/modules/tags/html_wash.pike:1.14
Rev: server/modules/tags/indirect_href.pike:1.25
Rev: server/modules/tags/killframe.pike:1.32
Rev: server/modules/tags/obox.pike:1.34
Rev: server/modules/tags/rxmltags.pike:1.207
Rev: server/modules/tags/sizer.pike:1.14
Rev: server/modules/tags/ssi.pike:1.37
Rev: server/modules/tags/tablify.pike:1.62
Rev: server/modules/tags/translation_mod.pike:1.9
Rev: server/modules/tags/vform.pike:1.21
Rev: server/modules/throttling/throttletags.pike:1.11
7:
// return "Hello world!\n";
// </pike>
- constant cvs_version = "$Id: piketag.pike,v 2.29 2001/01/26 18:53:23 mast Exp $";
+ constant cvs_version = "$Id: piketag.pike,v 2.30 2001/03/07 13:40:47 kuntri Exp $";
constant thread_safe=1;
inherit "module";
509: Inside #if defined(manual)
TAGDOCUMENTATION;
#ifdef manual
constant tagdoc=([
- "<?pike":#"<desc pi><short hide>
+ "?pike":#"<desc pi='pi'><p><short hide='hide'>
Pike processing instruction tag.</short>This processing intruction
tag allows for evaluating Pike code directly in the document.</p>
532: Inside #if defined(manual)
are only available within the <tag>?pike ?</tag> tag.</p>
</desc>
- <attr name='write'>
+ <attr name='write'><p>
write(string fmt, mixed ... args) is a helper function. It formats a
string in the same way as printf and appends it to the output buffer.
If given only one string argument, it's written directly to the
- output buffer without being interpreted as a format specifier.
+ output buffer without being interpreted as a format specifier.</p>
</attr>
- <attr name='flush'>
+ <attr name='flush'><p>
flush() is a helper function. It returns the contents of the output
- buffer and resets it.
+ buffer and resets it.</p>
</attr>
- <attr name='rxml'>
+ <attr name='rxml'><p>
rxml(string rxmlcode) is a helper function. It parses the string with
- the RXML parser.
+ the RXML parser.</p>
</attr>
- <attr name='\"//O ...\" or \"/*O ... */\"'>
+ <attr name='\"//O ...\" or \"/*O ... */\"'><p>
Pike comment with an 'O' (the letter, not the number) as the very
first character treats the rest of the text in the comment as output
- text that's written directly to the output buffer.
+ text that's written directly to the output buffer.</p>
</attr>
- <attr name='\"//X ...\" or \"/*X ... */\"'>
+ <attr name='\"//X ...\" or \"/*X ... */\"'><p>
A Pike comment with an 'X' as the very first character treats the
rest of the text in the comment as RXML code that's executed by the
- RXML parser and then written to the output buffer.
+ RXML parser and then written to the output buffer.</p>
</attr>
- <attr name='#include \"...\"'>
- An #include preprocessor directive includes the specified file.
+ <attr name='#include \"...\"'><p>
+ An #include preprocessor directive includes the specified file.</p>
</attr>
- <attr name='#inherit \"...\"'>
+ <attr name='#inherit \"...\"'><p>
An #inherit preprocessor directive puts a corresponding inherit
declaration in the class that's generated to contain the Pike code in
- the tag, i.e. it inherits a specified file from the Roxen filesystem.
+ the tag, i.e. it inherits a specified file from the Roxen filesystem.</p>
<ex type='box'>