LDP/LDP/lampadas/www/wiki.html

88 lines
2.7 KiB
HTML
Executable File

<html>
<head>
<title>LDP Document Database</title>
<link rel=stylesheet href="/ldp.css" type="text/css">
</head>
<body>
<h2>Wiki Help</h2>
<a href="/index.html">Index</a>
<a href="/cgi-bin/document_list.pl">Documents</a>
<a href='/cgi-bin/topic_list.pl'>Topics</a>
<a href='/cgi-bin/maintainer_list.pl'>Maintainers</a>
<a href='/cgi-bin/editor_list.pl'>Editors</a>
<a href='/cgi-bin/ldp_stats.pl'>Statistics</a>
<a href='/help/'>Help</a>
<p>The LDP is currently experimenting with Wiki-style editing for selected documents.
The Wiki functionality allows permitted users to edit documents online, using
a web interface.
<p>To edit your document, click the "Edit" link in the upper right of the Meta-data
area on your document's edit page. Only the administrators and the author of a given
document can edit it.
<p>You can use a simplified text based format to write your documentation, so you
do not need to use DocBook. It uses a utility called txt2db. The following excerpt
from the README for txt2db explains how to use it:
<pre>
TEXT FORMAT DOCBOOK OUTPUT
=Title= &lt;sect1&gt;&lt;title&gt;Title&lt;/title&gt;
&lt;sect1&gt;
=Title|id= &lt;sect1 id='id'&gt;&lt;title&gt;Title&lt;/title&gt;
&lt;sect1&gt;
(works for other sect levels as well)
==Title== &lt;sect2&gt;&lt;title&gt;Title&lt;/title&gt;
&lt;/sect2&gt;
===Title=== &lt;sect3&gt;&lt;title&gt;Title&lt;/title&gt;
&lt;/sect3&gt;
Foo &lt;para&gt;Foo&lt;/para&gt;
#Foo &lt;orderedlist&gt;
#Bar &lt;listitem&gt;&lt;para&gt;Foo&lt;/para&gt;&lt;/listitem&gt;
#Baz &lt;listitem&gt;&lt;para&gt;Bar&lt;/para&gt;&lt;/listitem&gt;
&lt;listitem&gt;&lt;para&gt;Baz&lt;/para&gt;&lt;/listitem&gt;
&lt;/orderedlist&gt;
*Foo &lt;simplelist&gt;
#Bar &lt;listitem&gt;&lt;para&gt;Foo&lt;/para&gt;&lt;/listitem&gt;
#Baz &lt;listitem&gt;&lt;para&gt;Bar&lt;/para&gt;&lt;/listitem&gt;
&lt;listitem&gt;&lt;para&gt;Baz&lt;/para&gt;&lt;/listitem&gt;
&lt;/simplelist&gt;
[[http://foo.org]] &lt;ulink url='http://foo.org'&gt;
&lt;citetitle&gt;http://foo.org&lt;/citetitle&gt;
&lt;/ulink&gt;
[[http://foo.org Foo]] &lt;ulink url='http://foo.org'&gt;
&lt;citetitle&gt;Foo&lt;/citetitle&gt;
&lt;/ulink&gt;
[Foo] &lt;filename&gt;Foo&lt;/filename&gt;
'''Foo''' &lt;emphasis&gt;Foo&lt;/emphasis&gt;
<foo></foo> &lt;foo&gt;&lt;/foo&gt;
Or, you can insert arbitrary DocBook. It cannot be embedded within anything
else, though. In other words, you cannot have DocBook and one of the constructs
above in the same line.
Any text that starts with "&lt;" is considered docbook, until the
close tag is found. Tags can be nested arbitrarily deep. It won't be wrapped
with &lt;para&gt; tags or anything, so you'll need to do that manually if you
insert DocBook.
</pre>
</body>
</html>