5851 1 1431503103 0 You can try out Wiki in here.\ \ Have fun :-) a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5852 1 1431503103 0 Since PhpWiki-1.3.3 support for ~WikiPlugins is included.\ \ A plugin is some PHP code that\ \ * lives in =phpwiki/lib/plugin/<pluginname>.php=\ * implements the ~WikiPlugin interface by extending that class.\ \ There are many plugins already distributed with PhpWiki. Simply look in the =lib/plugin=\ directory or see the PluginManager list.\ \ To write your own, look at the HelloWorldPlugin (~HelloWorld.php in that directory),\ which is a minimal example of a plugin.\ Publish your self-written plugin at a new PhpWiki page with ~PluginName + *Plugin* appended\ and add a link to [CategoryContributedPlugin | PhpWiki:CategoryContributedPlugin].\ \ A WikiPlugin allows one to easily add new types of dynamic content\ (as well as other functionality) to wiki pages within PhpWiki.\ In this very wiki all actions which are not entirely lowercased\ are implemented using plugins, and some lowercased convenience actions also. (rename, revert, setacl, diff, ...)\ \ (The old-style [MagicPhpWikiURLs] have been replaced by plugins entirely.)\ \ !!!Example\ \ Currently, one invokes a plugin by putting something like:\ \ <verbatim>\ <?plugin AllPages limit=5?>\ </verbatim>\ \ into a regular wiki-page. That particular example produces a list of\ the first 5 existing pages (via the ~PageList library).\ \ <?plugin AllPages limit=5 ?>\ \ !!!Details\ \ Plugins can take certain named arguments (most do). The values of\ these arguments can be determined four different ways. In order of\ precedence:\ \ # The plugin invocation can specify the value for an argument, like so:\ <verbatim>\ <?plugin BackLinks page=OtherPage ?>\ </verbatim>\ \ # The argument can be specified via an HTTP query argument. This\ doesn't happen (is not allowed) unless the argument is mentioned in\ the plugin invocation:\ \ <verbatim>\ <?plugin BackLinks page ?>\ </verbatim>\ \ # Default values specified in the plugin invocation:\ \ <verbatim>\ <?plugin BackLinks page||=OtherPage ?>\ </verbatim>\ \ # The plugin must supply default values for each argument it uses.\ Such default args may be overriden by URL arguments like so:\ <verbatim>\ BackLinks?page=ThisPage&sortby=-mtime\ </verbatim>\ (The BackLinks plugin uses the current page as the default value for\ the ''page'' argument.)\ \ Most plugins using the ~PageListLibrary inherit their default arguments\ from the PhpWiki:PageListLibrary.\ \ !! Standard Arguments\ \ Most plugins display a list of pages, via the ~PageListLibrary.\ ~PageList provides automatic support for those arguments.\ \ info, exclude, author, owner, creator, sortby, limit, paging, cols, azhead,\ comma, commasep, ordered\ \ For details see the PhpWiki:PageListLibrary documentation.\ \ *exclude* and *pages* accept a list of pages. Either as comma-seperated list,\ supporting glob-style wildcards, or via the <tt><!plugin-list pluginname ~[args~] !></tt>\ invocation syntax, where pluginname might be any plugin returning a pagelist.\ See PhpWiki:PluginList.\ \ !! Basic Plugin Types\ \ All these plugins derive from the WikiPlugin class extending the run method,\ which returns a object tree of HTML objects, and may react on any\ provided arguments from the ~WikiPage (see the args below) or\ optionally overridden by arguments from the url (GET or POST args),\ if defined via '||='.\ \ A basic plugin just needs the run() method, and optionally getName,\ getDescription, getVersion, getDefaultArguments. See the HelloWorldPlugin for a short introduction.\ \ *plugin* reacts on its arguments and the request and displays arbitrary HTML.\ \ *plugin-form* is used to display a input type=text box for the default argument *s*.\ \ *plugin-list* is used as argument to provide a dynamic list of pagenames.\ \ <verbatim>\ <?plugin PluginName [args...] ?>\ </verbatim>\ \ <verbatim>\ <?plugin-form PluginName [args...] ?>\ </verbatim>\ \ <verbatim>\ <?plugin PluginName args=<!plugin-list pluginname [args] !> ?>\ </verbatim>\ \ ! The box Method\ \ Themes based on the "sidebar" theme may use the box method of any plugin, which displays a *title*\ and a condensed *content* in a box.\ \ ! ~WikiPluginCached\ \ Plugins deriving from the class ~WikiPluginCached must also define the methods getPluginType(),\ optionally getExpire(), managesValidators(), and dependent of the getPluginType the methods\ to display the *possibly cached* result.\ \ getImage(), getMap() or getHtml(),\ \ optionally also\ \ getAlt(), getImageType(), embedMap(), embedImg(), embedObject()\ \ See the config.ini PLUGIN_CACHED_* settings and PhpWiki:WikiPluginCached\ \ !! Action Pages\ \ The term *~ActionPage* refers to a page containing a plugin invocation.\ An *action* is together with the *pagename* argument the a basic PhpWiki argument.\ It can both be GET or POST actions. Actions are untranslated, always english.\ Basic (and old) actions are all lowercase, like edit, browse, remove, ...\ Newer actions in PhpWiki:CamelCase are invoked via plugins on their specific action page.\ \ We decoupled actions from plugins via action pages for the following reasons:\ \ # support translated action buttons and customizable action descriptions.\ # customize standard actions by tuning the plugin invocation arguments. override or add plugin defaults.\ # split simple plugins into multiple actions, like RecentChanges/RecentEdits, MostPopular/LeastPopular,\ AllPages/AllPagesCreatedByMe/AllPagesLastEditedByMe/AllPagesOwnedByMe which differ only in one argument.\ \ * Those actions which have buttons or links in the theme or are referenced in the standard pgsrc\ pageset require their (possibly localized) actionpages, otherwise the actions will not work.\ * If the localized actionpage is not found the english version is used.\ * If no actionpage is found, it is recommended to do action=upgrade, which imports all missing\ and required action pages into the database.\ \ So for a hypothetical new ~MyActionPage plugin ~MyActionPage will invoke the plugin and\ ~MyActionPagePlugin is the the description.\ \ !!! Existing Plugins\ \ See PluginManager for a detailed list. Most plugins should have their own description page with the name\ *Plugin* appended.\ \ <?plugin BackLinks noheader=1 ?>\ \ !!! Contributed Plugins\ \ See PhpWiki:CategoryContributedPlugin.\ \ <?plugin Backlinks page=CategoryContributedPlugin ?>\ \ -----\ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5867 1 1431503103 0 OrphanedPages are those pages which don't have any links to them.\ \ ----\ \ <?plugin OrphanedPages info||=hits,pagename,mtime?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5868 1 1431503103 0 This plugin allows you to list the history of edits by a particular\ author; you can specify the page name as well (default is the current\ page).\ \ <verbatim>\ <?plugin AuthorHistory user="test" ?>\ \ <?plugin AuthorHistory page=HomePage ?>\ </verbatim>\ \ The second example will default to the current page. We can't provide\ examples for you since we don't know any potential usernames for your\ wiki.\ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5869 1 1431503103 0 <?plugin AppendText ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5870 1 1431503103 0 <?plugin RelatedChanges show_minor||=1 days||=7 daylist=1,3,7,30,90,0 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5871 1 1431503104 0 ! Synopsis\ OldTextFormattingRules%%%\ <strong>Emphasis:</strong> '<strong></strong>' for <em>italics</em>, _<em></em>~_ for <strong>bold</strong>, '<strong></strong>'_<em></em>~_ for <em><strong>both</strong></em>.%%%\ <strong>Lists:</strong> * for bullet lists, # for numbered lists, <em><strong>;</strong> term <strong>:</strong> definition</em> for definition lists.%%%\ <strong>References:</strong> ~JoinCapitalizedWords or use square brackets for a ~[page link] or URL ~[~http://cool.wiki.int/].%%%\ <strong>Footnotes:</strong> Use ~[1],~[2],~[3],...%%%\ <strong>Preventing linking:</strong> Prefix with "~!": ~!~DoNotHyperlink, name links like ~[~[text | URL] (double up on the "[").%%%\ <strong>Misc:</strong> "~!", "~!~!", "~!~!~!" make headings, "%%<em></em>%" makes a linebreak, "-<em></em>-<em></em>-<em></em>-" makes a horizontal rule.%%%\ <strong>Tables:</strong> »|« as first char, »|« for more columns, »|>« align right, »|<« align left, »|^« centered (default), »||« span columns, »|v« span rows\ \ ----\ ! Paragraphs\ \ * Don't indent paragraphs\ * Words wrap and fill as needed\ * Use blank lines as separators\ * Four or more minus signs make a horizontal rule\ * %%<em></em>% makes a linebreak (in headings and lists too)\ \ \ ! Lists\ \ * asterisk for first level\ * asterisk-asterisk for second level, etc.\ * Use * for bullet lists, # for numbered lists (mix at will)\ * semicolon-term-colon-definition for definition lists:\ ;term here:definition here, as in the <DL><DT><DD> list\ * One line for each item\ * Other leading whitespace signals preformatted text, changes font.\ \ ! Headings\ \ * '~!' at the start of a line makes a small heading\ * '~!~!' at the start of a line makes a medium heading\ * '~!~!~!' at the start of a line makes a large heading\ \ ! Fonts\ \ * Indent with one or more spaces to use a monospace font:\ \ <pre>\ This is in monospace\ </pre>\ This is not\ \ !Indented Paragraphs\ \ * semicolon-colon -- works like <BLOCKQUOTE>\ \ ;:this is an indented block of text\ \ ! Emphasis\ \ * Use doubled single-quotes ('<strong></strong>') for emphasis (usually <em>italics</em>)\ * Use doubled underscores (_<em></em>_) for strong emphasis (usually <strong>bold</strong>)\ * Mix them at will: <strong><em>bold italics</em></strong>\ * <em>Emphasis</em> can be used <em>multiple</em> times within a line, but <em>cannot</em> cross line boundaries:\ \ ''this\ will not work''\ \ ! References\ * Hyperlinks to other pages within the Wiki are made by placing the page name in square brackets: [this is a page link] or UsingWikiWords (preferred)\ * Hyperlinks to external pages are done like this: [http://www.wcsb.org/]\ * You can name the links by providing a name, a bar (|) and then the hyperlink or pagename: [PhpWiki home page | http://phpwiki.sourceforge.net/] - [the front page | HomePage]\ * You can suppress linking to old-style references and URIs by preceding the word with a '~!', e.g. ~NotLinkedAsWikiName, ~http://not.linked.to/\ * You can create footnotes by using ~[1], ~[2], ~[3], ... like this here #[|ftnt_ref_1]<sup>~[[1|#ftnt_1]~]</sup>. See footnote for counterpart. (If the ~[ is in the first column, it is a footnote <em>definition</em> rather than a footnote <em>reference</em> #[|ftnt_ref_1]<sup>~[[1|#ftnt_1]~]</sup>.)\ * Also, the old way of linking URL's is still supported: precede URLs with "http:", "ftp:" or "mailto:" to create links automatically as in: http://c2.com/\ * URLs ending with .png, .gif, or .jpg are inlined if in square brackets, by themselves: [http://phpwiki.sourceforge.net/demo/themes/default/images/png.png]\ \ ! Tables\ \ * Simple tables are available. A table row is introduced by a <strong>|</strong> in the first column. It is best described by example:\ <pre>\ || _<em></em>_Name_<em></em>~_ |v _<em></em>_Cost_<em></em>~_ |v _<em></em>_Notes_<em></em>~_\ | _<em></em>_First_<em></em>~_ | _<em></em>_Last_<em></em>~_\ |> Jeff |< Dairiki |^ Cheap |< Not worth it\ |> Marco |< Polo | Cheaper |< Not available\ </pre>\ ;:will generate\ <?plugin OldStyleTable\ || <strong>Name</strong> |v <strong>Cost</strong> |v <strong>Notes</strong>\ | <strong>First</strong> | <strong>Last</strong>\ |> Jeff |< Dairiki |^ Cheap |< Not worth it\ |> Marco |< Polo | Cheaper |< Not available\ ?>\ \ ;:Note that multiple <strong>|</strong>'s lead to spanned columns, and <strong>v</strong>'s can be used to span rows. A <strong>></strong> generates a right justified column, <strong><</strong> a left justified column and <strong>^</strong> a centered column (which is the default.)\ ;:With the new TextFormatingsRules tables are only supported with the OldStyleTablePlugin.\ \ \ ! HTML Mark-Up Language\ \ * Don't bother\ * < and > are themselves\ * The & characters will not work\ * If you really must use HTML, your system administrator can enable this feature. Start each line with a bar (|). Note that this feature is disabled by default.\ \ ! More detail than you want to know\ \ See [MagicPhpWikiURLs] for gory details on how to write various kind of wiki maintainance links. (<em>deprecated</em>)\ \ -----\ \ ! Footnotes:\ \ #[|ftnt_1]~[[1|#ftnt_ref_1]~] By using ~[1] a second time (in the first column) the footnote itself is <em>defined</em>. You may refer to a footnote as many times as you want, but you may only define it once on the page. Note the the ~[1] in the footnote links back to the first reference, if there are multiple references there will be +'s after the ~[1] which will link to the other references. (References which come <em>after</em> the footnote <em>definition</em> will not be linked to.)\ ----\ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5877 1 1431503104 0 <?plugin RandomPage numpages||=20?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5878 1 1431503104 0 Detailed view of a page, which is probably more useful for debugging\ than anything else.\ \ <?plugin _BackendInfo page||='' ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5879 1 1431503104 0 This plugin will "include" other pages in this wiki. In the language of hypertext this is called <i>transclusion</i>. The pages will render in distinct tables. You can also load external pages in a more limited fashion with the FrameIncludePlugin. Examples:\ \ <?plugin IncludePage page="HomePage" ?>\ \ <?plugin IncludePage page="WabiSabi" ?>\ \ -----\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5882 1 1431503104 0 <?plugin RecentComments days||=7 daylist=1,3,7,30,90,0 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5883 1 1431503104 0 The SearchHighLight WikiPlugin is an internal actionpage plugin,\ which is only used internally.\ \ When someone is referred from a search engine like Google, Yahoo\ or our own fulltextsearch, the terms the user searched for are highlighted.\ See also http://wordpress.org/about/shots/1.2/plugins.png\ \ !! Plugin Arguments\ __s__: |\ The search term\ __case_exact__: |\ boolean.\ __regex__: |\ boolean. a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5885 1 1431503104 0 The PhpHighlightPlugin pretty-prints PHP code using the\ php-function:highlight-string.\ \ See also SyntaxHighlighterPlugin for highlighting other languages.\ \ !!! Usage\ \ You specify options for the plugin on the same line as the =<?plugin=,\ and put the code on the following lines, until the final =?>=:\ \ <verbatim>\ <?plugin PhpHighlight [wrap?] [color options]\ code to be highlighted\ ?>\ </verbatim>\ \ !!! Description\ \ Depending on the =wrap= option, then the plugin will take care of\ adding =<?php= and =?>= to the code before passing it to\ php-function:highlight-string. If the PHP delimiters were added, then\ the plugin removes them again from the highlighted string, before\ presenting it.\ \ !!! Options\ \ Automatic Wrapping:\ \ If you don't want the plugin to automatically wrap the source code\ in =<?php= and =?>=, then set =wrap= to =0=. The default value is =1=\ which means that the plugin takes care of adding and removing\ =<?php= and =?>= automatically.\ \ If you set =wrap= to =0=, then you'll be able to mix PHP code with\ HTML. The plugin will then translate '=< ?php=' into '=<?php=' and\ '=? >=' into '=?>=' to allow you to start and stop PHP mode in your\ code.\ \ Color Options:\ \ The plugin accepts optional color arguments which correspond to the\ highlight settings in *php.ini*. Specified colors must be a valid\ hexadecimal color or\ [HTML 4 color name|http://www.w3.org/TR/REC-html40/types.html#h-6.5]\ in lowercase, such as ='#0f0344'= or =blue=. You can set the\ following options:\ \ =string=, =comment=, =keyword=, =bg=, =default=, and =html=\ \ !!! Examples\ \ !! PHP with default colors from =php.ini=:\ \ <?plugin PhpHighlight\ function hello() {\ echo "Hello World<p>";\ }\ ?>\ \ !! HTML with embedded PHP\ \ Here we have to use =wrap=0= to prevent automatic wrapping, and escape\ '=?>=' as '=? >=':\ \ <?plugin PhpHighlight wrap=0 html='#000000' bg='#dddddd'\ <html>\ <head>\ <title>PHP Test</title>\ </head>\ <body>\ < ?php echo "<p>Hello World</p>\\n"; ? >\ </body>\ </html>\ ?>\ \ !! C Source\ \ Although =highlight_string()= was designed with PHP code in mind it is\ suitable for basic syntax-highlighting of most C code because the two\ syntax are similar.\ \ <?plugin PhpHighlight default=black string=blue comment=gray keyword=purple\ #include <stdio.h>\ /* Get load */\ int\ getload(void)\ {\ if ((fp = fopen("/proc/loadavg", "r")) == NULL) {\ syslog(LOG_ERR, _("%s %s: unable to open %s: %s"), _("FATAL ERROR:"),\ "getload()", "/proc/loadavg", strerror(errno));\ exit(EX_OSFILE);\ }\ fclose(fp);\ }\ ?>\ \ !!! Authors\ \ Martin Geisler mailto:gimpster@gimpster.com and Carsten Klapp\ mailto:carstenklapp@users.sourceforge.net.\ \ -----\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5887 1 1431503104 0 <b>This plugin allows you to add/edit/delete metadata key/value pairs for a given page. You must be logged in as the administrator to do this. The page's metadata contains things like the page hit count, last edit time and so on.</b>\ \ <b>Editing the metadata for the homepage would look like this:</b>\ ------\ <?plugin EditMetaData page="HomePage" ?>\ ------\ <b>With no arguments the plugin defaults to the current page:</b>\ ------\ <?plugin EditMetaData ?>\ \ -----\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5888 1 1431503104 0 The Inter Wiki map used on this wiki is listed below. The map is taken\ from the text in the verbatim block below. (But this only works if\ this page is locked.)\ <verbatim>\ AIWiki http://www.ifi.unizh.ch/ailab/aiwiki/aiw.cgi?\ ALife http://news.alife.org/wiki/index.php?\ AbbeNormal http://www.ourpla.net/cgi-bin/pikie.cgi?\ AcadWiki http://xarch.tu-graz.ac.at/autocad/wiki/\ Acronym http://www.acronymfinder.com/af-query.asp?String=exact&Acronym=\ Advogato http://www.advogato.org/\ Annotation http://bayle.stanford.edu/crit/nph-med.cgi/\ AnnotationWiki http://www.seedwiki.com/page.cfm?wikiid=368&doc=\ AviSynth http://www.avisynth.org/\ AwarenessWiki http://taoriver.net/aware/\ BcWireless http://www.bcwireless.net/wiki-moinmoin/moin.cgi/\ BenefitsWiki http://www.benefitslink.com/cgi-bin/wiki.cgi?\ BridgesWiki http://c2.com/w2/bridges/\ bsdWiki http://profile.sh/syswiki/index.php?\ C2find http://c2.com/cgi/wiki?FindPage&value=\ CLiki http://ww.telent.net/cliki/\ Cache http://www.google.com/search?q=cache:\ Category Category\ CmWiki http://www.ourpla.net/cgi-bin/wiki.pl?\ CreationMatters http://www.ourpla.net/cgi-bin/wiki.pl?\ CPAN http://search.cpan.org/\ DeWikiPedia http://de.wikipedia.org/wiki/\ DejaNews http://www.deja.com/=dnc/getdoc.xp?AN=\ Dict http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query=\ Dictionary http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query=\ DiveIntoOsx http://diveintoosx.org/\ DocBook http://docbook.org/wiki/moin.cgi/\ DolphinWiki http://www.object-arts.com/wiki/html/Dolphin/\ DseWiki http://www.wikiservice.at/dse/wiki.cgi?\ EfnetCeeWiki http://purl.net/wiki/c/\ EfnetCppWiki http://purl.net/wiki/cpp/\ EfnetPythonWiki http://purl.net/wiki/python/\ EfnetXmlWiki http://purl.net/wiki/xml/\ EljWiki http://elj.sourceforge.net/phpwiki/index.php/\ EmacsWiki http://www.emacswiki.org/cgi-bin/wiki.pl?\ EoWikiPedia http://eo.wikipedia.org/wiki/\ FinalEmpire http://final-empire.sourceforge.net/cgi-bin/wiki.pl?\ Foldoc http://www.foldoc.org/foldoc/foldoc.cgi?\ FoxWiki http://fox.wikis.com/wc.dll?Wiki~\ FrWikiPedia http://fr.wikipedia.org/wiki/\ FreeBSDman http://www.FreeBSD.org/cgi/man.cgi?apropos=1&query=\ FreeNetworks http://www.freenetworks.org/index.cgi/\ FreshMeat http://freshmeat.net/\ Froogle http://froogle.google.com/froogle?q=\ Google http://www.google.com/search?q=\ GoogleGroups http://groups.google.com/groups?q=\ GreenCheese http://www.greencheese.org/\ HammondWiki http://www.dairiki.org/HammondWiki/index.php3?\ Haribeau http://wiki.haribeau.de/cgi-bin/wiki.pl?\ IAWiki http://www.IAwiki.net/\ IMDB http://us.imdb.com/Title?\ ISBN http://www.amazon.com/exec/obidos/ISBN=\ IfDef http://ifdef.undef.net/\ JTF http://www.justthefaqs.org/?page=\ JargonFile http://sunir.org/apps/meta.pl?wiki=JargonFile&redirect=\ JiniWiki http://www.cdegroot.com/cgi-bin/jini?\ JspWiki http://www.ecyrd.com/JSPWiki/Wiki.jsp?page=\ KmWiki http://www.voght.com/cgi-bin/pywiki?\ KnowHow http://www2.iro.umontreal.ca/~paquetse/cgi-bin/wiki.cgi?\ LanifexWiki http://opt.lanifex.com/cgi-bin/wiki.pl?\ LegoWiki http://www.object-arts.com/wiki/html/Lego-Robotics/\ LinuxWiki http://www.linuxwiki.de/\ LugKR http://lug-kr.sourceforge.net/cgi-bin/lugwiki.pl?\ MACCAWS http://www.maccaws.com/wiki/\ MathSongsWiki http://SeedWiki.com/page.cfm?wikiid=237&doc=\ MbTest http://www.usemod.com/cgi-bin/mbtest.pl?\ MeatBall http://www.usemod.com/cgi-bin/mb.pl?\ MetaWiki http://sunir.org/apps/meta.pl?\ MetaWikiPedia http://meta.wikipedia.com/wiki/\ MoinMoin http://moinmoin.wikiwikiweb.de/\ MoinMaster http://moinmaster.wikiwikiweb.de/\ MuWeb http://www.dunstable.com/scripts/MuWebWeb?\ NetVillage http://www.netbros.com/?\ OpenWiki http://openwiki.com/?\ OrgPatterns http://www.bell-labs.com/cgi-user/OrgPatterns/OrgPatterns?\ PPR http://c2.com/cgi/wiki?\ PangalacticOrg http://www.pangalactic.org/Wiki/\ PersonalTelco http://www.personaltelco.net/index.cgi/\ php-function http://www.php.net/%s\ php-lookup http://www.php.net/manual-lookup.php?pattern=\ PhpWiki http://phpwiki.sourceforge.net/phpwiki/\ PhpWikiCvs http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpwiki/phpwiki/\ PhpWikiDemo http://phpwiki.sourceforge.net/demo/\ PhpWikiTest http://phpwiki.sourceforge.net/test/\ Pikie http://pikie.darktech.org/cgi/pikie?\ PlWikiPedia http://pl.wikipedia.org/wiki/\ PolitizenWiki http://www.politizen.com/wiki.asp?\ PoundPython http://twistedmatrix.com/wiki/python/\ PurlNet http://www.palowireless.com/zigbee/\ PyWiki http://www.voght.com/cgi-bin/pywiki?\ PythonInfo http://www.python.org/cgi-bin/moinmoin/\ PythonWiki http://www.pythonwiki.de/\ RFC http://www.faqs.org/rfcs/rfc%s.html\ RussellFreedom http://www.russellfreedom.com/\ SVGWiki http://www.protocol7.com/svg-wiki/default.asp?\ SeaPig http://www.seapig.org/ \ SeattleWireless http://seattlewireless.net/?\ SenseisLibrary http://senseis.xmp.net/?\ Shakti http://cgi.algonet.se/htbin/cgiwrap/pgd/ShaktiWiki/\ SourceForge http://sourceforge.net/\ Squeak http://minnow.cc.gatech.edu/squeak/\ StrikiWiki http://ch.twi.tudelft.nl/~mostert/striki/teststriki.pl?\ TMwiki http://www.EasyTopicMaps.com/?page=\ TWiki http://twiki.org/cgi-bin/view/\ Tavi http://tavi.sourceforge.net/index.php?\ Thesaurus http://www.thesaurus.com/cgi-bin/search?config=roget&words=\ Thinki http://www.thinkware.se/cgi-bin/thinki.cgi/\ TmNet http://www.technomanifestos.net/?\ Unreal http://wiki.beyondunreal.com/wiki/\ UseMod http://www.usemod.com/cgi-bin/wiki.pl?\ VisualWorks http://wiki.cs.uiuc.edu/VisualWorks/\ WakkaWiki http://www.wakkawiki.com/\ WebDevWikiNL http://www.promo-it.nl/WebDevWiki/index.php?page=\ WebSeitzWiki http://webseitz.fluxent.com/wiki/\ Why http://clublet.com/c/c/why?\ Wiktionary http://wiktionary.org/wiki/\ Wiki http://c2.com/cgi/wiki?\ WikiLens http://www.wikilens.org/wiki.php/\ WikiWikiWireless http://www.andaluciawireless.net/\ Wikibooks http://wikibooks.org/wiki/\ WikiPedia http://www.wikipedia.com/wiki/\ Wikiquote http://wikiquote.org/wiki/\ Wikisource http://wikisource.org/wiki/\ WikiWorld http://WikiWorld.com/wiki/index.php/\ WikkiTikkiTavi http://tavi.sourceforge.net/\ WLUG http://www.wlug.org.nz/\ YpsiEyeball http://sknkwrks.dyndns.org:1957/writewiki/wiki.pl?\ ZWiki http://www.zwiki.org/\ OsFaq2 http://www.mega-tokyo.com/osfaq2/index.php/\ </verbatim>\ a:4:{s:8:"pagetype";s:12:"interwikimap";s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";} 6021 1 1431503104 0 <?plugin CreateToc jshide||=1 ?>\ \ WikiPlugin to create a dynamical *Table Of Contents* of all headers. Since v1.3.8\ \ !! Usage\ <verbatim>\ <?plugin CreateToc ?>\ <?plugin CreateToc jshide||=1 with_toclink||=1 ?>\ </verbatim>\ \ !! Plugin Arguments\ __jshide__: |\ Boolean if the TOC should be initially hidden and on click expanded. Default: 0\ __with_toclink__: |\ Boolean if headers should link back to the TOC. Default: 0\ __headers__: |\ Which headers to include. Default: !!!,!!,! 1,2,3 also allowed\ __noheader__: |\ Boolean if the "Table of Contents" h2 header should be omitted. Default: 0\ __liststyle__: |\ dl or ol or ul. Default: dl\ __indentstr__: |\ Default: \ __pagename__: |\ TOC of which page? Default: current pagename\ \ !! Known Problems\ \ If any header contains a link or a ~WikiWord or non-word characters, ~CreateToc will print a warning and refuse to link this header.\ \ !! Examples\ \ See for example PhpWikiDemo:en/TextFormattingRules\ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5866 1 1431503104 0 !! Contents\ \ <?plugin SiteMap\ noheader=true\ exclude=HomePage,PgsrcTranslation\ reclimit=1\ direction=forward\ firstreversed=1\ ?>\ \ ! Pages in this category:\ \ <?plugin BackLinks\ exclude||=''\ include_self||=1\ noheader||=0\ page||=[pagename]\ info||=pagename,mtime\ ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6022 1 1431503104 0 <?plugin TitleSearch s=Category noheader=1 exclude=CategoryCategory?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6023 1 1431503104 0 Here's a list of all recently changed pages on this wiki, not just the\ most recent ones found in RecentChanges. (See RecentEdits for all\ recent minor edits and changes).\ \ --------\ \ <?plugin RecentChanges days||=3 show_all=1 daylist=1,3,7,30,90,-1 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6024 1 1431503104 0 WikiPlugin to let users attach comments to the end of a page. Since v1.3.8.\ Change the layout via the templates comment.tmpl and addcomment.tmpl, and the CSS classes\ wikicomment, wikicomment-header, wikicomment-body, wikicomment-footer\ \ !! Usage\ <verbatim>\ <?plugin AddComment order||=normal jshide||=0 mode||=show,add noheader||=0 ?>\ </verbatim>\ \ !! Plugin Arguments\ __jshide__: |\ Boolean if the comments and/or textbox should be initially hidden and on click expanded. Default: 0\ __order__: |\ List comments in chronological (order=normal) or reverse order (order=reverse)\ __mode__: |\ List of add and/or show. Default: add,show\ __noheader__: |\ Boolean if the "Comments" h2 header should be omitted. Default: 0\ __pagename__: |\ Attach to which page? Default: current pagename\ \ !! Known Problems\ \ jshide does not work yet. Not very well tested.\ \ !! Examples\ \ <?plugin AddComment jshide||=1 ?>\ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5858 1 1431503104 0 Here's a list of recently changed pages on this wiki. (See RecentEdits\ for all recent minor edits and changes).\ \ --------\ <?plugin RecentChanges days||=7 daylist=1,3,7,30,90,0 show_deleted||=1 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6025 1 1431503104 0 <?plugin WikiAdminRemove ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6026 1 1431503104 0 The CalendarPlugin can be used to generate a monthly calendar in a\ wiki page. It's handy for PersonalWiki~s.\ \ Individual dates in the calendar link to specially named wiki pages.\ The names for the "day pages" are by default formed by appending the\ date to the pagename on which the calendar appears.\ \ _This feature was inspired by [Manila|http://manila.userland.com/],\ and first implemented by GaryBenson. It was later implemented as a\ WikiPlugin by JeffDairiki._\ \ !!Usage:\ \ <verbatim>\ <?plugin Calendar?>\ </verbatim>\ \ will get you:\ <?plugin Calendar?>\ \ --------\ \ !! Plugin Arguments\ \ !Selection of Month\ \ <strong>year</strong>:\ \ Specify the year for the calendar. (Default: current year.)\ \ <strong>month</strong>:\ \ Specify the month for the calendar. (Default: current month.)\ \ <strong>month_offset</strong>:\ \ Added to ''month''. Can be used to include several months worth of\ calendars on a single wiki page.\ \ <?plugin Calendar month_offset=+1?>\ \ !"Day Page" Names\ \ <strong>date_format</strong>:\ \ [Strftime| php-function:strftime] style format string used to\ generate page names for the "day pages." The default value is\ =%Y-%m-%d=.\ \ <strong>prefix</strong>:\ \ Prepended to the date (formatted per ''date_format'') to generate\ the "day page" names. The default value is =~[pagename]/=.\ \ !Appearance\ \ <strong>month_format</strong>:\ \ [Strftime| php-function:strftime] style format string used to\ generate the title of the calendar. (Default: =%B, %Y=.)\ \ <strong>wday_format</strong>:\ \ [Strftime| php-function:strftime] style format string used to\ generate the day-of-week names at the top of the calendar.\ \ <strong>start_wday</strong>:\ \ What day of the week does the calendar start on. This should be\ specified as an integer in the range zero (Sunday) through six\ (Saturday), inclusive.\ \ <?plugin Calendar start_wday=1 ?>\ \ -----\ \ ! Patch for 1.2\ \ GaryBenson wrote the first calendar implementation for PhpWiki 1.2.\ (Since 1.2 doesn't support plugins, it uses a =###CALENDAR###= token\ as a trigger.) Gary provides a screenshot at [ http://inauspicious.org/files/screenshots/calender.png | screenshot ],\ a [patch | http://inauspicious.org/files/phpwiki/phpwiki-1.2.0-calendar.patch] (on 1.2.0), and\ [calendar.php | http://inauspicious.org/files/phpwiki/calendar.php]\ (which renders a view of the year.)\ \ ----\ \ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6031 1 1431503104 0 LikePages are pages which share an initial or final word with that\ page. See also Wiki:LikePages and MeatBall:LikePages.\ \ ----\ \ <?plugin LikePages ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6032 1 1431503104 0 !!! Synopsis\ \ The CommentPlugin lets you hide parts of a Wiki page without actually\ deleting the text. Comments will only be visible in the Wiki markup\ when editing or viewing the source.\ \ !!! Usage\ \ Simply place the text to be commented out between =<?plugin Comment=\ and =?>=:\ \ <verbatim>\ <?plugin Comment\ \ !!! A Hidden Section\ \ This text will not show up in the generated HTML page, but it is still\ visible when editing the WikiMarkup.\ \ ?>\ </verbatim>\ \ !!! Author\ \ Martin Geisler mailto:gimpster@gimpster.com.\ \ <?plugin Comment\ \ !!! "Fuzzy" Logic\ Theorem: a cat has nine tails.\ Proof:\ No cat has eight tails. A cat has one tail more than no cat.\ Therefore, a cat has nine tails.\ \ ?>\ ----\ WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6033 1 1431503104 0 <?plugin PageInfo?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5860 1 1431503104 0 <?plugin MostPopular limit||=20 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6034 1 1431503105 0 <?plugin WikiAdminRename ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6035 1 1431503105 0 The ListPagesPlugin is the simpliest plugin to explicitly list a set of pages with all available\ [pagelist|PhpWiki:PageList] options, mainly used for a wikilens theme to display ratings info\ and recommendations.\ \ It can also be used with the PhpWiki:PluginList method to list a set of pages generated by\ another plugin, and/or to exclude a set of pages generated by another plugin.\ \ See the PhpWiki:PageList options.\ \ Usage:\ <verbatim>\ <?plugin ListPages pages=HomePage,FindPage,WikiWikiWeb ?>\ \ <?plugin ListPages info=hits sortby=hits pages=<!plugin-list BackLink page=[] !> exclude=ListPagesPlugin,WikiPlugin ?>\ </verbatim>\ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6036 1 1431503105 0 !! Synopsis\ \ A WikiPlugin to display external RSS feeds.\ \ !! Usage\ <verbatim>\ <?plugin RssFeed?>\ <?plugin RssFeed url=http://somesite.tld/linktofeed.rss ?>\ </verbatim>\ \ !! Plugin Arguments\ Argument|\ Default Value|\ Description\ \ url|\ (empty)|\ RSS Feed URL\ \ feed|\ (empty)|\ RSS Feed Name\ \ description|\ (empty)|\ Description of the RSS Feed\ \ maxitem|\ 0|\ Max. number of entries (0 = unlimited)\ \ !! Sourcecode (since v1.3.8):\ * [PhpWikiCvs:lib/plugin/RssFeed.php]\ * [PhpWikiCvs:lib/RssParser.php] _fixed for allow_url_fopen=Off_\ \ !! Examples\ \ * PhpWikiRss _feed for PhpWiki:RecentChanges_\ <verbatim>\ <?plugin RssFeed feed=PhpWikiRss description="PhpWiki:RecentChanges"\ \ url=http://phpwiki.sourceforge.net/phpwiki/RecentChanges?format=rss ?>\ </verbatim>\ \ * [PhpWikiDemo:sidebar/] _Example as sidebar box_\ \ -------------\ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6038 1 1431503105 0 <?plugin CreatePage ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6039 1 1431503105 0 AppendText is a WikiPlugin to automatically add text to a page. For general\ usage better use the AddCommentPlugin.\ \ <verbatim>\ <?plugin AppendText ?>\ </verbatim>\ \ !! Plugin Arguments\ __page__: |\ Append to which page. Default: Current page.\ __s__: |\ What text to add. Note: A \\n is always prepended.\ __before__: |\ (Optional) Add before the matching line beginning with before.\ __after__: |\ (Optional) Add after the matching line beginning with after.\ \ !! Examples\ \ Add from a list of all available plugins one to the current page.\ <verbatim>\ <?plugin WikiFormRich action=AppendText buttontext="AddPlugin"\ \ pulldown[] name=s text="Plugins: " value=<!plugin-list BackLinks page=WikiPlugin !>\ \ ?>\ </verbatim>\ \ Add from a list of all available Categories to the current page.\ <verbatim>\ <?plugin WikiFormRich action=AppendText buttontext="AddCategory"\ \ pulldown[] name=s text="Categories: " value=<!plugin-list TitleSearch s=Category !>\ \ ?>\ </verbatim>\ ----\ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6040 1 1431503105 0 !!! Summary\ Makes an 'album' by displaying a set of photos listed in a text file\ with optional descriptions.\ \ !!! Usage\ <verbatim>\ <?plugin PhotoAlbum\ src=http://server/textfile\ mode=[column|row]\ align=[center|left|right]\ desc=true\ sort=false\ height=100%\ width=100%\ weblocation=>false\ ?>\ </verbatim>\ \ !!! Arguments\ ''Only the ='src'= parameter is mandatory.''\ \ __src__:\ Url or local path to a CSV textfile which separates filename and\ description of\ each photo. Photos listed in the text file have to be in same\ directory as the file. Descriptions are optional.\ If the the local path points to a directory, is relative from PHPWIKI_DIR,\ and the main script is in PHPWIKI_DIR, weblocation must not be given, and\ all pictures from this directory are displayed.\ \ __weblocation__:\ Optional path if the src points to a local dir, and the links on the\ photos don't work.\ \ __mode__:\ Specifies how the images are arranged, ='column'= means vertically,\ ='row'= means horizontally. Default is ='row'=.\ \ __align__:\ Only applicable to column mode. Default is ='center'=.\ \ __desc__:\ Display any descriptions given in the text file. Default is true.\ \ __sort__:\ Sort images by file name. By default the order in the text file is\ followed.\ \ __height__, __width__:\ Height and width are calculated compared to original metrics\ retrieved by [php-function:getimagesize] and can be absolute or a\ percentage (e.g. "50%").\ \ !!! Examples\ !! Text file\ Possible content of a valid text file:\ \ <verbatim>\ photo-01.jpg; My girlfriend and I\ photo-02.jpg\ christmas.gif; Merry Christmas!\ </verbatim>\ \ !! Sample Album\ local dir:\ <?plugin PhotoAlbum\ src="themes/Hawaiian/images/pictures/"\ ?>\ or via external url:\ <verbatim>\ <?plugin PhotoAlbum\ src="http://phpwiki.sourceforge.net/demo/themes/Hawaiian/images/pictures/PhotoAlbum.csv"\ </verbatim>\ ?>\ \ !!! Plugin Author\ [Ted Vinke|mailto:teddy@jouwfeestje.com] <teddy@jouwfeestje.com>\ ----\ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6041 1 1431503105 0 <?plugin CreateToc jshide||=1 with_toclink||=1 ?>\ ----\ ! Synopsis\ *Emphasis:* <tt>~_</tt> for _italics_, <tt>~*</tt> for *bold*,\ <tt>~_~*</tt> for _*both*_, <tt>~=</tt> for =fixed width=.%%%\ *Lists:* <tt>~*</tt> for bullet lists, <tt>#</tt> for numbered lists,\ _Term<b>:</b>~<new-line> definition_ for definition lists.%%%\ *Preformatted text:* Enclose text in <tt>~<pre>~</pre></tt> or\ <tt>~<verbatim>~</verbatim></tt>.%%%\ *Indented text:* Indent the paragraph with whitespaces.%%%\ *References:* ~JoinCapitalizedWords or use square brackets for a\ <tt>~[page link]</tt> or URL <tt>~[~http://cool.wiki.int/]</tt>.%%%\ *Preventing linking:* Prefix with "<tt>~~</tt>":\ <tt>~~~DoNotHyperlink</tt>, name links like <tt>~[text | URL]</tt>.%%%\ *Misc:* "<tt>!</tt>", "<tt>!!</tt>", "<tt>!!!</tt>" make headings,\ "<tt>~%%%</tt>" or "<tt>~<br></tt>" makes a linebreak,\ "<tt>~----</tt>" makes a horizontal rule.%%%\ *Allowed HTML tags:* <b>b</b> <big>big</big> <i>i</i>\ <small>small</small> <tt>tt</tt> <em>em</em> <strong>strong</strong>\ <abbr>abbr</abbr> <acronym>acronym</acronym> <cite>cite</cite>\ <code>code</code> <dfn>dfn</dfn> <kbd>kbd</kbd> <samp>samp</samp>\ <var>var</var> <sup>sup</sup> <sub>sub</sub>\ \ ----\ \ !!! Character Formatting\ \ * All special non-whitespace HTML characters are displayed as-is. Exceptions below.\ * See [Emphasis|TextFormattingRules#Emphasis].\ * There's no syntax for font tags or color attributes.\ * The tilde '~~' is the _Escape Character_:\ ** A single tilde '~~' followed by nothing gets rendered as a single tilde. => ~\ ** Two tilde '~~~~' get rendered as a single tilde. => ~~\ ** A single tilde before a link ('~~http~:~/~/foo.bar') prevents linking.\ => ~http://foo.bar\ ** Two tildes before a link ('~~~~http~:~/~/foo.bar') produce a tilde\ followed by the hyperlinked URL.\ => ~~http://foo.bar\ ** A tilde inside an URL gets removed, unless it's formatted inside\ ~[ ~] brackets.\ Two tildes inside an URL (without brackets) become a single tilde.\ => [http://foo.bar/~user] or http://foo.bar/~~user\ * Special non-ascii or non-latin characters are printed as-is only if supported\ by the native wiki CHARSET. Add such characters on a non-supported CHARSET with the RawHtmlPlugin if it is enabled by the Admin and e.g. the &#num; syntax. %%%\ E.g. These japanese euc-jp chars 'から 新規ページ' on this =<?plugin SystemInfo CHARSET?>= wiki.\ And with the plugin: <?plugin RawHtml から 新規ページ ?> %%%\ And this is how it should like: [http://phpwiki.sourceforge.net/demo/images/chars-releasenotes-japanese.png]\ \ !!! Paragraphs\ \ * Don't indent paragraphs\ * Words wrap and fill as needed\ * Use blank lines as separators\ * Four or more minus signs make a horizontal rule\ * =~%%%= or =~<br>= makes a linebreak (in headings and lists too)\ \ \ !!! Lists\ \ * asterisk for first level\ * indented asterisk (indent at least two spaces) for second level, etc.\ * Use <tt>~*</tt>, <tt>-</tt>, <tt>+</tt> or <tt>o</tt> for bullet\ lists, <tt>#</tt> for numbered lists (mix at will)\ * Definition lists:\ <pre>\ Term:\ definition\ </pre>\ gives\ Term:\ definition\ as in the =<DL><DT><DD>= list\ * Items may contain multiple paragraphs and other multi-lined content,\ just indent the items\ \ \ !!! Headings\ \ * '=!=' at the start of a line makes a small heading\ * '=!!=' at the start of a line makes a medium heading\ * '=!!!=' at the start of a line makes a large heading\ \ \ !!! Preformatted text\ \ * Place preformatted lines inside =~<pre>=:\ <verbatim>\ <pre>\ Preformatted text. WikiLinks still work.\ </pre>\ </verbatim>\ gives\ <pre>\ Preformatted text. WikiLinks still work.\ </pre>\ * If you want text with no Wiki interaction, use the =~<verbatim>= tag:\ <pre>\ <verbatim>\ Preformatted text. ~WikiLinks do not work.\ </verbatim>\ </pre>\ gives\ <verbatim>\ Preformatted text. WikiLinks do not work.\ </verbatim>\ \ \ !!!Indented Paragraphs\ \ * Two or more whitespaces signal indented text. Indents may be nested.\ \ This is an indented block of text.\ \ This block is even more indented.\ \ * E-mail style block-quoting is supported as well:\ <pre>\ > This is block-quoted text.\ </pre>\ renders as\ \ > This is block-quoted text.\ \ \ !!! Emphasis\ \ * Use an underscore (<tt>~_</tt>) for emphasis (usually _italics_)\ * Use an asterisk (<tt>~*</tt>) for strong emphasis (usually *bold*)\ * Mix them at will: *_bold italics_*\ * _Emphasis_ can be used _multiple_ times within a paragraph, but\ _cannot_ cross paragraph boundaries:\ \ _this\ \ will not work_\ \ !!! References\ \ * Hyperlinks to other pages within the Wiki are made by placing the\ page name in square brackets: [this is a page link] or\ UsingWikiWords (preferred)\ * Hyperlinks to external pages are done like this:\ [http://www.wcsb.org/]\ * You can name the links by providing a name, a bar (|) and then the\ hyperlink or pagename:\ [PhpWiki home page | http://phpwiki.sourceforge.net/] ---\ [the front page | HomePage]\ * You can suppress linking to old-style references and URIs by\ preceding the word with a '<tt>~~</tt>', e.g. ~NotLinkedAsWikiName,\ ~http://not.linked.to/\ * Also, the old way of linking URL's is still supported: precede URLs\ with "<tt>http:</tt>", "<tt>ftp:</tt>" or "<tt>mailto:</tt>" to\ create links automatically as in: http://c2.com/\ * URLs ending with =.png=, =.gif=, or =.jpg= are inlined if in square\ brackets, by themselves.\ * In-page #[hyperlinks] are made by placing a named anchor and\ referring to the anchor in a hyperlink:\ * Named anchors:\ * <tt>~#~[foo]</tt>: An anchor around the text "foo" with id\ "foo".\ * <tt>~#~[|foo]</tt>: An empty anchor with id "foo".\ * <tt>~#~[howdy|foo]</tt>: An anchor around the text "howdy" with\ id "foo".\ * References to name anchors are made thusly:%%%\ <tt>~[~#[#hyperlinks]]</tt>, <tt>~[~OtherPage#foo]</tt>,\ <tt>~[named|~OtherPage#foo]</tt>.\ \ \ !!! Tables\ \ * Definition list style tables are written just like definition lists,\ except that you replace the trailing colon on the term with a "pipe"\ (<tt>|</tt>).\ \ <pre>\ Term 1 |\ Definition 1 begins here.\ Term 1.1 |\ Definition 1.1\ Term 1.2 |\ Definition 1.2\ This is part of definition 1.\ Term 2 |\ Here's definition 2.\ </pre>\ \ Term 1 |\ Definition 1 begins here.\ Term 1.1 |\ Definition 1.1\ Term 1.2 |\ Definition 1.2\ This is part of definition 1.\ Term 2 |\ Here's definition 2.\ \ * Old-style tables are supported through the OldStyleTablePlugin:\ \ !!! HTML Mark-Up Language\ \ * Some in-line markup is allowed through the use of HTML tags:\ <b>b</b>, <big>big</big>, <i>i</i>, <small>small</small>,\ <tt>tt</tt>, <em>em</em>, <strong>strong</strong>,\ <abbr>abbr</abbr>, <acronym>acronym</acronym>, <cite>cite</cite>,\ <code>code</code>, <dfn>dfn</dfn>, <kbd>kbd</kbd>,\ <samp>samp</samp>, <var>var</var>, <sup>sup</sup> and <sub>sub</sub>\ * < and > are themselves\ * The & characters will not work\ \ !!! Creating various kinds of special links\ \ * See [MagicPhpWikiURLs] for gory details on how to write various kind\ of wiki maintenance and other special links.\ \ !!! Inserting plugins\ \ * Several plugins permit embedding additional functionality to Wiki\ pages. For example,\ <verbatim>\ <?plugin BackLinks page=HomePage info=hits ?>\ </verbatim>\ gives\ <?plugin BackLinks page=HomePage info=hits ?>\ \ * For more information on plugins see WikiPlugin, and PluginManager for a list of all\ plugins.\ \ ----\ \ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6044 1 1431503105 0 __Upload a file which will be accessible by typing:__\ <verbatim>\ Upload:num_rev/filename\ </verbatim>\ ----\ <?plugin UpLoad ?>\ ---- a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6045 1 1431503105 0 WikiPlugin to easily create new pages, optionally with default content. Since v1.3.8\ \ This allows you to create a page geting the new pagename from a\ forms-based interface, and optionally with the initial content from\ some template.\ \ Put a "<~?plugin-form ~CreatePage ?~>" at some page, browse this page,\ enter the name of the page to create, then click the button.\ \ !! Usage\ <verbatim>\ <?plugin-form CreatePage ?>\ <?plugin-form CreatePage template=CategoryHomePage ?>\ <?plugin-form CreatePage template=SomeTemplatePage vars="year=2004&name=None" ?>\ </verbatim>\ \ !! Plugin Arguments\ *s*: |\ The pagename, which will passed to the plugin. Default: ""\ *initial_content*: |\ The new page will be pre-filled with this content. Default: ""\ *template*: |\ The new page will be pre-filled with the content of this page. Default: ""\ *vars*: |\ variables to be expanded. Default: ""\ *overwrite*: |\ Whether to overwrite an existing page. Default: ""\ \ !! Known Problems\ \ None\ \ !! Variable Expansion\ \ The content (either initial_content or template) might hold some variables, which will be\ expanded on creation. Unassigned variables will stay as %%<var>%%, assigned variables without\ matching %%<var>%% placeholder will be ignored, without any warning.\ \ A variable in a template is denoted as <tt>%%var%%</tt>, which will be expanded by the\ value of <tt>var</tt> given to the vars argument (in urlencoded php notation).\ \ Some special variables are automatically assigned:\ \ %%ctime%% |\ $WikiTheme->formatDateTime(time())\ %%author%% |\ $user->getId()\ \ This forms together with page templates and the PhpWiki:WikiFormRichPlugin and\ optionally the PhpWiki:SqlResultPlugin a framework to create templated pages.\ \ !! Authors\ \ Dan Frankowski, Reini Urban\ \ !! Examples\ \ <?plugin-form CreatePage s=MyHomePage ?>\ \ See also PhpWiki:EasilyCreateNewPages, PhpWiki:WikiFormRichPlugin, PhpWiki:SqlResultPlugin\ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6047 1 1431503105 0 <?plugin UserPreferences?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5855 1 1431503105 0 A simple example plugin.\ \ <?plugin HelloWorld salutation="Hello," name="WikiUser" ?>\ \ From the source of this page:\ \ <verbatim>\ <?plugin HelloWorld salutation="Hello," name="WikiUser" ?>\ </verbatim>\ \ -----\ PhpWiki's plugin architecture allows you to add custom page elements to your wiki. All you have to do is extend (subclass) the ~WikiPlugin class and create your output via the run() method, dependend on the Wiki- or Request arguments,\ \ * either with the predefined HTML classes to create valid XHTML,\ * or by using templates, which are easier customizable, but generally more a mess to use and easier to create invalid XHTML.\ \ <?plugin PhpHighlight\ \ /**\ * A simple demonstration WikiPlugin.\ *\ * Usage:\ * <?plugin HelloWorld?>\ * <?plugin HelloWorld\ * salutation="Greetings, "\ * name=Wikimeister\ * ? >\ * <?plugin HelloWorld salutation=Hi ? >\ * <?plugin HelloWorld name=WabiSabi ? >\ */\ \ // Constants are defined before the class.\ if (!defined('THE_END'))\ define('THE_END', "!");\ \ class WikiPlugin_HelloWorld\ extends WikiPlugin\ {\ // Five required functions in a WikiPlugin.\ \ function getName () {\ return _("HelloWorld");\ }\ \ function getDescription () {\ return _("Simple Sample Plugin");\ \ }\ \ function getVersion() {\ return preg_replace("/[Revision: $]/", '',\ "\\$Revision: 1.5 $");\ }\ \ // Establish default values for each of this plugin's arguments.\ function getDefaultArguments() {\ return array('salutation' => "Hello,",\ 'name' => "World");\ }\ \ function run($dbi, $argstr, $request) {\ extract($this->getArgs($argstr, $request));\ \ // Any text that is returned will not be further transformed,\ // so use html where necessary.\ $html = HTML::tt(fmt('%s: %s', $salutation, WikiLink($name, 'auto')),\ THE_END);\ return $html;\ }\ };\ ?>\ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5854 1 1431503105 0 PhpWiki lets you extend it with new functionality via a plugin\ mechanism. In short, you extend a PHP class we provide and customize\ it to print out the content you want. For more information see\ WikiPlugin, HelloWorldPlugin, and view the source of the files in\ <tt>lib/plugin</tt>.\ \ If there is no example page for the plugin, or you need more\ information, the best place to go is the source of the plugin. Under\ your wiki's root directory, the folder <tt>lib/plugin</tt> contains all the PHP\ files for the plugins.\ \ ! External Requirements\ Some plugins require correctly configured PLUGIN_CACHED and external libraries\ not provided with PhpWiki or PHP, such as\ * [PHP with GD support | php-function:ref.image] for the text2png plugin,\ * [LaTeX2HTML | ftp://ftp.dante.de/tex-archive/support/latex2html ] for the TexToPngPlugin and TeX2pngPlugin,\ * [graphviz | http://graphviz.org/] for the GraphVizPlugin and VisualWikiPlugin,\ * [ploticus | http://ploticus.sourceforge.net/] for the PloticusPlugin,\ * [phpweather | http://phpweather.sf.net] for the PhpWeatherPlugin,\ * [highlight | http://www.andre-simon.de/] for the SyntaxHighlighterPlugin,\ * a browser with [<iframe> support|http://www.cs.tut.fi/~jkorpela/html/iframe.html] for the TranscludePlugin,\ * USE_DB_SESSION = true (default for the peardb, adodb or dba backends) for the WhoIsOnline plugin,\ * --with-xml support (with expat or libxml2) for the ~RssFeed plugin (ProjectSummary, RecentReleases) and\ HtmlParser support (ImportHtml, HtmlAreaEditing),\ * PHP Mail functionality (php.ini: SMTP + sendmail_from on Windows or sendmail_path) for email\ PageChangeNotifications and ModeratedPage's,\ * a [Google license key | http://www.google.com/apis/] for the GooglePlugin,\ * optionally an external recommender engine (none yet, php only so far) and the wikilens theme for the RateIt plugin,\ * optionally apache/mod_log_{my}sql for fast, external log analysis if ACCESS_LOG_SQL=1 (Referer, Abuse Prevention).\ See <tt>lib/Request.php</tt> and http://www.outoforder.cc/projects/apache/mod_log_sql/\ \ -----\ <?plugin PluginManager?>\ ----\ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6065 1 1431503105 0 <?plugin PageHistory?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6066 1 1431503105 0 This simple plugin allows blog-style entries on a page. Try making a few entries, and then look at RecentChanges to get an idea of how things work.\ \ <?plugin WikiBlog ?>\ \ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6067 1 1075205974 0 RichTablePlugin is a plugin that takes off from the OldStyleTablePlugin. It allows a user to specify arbitrary properties of <tt><table></tt>, <tt><tr></tt> and <tt><td></tt> with a very simple markup.\ \ NEW: The plugin is now fixed so that the contents of each cell are individually processed by the ~BlockParser. This means that if everything works correctly, you can do interesting things like put *invoke plugins*, use *enumerated lists* etc within each cell!\ \ *A <tt>"-"</tt> (dash) at the start of a new line represents a new row in the table.\ *A <tt>"|"</tt> (vertical bar or pipe) at the start of a new line represents a cell.\ *Attributes for the tags\ *A line that starts with a <tt>"*"</tt> (star or asterisk) after a <tt>"|"</tt> is parsed for attributes for the corresponding cell.\ *Attributes for the table are given on line that starts with a <tt>"*"</tt>, only if the line appears before any other line except whitespace.\ *A line that starts with a <tt>-</tt> is always parsed for attributes since it can't have any content, unlike a cell.\ *Cell contents\ *Cell contents are processed by the ~BlockParser.\ *Any line that starts with a <tt>"*"</tt> anywhere other than the table attribute line is treated as normal content.\ *Any line that starts with whitespace is also treated as content.\ *Any cell line that does not have a <tt>"*"</tt> after the <tt>"|"</tt> is treated as normal content.\ *All content lines that follow a cell line are added to that cell. They can contain arbitrary text except the above cases.\ *If there is no cell in the current row, content lines are dropped silently.\ *The two special characters <tt>"~~"</tt> and <tt>"?>"</tt> should be escaped as <tt>"\\~~"</tt> and <tt>"?\\>"</tt>. I havn't discovered any other characters yet that might need to be escaped. This is required for the block parser to work.\ \ Bugs:\ * The source code sucks\ * The plugin can't nest itself yet. Thus nested tables are currently not possible.\ \ Example:\ \ <?plugin RichTable\ \ *border=1, cellpadding=5, bgcolor=#f0f8f8, width=75%, align=center\ -\ |* colspan=3, align=center\ HomePage\ -\ |* colspan=2\ [http://phpwiki.sourceforge.net/demo/themes/default/images/png.png]\ |* rowspan=2\ This cell actually has a plugin invocation inside it!\ <?plugin\ BackLinks\ ?\\>\ - bgcolor=white\ |\ #One\ #Two\ |\ *Foo\ *Bar\ - bgcolor=cyan\ This line gets dropped ... no cell to contain it!\ |* bgcolor=#f0f0ff, align=center\ One paragraph\ \ Another paragraph?\ |* align=left\ This cell uses the row color\ | I wish this cell had a nested table inside it! :(\ ?>\ \ The above table is rendered from:\ \ <verbatim>\ <?plugin RichTable\ \ *border=1, cellpadding=5, bgcolor=#f0f8f8, width=75%, align=center\ -\ |* colspan=3, align=center\ HomePage\ -\ |* colspan=2\ [http://phpwiki.sourceforge.net/demo/themes/default/images/png.png]\ |* rowspan=2\ This cell actually has a plugin invocation inside it!\ <?plugin\ BackLinks\ ?\\>\ - bgcolor=white\ |\ #One\ #Two\ |\ *Foo\ *Bar\ - bgcolor=cyan\ This line gets dropped ... no cell to contain it!\ |* bgcolor=#f0f0ff, align=center\ One paragraph.\ \ Another paragraph?\ |* align=left\ This cell uses the row color\ | I wish this cell had a nested table inside it! :(\ ?>\ </verbatim>\ \ ;__Author__: Sameer D. Sahasrabuddhe\ ;__Url__: http://www.it.iitb.ac.in/~sameerds/phpwiki/index.php/RichTablePlugin\ \ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"author";s:10:"ReiniUrban";s:9:"author_id";s:10:"ReiniUrban";s:6:"markup";s:1:"2";s:8:"pagetype";s:8:"wikitext";} 6068 1 1045352818 0 The RedirectToPlugin can be used to redirect a user to another page.\ In other words it makes a page an _alias_ for another page.\ \ ! Arguments\ \ Use only one of these arguments at a time.\ \ page |\ The page to redirect to (a wiki page name).\ href |\ An external URL to redirect to. Redirection to external URLs will only work\ on locked pages. (If the URL contains funny characters, you'll probably have\ to put quotes around the URL.)\ \ ! Caveats\ \ The RedirectToPlugin invocation must be the first thing on a page.\ For most purposes it makes any other content on the page inaccessible.\ \ ! Example\ \ A page may be made a alias for the HomePage by placing this code at the top:\ <verbatim>\ <?plugin RedirectTo page="HomePage" ?>\ </verbatim>\ \ To see the example in action, visit HomePageAlias.\ -----\ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6070 1 1431503105 0 <?plugin WikiAdminSelect s||="*" ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5886 1 1431503105 0 The ~SyntaxHighlighter plugin passes all its arguments through a C++\ highlighter called "highlight" (available at http://www.andre-simon.de/).\ \ Author: alecthomas\ \ ! Arguments\ syntax |\ (required), See http://www.andre-simon.de/doku/highlight/highlight.html\ style |\ ~[ "ansi", "gnu", "kr", "java", "linux" ~] (required)\ color |\ null (optional), see =highlight/themes=\ number |\ 0 (optional)\ wrap |\ 0 (optional)\ \ \ ! Example\ \ <verbatim>\ <?plugin SyntaxHighlighter syntax=c style=kr color=emacs\ #include <stdio.h>\ \ int main() {\ printf("Lalala\\n");\ }\ ?>\ </verbatim>\ \ =>\ \ <?plugin SyntaxHighlighter syntax=c style=kr color=emacs\ #include <stdio.h>\ \ int main() {\ printf("Lalala\\n");\ }\ ?>\ \ I did not use beautifier, because it used up more than 8M of memory on\ my system and PHP killed it. I'm not sure whether this is a problem\ with my integration, or with beautifier itself.\ \ Fixes by Reini Urban:\ * support options: syntax, style, color.\ * php version switch\ * HIGHLIGHT_DATA_DIR, HIGHLIGHT_EXE constants\ ----\ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6071 1 1431503105 0 Here is a list of pages that have been cited on this wiki but are not\ yet written. Although they appear to be wanted, they may be\ misspellings of existing pages or pages too trivial to merit creation.\ \ The best course of action for these pages isn't necessarily to create\ a page. Often, it is better to change the references so they are no\ longer ~WikiNames. Where applicable, you can just change the case, add\ spaces or insert an escape character ~~.\ \ ----\ \ <?plugin WantedPages?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6072 1 1431503105 0 Here are some good starting points for browsing.\ \ * HowToUseWiki gives you the quick lowdown on Wiki markup.\ * RecentChanges recorded automatically.\ * MoreAboutMechanics of browsing and editing on this server.\ \ Here's a title search. Try something like <tt>wiki or sandwich</tt>.\ \ <?plugin WikiFormRich action=TitleSearch method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact\ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?>\ \ Use the following for a full text search. This takes a few seconds.\ The results will show all lines on a given page which contain a\ match.\ \ <?plugin WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact\ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?>\ \ In a fuzzy pages search the titles of all pages are examined to find\ those which are similarly spelled or similar sounding (english).\ \ <?plugin-form FuzzyPages ?>\ \ ------\ \ ! Tips\ Separate words with a space. All words have to match as substrings. %%%\ 'OR', grouping with parenthesis, string-quoting and some glob-style wildcard\ characters are also supported. %%%\ To exclude words from a title search or full text search, prepend a '-'. %%%\ Use '^xx' or 'xx*' to match words starting with 'xx'. %%%\ Use '~*xx' or 'xx$' to match words ending with 'xx'. %%%\ Use '^word$' to match exact words. %%%\ Use regex=auto and 're:' like 're:word.*xx' or regex=posix to use posix regular expressions. (not yet) %%%\ Use regex=auto and '//' like '/^word$/' or regex=pcre to match using perl-style regular expressions. %%%\ Use regex=sql to match using SQL-style wildcards '%' and '_'. %%%\ Use regex=none to match any wildcards verbatim. %%%\ \ Example: 'wiki text -php' looks for all pages containing the words 'wiki' and 'text', %%%\ but not containing the word 'php'. a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6075 1 1431503105 0 <?plugin TitleSearch ?>\ \ ----\ \ Additional Searches:\ <?plugin WikiFormRich action=TitleSearch method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact\ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?>\ \ <?plugin WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact\ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?>\ \ <?plugin WikiFormRich action=FuzzyPages method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact ?>\ \ ----\ \ <?plugin IncludePage page=FindPage quiet=1 section=Tips sectionhead=1 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5859 1 1431503105 0 Here's a list of recently edited pages on this wiki. All minor changes\ are shown also, not just the most recent ones. (See RecentChanges for the\ most recent non-minor changes).\ \ --------\ <?plugin RecentChanges days||=3 show_all||=1 show_minor=1 daylist=1,3,7,30,90,0 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6076 1 1431503105 0 <?plugin EditMetaData ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6077 1 1431503105 0 The ~UnfoldSubpages WikiPlugin is used to display all or some subpages\ of the current or a given page. This gives a overview for a\ WikiBlogPlugin, CalendarPlugin or similar subpages.\ \ Warning: Don't use it with subpages with non-existant sections!\ The section extractor is currently quite unstable.\ \ ! Usage:\ <verbatim>\ <?plugin UnfoldSubpages ?>\ or <?plugin UnfoldSubpages sortby=-mtime words=50 maxpages=5 ?>\ or <?plugin UnfoldSubpages quiet=1 smalltitle=1 ?>\ or <?plugin UnfoldSubpages sections=2 words=100 ?>\ or <?plugin UnfoldSubpages lines=3 ?>\ or <?plugin UnfoldSubpages pagename="PhpWikiAdministration"\ section="Plugin Arguments" sectionhead=1 ?>\ </verbatim>\ \ !! Plugin Arguments:\ <strong>pagename</strong>:\ Any pagename or if empty the current page. Default: ""\ <strong>quiet</strong>:\ Print no header. Default: false\ <strong>sortby</strong>:\ Sort by + (ASC) or - (DESC) and one column.\ Multiple columns like sortby="-hits,-mtime" not yet supported.\ Supported columns: ~[+|-]pagename, ~[+|-]mtime, ~[+|-]hits.\ Default: "pagename"\ <strong>maxpages</strong>:\ Maximum number of pages to include or all if not defined.\ Default: false\ <strong>sections</strong>:\ Maximum number of sections per page to include or all if not defined.\ Default: false\ <strong>section</strong>:\ Include this named section per page only if defined. Default: ""\ <strong>sectionhead</strong>:\ When including a named section show the heading. Default: false\ <strong>smalltitle</strong>:\ If set, hide transclusion-title, just have a small link at the start of\ the page. Default: false\ <strong>words</strong>:\ Maximum number of words per page to include. Default: false\ <strong>lines</strong>:\ Maximum number of lines per page to include. Default: false\ <strong>bytes</strong>:\ Maximum number of bytes per page to include. Default: false\ \ ! Deprecated Arguments:\ <strong>pages</strong>:\ deprecated. renamed to maxpages.\ <strong>sort</strong>:\ 'asc' or 'desc'. deprecated: use "+" or "-" before the column name with sortby.\ \ ! Example:\ <?plugin UnfoldSubpages pagename=PgsrcTranslation limit=20 ?>\ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6078 1 1431503105 0 All links in this page will be used to find user groups for the\ WIKIPAGE group method. User group pages must contain a list of\ usernames, and then for consistency after four hyphens a link to this\ page.\ \ * [Administrators] a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5880 1 1431503105 0 This plugin will create an HTML frame that will fill the entire display area of the page (that is, the whole area the user is allowed to edit). All other text will be discarded when the page is rendered (anything outside the call to plugin, that is). In the language of hypertext this is called <i>transclusion</i>.\ \ You might also be interested in the IncludePagePlugin.\ \ Examples: to include a page from another site, use the <b>src</b> attribute:\ \ <verbatim>\ <?plugin FrameInclude src="http://phpwiki.org/" ?>\ </verbatim>\ \ To include a page from within this wiki, use the <b>page</b> attribute:\ \ <verbatim>\ <?plugin FrameInclude page=HomePage ?>\ </verbatim>\ \ For more information on this plugin please read the PHP source code in the /lib/plugin directory.\ \ -----\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5862 1 1431503105 0 Here is the list of all pages on this Wiki, including any\ OrphanedPages which are otherwise inaccessible.\ \ <?plugin AllPages?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6080 1 1431503105 0 <?plugin SearchHighlight ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6081 1 1431503105 0 <?plugin WikiPoll require_all=0 require_least=2\ question[1]="Do you like PhpWiki?"\ answer[1][1]="Yes" answer[1][2]="Do not know" answer[1][3]="No"\ question[2]="Do you have PhpWiki installed by your own?"\ answer[2][1]="Yes" answer[2][2]="No"\ question[3]="Did you install any other wiki engine?"\ answer[3][1]="Yes" answer[3][2]="No"\ question[4]="What wiki engine do you like most?"\ answer[4][1]="c2Wiki" answer[4][2]="MoinMoin" answer[4][3]="PhpWiki"\ answer[4][4]="usemod" answer[4][5]="Twiki" answer[4][5]="guiki"\ answer[4][6]="Other"\ question[5]="Which PhpWiki version do you use?"\ answer[5][1]="1.2.x" answer[5][2]="1.3. 1-2" answer[5][3]="1.3. 3-4"\ answer[5][4]="1.3. 5-8"\ ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6082 1 1431503105 0 <noinclude>\ The following predefined variables are automatically expanded if existing:\ pagename\ mtime - last modified date + time\ ctime - creation date + time\ author - last author\ owner\ creator - first author\ SERVER_URL, DATA_PATH, SCRIPT_NAME, PHPWIKI_BASE_URL and BASE_URL\ </noinclude>\ \ Title: %%title%% Year: %%year%%\ ---\ * Pagename: %%pagename%%\ * Author: %%author%%\ * Last modified time: %%mtime%%\ * Created time: %%ctime%%\ * Owner: %%owner%%\ * Creator: %%creator%%\ \ * SERVER_URL: %%SERVER_URL%%\ * DATA_PATH: %%DATA_PATH%%\ * SCRIPT_NAME: %%SCRIPT_NAME%%\ * PHPWIKI_BASE_URL: %%PHPWIKI_BASE_URL%%\ * BASE_URL: %%BASE_URL%% a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6054 1 1431503105 0 The TranscludePlugin can be used to embed include whole (external) web\ pages within a wiki page.\ \ ! Plugin Arguments\ \ =src= |\ The URL of the page to transclude\ =height= |\ The (initial) height of the transclusion frame.\ If, possible, after the transcluded page is loaded,\ the frame is resized via javascript so that it\ fits the entire transcluded page. (See below for more.)\ \ ! Bugs / Caveats\ \ o Pages are transcluded using =<iframe>= tags. Older browsers do not\ support ''iframe''s. In that case the user will be presented with a\ link to the trancluded material.\ \ o When possible, JavaScript code is used to adjust the height of the\ _iframe_ so that it fits the entire transcluded page.\ Unfortunately, this seems possible only when the transcluded page\ comes from the same server as the wiki page. (This restriction is\ due to security checks built in to the JavaScript language.)\ \ o The recursion detection code does not currently work. Be careful to\ avoid recursive transclusions, or you'll be sorry (or at least\ amused.)\ \ ! Example\ \ <verbatim>\ <?plugin Transclude src="http://phpwiki.sourceforge.net/demo/ChangeLog" ?>\ </verbatim>\ \ will get you\ \ <?plugin Transclude src="http://phpwiki.sourceforge.net/demo/ChangeLog" ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5876 1 1431503105 0 The OldStyleTablePlugin can be used to include tables within a wiki\ page using the old-style markup syntax for tables.\ \ !!Usage:\ \ <verbatim>\ <?plugin OldStyleTable caption="OldStyleTable" border||=2\ ||^ *Name* |v *Cost* |v *Notes*\ | *First* | *Last*\ |> Jeff |< Dairiki |^ Cheap |< Not worth it\ |> Marco |< Polo | Cheaper |< Not available\ ?>\ </verbatim>\ \ will get you\ \ <?plugin OldStyleTable caption="OldStyleTable" border||=2\ ||^ *Name* |v *Cost* |v *Notes*\ | *First* | *Last*\ |> Jeff |< Dairiki |^ Cheap |< Not worth it\ |> Marco |< Polo | Cheaper |< Not available\ ?>\ \ Note that multiple __|__s lead to spanned columns, and __v__s can be\ used to span rows. A __>__ generates a right justified column, __<__\ a left justified column and __^__ a centered column (which is the\ default.)\ \ !! Plugin Arguments\ \ __caption__:\ \ Any string. Default: ""\ \ __border__:\ \ Any number. Default: 1\ \ __cellspacing__:\ \ Any number. Default: 1\ \ __cellpadding__:\ \ Any number. Default: 1\ \ __summary__:\ \ Any string. Default: ""\ \ ----\ \ Note that within each table cell, _new-style_ markup is used. You can\ only use inline markup --- no block level markup is allowed within\ table cells.\ \ (Using old-style markup wouldn't make much sense, since one can't\ include multi-line plugin invocations using the old-style markup\ rules.)\ \ \ -------------\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6084 1 1431503106 0 The CalendarListPlugin is used in conjunction with the CalendarPlugin. It was written for those who use a wiki as a personal information manager.\ \ Just click any date in the calendar, edit the for that date, then come back to this page. The event should be listed below the calendar.\ \ Usage:\ <verbatim>\ <?plugin Calendar ?>\ <?plugin CalendarList ?>\ </verbatim>\ \ Example (click any date and edit it, then return to this page):\ <?plugin Calendar ?>\ \ <?plugin CalendarList ?>\ \ -----\ \ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6085 1 1431503106 0 <?plugin WikiAdminSearchReplace ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6086 1 1431503106 0 <?plugin FuzzyPages ?>\ \ ----\ \ Additional Searches:\ <?plugin-form TitleSearch?>\ <?plugin-form FullTextSearch?>\ <?plugin-form FuzzyPages?>\ \ ----\ \ Create or edit page:\ \ <?plugin-form CreatePage?>\ \ ----\ \ <?plugin IncludePage page=FindPage quiet=1 section=Tips sectionhead=1 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6087 1 1431503106 0 View a wiki page in MIME format or download it as backup of a single\ page. _A complete dump of all pages can be produced in\ PhpWikiAdministration._\ \ <?plugin PageDump?>\ ----\ Enter exact page name to dump:\ <?plugin-form PageDump?>\ \ TitleSearch:\ <?plugin-form TitleSearch?>\ \ ----\ See also: [ViewSource|phpwiki:?action=viewsource], PluginManager. a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6089 1 1431503106 0 !! Synopsis\ \ Template = Parametrized blocks.\ \ Include text from a wiki page and replace certain placeholders by parameters.\ Similiar to CreatePage with the template argument, but at run-time.\ Similiar to the mediawiki templates but not with the "|" parameter seperator.\ \ !! Usage\ <verbatim>\ <?plugin Template page=Templates/Footer?>\ <?plugin Template page=Templates/Film vars="title=SomeFilm&year=1999" ?>\ {{Templates/Film|title=SomeFilm|year=1999}}\ </verbatim>\ \ !! Plugin Arguments\ Argument|\ Default Value|\ Description\ \ page|\ (empty)|\ pagename to be included as template\ \ vars|\ (empty)|\ optional parameters to be expanded inside the template\ \ ! Parameter expansion:\ vars="var1=value1&var2=value2"\ \ We only support named parameters, not numbered ones as in mediawiki, and\ the placeholder is %%var%% and not {{~{var~}}} as in mediawiki.\ \ The following predefined variables are automatically expanded if existing:\ <verbatim>\ pagename\ mtime - last modified date + time\ ctime - creation date + time\ author - last author\ owner\ creator - first author\ SERVER_URL, DATA_PATH, SCRIPT_NAME, PHPWIKI_BASE_URL and BASE_URL\ </verbatim>\ \ <noinclude> .. </noinclude> is stripped\ \ ! In work:\ * ENABLE_MARKUP_TEMPLATE = true: (lib/InlineParser.php)\ Support a mediawiki-style syntax extension which maps\ <verbatim>\ {{TemplateFilm|title=Some Good Film|year=1999}}\ </verbatim>\ to\ <verbatim>\ <?plugin Template page=TemplateFilm vars="title=Some Good Film&year=1999" ?>\ </verbatim>\ \ !! Examples\ \ <verbatim>\ <?plugin Template page=TemplateExample vars="title=TestTitle" ?>\ </verbatim>\ \ Standard syntax:\ <?plugin Template page=TemplateExample vars="title=TestTitle" ?>\ \ Shorter syntax:\ {{TemplateExample|title=TestTitle}}\ \ -------------\ PhpWikiDocumentation WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6092 1 1431503106 0 Query any Wiki listed in the InterWikiMap by entering a desired page\ name below.\ \ To add one of these searches to another page use the\ ExternalSearchPlugin.\ \ <?plugin InterWikiSearch?>\ ----\ WikiPlugin a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6057 1 1431503106 0 <?plugin RssFeed url=http://sourceforge.net/export/rss2_projnews.php?group_id=6121&rss_fulltext=1 maxitem=10 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6094 1 1431503106 0 <?plugin FullTextSearch ?>\ \ ----\ \ Additional Searches:\ <?plugin WikiFormRich action=TitleSearch method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact\ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?>\ \ <?plugin WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact\ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?>\ \ <?plugin WikiFormRich action=FuzzyPages method=GET nobr=1 class=wikiaction\ editbox[] name=s text=""\ submit[]\ checkbox[] name=case_exact ?>\ \ ----\ \ Create or edit page:\ \ <?plugin-form CreatePage?>\ \ ----\ \ <?plugin IncludePage page=FindPage quiet=1 section=Tips sectionhead=1 ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6088 1 1431503106 0 _*Note:*_ _Most of the actions on this page require administrative\ privileges. They will not work unless you have set an admin username and\ password in the PhpWiki config file._\ \ <?plugin CreateToc jshide||=1 with_toclink||=1 ?>\ \ ----\ !!! Page Explorer\ \ First select pages and then define the action:\ \ <?plugin-form WikiAdminSelect s="*" ?>\ \ or call the available ~WikiAdmin actions directly:\ \ [Remove | PhpWikiAdministration/Remove] |\ [Rename | PhpWikiAdministration/Rename] |\ [Replace | PhpWikiAdministration/Replace]\ \ \ ----\ !!! Cleanup\ \ A Wiki SandBox is very easy to clean. Here you can restore it to\ pristine condition by loading the default from pgsrc.\ \ [Rake the SandBox|phpwiki:?action=loadfile&source=pgsrc/SandBox].\ \ ----------\ \ !!! Making Snapshots or Backups\ \ !! ZIP files of database\ \ These links lead to zip files, generated on the fly, which contain all\ the pages in your Wiki. The zip file will be downloaded to your local\ computer.\ \ This *[ZIP Snapshot | phpwiki:?action=zip]* contains only the\ latest versions of each page, while this *[ZIP Dump |\ phpwiki:?action=zip&include=all]* contains all archived versions.\ \ (If the PhpWiki is configured to allow it, anyone can download a zip\ file.)\ \ If your php has _zlib_ support, the files in the archive will be\ compressed, otherwise they will just be stored.\ \ !! Dump to directory\ \ Here you can dump pages of your Wiki into a directory of your choice.\ \ <?plugin WikiForm action=dumpserial?>\ \ The most recent version of each page will written out to the\ directory, one page per file. Your server must have write permissions\ to the directory!\ \ ----\ \ !!! Dump pages as XHTML\ \ <?plugin WikiForm action=dumphtml?>\ \ This will generate a directory of static pages suitable for\ distribution on disk where no web server is available. The various\ links for page editing functions and navigation are removed from the\ pages.\ \ The XHTML file collection can also be downloaded as an\ *[XHTML ZIP Snapshot | phpwiki:?action=ziphtml]*.\ \ ----\ \ !!! Phpwiki Internals\ \ These are here mostly for debugging purposes (at least, that is the\ hope.)\ \ In normal use, you should not need to use these, though, then again,\ they should not really do any harm.\ \ !! Purge Markup Cache\ \ (If your wiki is so configured,) the transformed (almost-HTML) content\ of the most recent version of each page is cached. This speeds up page\ rendering since parsing of the wiki-text takes a fair amount of juice.\ \ Hitting this button will delete all cached transformed\ content. (Each pages content will be transformed and re-cached next\ time someone views it.)\ \ <?plugin WikiAdminUtils\ action=purge-cache\ label="Purge Cache"\ ?>\ \ !! Clean WikiDB of Illegal Filenames\ \ Page names beginning with the subpage-separator, usually a slash\ (=/=), are not allowed. Sometimes though an errant plugin or something\ might create one....\ \ This button will delete any pages with illegal page names, without possibility to restore.\ \ <?plugin WikiAdminUtils\ action=purge-bad-pagenames\ label="Purge bad pagenames"\ ?>\ \ !! Clean WikiDB of empty and unreferenced pages\ \ *Warning!* This button will delete every empty and unreferenced page, without any possibility to restore them again.\ This will disable the possibility to revert or get back any deleted page.\ \ <?plugin WikiAdminUtils\ action=purge-empty-pages\ label="Purge all empty unreferenced pages"\ ?>\ \ ----\ PhpWikiDocumentation a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5857 1 1431503106 0 The contents of all pages are searched to find links to the current\ page. The BackLinks function also answers the question: "Which pages\ contain the title of this page?".\ \ ----\ \ <?plugin BackLinks exclude||='' include_self||=1 noheader||=0 page||='' info||='' ?> a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 5874 1 1431503106 0 * Use the SandBox page to experiment with Wiki pages.\ * See RecentChanges for the latest page additions and changes.\ * Find out which pages are MostPopular.\ * See more PhpWikiDocumentation. a:4:{s:6:"markup";s:1:"2";s:6:"author";s:28:"The PhpWiki programming team";s:9:"author_id";s:28:"The PhpWiki programming team";s:8:"pagetype";s:8:"wikitext";} 6095 1 1431503123 0 ProjectWantedPages store pages created with main interface:\ * [EmptyPage] a:5:{s:7:"summary";s:15:"Added EmptyPage";s:6:"author";s:7:"testman";s:8:"pagetype";s:8:"wikitext";s:9:"author_id";s:7:"testman";s:11:"_supplanted";s:10:"1431503123";} 6095 2 1431503123 0 ProjectWantedPages store pages created with main interface:\ * [EmptyPage]\ * [WithContent] a:5:{s:7:"summary";s:17:"Added WithContent";s:6:"author";s:7:"testman";s:8:"pagetype";s:8:"wikitext";s:9:"author_id";s:7:"testman";s:11:"_supplanted";s:10:"1431503123";} 6097 1 1431503136 0 Content v1 a:5:{s:6:"author";s:7:"testman";s:9:"author_id";s:7:"testman";s:6:"markup";d:2;s:8:"pagetype";s:8:"wikitext";s:11:"_supplanted";i:1431503144;} 6097 2 1431503144 1 Content v2 a:5:{s:6:"author";s:7:"testman";s:9:"author_id";s:7:"testman";s:6:"markup";d:2;s:8:"pagetype";s:8:"wikitext";s:11:"_supplanted";i:1431503151;} 6097 3 1431503151 0 Content v3 a:5:{s:6:"author";s:7:"testman";s:9:"author_id";s:7:"testman";s:6:"markup";d:2;s:8:"pagetype";s:8:"wikitext";s:11:"_supplanted";i:1431503613;} 6097 4 1431503613 1 Content v4\ \ _this is a content in italic_\ \ * a\ * b\ * c\ \ # a\ # b\ # c\ \ <pre> content in pre tag </pre>\ <verbatim> content in verbatim tag </verbatim>\ \ [tuleap | tuleap.org] a:4:{s:6:"author";s:7:"testman";s:9:"author_id";s:7:"testman";s:6:"markup";d:2;s:8:"pagetype";s:8:"wikitext";} 6095 3 1431503123 0 ProjectWantedPages store pages created with main interface:\ * [EmptyPage]\ * [WithContent]\ * [With Space] a:5:{s:7:"summary";s:19:"With Space ajoutée";s:6:"author";s:7:"testman";s:8:"pagetype";s:8:"wikitext";s:9:"author_id";s:7:"testman";s:11:"_supplanted";s:10:"1431503123";} 6100 1 1431690509 0 Describe [With Space] here.qdqsdsqdqsdqsdsq a:4:{s:6:"author";s:7:"testman";s:9:"author_id";s:7:"testman";s:6:"markup";d:2;s:8:"pagetype";s:8:"wikitext";} 6095 4 1431503123 0 ProjectWantedPages store pages created with main interface:\ * [EmptyPage]\ * [WithContent]\ * [With Space]\ * [Page#] a:4:{s:7:"summary";s:14:"Page# ajoutée";s:6:"author";s:7:"testman";s:8:"pagetype";s:8:"wikitext";s:9:"author_id";s:7:"testman";}