From 1b256d22ee6245d7361789f24ca483d6a0e8ebb7 Mon Sep 17 00:00:00 2001 From: vargenau Date: Sat, 18 Apr 2009 17:12:28 +0000 Subject: [PATCH] Wikicreole syntax; arguments in bold git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@6794 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- pgsrc/AllPagesOwnedByMe | 4 +- pgsrc/FindPage | 37 +++--- pgsrc/FullRecentChanges | 4 +- pgsrc/Help%2FAddingPages | 23 ++-- pgsrc/Help%2FAllUsersPlugin | 6 +- pgsrc/Help%2FAnalyseAccessLogSqlPlugin | 4 +- pgsrc/Help%2FBackLinksPlugin | 10 +- pgsrc/Help%2FCalendarListPlugin | 12 +- pgsrc/Help%2FCalendarPlugin | 26 ++--- pgsrc/Help%2FCategoryPagePlugin | 20 ++-- pgsrc/Help%2FCreateTocPlugin | 28 ++--- pgsrc/Help%2FDeadEndPagesPlugin | 4 +- pgsrc/Help%2FDiffPlugin | 8 +- pgsrc/Help%2FEditMetaDataPlugin | 4 +- pgsrc/Help%2FExternalSearchPlugin | 4 +- pgsrc/Help%2FFileInfoPlugin | 12 +- pgsrc/Help%2FFuzzyPagesPlugin | 4 +- pgsrc/Help%2FGoogleLink | 6 +- pgsrc/Help%2FIncludePagePlugin | 15 +-- pgsrc/Help%2FInterWiki | 12 +- pgsrc/Help%2FLinkIcons | 36 +++--- pgsrc/Help%2FListSubpagesPlugin | 10 +- pgsrc/Help%2FMostPopularPlugin | 10 +- pgsrc/Help%2FNoCachePlugin | 4 +- pgsrc/Help%2FPageTrailPlugin | 8 +- pgsrc/Help%2FPopUpPlugin | 58 +++++++--- pgsrc/Help%2FPopularNearbyPlugin | 10 +- pgsrc/Help%2FPreferenceAppPlugin | 16 +-- pgsrc/Help%2FRecentChangesPlugin | 36 +++--- pgsrc/Help%2FRedirectToPlugin | 6 +- pgsrc/Help%2FRichTablePlugin | 50 ++++---- pgsrc/Help%2FRssFeedPlugin | 14 +-- pgsrc/Help%2FSearchHighlightPlugin | 8 +- pgsrc/Help%2FSemanticSearchPlugin | 24 ++-- pgsrc/Help%2FTranscludePlugin | 10 +- pgsrc/Help%2FUnfoldSubpagesPlugin | 28 ++--- pgsrc/Help%2FWhoIsOnlinePlugin | 10 +- pgsrc/Help%2FWikiAdminChmodPlugin | 6 +- pgsrc/Help%2FWikiAdminChownPlugin | 6 +- pgsrc/Help%2FWikiAdminMarkupPlugin | 6 +- pgsrc/Help%2FWikiAdminPurgePlugin | 4 +- pgsrc/Help%2FWikiAdminRemovePlugin | 4 +- pgsrc/Help%2FWikiAdminRenamePlugin | 6 +- pgsrc/Help%2FWikiAdminSearchReplacePlugin | 4 +- pgsrc/Help%2FWikiAdminUtilsPlugin | 6 +- pgsrc/Help%2FWikiPlugin | 10 +- pgsrc/Help%2F_GroupInfoPlugin | 12 +- pgsrc/HomePage | 16 +-- pgsrc/PhpWikiPoll | 4 +- pgsrc/RateIt | 3 +- pgsrc/ReleaseNotes | 132 +++++++++++----------- 51 files changed, 409 insertions(+), 391 deletions(-) diff --git a/pgsrc/AllPagesOwnedByMe b/pgsrc/AllPagesOwnedByMe index 2521ca9b9..a27626f33 100644 --- a/pgsrc/AllPagesOwnedByMe +++ b/pgsrc/AllPagesOwnedByMe @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -13,4 +13,4 @@ The list of pages which you own. (If you are authenticated only) <> ---- -[CategoryActionPage] +[[CategoryActionPage]] diff --git a/pgsrc/FindPage b/pgsrc/FindPage index 82b0e41c6..776b1c9e5 100644 --- a/pgsrc/FindPage +++ b/pgsrc/FindPage @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -10,9 +10,9 @@ Content-Transfer-Encoding: binary Here are some good starting points for browsing. -* [HowToUseWiki|Help:HowToUseWiki] gives you the quick lowdown on Wiki markup. -* [RecentChanges] recorded automatically. -* [MoreAboutMechanics|Help:MoreAboutMechanics] of browsing and editing on this server. +* [[Help:HowToUseWiki|HowToUseWiki]] gives you the quick lowdown on Wiki markup. +* [[RecentChanges]] recorded automatically. +* [[Help:MoreAboutMechanics|MoreAboutMechanics]] of browsing and editing on this server. Here's a title search. Try something like ##wiki or sandwich##. @@ -39,21 +39,20 @@ those which are similarly spelled or similar sounding (english). ------ -! 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'. +== 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'. ---- [[CategoryActionPage]] diff --git a/pgsrc/FullRecentChanges b/pgsrc/FullRecentChanges index e2158cfed..2b416ab3e 100644 --- a/pgsrc/FullRecentChanges +++ b/pgsrc/FullRecentChanges @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -9,7 +9,7 @@ Content-Type: application/x-phpwiki; Content-Transfer-Encoding: binary 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 +most recent ones found in [[RecentChanges]]. (See [[RecentEdits]] for all recent minor edits and changes). -------- diff --git a/pgsrc/Help%2FAddingPages b/pgsrc/Help%2FAddingPages index 93c648afc..2c122c41e 100644 --- a/pgsrc/Help%2FAddingPages +++ b/pgsrc/Help%2FAddingPages @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,22 +8,21 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -To add a new page to Wiki, all you have to do is come up with a -meaningful title, capitalize all the words and -StringThemTogetherLikeThis. Wiki automagically recognizes it as a -hyperlink. Alternatively, you can put anything into ~[brackets~]. +To add a new page to the wiki, all you have to do is come up with a +meaningful title and put it between {{{[[double brackets]]}}}. -Then you can go ahead and ClickTheQuestionMark at the end of your new -hyperlink, and the Wiki will give you a window for making the new -page. +Then you can go ahead and click the question mark at the end of your new +hyperlink, and the Wiki will give you a window for making the new page. -If you wish to add documents with complex markup to the Wiki, you +If you wish to add documents with complex markup to the wiki, you might be better off providing a URL to it than trying to add the text of the document here, like so: +{{{ +[[http://phpwiki.sourceforge.net/|PhpWiki project homepage]] +}}} +[[http://phpwiki.sourceforge.net/|PhpWiki project homepage]] -~PhpWiki project homepage: http://phpwiki.sourceforge.net/ - -The Wiki does not support most HTML tags, only the simpliest. See [TextFormattingRules|Help:TextFormattingRules]. +The Wiki does not support most HTML tags, only the simpliest. See [[Help:TextFormattingRules|TextFormattingRules]]. They will just render like text. Wiki is meant to be as simple as possible to encourage use. diff --git a/pgsrc/Help%2FAllUsersPlugin b/pgsrc/Help%2FAllUsersPlugin index ecf31e61e..451105d5e 100644 --- a/pgsrc/Help%2FAllUsersPlugin +++ b/pgsrc/Help%2FAllUsersPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,11 +23,11 @@ The **~AllUsers** [[Help:WikiPlugin|plugin]] lists all once authenticated users. ! Description ! Default value |- -| noheader +| **noheader** | Do not display the header | false |- -| include_empty +| **include_empty** | shows also users which stored their preferences, but never saved their homepage | true |} diff --git a/pgsrc/Help%2FAnalyseAccessLogSqlPlugin b/pgsrc/Help%2FAnalyseAccessLogSqlPlugin index c65ec4198..d9dc8990d 100644 --- a/pgsrc/Help%2FAnalyseAccessLogSqlPlugin +++ b/pgsrc/Help%2FAnalyseAccessLogSqlPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -104,7 +104,7 @@ If you do add a query, please consider contributing it back to the ~PhpWiki proj == Author -* [Charles Corrigan|PhpWiki:CharlesCorrigan] +* [[PhpWiki:CharlesCorrigan|Charles Corrigan]] * Changes by [[PhpWiki:ReiniUrban|Reini Urban]] diff --git a/pgsrc/Help%2FBackLinksPlugin b/pgsrc/Help%2FBackLinksPlugin index e3fe992bd..c43a97c4c 100644 --- a/pgsrc/Help%2FBackLinksPlugin +++ b/pgsrc/Help%2FBackLinksPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,19 +23,19 @@ The **~BackLinks** [[Help:WikiPlugin|plugin]] lists all pages which link to a gi ! Description ! Default value |- -| page +| **page** | Page from which the back links are calculated. | Current page |- -| include_self +| **include_self** | Include yourself in the results. | false |- -| noheader +| noheader** | Do not display header. | false |- -| linkmore +| **linkmore** | If count > 0 and limit > 0 display a link with the number of all results, linked to the given pagename. | |} diff --git a/pgsrc/Help%2FCalendarListPlugin b/pgsrc/Help%2FCalendarListPlugin index e8588fc25..20ab8eca8 100644 --- a/pgsrc/Help%2FCalendarListPlugin +++ b/pgsrc/Help%2FCalendarListPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,10 +8,8 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -The **~CalendarList** [[Help:WikiPlugin|plugin]] is used in conjunction -with the [Calendar|Help:CalendarPlugin] plugin. -It was written for those who use a wiki as a -[personal information manager|PhpWiki:PersonalWiki]. +The **~CalendarList** [[Help:WikiPlugin|plugin]] is used in conjunction with the [[Help:CalendarPlugin|Calendar]] plugin. +It was written for those who use a wiki as a [[PhpWiki:PersonalWiki|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. @@ -28,7 +26,7 @@ The behaviour before 2007 with last/next_n_days was to start now. == Example -_Click any date and edit it, then return to this page_: +//Click any date and edit it, then return to this page//: <> @@ -118,7 +116,7 @@ _Click any date and edit it, then return to this page_: == Author -Derived from [Calendar|Help:CalendarPlugin] plugin by [Martin Norbäck|mailto:martin@safelogic.se]. +Derived from [[Help:CalendarPlugin|Calendar]] plugin by [[mailto:martin@safelogic.se|Martin Norbäck]]. ---- diff --git a/pgsrc/Help%2FCalendarPlugin b/pgsrc/Help%2FCalendarPlugin index 2881f4f00..309fa51d0 100644 --- a/pgsrc/Help%2FCalendarPlugin +++ b/pgsrc/Help%2FCalendarPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -34,39 +34,39 @@ will get you: |- | colspan="3" align="center" | **Selection of Month** |- -| year +| **year** | Specify the year for the calendar. | Current year |- -| month +| **month** | Specify the month for the calendar. | Current month |- -| month_offset +| **month_offset** | Added to //month//. Can be used to include several months worth of calendars on a single wiki page. | 0 |- | colspan="3" align="center" | **"Day Page" Names** |- -| date_format +| **date_format** | [[php-function:strftime|strftime]] style format string used to generate page names for the "day pages." | The default value is =%Y-%m-%d=. |- -| prefix +| **prefix** | Prepended to the date (formatted per //date_format//) to generate the "day page" names. | The default value is =~[pagename]/=. |- | colspan="3" align="center" | **Appearance** |- -| month_format +| **month_format** | [[php-function:strftime|strftime]] style format string used to generate the title of the calendar. | (Default: =%B %Y=.) |- -| wday_format +| **wday_format** | [[php-function:strftime|strftime]] style format string used to generate the day-of-week names at the top of the calendar. | |- -| start_wday +| **start_wday** | 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. | |} @@ -89,7 +89,7 @@ will get you: == See Also -* Help:CalendarListPlugin +* [[Help:CalendarListPlugin]] Often used together like this: @@ -100,9 +100,9 @@ Often used together like this: == Authors -This feature was inspired by [Calendar|http://manila.userland.com/], -and first implemented by [Gary Benson|PhpWiki:GaryBenson]. It was later implemented as a -[[Help:WikiPlugin|plugin]] by [Jeff Dairiki|PhpWiki:JeffDairiki]. +This feature was inspired by [[http://manila.userland.com/|Calendar]], +and first implemented by [[PhpWiki:GaryBenson|Gary Benson]]. It was later implemented as a +[[Help:WikiPlugin|plugin]] by [[PhpWiki:JeffDairiki|Jeff Dairiki]]. ---- diff --git a/pgsrc/Help%2FCategoryPagePlugin b/pgsrc/Help%2FCategoryPagePlugin index 1accf71ae..c46fa60b0 100644 --- a/pgsrc/Help%2FCategoryPagePlugin +++ b/pgsrc/Help%2FCategoryPagePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -27,27 +27,27 @@ This has only been used in wikilens.org. ! Description ! Default value |- -| exclude +| **exclude** | | false |- -| pagename +| **pagename** | | current page |- -| plural +| **plural** | | false |- -| singular +| **singular** | | false |- -| self_on_create +| **self_on_create** | | true |- -| showbuds +| **showbuds** | | false |} @@ -61,11 +61,11 @@ This has only been used in wikilens.org. == Author -* WikiLens:DanFr +* [[WikiLens:DanFr]] == See Also -* [TemplatePlugin|Help:TemplatePlugin] -* [CreatePagePlugin|Help:CreatePagePlugin] +* [[Help:TemplatePlugin|TemplatePlugin]] +* [[Help:CreatePagePlugin|CreatePagePlugin]] ---- diff --git a/pgsrc/Help%2FCreateTocPlugin b/pgsrc/Help%2FCreateTocPlugin index 172004ac6..163fdc3ef 100644 --- a/pgsrc/Help%2FCreateTocPlugin +++ b/pgsrc/Help%2FCreateTocPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -14,12 +14,12 @@ The headers might be in classic Phpwiki syntax or in Wikicreole/Mediawiki syntax The Table of Contents can easily be inserted by clicking on the TOC button in the Edit toolbar. -!!! Usage +== Usage {{{ <> }}} -!!! Arguments +== Arguments {| class="bordered" |- @@ -80,7 +80,7 @@ The Table of Contents can easily be inserted by clicking on the TOC button in th | false |} -!! Headers +=== Headers Syntax: a comma-separated list of levels. !!!,!!,! also allowed @@ -102,40 +102,40 @@ Syntax: a comma-separated list of levels. !!!,!!,! also allowed | 5 || //None// || ~=~=~=~=~=~= || h6 |} -!!! Examples +== Examples -!! Default values +=== Default values {{{ <> }}} -!! Only two levels of headers +=== Only two levels of headers {{{ <> }}} -!! Table of Contents with hierarchical numbering +=== Table of Contents with hierarchical numbering {{{ <> }}} -!! No Table of Contents, but headers are numbered +=== No Table of Contents, but headers are numbered {{{ <> }}} -!! Table of Contents with hierarchical numbering, first level in roman +=== Table of Contents with hierarchical numbering, first level in roman {{{ <> }}} -See also [PhpWikiDemo:en/TextFormattingRules] +See also [[PhpWikiDemo:en/TextFormattingRules]] -!!! Known Problems +== Known Problems -* If you include pages via [Template|Help:TemplatePlugin] or [IncludePage|Help:IncludePagePlugin] plugins, the Table of Contents will not contain the headers of the included pages. +* If you include pages via [[Help:TemplatePlugin|Template]] or [[Help:IncludePagePlugin|IncludePage]] plugins, the Table of Contents will not contain the headers of the included pages. * The Table of Contents will be incorrect if a header contains: -** a [Template|Help:TemplatePlugin] plugin call via ~{~{ ~}~}, +** a [[Help:TemplatePlugin|Template]] plugin call via ~{~{ ~}~}, ** an image, ** or a ~~. * If you preview the page, the Table of Contents will not be correct if you modified headers. The Table of Contents will be taken from the last saved revision. diff --git a/pgsrc/Help%2FDeadEndPagesPlugin b/pgsrc/Help%2FDeadEndPagesPlugin index c8901b536..d8fcce803 100644 --- a/pgsrc/Help%2FDeadEndPagesPlugin +++ b/pgsrc/Help%2FDeadEndPagesPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -9,7 +9,7 @@ Content-Type: application/x-phpwiki; Content-Transfer-Encoding: binary The **~DeadEndPages** [[Help:WikiPlugin|plugin]] returns a list of pages which are not linked to by any other page. -It is simply an alias for [OrphanedPages|Help:OrphanedPages] plugin. +It is simply an alias for [[Help:OrphanedPagesPlugin|OrphanedPages]] plugin. == Usage {{{ diff --git a/pgsrc/Help%2FDiffPlugin b/pgsrc/Help%2FDiffPlugin index 4ff587079..cae14b89c 100644 --- a/pgsrc/Help%2FDiffPlugin +++ b/pgsrc/Help%2FDiffPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -24,15 +24,15 @@ The **Diff** [[Help:WikiPlugin|plugin]] displays differences between revisions o ! Description ! Default value |- -| pagename +| **pagename** | The page to execute upon | current pagename |- -| version +| **version** | The newest version of the page | latest version |- -| previous +| **previous** | author, minor or major | major |} diff --git a/pgsrc/Help%2FEditMetaDataPlugin b/pgsrc/Help%2FEditMetaDataPlugin index 7457db1b7..978415f17 100644 --- a/pgsrc/Help%2FEditMetaDataPlugin +++ b/pgsrc/Help%2FEditMetaDataPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -12,7 +12,7 @@ The **~EditMetaData** [[Help:WikiPlugin|plugin]] allows you to add/edit/delete m == Examples -Editing the metadata for the [HomePage] would look like this: +Editing the metadata for the [[HomePage]] would look like this: {{{ <> }}} diff --git a/pgsrc/Help%2FExternalSearchPlugin b/pgsrc/Help%2FExternalSearchPlugin index 67abda548..ee53d4dbc 100644 --- a/pgsrc/Help%2FExternalSearchPlugin +++ b/pgsrc/Help%2FExternalSearchPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -52,7 +52,7 @@ __debug__: Perform a full-text search on multiple wiki's: <> -Perform a full-text search on [MeatBall|MeatBall:SiteSearch] wiki: +Perform a full-text search on [[MeatBall:SiteSearch|MeatBall]] wiki: <> Search the PHP web site for a function name: diff --git a/pgsrc/Help%2FFileInfoPlugin b/pgsrc/Help%2FFileInfoPlugin index e2898a0ba..ee9bf18b3 100644 --- a/pgsrc/Help%2FFileInfoPlugin +++ b/pgsrc/Help%2FFileInfoPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -12,7 +12,7 @@ The **~FileInfo** [[Help:WikiPlugin|plugin]] displays the version, date, size, perms of an uploaded file. Only files relative and below to the uploads path can be handled. -For exe files the *version* argument might work to display the VERSIONINFO ressource string. (highly experimental). +For exe files the **version** argument might work to display the VERSIONINFO ressource string. (highly experimental). == Typical Usage @@ -30,19 +30,19 @@ For exe files the *version* argument might work to display the VERSIONINFO resso ! Description ! Default value |- -| file +| **file** | Relative path from PHPWIKI_DIR. | (required) |- -| display +| **display** | Comma-seperated string of version, size, phonysize, date, mtime, owner, name, path, dirname, link, mime-typ, magic. | (required) |- -| format +| **format** | printf format string with %s only, all display modes from above vars return strings | (optional) |- -| quiet +| **quiet** | print no error if file not found | false |} diff --git a/pgsrc/Help%2FFuzzyPagesPlugin b/pgsrc/Help%2FFuzzyPagesPlugin index 6270f6126..701ab6f60 100644 --- a/pgsrc/Help%2FFuzzyPagesPlugin +++ b/pgsrc/Help%2FFuzzyPagesPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -31,7 +31,7 @@ function). ! Description ! Default value |- -| s +| **s** | Pagename to look for | empty |} diff --git a/pgsrc/Help%2FGoogleLink b/pgsrc/Help%2FGoogleLink index a227d40e2..5355808cd 100644 --- a/pgsrc/Help%2FGoogleLink +++ b/pgsrc/Help%2FGoogleLink @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,10 +8,10 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -A new [UserPreferences] setting to optionally add a ~[G] link to unknown pages, +A new [[UserPreferences]] setting to optionally add a ~[G] link to unknown pages, with a link to ~Google:~[pagename]. Default: Off -See [MeatBall:GooglePrompt] +See [[MeatBall:GooglePrompt]] ---- diff --git a/pgsrc/Help%2FIncludePagePlugin b/pgsrc/Help%2FIncludePagePlugin index 58af68eac..af238ee9c 100644 --- a/pgsrc/Help%2FIncludePagePlugin +++ b/pgsrc/Help%2FIncludePagePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,7 +8,8 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -The **~IncludePage** [[Help:WikiPlugin|plugin]] will "include" other pages in this wiki. In the language of hypertext this is called //transclusion//. The pages will render in distinct tables. You can also load external pages in a more limited fashion with the [FrameInclude|Help:FrameIncludePlugin] plugin. +The **~IncludePage** [[Help:WikiPlugin|plugin]] will "include" other pages in this wiki. In the language of hypertext this is called //transclusion//. +The pages will render in distinct tables. You can also load external pages in a more limited fashion with the [[Help:FrameIncludePlugin|FrameInclude]] plugin. == Usage {{{ @@ -76,12 +77,12 @@ The **~IncludePage** [[Help:WikiPlugin|plugin]] will "include" other pages in th === ~IncludePage page=Help/~AllPagesPlugin sections=2 -Does not work. +Does not work in Wikicreole syntax == Known bugs -* [~RedirectTo|Help:RedirectToPlugin] plugin is not handled correctly. +* [[Help:RedirectToPlugin|~RedirectTo]] plugin is not handled correctly. * Line and word limit doesn't work if the included page itself includes a plugin. * "sections" parameter does not work if sections to include are in Wikicreole syntax @@ -93,9 +94,9 @@ Does not work. == See Also -* [Help:IncludePagesPlugin] (to include multiple pages) -* [Help:TemplatePlugin] (to include a page with parameters) -* [Help:FrameIncludePlugin] (to include an external page) +* [[Help:IncludePagesPlugin]] (to include multiple pages) +* [[Help:TemplatePlugin]] (to include a page with parameters) +* [[Help:FrameIncludePlugin]] (to include an external page) ---- diff --git a/pgsrc/Help%2FInterWiki b/pgsrc/Help%2FInterWiki index d4fa741dd..ff8696043 100644 --- a/pgsrc/Help%2FInterWiki +++ b/pgsrc/Help%2FInterWiki @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -29,17 +29,17 @@ is that ~PhpWiki supports '%s' within the URLs in the map--see the entry for RFC for an example of how this works. Not all of the entries in the InterWikiMap are actual wikis. For -example, these are just regular web sites: Dictionary:fungible, -[[JargonFile:Alderson loop]], [[IMDB:Roman Holiday]], RFC:2822, and -ISBN:020171499X. +example, these are just regular web sites: [[Dictionary:fungible]], +[[JargonFile:Alderson loop]], [[IMDB:Roman Holiday]], [[RFC:2822]], and +[[ISBN:020171499X]]. The "Category" moniker is a special entry which allows one to link a wiki page to a Category page without creating a back-reference. Thus -Category:Category links to the [[CategoryCategory]] page, yet this page +[[Category:Category]] links to the [[CategoryCategory]] page, yet this page won't show up in the back-links listing of [[CategoryCategory]]. The term "~InterWiki" also refers to a broader concept. See -PhpWiki:InterWikiSearch for more links. +[[PhpWiki:InterWikiSearch]] for more links. ---- [[PhpWikiDocumentation]] diff --git a/pgsrc/Help%2FLinkIcons b/pgsrc/Help%2FLinkIcons index 8cffbad63..db47fc2cb 100644 --- a/pgsrc/Help%2FLinkIcons +++ b/pgsrc/Help%2FLinkIcons @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,24 +8,18 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -**~LinkIcons** are an optional new feature of ~PhpWiki. When activated, +**~LinkIcons** are an optional feature of ~PhpWiki. When activated, icons will be displayed in front of URLs to indicate the type of link. -* [themes/default/images/http.png] - http link -* [themes/default/images/url.png] - generic internet link -* [themes/default/images/interwiki.png] - InterWiki link -* [themes/default/images/https.png] - https link -* [themes/default/images/mailto.png] - mailto link -* [themes/default/images/ftp.png] - ftp link +| {{/themes/default/images/http.png}} | http link +| {{/themes/default/images/url.png}} | generic internet link +| {{/themes/default/images/interwiki.png}} | Interwiki link +| {{/themes/default/images/https.png}} | https link +| {{/themes/default/images/mailto.png}} | mailto link +| {{/themes/default/images/ftp.png}} | ftp link **Note**: Some of the default icons use the alpha channel feature of -the [PNG | http://www.libpng.org/pub/png/png-sitemap.html] image format +the [[http://www.libpng.org/pub/png/png-sitemap.html|PNG]] image format for smooth rendering on any page color or textured background. Older browsers may not display all the images properly. @@ -36,14 +30,14 @@ the administrator has enabled this feature. === ~InterWiki links -* ~InterWiki link PhpWiki:InterWiki -* A named ~InterWiki [read WhyWikiWorks at c2|Wiki:WhyWikiWorks]. +* ~InterWiki link [[PhpWiki:InterWiki]] +* A named ~InterWiki [[Wiki:WhyWikiWorks|read WhyWikiWorks at c2]]. -===URLs +=== URLs -* Email address [PhpWiki-talk mailing list|mailto:phpwiki-talk@lists.sourceforge.net] -* Normal http link [PhpWiki's Home Page|http://phpwiki.sourceforge.net/phpwiki/] -* Secure http link [PhpWiki's Home Page|https://phpwiki.sourceforge.net/phpwiki/] +* Email address [[mailto:phpwiki-talk@lists.sourceforge.net|PhpWiki-talk mailing list]] +* Normal http link [[http://phpwiki.sourceforge.net/phpwiki/|PhpWiki's Home Page]] +* Secure http link [[https://phpwiki.sourceforge.net/phpwiki/|PhpWiki's Home Page]] * File transfer ftp://ftp.sourceforge.net/ //A generic icon is shown for other less common link types.// diff --git a/pgsrc/Help%2FListSubpagesPlugin b/pgsrc/Help%2FListSubpagesPlugin index df5b2ff46..56ab415e0 100644 --- a/pgsrc/Help%2FListSubpagesPlugin +++ b/pgsrc/Help%2FListSubpagesPlugin @@ -1,4 +1,4 @@ -Date: Fri, 3 Apr 2009 11:48:17 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -26,19 +26,19 @@ All ~PageList arguments, plus the following ones. ! Description ! Default value |- -| basepage +| **basepage** | The page to execute upon | Current pagename |- -| maxpages +| **maxpages** | Maximum number of pages to include | none |- -| noheader +| **noheader** | Do not display header | false |- -| info +| **info** | List of columns to display | none |} diff --git a/pgsrc/Help%2FMostPopularPlugin b/pgsrc/Help%2FMostPopularPlugin index d75f6e90b..1ab91e6ad 100644 --- a/pgsrc/Help%2FMostPopularPlugin +++ b/pgsrc/Help%2FMostPopularPlugin @@ -1,4 +1,4 @@ -Date: Fri, 3 Apr 2009 13:12:56 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -26,19 +26,19 @@ All ~PageList arguments, plus the following ones. ! Description ! Default value |- -| limit +| **limit** | The number of pages to display. If the limit is negative, the least popular pages will be displayed. If the limit is 0, all visited pages will be displayed. | 20 |- -| sortby +| **sortby** | Page sorting order | -hits |- -| noheader +| **noheader** | Do not display header | false |- -| info +| **info** | List of columns to display | hits |} diff --git a/pgsrc/Help%2FNoCachePlugin b/pgsrc/Help%2FNoCachePlugin index c8e603b5b..5d18cce3e 100644 --- a/pgsrc/Help%2FNoCachePlugin +++ b/pgsrc/Help%2FNoCachePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,7 +23,7 @@ Don't cache the following page. Mostly used for plugins, which display dynamic c ! Description ! Default value |- -| nocache +| **nocache** | if nocache=purge, delete the whole cache for this page | 1 |} diff --git a/pgsrc/Help%2FPageTrailPlugin b/pgsrc/Help%2FPageTrailPlugin index d3128463b..a1016aa63 100644 --- a/pgsrc/Help%2FPageTrailPlugin +++ b/pgsrc/Help%2FPageTrailPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -28,15 +28,15 @@ Typically add to some template at the top or at the bottom. See themes/blog. ! Description ! Default value |- -| numberlinks +| **numberlinks** | number of links to display | 5 |- -| invisible +| **invisible** | | false |- -| duplicates +| **duplicates** | | false |} diff --git a/pgsrc/Help%2FPopUpPlugin b/pgsrc/Help%2FPopUpPlugin index 665f20b94..61c8ec7f0 100644 --- a/pgsrc/Help%2FPopUpPlugin +++ b/pgsrc/Help%2FPopUpPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,33 +23,61 @@ Display a page in a clickable popup link. ! Description ! Default value |- -| link || || HomePage +| link +| +| HomePage |- -| title || || +| **title** +| +| |- -| text || || +| **text** +| +| |- -| width || || 500 +| **width** +| +| 500 |- -| height || || 400 +| **height** +| +| 400 |- -| resizable || || no +| **resizable** +| +| no |- -| scrollbars || || no +| **scrollbars** +| +| no |- -| toolbar || || no +| **toolbar** +| +| no |- -| location || || no +| **location** +| +| no |- -| directories || || no +| **directories** +| +| no |- -| status || || no +| **status** +| +| no |- -| menubar || || no +| **menubar** +| +| no |- -| copyhistory || || no +| **copyhistory** +| +| no |- -| close || || no +| **close** +| +| no |} == Example diff --git a/pgsrc/Help%2FPopularNearbyPlugin b/pgsrc/Help%2FPopularNearbyPlugin index 0755107cf..3e9439a95 100644 --- a/pgsrc/Help%2FPopularNearbyPlugin +++ b/pgsrc/Help%2FPopularNearbyPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,19 +23,19 @@ The **~PopularNearby** [[Help:WikiPlugin|plugin]] will list the most popular pag ! Description ! Default value |- -| pagename +| **pagename** | Pagename to look for | empty |- -| mode +| **mode** | nearby or incoming or outgoing | nearby |- -| limit +| **limit** | Maximum number of pages | 5 |- -| noheader +| **noheader** | Display header or not | false |} diff --git a/pgsrc/Help%2FPreferenceAppPlugin b/pgsrc/Help%2FPreferenceAppPlugin index 676c3cebf..7592421ef 100644 --- a/pgsrc/Help%2FPreferenceAppPlugin +++ b/pgsrc/Help%2FPreferenceAppPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -31,31 +31,31 @@ budget is 100 then ~PreferenceApp might assign 20 units of my budget to Moutain ! Description ! Default value |- -| category +| **category** | | null |- -| lockedBudget +| **lockedBudget** | | null |- -| pageTextLabel +| **pageTextLabel** | | null |- -| group +| **group** | | null |- -| roundCalc +| **roundCalc** | | true |- -| neutralRating +| **neutralRating** | | 3 |- -| declareBudget +| **declareBudget** | | true |} diff --git a/pgsrc/Help%2FRecentChangesPlugin b/pgsrc/Help%2FRecentChangesPlugin index d44b0f55d..3c12fbefc 100644 --- a/pgsrc/Help%2FRecentChangesPlugin +++ b/pgsrc/Help%2FRecentChangesPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -24,71 +24,71 @@ modifications in the wiki. ! Description ! Default value |- -| pagename +| **pagename** | The page to execute upon | current pagename |- -| days +| **days** | Number of days. Specifying 0 will display modifications since wiki creation. | 2 |- -| show_minor +| **show_minor** | Show minor modifications | false |- -| show_major +| **show_major** | Show major modifications | true |- -| show_all +| **show_all** | Display a page multiple times if it was modified more that once. | false |- -| show_deleted +| **show_deleted** | Show deleted pages | sometimes |- -| only_new +| **only_new** | Show only new pages | false |- -| author +| **author** | Show only modifications from a specific author | false |- -| owner +| **owner** | Show only pages from a specific owner | false |- -| limit +| **limit** | Do not show more pages that the limit. | false |- -| format +| **format** | | false |- -| daylist +| **daylist** | | false |- -| difflinks +| **difflinks** | | true |- -| historylinks +| **historylinks** | | false |- -| caption +| **caption** | | |- -| category +| **category** | | |- -| pagematch +| **pagematch** | | |} diff --git a/pgsrc/Help%2FRedirectToPlugin b/pgsrc/Help%2FRedirectToPlugin index 8e50d3a8e..de5388926 100644 --- a/pgsrc/Help%2FRedirectToPlugin +++ b/pgsrc/Help%2FRedirectToPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -21,11 +21,11 @@ Use only one of these arguments at a time. ! Description ! Default value |- -| page +| **page** | The page to redirect to (a wiki page name). | none |- -| href +| **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.) | none |} diff --git a/pgsrc/Help%2FRichTablePlugin b/pgsrc/Help%2FRichTablePlugin index 315815477..2d14c0c87 100644 --- a/pgsrc/Help%2FRichTablePlugin +++ b/pgsrc/Help%2FRichTablePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,24 +8,24 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -The **~RichTable** [[Help:WikiPlugin|plugin]] is a plugin that takes off from the [OldStyleTable|Help:OldStyleTablePlugin] plugin. It allows a user to specify arbitrary properties of , and
with a very simple markup. +The **~RichTable** [[Help:WikiPlugin|plugin]] is a plugin that takes off from the [[Help:OldStyleTablePlugin|OldStyleTable]] plugin. It allows a user to specify arbitrary properties of ####, #### and ##
## with a very simple markup. -The contents of each cell are individually processed by the ~BlockParser. This means that you can do interesting things like put *invoke plugins*, use *enumerated lists* etc within each cell! +The contents of each cell are individually processed by the ~BlockParser. This means that you can do interesting things like put **invoke plugins**, use **enumerated lists** etc within each cell! -*A "-" (dash) at the start of a new line represents a new row in the table. -*A "|" (vertical bar or pipe) at the start of a new line represents a cell. -*Attributes for the tags - *A line that starts with a "*" (star or asterisk) after a "|" is parsed for attributes for the corresponding cell. - *Attributes for the table are given on line that starts with a "*", only if the line appears before any other line except whitespace. - *A line that starts with a - 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 "*" 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 "*" after the "|" 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 "~~" and "?>" should be escaped as "\~~" and "?\>". I havn't discovered any other characters yet that might need to be escaped. This is required for the block parser to work. +* A ##"-"## (dash) at the start of a new line represents a new row in the table. +* A ##"|"## (vertical bar or pipe) at the start of a new line represents a cell. +* Attributes for the tags +** A line that starts with a ##"*"## (star or asterisk) after a ##"|"## is parsed for attributes for the corresponding cell. +** Attributes for the table are given on line that starts with a ##"*"##, only if the line appears before any other line except whitespace. +** A line that starts with a ##-## 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 ##"*"## 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 ##"*"## after the ##"|"## 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 ##"~~"## and ##"?>"## should be escaped as ##"\~~"## and ##"?\>"##. I havn't discovered any other characters yet that might need to be escaped. This is required for the block parser to work. We allow attributes with or without quotes (") {{{ @@ -52,11 +52,11 @@ BackLinks ?\> - bgcolor=white | -#One -#Two +# One +# Two | -*Foo -*Bar +* Foo +* Bar - bgcolor=cyan This line gets dropped ... no cell to contain it! |* bgcolor=#f0f0ff, align=center @@ -87,11 +87,11 @@ BackLinks ?\> - bgcolor=white | -#One -#Two +# One +# Two | -*Foo -*Bar +* Foo +* Bar - bgcolor=cyan This line gets dropped ... no cell to contain it! |* bgcolor=#f0f0ff, align=center diff --git a/pgsrc/Help%2FRssFeedPlugin b/pgsrc/Help%2FRssFeedPlugin index 184b6175d..8ea39edf2 100644 --- a/pgsrc/Help%2FRssFeedPlugin +++ b/pgsrc/Help%2FRssFeedPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -24,26 +24,26 @@ The **~RssFeed** [[Help:WikiPlugin|plugin]] allows to display external RSS feeds ! Description ! Default value |- -| url +| **url** | RSS Feed URL | (empty) |- -| feed +| **feed** | RSS Feed Name | (empty) |- -| description +| **description** | Description of the RSS Feed | (empty) |- -| maxitem +| **maxitem** | Max. number of entries (0 = unlimited) | ~0 |} == Examples -=== ~PhpWikiRss feed for [PhpWiki:RecentChanges] +=== ~PhpWikiRss feed for [[PhpWiki:RecentChanges]] {{{ < ---- diff --git a/pgsrc/Help%2FSearchHighlightPlugin b/pgsrc/Help%2FSearchHighlightPlugin index e03ac9f7f..073de30f7 100644 --- a/pgsrc/Help%2FSearchHighlightPlugin +++ b/pgsrc/Help%2FSearchHighlightPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,15 +23,15 @@ See also http://wordpress.org/about/shots/1.2/plugins.png ! Description ! Default value |- -| s +| **s** | The search term | |- -| case_exact +| **case_exact** | boolean | |- -| regex +| **regex** | boolean | |} diff --git a/pgsrc/Help%2FSemanticSearchPlugin b/pgsrc/Help%2FSemanticSearchPlugin index a579da9df..555e1fbf0 100644 --- a/pgsrc/Help%2FSemanticSearchPlugin +++ b/pgsrc/Help%2FSemanticSearchPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -41,47 +41,47 @@ The Advanced query can do a freeform query expression with multiple comparison a ! Description ! Default value |- -| s +| **s** | linkvalue query string | * |- -| page +| **page** | which pages (glob allowed) | * (all) |- -| relation +| **relation** | linkname. which relations. | all |- -| attribute +| **attribute** | linkname. which attributes. | all |- -| attr_op +| **attr_op** | a funny written way for equality for pure aesthetic pleasure "All attributes which have this value set" | := |- -| units +| **units** | | |- -| case_exact +| **case_exact** | | true |- -| regex +| **regex** | no word splitting, if no regex op is present, defaults to exact match | auto |- -| noform +| **noform** | don't show form with results. | false |- -| noheader +| **noheader** | no caption | false |- -| info +| **info** | valid: pagename, relation, linkto, attribute, value and all other pagelist columns | false |} diff --git a/pgsrc/Help%2FTranscludePlugin b/pgsrc/Help%2FTranscludePlugin index 1c770a1b9..5db76d7e2 100644 --- a/pgsrc/Help%2FTranscludePlugin +++ b/pgsrc/Help%2FTranscludePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -18,19 +18,19 @@ The **Transclude** [[Help:WikiPlugin|plugin]] can be used to embed include whole ! Description ! Default value |- -| src +| **src** | The URL of the page to transclude | //none// |- -| title +| **title** | The title of the page to transclude | //Transcluded page// |- -| height +| **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.) | 450 |- -| quiet +| **quiet** | If set, frame appears as normal content | false |} diff --git a/pgsrc/Help%2FUnfoldSubpagesPlugin b/pgsrc/Help%2FUnfoldSubpagesPlugin index bb2560c67..4bf1c327d 100644 --- a/pgsrc/Help%2FUnfoldSubpagesPlugin +++ b/pgsrc/Help%2FUnfoldSubpagesPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -34,47 +34,47 @@ The section extractor is currently quite unstable. ! Description ! Default value |- -| pagename +| **pagename** | Any pagename or if empty the current page | empty |- -| quiet +| **quiet** | Print no header | false |- -| sortby +| **sortby** | Sort by + (ASC) or - (DESC) and one column.\\Multiple columns like sortby="-hits,-mtime" not yet supported.\\Supported columns: ~[+|-]pagename, ~[+|-]mtime, ~[+|-]hits. | pagename |- -| maxpages +| **maxpages** | Maximum number of pages to include or all if not defined. | false |- -| sections +| **sections** | Maximum number of sections per page to include or all if not defined. | false |- -| section +| **section** | Include this named section per page only if defined. | empty |- -| sectionhead +| **sectionhead** | When including a named section show the heading. | false |- -| smalltitle +| **smalltitle** | If set, hide transclusion-title, just have a small link at the start of the page. | false |- -| words +| **words** | Maximum number of words per page to include. | false |- -| lines +| **lines** | Maximum number of lines per page to include. | false |- -| bytes +| **bytes** | Maximum number of bytes per page to include. | false |} @@ -86,10 +86,10 @@ The section extractor is currently quite unstable. ! Argument ! Description |- -| pages +| **pages** | Deprecated. Renamed to maxpages. |- -| sort +| **sort** | 'asc' or 'desc'. Deprecated: use "+" or "-" before the column name with sortby. |} diff --git a/pgsrc/Help%2FWhoIsOnlinePlugin b/pgsrc/Help%2FWhoIsOnlinePlugin index c47a0a21b..bf0ce70c7 100644 --- a/pgsrc/Help%2FWhoIsOnlinePlugin +++ b/pgsrc/Help%2FWhoIsOnlinePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,19 +23,19 @@ The **~WhoIsOnline** [[Help:WikiPlugin|plugin]] shows summary information of the ! Description ! Default value |- -| mode +| **mode** | summary or detail | summary |- -| pagename +| **pagename** | refer to the page with the other mode | [pagename] |- -| allow_detail +| **allow_detail** | if false, page is ignored | false |- -| mode +| **mode** | | false |} diff --git a/pgsrc/Help%2FWikiAdminChmodPlugin b/pgsrc/Help%2FWikiAdminChmodPlugin index add693bd5..4ecd85b11 100644 --- a/pgsrc/Help%2FWikiAdminChmodPlugin +++ b/pgsrc/Help%2FWikiAdminChmodPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,11 +23,11 @@ The **~WikiAdminChmod** [[Help:WikiPlugin|plugin]] allows to change the mode bit ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |- -| perm +| **perm** | Page permissions | //None// |} diff --git a/pgsrc/Help%2FWikiAdminChownPlugin b/pgsrc/Help%2FWikiAdminChownPlugin index c101706d1..a8c99efdc 100644 --- a/pgsrc/Help%2FWikiAdminChownPlugin +++ b/pgsrc/Help%2FWikiAdminChownPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,11 +23,11 @@ The **~WikiAdminChown** [[Help:WikiPlugin|plugin]] allows to change the owner of ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |- -| user +| **user** | User name | //None// |} diff --git a/pgsrc/Help%2FWikiAdminMarkupPlugin b/pgsrc/Help%2FWikiAdminMarkupPlugin index 7e2d23b60..7f90880fa 100644 --- a/pgsrc/Help%2FWikiAdminMarkupPlugin +++ b/pgsrc/Help%2FWikiAdminMarkupPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,11 +23,11 @@ The **~WikiAdminMarkup** [[Help:WikiPlugin|plugin]] allows to change the markup ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |- -| markup +| **markup** | Markup version | 2 |} diff --git a/pgsrc/Help%2FWikiAdminPurgePlugin b/pgsrc/Help%2FWikiAdminPurgePlugin index b7cceaa24..2b70f05c8 100644 --- a/pgsrc/Help%2FWikiAdminPurgePlugin +++ b/pgsrc/Help%2FWikiAdminPurgePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,7 +23,7 @@ The **~WikiAdminPurge** [[Help:WikiPlugin|plugin]] allows to purge pages. ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |} diff --git a/pgsrc/Help%2FWikiAdminRemovePlugin b/pgsrc/Help%2FWikiAdminRemovePlugin index d1bc9ab1c..7f534f540 100644 --- a/pgsrc/Help%2FWikiAdminRemovePlugin +++ b/pgsrc/Help%2FWikiAdminRemovePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,7 +23,7 @@ The **~WikiAdminRemove** [[Help:WikiPlugin|plugin]] allows to remove pages. ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |} diff --git a/pgsrc/Help%2FWikiAdminRenamePlugin b/pgsrc/Help%2FWikiAdminRenamePlugin index 3bdc1db72..221375c5a 100644 --- a/pgsrc/Help%2FWikiAdminRenamePlugin +++ b/pgsrc/Help%2FWikiAdminRenamePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,11 +23,11 @@ The **~WikiAdminRename** [[Help:WikiPlugin|plugin]] allows to rename pages. ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |- -| updatelinks +| **updatelinks** | Change pagename in all linked pages also? | false |} diff --git a/pgsrc/Help%2FWikiAdminSearchReplacePlugin b/pgsrc/Help%2FWikiAdminSearchReplacePlugin index 0d7232cce..75890bc77 100644 --- a/pgsrc/Help%2FWikiAdminSearchReplacePlugin +++ b/pgsrc/Help%2FWikiAdminSearchReplacePlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -23,7 +23,7 @@ The **~WikiAdminSearchReplace** [[Help:WikiPlugin|plugin]] allows to search and ! Description ! Default value |- -| s +| **s** | Pages to select | //None// |} diff --git a/pgsrc/Help%2FWikiAdminUtilsPlugin b/pgsrc/Help%2FWikiAdminUtilsPlugin index e0851eb87..d34509b1c 100644 --- a/pgsrc/Help%2FWikiAdminUtilsPlugin +++ b/pgsrc/Help%2FWikiAdminUtilsPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -30,11 +30,11 @@ Some special actions for [[PhpWikiAdministration]] and [[PhpWikiDebug]]. ! Description ! Default value |- -| action +| **action** | Valid action are: "purge-cache", "purge-bad-pagenames", "purge-empty-pages", "access-restrictions", "email-verification", "convert-cached-html", "db-check" and "db-rebuild" | //None// |- -| label +| **label** | Custom button text | Each action has a default button text |} diff --git a/pgsrc/Help%2FWikiPlugin b/pgsrc/Help%2FWikiPlugin index 6e78a391d..b67c40dc4 100644 --- a/pgsrc/Help%2FWikiPlugin +++ b/pgsrc/Help%2FWikiPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 X-Rcs-Id: $Id$ Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) Content-Type: application/x-phpwiki; @@ -12,18 +12,18 @@ A *plugin* is some PHP code that: * lives in =phpwiki/lib/plugin/.php= * implements the ~WikiPlugin interface by extending that class. -There are many plugins already distributed with PhpWiki. Simply look +There are many plugins already distributed with ~PhpWiki. Simply look in the =lib/plugin= directory or see the [PluginManager] list or see all the [Help/*Plugin pages|phpwiki:TitleSearch?s=Help/*Plugin]. To write your own, look at the [Help: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 +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. +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. @@ -164,7 +164,7 @@ invocation with the same or translated pluginname as the pagename. An *action* is together with the *pagename* argument the basic ~PhpWiki argument. It can both be GET or POST actions. Actions are untranslated, always -english, pagenames can be localized. +English, pagenames can be localized. 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. diff --git a/pgsrc/Help%2F_GroupInfoPlugin b/pgsrc/Help%2F_GroupInfoPlugin index f18e0220b..0f5faa611 100644 --- a/pgsrc/Help%2F_GroupInfoPlugin +++ b/pgsrc/Help%2F_GroupInfoPlugin @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -28,16 +28,16 @@ page _(default: current pagename)_: == Example -See [DebugGroupInfo] +See [[DebugGroupInfo]] == Author -[Charles Corrigan|PhpWiki:CharlesCorrigan] +* [[PhpWiki:CharlesCorrigan|Charles Corrigan]] == See Also -* [DebugGroupInfo] is the corresponding [Help:ActionPage]. -* [Help:_AuthInfoPlugin] -* [Help:_BackendInfoPlugin] +* [[DebugGroupInfo]] is the corresponding [[Help:ActionPage]]. +* [[Help:_AuthInfoPlugin]] +* [[Help:_BackendInfoPlugin]] ---- diff --git a/pgsrc/HomePage b/pgsrc/HomePage index bacb05d42..57c911870 100644 --- a/pgsrc/HomePage +++ b/pgsrc/HomePage @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -9,11 +9,11 @@ Content-Type: application/x-phpwiki; Content-Transfer-Encoding: binary * What is a [[Help:WikiWikiWeb|WikiWikiWeb]]? A description of this application. -* Learn [HowToUseWiki|Help:HowToUseWiki] and learn about [AddingPages|Help:AddingPages]. -* Use the [SandBox] page to experiment with Wiki pages. -* Please sign your name in [RecentVisitors]. -* See [RecentChanges] for the latest page additions and changes. -* Find out which pages are [MostPopular]. -* Read the [ReleaseNotes] and [RecentReleases]. -* Administer this wiki via [PhpWikiAdministration]. +* Learn [[Help:HowToUseWiki|HowToUseWiki]] and learn about [[Help:AddingPages|AddingPages]]. +* Use the [[SandBox]] page to experiment with Wiki pages. +* Please sign your name in [[RecentVisitors]]. +* See [[RecentChanges]] for the latest page additions and changes. +* Find out which pages are [[MostPopular]]. +* Read the [[ReleaseNotes]] and [[RecentReleases]]. +* Administer this wiki via [[PhpWikiAdministration]]. * See more [[PhpWikiDocumentation]]. diff --git a/pgsrc/PhpWikiPoll b/pgsrc/PhpWikiPoll index bbd352afd..0d8fc2f7e 100644 --- a/pgsrc/PhpWikiPoll +++ b/pgsrc/PhpWikiPoll @@ -1,4 +1,4 @@ -Date: Thu, 26 Mar 2009 11:34:32 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,7 +8,7 @@ Content-Type: application/x-phpwiki; charset=UTF-8 Content-Transfer-Encoding: binary -Please answer our poll about PhpWiki: +Please answer our poll about [[Help:PhpWiki|PhpWiki]]: <> -%%% <> ---- diff --git a/pgsrc/ReleaseNotes b/pgsrc/ReleaseNotes index 349b1fd4f..60fe6efc8 100644 --- a/pgsrc/ReleaseNotes +++ b/pgsrc/ReleaseNotes @@ -1,4 +1,4 @@ -Date: Fri, 27 Mar 2009 09:57:55 +0000 +Date: Sat, 18 Apr 2009 18:17:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.3.14-20080124) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -10,12 +10,12 @@ Content-Transfer-Encoding: binary <> -!!! 1.3.15 ?? 2009 Reini Urban, Sabri Labbenes, Marc-Etienne Vargenau +== 1.3.15 ?? 2009 Reini Urban, Sabri Labbenes, Marc-Etienne Vargenau Improved dumping, pageset handling for format= with ~ActionPages. e.g. dump pagesets or multi-page pdf's. -!! Fixes +=== Fixes * fix ~PagePerm for multiple groups: not a member and undecided: check other groups * fix rss button actions for special RecentChanges actions (UserContribs, PageHistory, ...) * fix Bug#1749950 accesslog SQL duration float with "," @@ -42,7 +42,7 @@ e.g. dump pagesets or multi-page pdf's. * fix Bug#2010748 Missing image * fix Bug#1831881 Fatal database error when sorting columns (vargenau) -!! Changes +=== Changes * changed ~SemanticSearch query semantics: all regex=auto terms with no regex chars (.+*?^$") will be searched exact, and not with regex=auto. This means no word splitting, no substrings. * ranked search for title and fulltext for non-SQL backends. Simple score function. @@ -70,7 +70,7 @@ e.g. dump pagesets or multi-page pdf's. * and should not appear even when not included * split PhpWikiAdministration in two pages: PhpWikiAdministration and PhpWikiDebug -!! New +=== New * ~PageList supports listtype=ul,ol,dl. dl used by FullTextSearch * pageable textsearch results * external search button by using Search: and searchtype=external @@ -89,26 +89,26 @@ e.g. dump pagesets or multi-page pdf's. * new plugin: [[Help:CurrentTimePlugin|CurrentTime]] (vargenau) * new plugin: [[Help:ChartPlugin|Chart]] (vargenau) -!!! 1.3.14 July, 1 2007, Reini Urban +== 1.3.14 July, 1 2007, Reini Urban -!! Fixes +=== Fixes * Fix the broken LDAP fix from 1.3.13p1 * fixed sortby with multiple pagelists -!! Changes +=== Changes * changes all themeinfo.php files, moved global to method load() to be easier derived from custom theme classes, main now calls $~WikiTheme->load * ~MailNotify is now silent unless DEBUG -!! New +=== New * added experimental ATOM support * added Changes and Upload button to edit -!!! 1.3.13p1 June, 9 2007, Reini Urban +== 1.3.13p1 June, 9 2007, Reini Urban An immediate security fix for 1.3.13, plus some minor fixes. -!! Fixes +=== Fixes * LDAP Auth: Disallow empty passwords! Certain ldap implementations return true on empty passwords with ldap_bind(). * LDAP Auth: fix password quoting @@ -123,13 +123,13 @@ An immediate security fix for 1.3.13, plus some minor fixes. * fix links in pgsrc/Help%2FSemanticRelations * fix pgsrc/Help%2FWikiPlugin -!! Changes +=== Changes * allow \n and single letter pages in ~{~{ ~}~} template syntax. patch #1732793 by ~AlJeux and ~ReiniUrban * with ENABLE_SPAMBLOCKLIST check only new external links: max 5, allow interwiki links, and improve failed output. -!!! 1.3.13 June, 2 2007, Reini Urban +== 1.3.13 June, 2 2007, Reini Urban This is major feature release which will be the base for the stable 1.4.0. The highlights are ~SemanticWeb support, basic support for @@ -139,7 +139,7 @@ oracle enhancements, moving Help pages into Help/, support different charsets in pgsrc and Windows NTLM auth support via ~HttpAuth, a lot more plugins and enhancements. UTF-8 should work. -!! Fixes +=== Fixes * fix ~UpLoad to disallow all php extensions * DB: use ANSI SQL statements (oracle by Bob Peele & Christopher Jones, postgresql by Reini Urban) @@ -169,7 +169,7 @@ more plugins and enhancements. UTF-8 should work. * fixed wikilens with dba and RATING_STORAGE=SQL. RATING_STORAGE=WIKIPAGE not yet fixed. * fixed action=diff error with external links -!! Changes +=== Changes * add ~UpLoad policy DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS, default: false * ~SemanticWeb: add linkrelation support, getPageLinks returns now an array of hashes. optimize get_links for relations. @@ -217,7 +217,7 @@ more plugins and enhancements. UTF-8 should work. * Changed all default Template vars to expanded to uppercase: PAGENAME, USERID, ... * CSS: no ~MonoBook css hacks/requests, check special browser versions in php -!! New +=== New * add ~SemanticRelations syntax, db structure and attribute units. Sample: pagename=~SanDiego is_a :: city => ~SanDiego relation = is_a, linkto = city population := 1,305,736 (numeric units) @@ -269,7 +269,7 @@ more plugins and enhancements. UTF-8 should work. * added RecentChanges format=contribs for ~MonoBook theme: => UserContribs * added ~MonoBook accesskeys -!!! 1.3.12p3 Jun, 18 2006, Reini Urban +== 1.3.12p3 Jun, 18 2006, Reini Urban * fix ~[/Subpage~] links * fix pref storing of already crypted passwords. bug #1327470 (Tom Harding) @@ -309,24 +309,24 @@ more plugins and enhancements. UTF-8 should work. * removed Wordpress buttons, transparent default buttons should be used. * disabled RelatedChanges button -!!! 1.3.12p2 Mar, 7 2006, Reini Urban +== 1.3.12p2 Mar, 7 2006, Reini Urban * fix change prefs for File ~WikiUser * fix ~HomepagePrefs update message * remove plugin/Imdb * apply ~PluginToolbarButton fix from cvs -!!! 1.3.12p1 Mar, 4 2006, Reini Urban +== 1.3.12p1 Mar, 4 2006, Reini Urban * fix "Call-time pass-by-reference" in ~CreateBib * fix parse error in ~SiteMap.php -!!! 1.3.12 Mar, 4 2006, Reini Urban +== 1.3.12 Mar, 4 2006, Reini Urban Rename function hash() and method final() for php-5.1 compatibility. Add various backports from cvs: -!! Fixes +=== Fixes * fix ~ZipReader * Fix "Call-time pass-by-reference has been deprecated" errors, allow_call_time_pass_reference = Off @@ -350,7 +350,7 @@ Add various backports from cvs: * fix signout pref error * don't log on ACCESS_LOG_SQL < 2 -!! Changes +=== Changes * cache ~EditToolbar popup content * beautify SCRIPT lines * added cfg-able markups only for default ~TextTransformation, not @@ -365,7 +365,7 @@ Add various backports from cvs: * ~VisualWiki: remove INCLUDED from EXCLUDED, includes override excludes. * improve postgresql schemas (tsearch2 and stored procedures not yet) -!! New +=== New * added NUM_SPAM_LINKS as config.ini option * new ENABLE_SPAMBLOCKLIST, lib/~SpamBlocklist.php: check external links against surbl.org and bl.spamcop.net @@ -377,9 +377,9 @@ Add various backports from cvs: slides mode, real thumbnails * add more backends to the testsuite (PearDB_pgsql, ...) -!!! 1.3.11p1 Sep, 18 2005, Reini Urban +== 1.3.11p1 Sep, 18 2005, Reini Urban -!! Fixes +=== Fixes * added missing pgsrc/~OldStyleTablesPlugin * fixed ~OldStyleTables plugin with args * protect against Content-Length if headers_sent() @@ -389,7 +389,7 @@ Add various backports from cvs: * fixed passencrypt.php for PHP5 !register_long_arrays * fixed configurator for DATABASE_DSN, USER_AUTH_ORDER -!! Changes +=== Changes * optimized explodePageList to use SQL when available (titleSearch instead of getAllPages) * added optimization for a new ALL textsearch token @@ -397,7 +397,7 @@ Add various backports from cvs: * configurator takes default description from config-dist.ini * added some missing configurator constants -!!! 1.3.11 Sep, 11 2005, Reini Urban, Joel Uckelman +== 1.3.11 Sep, 11 2005, Reini Urban, Joel Uckelman Lots of bugfixes, and some feature and performance enhancements. @@ -409,12 +409,12 @@ New syntax and PhpWiki:PageListLibrary args. Because of SQL changes you'd need to ?action=upgrade to update for SQL. -!! Fixes +=== Fixes * fixed crash after login, by eliminating endless recursion in group isAdmin() checks * fixed syntax errors in signin.tmpl * fixed missing DEBUG warnings (Support #954260) -* PhpWiki is now allow_call_time_pass_reference = Off safe (php.ini) +* ~PhpWiki is now allow_call_time_pass_reference = Off safe (php.ini) Some external libraries are not (Pear_DB odbc, adodb oracle) * fixed sql statements for pagedata where it is not needed, fixing the typical ~PageList memory exhaustion on simple page lists. @@ -470,7 +470,7 @@ Because of SQL changes you'd need to ?action=upgrade to update for SQL. * fixed strict login on "Db" (by Mikhail Vladimirov) * more /tmp warnings on flatfile (by Joel Uckelman) -!! Changes +=== Changes * ~WikiAdminSetAcl functional * enabled PhpWiki:PagePermissions for all admin plugins (no admin required): Remove, Rename, Replace, ~SetAcl, Chown @@ -527,7 +527,7 @@ Because of SQL changes you'd need to ?action=upgrade to update for SQL. KEYWORD_LINK_REGEXP removed, * action=dumphtml dumps only the current page unless done from PhpWikiAdministration -!! New +=== New * new ENABLE_EDIT_TOOLBAR (from mediawiki), JS_SEARCHREPLACE, ~AddCategory, ~AddPlugin buttons * new other config options: @@ -605,25 +605,25 @@ Because of SQL changes you'd need to ?action=upgrade to update for SQL. * new ~TemplatePlugin, optionally mediawiki-style ~{~{Template~}~} syntax * new ENABLE_ACDROPDOWN moacdropdown library. fast xmlrpc communication nyi -!!! 1.2.11 +== 1.2.11 * support remove for $~WhichDatabase = file -!!! 1.2.10 +== 1.2.10 * support php5 with register_long_arrays = off -!!! 1.2.9 bugfix +== 1.2.9 bugfix * Jose Vina fixed MostPopular sorting for dba and dbm, which was broken since 1.2.3 -!!! 1.2.8 (the old-stable branch) Jan, 30 2005, Reini Urban +== 1.2.8 (the old-stable branch) Jan, 30 2005, Reini Urban * register_globals=off fix: fix and centralize broken register_globals=off logic. * update message catalog * replace mysql_pconnect by mysql_connect -!!! 1.2.7 (the old-stable branch) Jan, 6 2005, Reini Urban +== 1.2.7 (the old-stable branch) Jan, 6 2005, Reini Urban -PhpWiki 1.2.7 backport cvs release-1_2-branch enhancements never released with 1.2.3-1.2.6: +~PhpWiki 1.2.7 backport cvs release-1_2-branch enhancements never released with 1.2.3-1.2.6: * full xhtml conformity * split_pagename in title and header to help google * "INSTALL.Mac OS X" added from cvs @@ -636,24 +636,24 @@ PhpWiki 1.2.7 backport cvs release-1_2-branch enhancements never released with 1 * added minor_edit checkbox * print more meta tags: robots, favicon, language and PHPWIKI_VERSION -!!! 1.2.6 (the old-stable branch) Dec, 19 2004, Reini Urban +== 1.2.6 (the old-stable branch) Dec, 19 2004, Reini Urban Flatfile fixes and enhancement: * fixed !TitleSearch and Backlinks for flatfile. * enable MostPopular (hitcount storage) for flatfile -!!! 1.2.5 (the old-stable branch) Nov, 28 2004, Reini Urban +== 1.2.5 (the old-stable branch) Nov, 28 2004, Reini Urban * works with register_globals=off * adds user/password to pgsql, * fix zip and dumpserial on dba, dbm, msql and file, * and fixes a minor (un)lock issue, displaying the (un)locked page afterwards and not the ~FrontPage. -!!! 1.3.10 May, 13 2004, Reini Urban, Joby Walker +== 1.3.10 May, 13 2004, Reini Urban, Joby Walker In short: paging support, adodb rewrite, permission problem fixed. -!! Fixes +=== Fixes * fixed severe permission problem: Default permissions not honored. Everybody was able to edit. * set UserPreferences for bool and int fixed @@ -679,7 +679,7 @@ In short: paging support, adodb rewrite, permission problem fixed. * Theme buttons are now also searched in the default theme * numerous other minor bugfixes. -!! Changes +=== Changes * ADODB update from ancient mysql-only, to 4.21 with all supported databases. transaction support, with mysql locking-workarounds * pear not in our include_path anymore: either use your pear or our pear, @@ -698,7 +698,7 @@ In short: paging support, adodb rewrite, permission problem fixed. * some internal ~InlineParser optimization * DBAuthParam statement syntax change: variables now like '$userid' -!! New +=== New * new ini-style config instead of old index.php, by Joby Walker * paging support for pagelists longer than limit * ~PopularNearby plugin: same as the classic most popular footer @@ -710,7 +710,7 @@ In short: paging support, adodb rewrite, permission problem fixed. * new Crao theme from http://wiki.crao.net, by Arnaud Fontaine and Laurent Lunati * extended PhpWiki:InlineImages markup (size, border, ...) -!!! 1.3.9-p1 May,5 2004, Reini Urban +== 1.3.9-p1 May,5 2004, Reini Urban Bugfix patch for the following 1.3.9 problems: * Default permissions not honored. Everybody was able to edit. @@ -724,16 +724,16 @@ Bugfix patch for the following 1.3.9 problems: * ~HttpClient fixes for older php's * ~RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list -!!! 1.2.4 (the old-stable version) May, 4 2004, Reini Urban +== 1.2.4 (the old-stable version) May, 4 2004, Reini Urban * improves possible deadlocks in DBA, * fixes problems with DBA open failures. -!!! 1.2.3 (the old-stable version) Apr, 29 2004, Reini Urban +== 1.2.3 (the old-stable version) Apr, 29 2004, Reini Urban * added the most popular footer for dba * added remove for dba * fixed a warning on info page -!!! 1.3.9 Apr, 12 2004, Reini Urban +== 1.3.9 Apr, 12 2004, Reini Urban Bugfix release for the following 1.3.8 problems: * syntax errors in lib/plugin/~UpLoad.php @@ -746,7 +746,7 @@ Bugfix release for the following 1.3.8 problems: * added self-registration for ~DbPassUser * added ~GoTo plugin, ~RateIt action page -!!! 1.3.8 Jan-Apr 2004, Reini Urban +== 1.3.8 Jan-Apr 2004, Reini Urban External plugable authentification, DB prefs and sessions, some more fixes, docs, themes and plugins. @@ -766,7 +766,7 @@ some more fixes, docs, themes and plugins. ~RichTable (by Sameer D. Sahasrabuddhe), ~CreatePage and ~RateIt (by Dan Frankowski), ~RssFeed (by Arnaud Fontaine) -* added InterWiki image button support +* added ~InterWiki image button support * added Japanese language support (by Tadashi Jokagi) * added sqlite support (thanks to Matthew Palmer) * added theme and plugin-specific ~PageList column types and theme-specific UserPreferences @@ -792,14 +792,14 @@ some more fixes, docs, themes and plugins. * fixes for PHP5 compatibility started * fixed gettext, setlocale and update_locale problems -!!! 1.3.4 until 1.3.7, 2002-2003 Jeff, Carsten and Steve Wainstead +== 1.3.4 until 1.3.7, 2002-2003 Jeff, Carsten and Steve Wainstead * several stable releases with better documentation (most plugins) and various bugfixes. * ~EditMetaData (by Michael Van Dam) for example. (forgot what else was new) * Jochen Kalmbach's new ~UserFileManagement and ~UserRegistration didn't went upstream. (personal uploads, ...) -!!! 1.3.3 early 2002, Jeff strikes back, with the help of Carsten Klapp +== 1.3.3 early 2002, Jeff strikes back, with the help of Carsten Klapp * major feature enhancements: * Cache all output and use a clever page cache. Get rid of plugin-head. @@ -810,7 +810,7 @@ some more fixes, docs, themes and plugins. * XHTML dumps, WikiBlog as page type. * PluginManager and several more plugins. -!!! 1.3.2 early 2002, Reini Urban strikes: +== 1.3.2 early 2002, Reini Urban strikes: * Start of external authorisation in the config, but not in code. * Store Preferences in the users ~PersonalPage (Jeff) @@ -826,7 +826,7 @@ some more fixes, docs, themes and plugins. .... a small hole here .... (three years no detailed HISTORY. see the outline above) -!!! Jeffs Hacks +== Jeffs Hacks * New database API. See =lib/WikiDB.php= and =lib/WikiDB/backend.php= for the bulk of the documentation on this. The new database can @@ -854,23 +854,23 @@ some more fixes, docs, themes and plugins. * Expanded syntax for text search, Searches like "wiki or web -page" (or "(wiki or web) and not page") will now do more-or-less what they look like they'll do. -* Security Issues: PhpWiki will now work with PHP's =register_globals= +* Security Issues: ~PhpWiki will now work with PHP's =register_globals= set to off. -!!! 1.3.x development branch +== 1.3.x development branch * Pagenames in =PATH_INFO=. * File uploads: see PhpWikiAdministration. * UserPreferences. * Ugly ~MagicPhpWikiURLs for administrative links. -!!! 1.2 +== 1.2 * Database support for MySQL, Postgresql, mSQL, flat file and the new dba_ library in PHP4 is included. * Internationalization: support for different languages, down to the source level, is included. German, Spanish, Swedish and Dutch are - currently shipped with PhpWiki. An architecture is in place to + currently shipped with ~PhpWiki. An architecture is in place to easily add more languages. * New linking schemes using square brackets in addition to the old style ~BumpyText. @@ -888,15 +888,15 @@ some more fixes, docs, themes and plugins. * New markup constructs for ==, ==, =
=, =
= and more. * Tabless markup to supercede the older markup (both still supported). -!!! 1.1.9 +== 1.1.9 -PhpWiki 1.1.9 includes Spanish language pages, a full implementation +~PhpWiki 1.1.9 includes Spanish language pages, a full implementation for Postgresql, numerous bug fixes and more. See the =HISTORY= file for more info: http://phpwiki.sourceforge.net/phpwiki/HISTORY -!!! 1.1.6 +== 1.1.6 -PhpWiki 1.1.6 is a major revision of PhpWiki. The ability to have +~PhpWiki 1.1.6 is a major revision of ~PhpWiki. The ability to have themes (via an easy-to-edit template system) has been added; the schema for MySQL has been completely overhauled, breaking the page details into columns (for efficiency we agreed not to put references @@ -914,12 +914,12 @@ most active pages and other new features with the new database schema (and yes, these features will make it into the DBM version too). I also want to add mSQL support and test it under Zend, the new PHP4. -!!! 1.0.3 +== 1.0.3 Below are the release notes for version 1.03, the last release of the -1.0 PhpWiki series. --Steve Wainstead, mailto:swain@panix.com +1.0 ~PhpWiki series. --Steve Wainstead, mailto:swain@panix.com -PhpWiki was written because I am so interested in WikiWikiWeb~s, and I +~PhpWiki was written because I am so interested in ~WikiWikiWeb~s, and I haven't used PHP since version 2.0. I wanted to see how it had advanced. @@ -927,10 +927,10 @@ Version 1.0 is a near-perfect clone of the Portland Pattern Repository, http://c2.com/cgi-bin/wiki?WikiWikiWeb. In truth, I was using the Wiki script you can download from there as a model; that Wiki lacks a number of features the PPR has, like ~EditCopy. So in -truth PhpWiki is a kind of hybrid of the PPR and the generic Wiki you +truth ~PhpWiki is a kind of hybrid of the PPR and the generic Wiki you can get from there (which is written in Perl). -The one caveat of PhpWiki is the allowance of HTML if the line is +The one caveat of ~PhpWiki is the allowance of HTML if the line is preceded by a bar (or pipe, which is how I usually say it). (That's a '=|='). It was very simple to add, and the idea came from a posting somewhere on the PPR about how AT&T had an internal Wiki clone and -- 2.45.0