Es ist darauf zu achten, dass /dokuwiki chmod 777 bekommt und in /dokuwiki/data die File changes.log angelegt wird. Ansonsten ist es nicht möglich Dokuwiki zu betreiben.
Derzeitige Config:
<?php /* * Dokuwiki's Main Configuration File - Local Settings * Auto-generated by config plugin * Run for user: blutgerinsel * Date: Wed, 01 Nov 2006 15:08:32 +0100 */ $conf['title'] = 'Blutgerinsel Dokus'; $conf['start'] = 'Home'; $conf['lang'] = 'de'; $conf['dmode'] = 0777; $conf['fmode'] = 0777; $conf['mailguard'] = 'visible'; $conf['useacl'] = 1; $conf['autopasswd'] = 0; $conf['resendpasswd'] = 1; $conf['superuser'] = 'blutgerinsel'; $conf['userewrite'] = '2'; $conf['defaultgroup']= 'user'; @include(DOKU_CONF.'local.protected.php'); // end auto-generated content
Derzeit wurden diese Plugins nachträglich hinzugefügt: Coloured → http://wiki.splitbrain.org/plugin:coloured
* [col red]This is red text[/col] * [col blue]This is blue text[/col] * [col green]This is green text[/col] * [col grey]This is grey text[/col]
Code Replacement Plugin → http://wiki.splitbrain.org/plugin:code
While writing several pages to document some source code I noticed that it would be helpfull if there were line numbers added automatically when using the <code> tag to highlight the respective code fragments.
Investigating the underlying GeSHi system1) showed that its line numbering feature was not available for use in DokuWiki2). —
Hence I wrote this plugin, which replaces and enhances DokuWiki's builtin <code> feature.
While I was at it I integrated the algorithms of my older Diff plugin as well3) – this way obsoleting the latter4). — And after some enlightening5) I implemented the option to specify an optional header/footer for a code section.
So the abstract markup looks like
<code lang 123 |[fh] text |[sh]>
{code to highlight}
</code>
lang“ (if present) specifies the given code's (programming-) language;123“ (if present) specifies the first number to use when numbering the given code's lines;|“ (if present) delimits the first argument(s) from the remaining ones which are used to produce a header or footer above/below the highlighted code;text“ is used as-is with the additional benefit of getting wrapped by an anchor tag which allows for addressing the code from other pages.|“ (if present) delimits the header/footer text;t“ for „top“b“ for „bottom“