From: Carsten K. <car...@us...> - 2001-12-16 16:53:01
|
Update of /cvsroot/phpwiki/phpwiki/templates In directory usw-pr-cvs1:/tmp/cvs-serv25107/phpwiki/templates Modified Files: editpage.html Log Message: Moved the TextFormattingRules from the editpage template to the actual TFR page. The IncludePage plugin is now used to insert the first 6 lines of the TFR page for reference. This eliminates any requirement to modify the templates when localizing for another language, and allows for easy online customization (the TFR page is still locked by default). Index: editpage.html =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/templates/editpage.html,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** editpage.html 2001/12/16 11:54:31 1.26 --- editpage.html 2001/12/16 16:52:58 1.27 *************** *** 82,105 **** <hr noshade="noshade" /> <small> ! <?php echo LinkExistingWikiWord(_("TextFormattingRules")) ?><br> ! <b>$_("Emphasis:")</b> ! '' $_("for italics"), ! __ $_("for bold"), ! ''__ $_("for both") ! <br /><b>$_("Lists:")</b> ! * $_("for bullet lists"), # ! $_("for numbered lists"), ! ''; $_("term") : $_("definition")'' $_("for definition lists") ! <br /><b>$_("References:")</b> ! $_("JoinCapitalizedWords or use square brackets for a [page link] or URL [http://cool.wiki.int/].") ! <br /><b>$_("Footnotes:")</b> ! $_("Use [1],[2],[3],...") ! <br /><b>$_("Preventing linking:")</b> ! $_("Prefix with '!': !DoNotHyperlink,") ! $_("name links like [[text | URL] (double up on the '[')") ! <br /><b>$_("Misc:")</b> ! "!", "!!", "!!!" $_("make headings"), ! "%%%" $_("makes a linebreak"), ! "- - - -" $_("makes a horizontal rule") </small> --- 82,87 ---- <hr noshade="noshade" /> <small> ! <?php echo LinkExistingWikiWord(_("TextFormattingRules")) ?> ! <?plugin IncludePage page=_("TextFormattingRules") lines=6 quiet=true ?> </small> |