Difference between revisions of "Dokuwiki"
From ThorstensHome
(New page: <pre> /srv/www/htdocs/dokuwiki/inc/parser # diff -rup parser-org.php parser.php --- parser-org.php 2009-10-20 15:49:57.000000000 +0200 +++ parser.php 2009-10-20 15:48:25.000000000 +0...) |
(→program) |
||
(31 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | + | This page is here for historic reasons. You can browse through its versions by selecting the tab "history". The page used to describe how I adapt Dokuwiki for my needs, but I can do this now entirely using the [[mediasyntax]] plugin for dokuwiki. | |
− | / | + | |
− | + | = Where do you want to go? = | |
− | + | * you want to install dokuwiki => go to [http://linuxintro.org/wiki/dokuwiki LinuxIntro] | |
− | + | * you want to learn more about the mediasyntax plugin => go to [[mediasyntax]] | |
− | + | * you want to help developing the mediasyntax plugin => go to [[developing mediasyntax]] | |
− | + | ||
− | + | = program = | |
− | - | + | |
− | + | == editsections == | |
− | + | inc/parser/xhtml.php | |
− | + | ||
− | + | The header of a section is defined in xhtml's function header(). | |
− | + | ||
+ | xhtml.php contains finishSectionEdit($pos). This creates a line like | ||
+ | <!-- EDIT1 SECTION "heading 1"[1-59] --> | ||
+ | |||
+ | $this->sectionedits[] filled by inc/parser/xhtml.php's startSectionEdit(). | ||
+ | |||
+ | html_secedit replaces | ||
+ | <!-- EDIT(\d+) ([A-Z_]+) (?:"([^"]*)" )?\[(\d+-\d*)\] --> | ||
+ | by some text |
Latest revision as of 20:01, 10 July 2011
This page is here for historic reasons. You can browse through its versions by selecting the tab "history". The page used to describe how I adapt Dokuwiki for my needs, but I can do this now entirely using the mediasyntax plugin for dokuwiki.
Where do you want to go?
- you want to install dokuwiki => go to LinuxIntro
- you want to learn more about the mediasyntax plugin => go to mediasyntax
- you want to help developing the mediasyntax plugin => go to developing mediasyntax
program
editsections
inc/parser/xhtml.php
The header of a section is defined in xhtml's function header().
xhtml.php contains finishSectionEdit($pos). This creates a line like
$this->sectionedits[] filled by inc/parser/xhtml.php's startSectionEdit().
html_secedit replaces by some text