From: <var...@us...> - 2021-06-21 15:24:42
|
Revision: 10311 http://sourceforge.net/p/phpwiki/code/10311 Author: vargenau Date: 2021-06-21 15:24:45 +0000 (Mon, 21 Jun 2021) Log Message: ----------- Add "See Also" Modified Paths: -------------- trunk/pgsrc/Help%2FTeX2pngPlugin trunk/pgsrc/Help%2FTexToPngPlugin Modified: trunk/pgsrc/Help%2FTeX2pngPlugin =================================================================== --- trunk/pgsrc/Help%2FTeX2pngPlugin 2021-06-21 15:11:16 UTC (rev 10310) +++ trunk/pgsrc/Help%2FTeX2pngPlugin 2021-06-21 15:24:45 UTC (rev 10311) @@ -1,4 +1,4 @@ -Date: Mon, 21 Jun 2021 17:07:49 +0000 +Date: Mon, 21 Jun 2021 17:20:55 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FTeX2pngPlugin; @@ -66,6 +66,10 @@ # Show that for all r > 0: <<TeX2png text="$$\frac{\pi}{2}\int_0^r t e^{-t^2}\,dt \leq \int_0^r e^{-x^2}\,dx \int_0^r e^{-y^2}\,dy \leq \frac{\pi}{2} \int_0^{\sqrt{2} r} t e^{-t^2}\,dt$$">> **Help**: you can use polar coordinates. # Hence find the limit of <<TeX2png text="$f(x)$">> as x tends to <<TeX2png text="$\infty$">>. +== See Also == +* [[Help:TexToPngPlugin]] +* [[Help:text2pngPlugin]] + <noinclude> ---- [[PhpWikiDocumentation]] [[CategoryWikiPlugin]] Modified: trunk/pgsrc/Help%2FTexToPngPlugin =================================================================== --- trunk/pgsrc/Help%2FTexToPngPlugin 2021-06-21 15:11:16 UTC (rev 10310) +++ trunk/pgsrc/Help%2FTexToPngPlugin 2021-06-21 15:24:45 UTC (rev 10311) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Mon, 21 Jun 2021 17:20:55 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FTexToPngPlugin; @@ -77,6 +77,8 @@ * Johannes Große == See Also == +* [[Help:TeX2pngPlugin]] +* [[Help:text2pngPlugin]] <noinclude> ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-09-28 15:43:04
|
Revision: 10597 http://sourceforge.net/p/phpwiki/code/10597 Author: vargenau Date: 2021-09-28 15:43:02 +0000 (Tue, 28 Sep 2021) Log Message: ----------- Chart plugin: new argument "legend" Modified Paths: -------------- trunk/pgsrc/Help%2FChartPlugin trunk/pgsrc/ReleaseNotes Modified: trunk/pgsrc/Help%2FChartPlugin =================================================================== --- trunk/pgsrc/Help%2FChartPlugin 2021-09-28 15:24:42 UTC (rev 10596) +++ trunk/pgsrc/Help%2FChartPlugin 2021-09-28 15:43:02 UTC (rev 10597) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Tue, 28 Sep 2021 17:38:55 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FChartPlugin; @@ -16,7 +16,7 @@ == Usage == {{{ -<<Chart width=200 height=200 type=line color=green data="5, 7, 11, 3, 15" >> +<<Chart width=200 height=200 legend="My legend" type=line color=green data="5, 7, 11, 3, 15" >> }}} == Arguments == @@ -35,6 +35,10 @@ | Graph height in pixels | 200 |- +| **legend** +| Legend of the chart +| //None// +|- | **type** | line, bar or pie | line @@ -51,11 +55,13 @@ {{{ <<Chart type=line data="5, 7, 11, 3, 15" + legend="Price evolution" >> }}} <<Chart type=line data="5, 7, 11, 3, 15" + legend="Price evolution" >> === Bar chart === @@ -64,6 +70,7 @@ <<Chart type=bar color=red data="5, 7, 11, 3, 15" + legend="Number of users" >> }}} @@ -70,6 +77,7 @@ <<Chart type=bar color=red data="5, 7, 11, 3, 15" + legend="Number of users" >> === Pie chart === @@ -78,6 +86,7 @@ <<Chart type=pie color=blue data="5, 7, 11, 3, 15" + legend="Use per country" >> }}} @@ -84,6 +93,7 @@ <<Chart type=pie color=blue data="5, 7, 11, 3, 15" + legend="Use per country" >> == Known Problems == @@ -95,6 +105,7 @@ * Marc-Etienne Vargenau == See Also == +* [[Help:AsciiSVGPlugin]] <noinclude> ---- Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-09-28 15:24:42 UTC (rev 10596) +++ trunk/pgsrc/ReleaseNotes 2021-09-28 15:43:02 UTC (rev 10597) @@ -1,4 +1,4 @@ -Date: Fri, 3 Sep 2021 18:58:14 +0000 +Date: Tue, 28 Sep 2021 17:38:55 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -17,6 +17,9 @@ * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add "Rename" tab in Sidebar theme. +=== Plugins === +* Chart plugin: new argument "legend" + == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Major release: @@ -56,7 +59,7 @@ * Updated pgsrc pages in all languages * Adding SPDX-License-Identifier in PHP source files -=== Plugins === +=== Plugins === * ~UpLoad plugin: put date and author in history * ~UpLoad plugin: don't inline images * PhpWeather removed, uses deprecated mysql functions This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-10-06 16:03:46
|
Revision: 10621 http://sourceforge.net/p/phpwiki/code/10621 Author: vargenau Date: 2021-10-06 16:03:44 +0000 (Wed, 06 Oct 2021) Log Message: ----------- pgsrc/Help%2FFuzzyPagesPlugin and pgsrc/Help%2FLikePagesPlugin: add See Also Modified Paths: -------------- trunk/pgsrc/Help%2FFuzzyPagesPlugin trunk/pgsrc/Help%2FLikePagesPlugin Modified: trunk/pgsrc/Help%2FFuzzyPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FFuzzyPagesPlugin 2021-10-06 15:49:37 UTC (rev 10620) +++ trunk/pgsrc/Help%2FFuzzyPagesPlugin 2021-10-06 16:03:44 UTC (rev 10621) @@ -1,4 +1,4 @@ -Date: Fri, 1 Oct 2021 15:22:19 +0000 +Date: Wed, 6 Oct 2021 17:59:01 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FFuzzyPagesPlugin; @@ -46,6 +46,7 @@ * [[Help:Reini Urban|Reini Urban]] == See Also == +* [[Help:LikePagesPlugin]] <noinclude> ---- Modified: trunk/pgsrc/Help%2FLikePagesPlugin =================================================================== --- trunk/pgsrc/Help%2FLikePagesPlugin 2021-10-06 15:49:37 UTC (rev 10620) +++ trunk/pgsrc/Help%2FLikePagesPlugin 2021-10-06 16:03:44 UTC (rev 10621) @@ -1,4 +1,4 @@ -Date: Fri, 1 Oct 2021 15:22:19 +0000 +Date: Wed, 6 Oct 2021 17:59:01 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FLikePagesPlugin; @@ -55,6 +55,7 @@ * [[Help:Reini Urban|Reini Urban]] == See Also == +* [[Help:FuzzyPagesPlugin]] <noinclude> ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-17 18:21:06
|
Revision: 10656 http://sourceforge.net/p/phpwiki/code/10656 Author: vargenau Date: 2021-11-17 18:21:02 +0000 (Wed, 17 Nov 2021) Log Message: ----------- TitleSearch and FullTextSearch: add limit=1000 to display (almost) all results instead of default 50 Modified Paths: -------------- trunk/pgsrc/FullTextSearch trunk/pgsrc/TitleSearch Modified: trunk/pgsrc/FullTextSearch =================================================================== --- trunk/pgsrc/FullTextSearch 2021-11-17 18:12:35 UTC (rev 10655) +++ trunk/pgsrc/FullTextSearch 2021-11-17 18:21:02 UTC (rev 10656) @@ -1,4 +1,4 @@ -Date: Wed, 3 Aug 2021 09:27:34 +0000 +Date: Wed, 17 Nov 2021 19:13:32 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=FullTextSearch; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<FullTextSearch>> +<<FullTextSearch limit=1000>> ---- Modified: trunk/pgsrc/TitleSearch =================================================================== --- trunk/pgsrc/TitleSearch 2021-11-17 18:12:35 UTC (rev 10655) +++ trunk/pgsrc/TitleSearch 2021-11-17 18:21:02 UTC (rev 10656) @@ -1,4 +1,4 @@ -Date: Wed, 3 Aug 2021 09:27:34 +0000 +Date: Wed, 17 Nov 2021 19:13:32 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=TitleSearch; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -<<TitleSearch>> +<<TitleSearch limit=1000>> ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-24 11:35:47
|
Revision: 10682 http://sourceforge.net/p/phpwiki/code/10682 Author: vargenau Date: 2021-11-24 11:35:45 +0000 (Wed, 24 Nov 2021) Log Message: ----------- Move pgsrc/Help%2FPhotoAlbumPlugin%2FSlides into pgsrc/Help%2FPhotoAlbumPlugin Modified Paths: -------------- trunk/pgsrc/Help%2FPhotoAlbumPlugin Removed Paths: ------------- trunk/pgsrc/Help%2FPhotoAlbumPlugin%2FSlides Modified: trunk/pgsrc/Help%2FPhotoAlbumPlugin =================================================================== --- trunk/pgsrc/Help%2FPhotoAlbumPlugin 2021-11-24 11:18:44 UTC (rev 10681) +++ trunk/pgsrc/Help%2FPhotoAlbumPlugin 2021-11-24 11:35:45 UTC (rev 10682) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Wed, 24 Nov 2021 12:34:13 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPhotoAlbumPlugin; @@ -167,14 +167,31 @@ local dir: {{{ -<<PhotoAlbum src="themes/Hawaiian/images/pictures/" >> +<<PhotoAlbum + src="themes/Hawaiian/images/pictures/" + mode=slide + duration=1 +>> }}} + +<<PhotoAlbum + src="themes/Hawaiian/images/pictures/" + mode=slide + duration=1 +>> + or via external URL: {{{ -<<PhotoAlbum src="http://phpwiki.sourceforge.net/demo/themes/Hawaiian/images/pictures/PhotoAlbum.csv" >> +<<PhotoAlbum +src="http://phpwiki.demo.free.fr/themes/Hawaiian/images/pictures/PhotoAlbum.csv" +mode=tiles +>> }}} -[[/Slides]] +<<PhotoAlbum +src="http://phpwiki.demo.free.fr/themes/Hawaiian/images/pictures/PhotoAlbum.csv" +mode=tiles +>> == Authors == Deleted: trunk/pgsrc/Help%2FPhotoAlbumPlugin%2FSlides =================================================================== --- trunk/pgsrc/Help%2FPhotoAlbumPlugin%2FSlides 2021-11-24 11:18:44 UTC (rev 10681) +++ trunk/pgsrc/Help%2FPhotoAlbumPlugin%2FSlides 2021-11-24 11:35:45 UTC (rev 10682) @@ -1,15 +0,0 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) -Content-Type: application/x-phpwiki; - pagename=Help%2FPhotoAlbumPlugin%2FSlides; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - charset=UTF-8 -Content-Transfer-Encoding: binary - -[[Help:PhotoAlbumPlugin|Back to PhotoAlbumPlugin help page]] - -<<PhotoAlbum - src="themes/Hawaiian/images/pictures/" - mode=slide - duration=1 ->> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-11-30 12:10:13
|
Revision: 10710 http://sourceforge.net/p/phpwiki/code/10710 Author: vargenau Date: 2021-11-30 12:10:11 +0000 (Tue, 30 Nov 2021) Log Message: ----------- pgsrc: add "Boolean" Modified Paths: -------------- trunk/pgsrc/Help%2FFileInfoPlugin trunk/pgsrc/Help%2FTranscludePlugin trunk/pgsrc/Help%2FUnfoldSubpagesPlugin Modified: trunk/pgsrc/Help%2FFileInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FFileInfoPlugin 2021-11-30 11:55:39 UTC (rev 10709) +++ trunk/pgsrc/Help%2FFileInfoPlugin 2021-11-30 12:10:11 UTC (rev 10710) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Tue, 30 Nov 2021 13:09:40 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FFileInfoPlugin; @@ -41,7 +41,7 @@ | (optional) |- | **quiet** -| print no error if file not found +| Boolean. If true, print no error if file is not found | false |} Modified: trunk/pgsrc/Help%2FTranscludePlugin =================================================================== --- trunk/pgsrc/Help%2FTranscludePlugin 2021-11-30 11:55:39 UTC (rev 10709) +++ trunk/pgsrc/Help%2FTranscludePlugin 2021-11-30 12:10:11 UTC (rev 10710) @@ -1,4 +1,4 @@ -Date: Thu, 4 Apr 2019 14:07:40 +0000 +Date: Tue, 30 Nov 2021 13:09:40 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FTranscludePlugin; @@ -31,7 +31,7 @@ | 450 |- | **quiet** -| If set, frame appears as normal content +| Boolean. If true, frame appears as normal content. | false |} Modified: trunk/pgsrc/Help%2FUnfoldSubpagesPlugin =================================================================== --- trunk/pgsrc/Help%2FUnfoldSubpagesPlugin 2021-11-30 11:55:39 UTC (rev 10709) +++ trunk/pgsrc/Help%2FUnfoldSubpagesPlugin 2021-11-30 12:10:11 UTC (rev 10710) @@ -1,4 +1,4 @@ -Date: Fri, 12 Apr 2019 15:36:06 +0000 +Date: Tue, 30 Nov 2021 13:09:40 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FUnfoldSubpagesPlugin; @@ -40,7 +40,7 @@ | empty |- | **quiet** -| Print no header. +| Boolean. If true, print no header. | false |- | **sortby** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-07 17:36:43
|
Revision: 10864 http://sourceforge.net/p/phpwiki/code/10864 Author: vargenau Date: 2022-01-07 17:36:41 +0000 (Fri, 07 Jan 2022) Log Message: ----------- In help pages, //empty// in italics Modified Paths: -------------- trunk/pgsrc/Help%2FBlogArchivesPlugin trunk/pgsrc/Help%2FBlogJournalPlugin trunk/pgsrc/Help%2FCalendarListPlugin trunk/pgsrc/Help%2FIncludeSiteMapPlugin trunk/pgsrc/Help%2FIncludeTreePlugin trunk/pgsrc/Help%2FLdapSearchPlugin trunk/pgsrc/Help%2FLikePagesPlugin trunk/pgsrc/Help%2FPopularNearbyPlugin trunk/pgsrc/Help%2FPrevNextPlugin trunk/pgsrc/Help%2FUnfoldSubpagesPlugin Modified: trunk/pgsrc/Help%2FBlogArchivesPlugin =================================================================== --- trunk/pgsrc/Help%2FBlogArchivesPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FBlogArchivesPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FBlogArchivesPlugin; @@ -24,11 +24,11 @@ |- | **user** | Blog of given user -| empty +| //empty// |- | **month** | List the blog titles per month -| empty +| //empty// |} == Example == Modified: trunk/pgsrc/Help%2FBlogJournalPlugin =================================================================== --- trunk/pgsrc/Help%2FBlogJournalPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FBlogJournalPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FBlogJournalPlugin; @@ -24,15 +24,15 @@ |- | **count** | Number of entries -| empty +| //empty// |- | **user** | Blog of given user -| empty +| //empty// |- | **month** | List the blog titles per month -| empty +| //empty// |} == Example == Modified: trunk/pgsrc/Help%2FCalendarListPlugin =================================================================== --- trunk/pgsrc/Help%2FCalendarListPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FCalendarListPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Sat, 20 Feb 2021 11:52:37 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FCalendarListPlugin; @@ -70,19 +70,19 @@ |- | **next_n_days** | next_n_days=60: Display entries for the next 60 days / 2 months. -| PLUGIN_CALENDARLIST_NEXT_N_DAYS (empty) +| PLUGIN_CALENDARLIST_NEXT_N_DAYS (//empty//) |- | **next_n** | next_n=20: Display only the next 20 entries. Ignored if next_n_days is defined. -| PLUGIN_CALENDARLIST_NEXT_N (empty) +| PLUGIN_CALENDARLIST_NEXT_N (//empty//) |- | **last_n_days** | last_n_days=60: Display entries for the last 60 days / 2 months. -| PLUGIN_CALENDARLIST_LAST_N_DAYS (empty) +| PLUGIN_CALENDARLIST_LAST_N_DAYS (//empty//) |- | **last_n** | last_n=20: Display only the last 20 entries. Ignored if last_n_days is defined. -| PLUGIN_CALENDARLIST_LAST_N (empty) +| PLUGIN_CALENDARLIST_LAST_N (//empty//) |- | **month_format** | How to display the Month. Modified: trunk/pgsrc/Help%2FIncludeSiteMapPlugin =================================================================== --- trunk/pgsrc/Help%2FIncludeSiteMapPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FIncludeSiteMapPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Mon, 22 Feb 2021 19:16:32 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FIncludeSiteMapPlugin; @@ -28,7 +28,7 @@ |- | **exclude** | Comma-separated list of pages to exclude -| empty +| //empty// |- | **include_self** | Boolean. If true, include yourself in the results. Modified: trunk/pgsrc/Help%2FIncludeTreePlugin =================================================================== --- trunk/pgsrc/Help%2FIncludeTreePlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FIncludeTreePlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Mon, 22 Feb 2021 19:16:32 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FIncludeTreePlugin; @@ -24,7 +24,7 @@ |- | **exclude** | Comma-separated list of pages to exclude -| empty +| //empty// |- | **include_self** | Boolean. If true, include yourself in the results. @@ -68,7 +68,7 @@ |- | **category** | -| empty +| //empty// |- | **dtree** | Modified: trunk/pgsrc/Help%2FLdapSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FLdapSearchPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FLdapSearchPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FLdapSearchPlugin; @@ -53,7 +53,7 @@ |- | **attributes** | space separated fields to return as table columns: "cn sn" -| empty +| //empty// |- | **options** | ldap_set_option(). Column separated name=value pairs. Esp. needed for Windows Active directory: "LDAP_OPT_PROTOCOL_VERSION=3:LDAP_OPT_REFERRALS=0" Modified: trunk/pgsrc/Help%2FLikePagesPlugin =================================================================== --- trunk/pgsrc/Help%2FLikePagesPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FLikePagesPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Wed, 6 Oct 2021 17:59:01 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FLikePagesPlugin; @@ -30,11 +30,11 @@ |- | **prefix** | List only pages that share the same prefix -| //empty string// +| //empty// |- | **suffix** | List only pages that share the same suffix -| //empty string// +| //empty// |} == Examples == Modified: trunk/pgsrc/Help%2FPopularNearbyPlugin =================================================================== --- trunk/pgsrc/Help%2FPopularNearbyPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FPopularNearbyPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Mon, 22 Feb 2021 19:16:32 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPopularNearbyPlugin; @@ -23,7 +23,7 @@ |- | **pagename** | Pagename to look for -| empty +| //empty// |- | **mode** | Nearby or incoming or outgoing Modified: trunk/pgsrc/Help%2FPrevNextPlugin =================================================================== --- trunk/pgsrc/Help%2FPrevNextPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FPrevNextPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPrevNextPlugin; @@ -23,35 +23,35 @@ |- | **prev** | Link to the **Previous** page -| empty +| //empty// |- | **next** | Link to the **Next** page -| empty +| //empty// |- | **up** | Link to the **Up** page -| empty +| //empty// |- | **contents** | Link to the **Contents** page -| empty +| //empty// |- | **index** | Link to the **Index** page -| empty +| //empty// |- | **first** | Link to the **First** page -| empty +| //empty// |- | **last** | Link to the **Last** page -| empty +| //empty// |- | **order** | Reorder the buttons: comma-delimited -| empty +| //empty// |- | **align** | Can be //left//, //right// or //center// Modified: trunk/pgsrc/Help%2FUnfoldSubpagesPlugin =================================================================== --- trunk/pgsrc/Help%2FUnfoldSubpagesPlugin 2022-01-07 17:29:04 UTC (rev 10863) +++ trunk/pgsrc/Help%2FUnfoldSubpagesPlugin 2022-01-07 17:36:41 UTC (rev 10864) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2021 18:48:34 +0000 +Date: Fri, 7 Jan 2022 18:35:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FUnfoldSubpagesPlugin; @@ -37,7 +37,7 @@ |- | **pagename** | Any pagename or if empty the current page. -| empty +| //empty// |- | **quiet** | Boolean. If true, header should be omitted. @@ -57,7 +57,7 @@ |- | **section** | Include this named section per page only if defined. -| empty +| //empty// |- | **sectionhead** | When including a named section show the heading. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-13 15:16:44
|
Revision: 10894 http://sourceforge.net/p/phpwiki/code/10894 Author: vargenau Date: 2022-01-13 15:16:42 +0000 (Thu, 13 Jan 2022) Log Message: ----------- UserPreferences has no arguments Modified Paths: -------------- trunk/pgsrc/Help%2FDebugGroupInfoPlugin trunk/pgsrc/Help%2FHtmlConverterPlugin trunk/pgsrc/Help%2FUserPreferencesPlugin Modified: trunk/pgsrc/Help%2FDebugGroupInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugGroupInfoPlugin 2022-01-12 17:10:47 UTC (rev 10893) +++ trunk/pgsrc/Help%2FDebugGroupInfoPlugin 2022-01-13 15:16:42 UTC (rev 10894) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Thu, 13 Jan 2022 16:16:14 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FDebugGroupInfoPlugin; @@ -21,7 +21,7 @@ == Arguments == -None +None. == Example == Modified: trunk/pgsrc/Help%2FHtmlConverterPlugin =================================================================== --- trunk/pgsrc/Help%2FHtmlConverterPlugin 2022-01-12 17:10:47 UTC (rev 10893) +++ trunk/pgsrc/Help%2FHtmlConverterPlugin 2022-01-13 15:16:42 UTC (rev 10894) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Thu, 13 Jan 2022 16:16:14 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FHtmlConverterPlugin; @@ -15,7 +15,7 @@ == Arguments == -None +None. == Example == Modified: trunk/pgsrc/Help%2FUserPreferencesPlugin =================================================================== --- trunk/pgsrc/Help%2FUserPreferencesPlugin 2022-01-12 17:10:47 UTC (rev 10893) +++ trunk/pgsrc/Help%2FUserPreferencesPlugin 2022-01-13 15:16:42 UTC (rev 10894) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Thu, 13 Jan 2022 16:16:14 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FUserPreferencesPlugin; @@ -17,6 +17,8 @@ == Arguments == +None. + == Example == {{{ @@ -23,8 +25,6 @@ <<UserPreferences>> }}} -<<UserPreferences>> - == Author == * [[Help:Reini Urban|Reini Urban]] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-02-03 17:49:10
|
Revision: 10977 http://sourceforge.net/p/phpwiki/code/10977 Author: vargenau Date: 2022-02-03 17:49:09 +0000 (Thu, 03 Feb 2022) Log Message: ----------- See Also [[WantedPages]], [[OrphanedPages]] Modified Paths: -------------- trunk/pgsrc/Help%2FOrphanedPagesPlugin trunk/pgsrc/Help%2FWantedPagesPlugin Modified: trunk/pgsrc/Help%2FOrphanedPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FOrphanedPagesPlugin 2022-02-03 17:37:36 UTC (rev 10976) +++ trunk/pgsrc/Help%2FOrphanedPagesPlugin 2022-02-03 17:49:09 UTC (rev 10977) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2021 18:48:34 +0000 +Date: Thu, 3 Feb 2022 18:48:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Help%2FOrphanedPagesPlugin; @@ -62,6 +62,7 @@ * [[Help:Reini Urban|Reini Urban]] == See Also == +* [[WantedPages]] <noinclude> ---- Modified: trunk/pgsrc/Help%2FWantedPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FWantedPagesPlugin 2022-02-03 17:37:36 UTC (rev 10976) +++ trunk/pgsrc/Help%2FWantedPagesPlugin 2022-02-03 17:49:09 UTC (rev 10977) @@ -1,4 +1,4 @@ -Date: Thu, 3 Feb 2022 18:34:11 +0000 +Date: Thu, 3 Feb 2022 18:48:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Help%2FWantedPagesPlugin; @@ -28,7 +28,7 @@ |- | **page** | Just for a single page. -| //empty/ +| //empty// |- | **withlinks** | Boolean. If true, display links. @@ -59,6 +59,7 @@ * [[Help:Reini Urban|Reini Urban]] == See Also == +* [[OrphanedPages]] <noinclude> ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-02-15 14:45:23
|
Revision: 10995 http://sourceforge.net/p/phpwiki/code/10995 Author: vargenau Date: 2022-02-15 14:45:19 +0000 (Tue, 15 Feb 2022) Log Message: ----------- Help%2FWikiAdminPurgePlugin and Help%2FWikiAdminRemovePlugin: See Also Modified Paths: -------------- trunk/pgsrc/Help%2FWikiAdminPurgePlugin trunk/pgsrc/Help%2FWikiAdminRemovePlugin Modified: trunk/pgsrc/Help%2FWikiAdminPurgePlugin =================================================================== --- trunk/pgsrc/Help%2FWikiAdminPurgePlugin 2022-02-15 14:33:50 UTC (rev 10994) +++ trunk/pgsrc/Help%2FWikiAdminPurgePlugin 2022-02-15 14:45:19 UTC (rev 10995) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2021 18:48:34 +0000 +Date: Tue, 15 Feb 2022 15:43:12 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Help%2FWikiAdminPurgePlugin; @@ -39,6 +39,7 @@ == See Also == * [[PhpWikiAdministration]] +* [[Help:WikiAdminRemovePlugin]] <noinclude> ---- Modified: trunk/pgsrc/Help%2FWikiAdminRemovePlugin =================================================================== --- trunk/pgsrc/Help%2FWikiAdminRemovePlugin 2022-02-15 14:33:50 UTC (rev 10994) +++ trunk/pgsrc/Help%2FWikiAdminRemovePlugin 2022-02-15 14:45:19 UTC (rev 10995) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2021 18:48:34 +0000 +Date: Tue, 15 Feb 2022 15:43:12 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Help%2FWikiAdminRemovePlugin; @@ -39,6 +39,7 @@ == See Also == * [[PhpWikiAdministration]] +* [[Help:WikiAdminPurgePlugin]] <noinclude> ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-08-19 16:21:01
|
Revision: 11027 http://sourceforge.net/p/phpwiki/code/11027 Author: vargenau Date: 2022-08-19 16:20:59 +0000 (Fri, 19 Aug 2022) Log Message: ----------- Remove extra ~ Modified Paths: -------------- trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin Modified: trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin =================================================================== --- trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin 2022-07-12 12:15:24 UTC (rev 11026) +++ trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin 2022-08-19 16:20:59 UTC (rev 11027) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2021 18:48:34 +0000 +Date: Fri, 19 Aug 2022 18:11:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Help%2FWikiAdminDeleteAclPlugin; @@ -10,7 +10,7 @@ == Usage == {{{ -<<~WikiAdminDeleteAcl arguments>> +<<WikiAdminDeleteAcl arguments>> }}} == Arguments == Modified: trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin =================================================================== --- trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin 2022-07-12 12:15:24 UTC (rev 11026) +++ trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin 2022-08-19 16:20:59 UTC (rev 11027) @@ -1,4 +1,4 @@ -Date: Thu, 9 Dec 2021 18:48:34 +0000 +Date: Fri, 19 Aug 2022 18:11:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Help%2FWikiAdminSetExternalPlugin; @@ -10,7 +10,7 @@ == Usage == {{{ -<<~WikiAdminSetExternal arguments>> +<<WikiAdminSetExternal arguments>> }}} == Arguments == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-14 03:45:02
|
Revision: 11094 http://sourceforge.net/p/phpwiki/code/11094 Author: carstenklapp Date: 2025-02-14 03:44:59 +0000 (Fri, 14 Feb 2025) Log Message: ----------- added CategoryDebugPage to group debugging pages Modified Paths: -------------- trunk/pgsrc/DebugAuthInfo trunk/pgsrc/DebugBackendInfo trunk/pgsrc/DebugGroupInfo trunk/pgsrc/EditMetaData trunk/pgsrc/Help%2FDebugAuthInfoPlugin trunk/pgsrc/Help%2FDebugBackendInfoPlugin trunk/pgsrc/Help%2FDebugGroupInfoPlugin trunk/pgsrc/Help%2FDebugRetransformPlugin trunk/pgsrc/Help%2FSystemInfoPlugin trunk/pgsrc/PhpWikiDebug Added Paths: ----------- trunk/pgsrc/CategoryDebugPage Added: trunk/pgsrc/CategoryDebugPage =================================================================== --- trunk/pgsrc/CategoryDebugPage (rev 0) +++ trunk/pgsrc/CategoryDebugPage 2025-02-14 03:44:59 UTC (rev 11094) @@ -0,0 +1,13 @@ +Date: Tue, 11 Feb 2025 18:46:52 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=CategoryDebugPage; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<BackLinks info||=pagename,mtime,hits,author sortby||=pagename>> + +---- +[[CategoryCategory]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/DebugAuthInfo =================================================================== --- trunk/pgsrc/DebugAuthInfo 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/DebugAuthInfo 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,13 +1,15 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=DebugAuthInfo; - flags=PAGE_LOCKED; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<DebugAuthInfo>> - ----- -[[CategoryActionPage]] +Date: Tue, 11 Feb 2025 19:20:41 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=DebugAuthInfo; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<DebugAuthInfo>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/DebugBackendInfo =================================================================== --- trunk/pgsrc/DebugBackendInfo 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/DebugBackendInfo 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,15 +1,17 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=DebugBackendInfo; - flags=PAGE_LOCKED; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Detailed view of a page, which is probably more useful for debugging than anything else. - -<<DebugBackendInfo page||=''>> - ----- -[[CategoryActionPage]] +Date: Tue, 11 Feb 2025 18:45:19 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=DebugBackendInfo; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +Detailed view of a page, which is probably more useful for debugging than anything else. + +<<DebugBackendInfo page||=''>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/DebugGroupInfo =================================================================== --- trunk/pgsrc/DebugGroupInfo 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/DebugGroupInfo 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,13 +1,15 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=DebugGroupInfo; - flags=PAGE_LOCKED; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<DebugGroupInfo>> - ----- -[[CategoryActionPage]] +Date: Fri, 14 Feb 2025 02:50:55 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=DebugGroupInfo; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<DebugGroupInfo>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/EditMetaData =================================================================== --- trunk/pgsrc/EditMetaData 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/EditMetaData 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,12 +1,14 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=EditMetaData; - flags=PAGE_LOCKED; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<EditMetaData>> - ----- -[[CategoryActionPage]] +Date: Tue, 11 Feb 2025 19:47:08 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=EditMetaData; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<EditMetaData>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/Help%2FDebugAuthInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugAuthInfoPlugin 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/Help%2FDebugAuthInfoPlugin 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,8 +1,9 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Fri, 14 Feb 2025 03:08:10 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Help%2FDebugAuthInfoPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary @@ -48,4 +49,5 @@ <noinclude> ---- [[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] </noinclude> Modified: trunk/pgsrc/Help%2FDebugBackendInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugBackendInfoPlugin 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/Help%2FDebugBackendInfoPlugin 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,8 +1,9 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Fri, 14 Feb 2025 03:12:00 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Help%2FDebugBackendInfoPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary @@ -52,4 +53,5 @@ <noinclude> ---- [[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] </noinclude> Modified: trunk/pgsrc/Help%2FDebugGroupInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugGroupInfoPlugin 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/Help%2FDebugGroupInfoPlugin 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,8 +1,9 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Fri, 14 Feb 2025 03:21:32 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Help%2FDebugGroupInfoPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary @@ -39,4 +40,5 @@ <noinclude> ---- [[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] </noinclude> Modified: trunk/pgsrc/Help%2FDebugRetransformPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugRetransformPlugin 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/Help%2FDebugRetransformPlugin 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,42 +1,44 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=Help%2FDebugRetransformPlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Show a markup retransformation of a wiki page. - -== Usage == - -{{{ -<<DebugRetransform arguments>> -}}} - -== Arguments == - -{| class="bordered" -|- -! Argument -! Description -! Default value -|- -| **page** -| The page to show markup retransformation from. -| current pagename -|} - -== Example == - -<<DebugRetransform page=HomePage>> - -== Author == -* [[Help:Reini Urban|Reini Urban]] - -== See Also == - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -</noinclude> +Date: Tue, 11 Feb 2025 19:41:01 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=Help%2FDebugRetransformPlugin; + flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +Show a markup retransformation of a wiki page. + +== Usage == + +{{{ +<<DebugRetransform arguments>> +}}} + +== Arguments == + +{| class="bordered" +|- +! Argument +! Description +! Default value +|- +| **page** +| The page to show markup retransformation from. +| current pagename +|} + +== Example == + +<<DebugRetransform page=HomePage>> + +== Author == +* [[Help:Reini Urban|Reini Urban]] + +== See Also == + +<noinclude> +---- +[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] +</noinclude> Modified: trunk/pgsrc/Help%2FSystemInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FSystemInfoPlugin 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/Help%2FSystemInfoPlugin 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,28 +1,31 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=Help%2FSystemInfoPlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - charset=UTF-8 -Content-Transfer-Encoding: binary - -The **~SystemInfo** [[Help:WikiPlugin|plugin]] provides access to lower level system information for the platform ~PhpWiki is installed on. - -== Usage == - -{{{ - <<SystemInfo all>> - or <<SystemInfo pagestats cachestats discspace hitstats>> - or <<SystemInfo version>> - or <<SystemInfo current_theme>> - or <<SystemInfo PHPWIKI_DIR>> -}}} - -== Example == - -<<SystemInfo all>> - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -</noinclude> +Date: Tue, 11 Feb 2025 20:18:59 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=Help%2FSystemInfoPlugin; + flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +The **~SystemInfo** [[Help:WikiPlugin|plugin]] provides access to lower +level system information for the platform ~PhpWiki is installed on. + +== Usage == + +{{{ + <<SystemInfo all>> + or <<SystemInfo pagestats cachestats discspace hitstats>> + or <<SystemInfo version>> + or <<SystemInfo current_theme>> + or <<SystemInfo PHPWIKI_DIR>> +}}} + +== Example == + +<<SystemInfo all>> + +<noinclude> +---- +[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] +</noinclude> Modified: trunk/pgsrc/PhpWikiDebug =================================================================== --- trunk/pgsrc/PhpWikiDebug 2025-02-14 02:29:23 UTC (rev 11093) +++ trunk/pgsrc/PhpWikiDebug 2025-02-14 03:44:59 UTC (rev 11094) @@ -1,62 +1,69 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) -Content-Type: application/x-phpwiki; - pagename=PhpWikiDebug; - flags=PAGE_LOCKED; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -**//Note://** //Most of the actions on this page require administrative privileges.// - -<<CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 >> - -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 HTML 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 page content will be transformed and re-cached next -time someone views it.) - -<<WikiAdminUtils action=purge-cache>> - -== Clean Wiki Database of Illegal Filenames == - -Page names beginning with the subpage-separator, 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. - -<<WikiAdminUtils action=purge-bad-pagenames>> - -== Clean Wiki Database 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. - -<<WikiAdminUtils action=purge-empty-pages>> - -== Check Wiki Database == - -This button will check the Wiki page database for consistency. This can last several minutes. - -<<WikiAdminUtils action=db-check>> - -== Rebuild Wiki Database == - -This will retransform all pages and rebuild the Wiki database on consistency errors or parser updates. -This can last several minutes, eat a lot of memory and possibly times out! - -<<WikiAdminUtils action=db-rebuild>> - ----- -[[CategoryActionPage]] +Date: Tue, 11 Feb 2025 19:02:57 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=PhpWikiDebug; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +**//Note://** //Most of the actions on this page require administrative +privileges.// + +<<CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 >> + +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 HTML 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 page content will be transformed and re-cached next +time someone views it.) + +<<WikiAdminUtils action=purge-cache>> + +== Clean Wiki Database of Illegal Filenames == + +Page names beginning with the subpage-separator, 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. + +<<WikiAdminUtils action=purge-bad-pagenames>> + +== Clean Wiki Database 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. + +<<WikiAdminUtils action=purge-empty-pages>> + +== Check Wiki Database == + +This button will check the Wiki page database for consistency. This can last +several minutes. + +<<WikiAdminUtils action=db-check>> + +== Rebuild Wiki Database == + +This will retransform all pages and rebuild the Wiki database on consistency +errors or parser updates. This can last several minutes, eat a lot of memory +and possibly times out! + +<<WikiAdminUtils action=db-rebuild>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-18 02:22:01
|
Revision: 11121 http://sourceforge.net/p/phpwiki/code/11121 Author: carstenklapp Date: 2025-02-18 02:22:00 +0000 (Tue, 18 Feb 2025) Log Message: ----------- Fixed invalid mime format, missing ; messing with import parser Modified Paths: -------------- trunk/pgsrc/Help%2FLinkSearchPlugin trunk/pgsrc/Help%2FWikisUsingPhpWiki trunk/pgsrc/InterWikiMap Modified: trunk/pgsrc/Help%2FLinkSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FLinkSearchPlugin 2025-02-17 19:47:16 UTC (rev 11120) +++ trunk/pgsrc/Help%2FLinkSearchPlugin 2025-02-18 02:22:00 UTC (rev 11121) @@ -1,8 +1,9 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Tue, 18 Feb 2025 01:59:55 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; - pagename=Help%2FLinkSearchPlugin + pagename=Help%2FLinkSearchPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FWikisUsingPhpWiki =================================================================== --- trunk/pgsrc/Help%2FWikisUsingPhpWiki 2025-02-17 19:47:16 UTC (rev 11120) +++ trunk/pgsrc/Help%2FWikisUsingPhpWiki 2025-02-18 02:22:00 UTC (rev 11121) @@ -1,8 +1,9 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Tue, 18 Feb 2025 02:00:25 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; - pagename=Help%2FWikisUsingPhpWiki + pagename=Help%2FWikisUsingPhpWiki; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/InterWikiMap =================================================================== --- trunk/pgsrc/InterWikiMap 2025-02-17 19:47:16 UTC (rev 11120) +++ trunk/pgsrc/InterWikiMap 2025-02-18 02:22:00 UTC (rev 11121) @@ -1,9 +1,10 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Tue, 18 Feb 2025 01:59:28 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=InterWikiMap; pagetype=interwikimap; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE + flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-18 03:41:12
|
Revision: 11123 http://sourceforge.net/p/phpwiki/code/11123 Author: carstenklapp Date: 2025-02-18 03:41:07 +0000 (Tue, 18 Feb 2025) Log Message: ----------- Default pages now have author "The PhpWiki Team" until edited in the wiki. Modified Paths: -------------- trunk/pgsrc/AllPages trunk/pgsrc/AllPagesByAcl trunk/pgsrc/AllPagesCreatedByMe trunk/pgsrc/AllPagesLastEditedByMe trunk/pgsrc/AllPagesOwnedByMe trunk/pgsrc/AllUserPages trunk/pgsrc/AllUsers trunk/pgsrc/AppendText trunk/pgsrc/AuthorHistory trunk/pgsrc/BackLinks trunk/pgsrc/BlogArchives trunk/pgsrc/BlogJournal trunk/pgsrc/CategoryActionPage trunk/pgsrc/CategoryCategory trunk/pgsrc/CategoryDebugPage trunk/pgsrc/CategoryGroup trunk/pgsrc/CategoryHomePages trunk/pgsrc/CategoryWikiPlugin trunk/pgsrc/Copyrights trunk/pgsrc/CreatePage trunk/pgsrc/FindPage trunk/pgsrc/FullRecentChanges trunk/pgsrc/FullTextSearch trunk/pgsrc/FuzzyPages trunk/pgsrc/GeneralDisclaimer trunk/pgsrc/Help trunk/pgsrc/Help%2FActionPage trunk/pgsrc/Help%2FAddCommentPlugin trunk/pgsrc/Help%2FAddingPages trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users trunk/pgsrc/Help%2FAllPagesPlugin trunk/pgsrc/Help%2FAllUsersPlugin trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin trunk/pgsrc/Help%2FAppendTextPlugin trunk/pgsrc/Help%2FAsciiMathPlugin trunk/pgsrc/Help%2FAsciiSVGPlugin trunk/pgsrc/Help%2FAtomFeedPlugin trunk/pgsrc/Help%2FAuthorHistoryPlugin trunk/pgsrc/Help%2FBackLinksPlugin trunk/pgsrc/Help%2FBlogArchivesPlugin trunk/pgsrc/Help%2FBlogJournalPlugin trunk/pgsrc/Help%2FBoxRightPlugin trunk/pgsrc/Help%2FCacheTestPlugin trunk/pgsrc/Help%2FCalendarListPlugin trunk/pgsrc/Help%2FCalendarPlugin trunk/pgsrc/Help%2FCategories trunk/pgsrc/Help%2FChartPlugin trunk/pgsrc/Help%2FCommentPlugin trunk/pgsrc/Help%2FCreateBibPlugin trunk/pgsrc/Help%2FCreatePagePlugin trunk/pgsrc/Help%2FCreateTocPlugin trunk/pgsrc/Help%2FCurrentTimePlugin trunk/pgsrc/Help%2FDeadEndPagesPlugin trunk/pgsrc/Help%2FDebugAuthInfoPlugin trunk/pgsrc/Help%2FDiffPlugin trunk/pgsrc/Help%2FDynamicIncludePagePlugin trunk/pgsrc/Help%2FEditMetaDataPlugin trunk/pgsrc/Help%2FEditText trunk/pgsrc/Help%2FFacebookLikePlugin trunk/pgsrc/Help%2FFileInfoPlugin trunk/pgsrc/Help%2FFoafViewerPlugin trunk/pgsrc/Help%2FFullTextSearchPlugin trunk/pgsrc/Help%2FFuzzyPagesPlugin trunk/pgsrc/Help%2FGoToPlugin trunk/pgsrc/Help%2FGoodStyle trunk/pgsrc/Help%2FGoogleLink trunk/pgsrc/Help%2FGoogleMapsPlugin trunk/pgsrc/Help%2FGooglePluginPlugin trunk/pgsrc/Help%2FGraphVizPlugin trunk/pgsrc/Help%2FHelloWorldPlugin trunk/pgsrc/Help%2FHowToUseWiki trunk/pgsrc/Help%2FHtmlConverterPlugin trunk/pgsrc/Help%2FImages trunk/pgsrc/Help%2FIncludePagePlugin trunk/pgsrc/Help%2FIncludePagesPlugin trunk/pgsrc/Help%2FIncludeSiteMapPlugin trunk/pgsrc/Help%2FIncludeTreePlugin trunk/pgsrc/Help%2FInterWiki trunk/pgsrc/Help%2FInterWikiSearchPlugin trunk/pgsrc/Help%2FJabberPresencePlugin trunk/pgsrc/Help%2FJeff%20Dairiki trunk/pgsrc/Help%2FLdapSearchPlugin trunk/pgsrc/Help%2FLikePagesPlugin trunk/pgsrc/Help%2FLinkDatabasePlugin trunk/pgsrc/Help%2FLinkIcons trunk/pgsrc/Help%2FListPagesPlugin trunk/pgsrc/Help%2FListRelationsPlugin trunk/pgsrc/Help%2FListSubpagesPlugin trunk/pgsrc/Help%2FMagicPhpWikiURLs trunk/pgsrc/Help%2FMediawikiTablePlugin trunk/pgsrc/Help%2FModeratedPagePlugin trunk/pgsrc/Help%2FMoreAboutMechanics trunk/pgsrc/Help%2FMostPopularPlugin trunk/pgsrc/Help%2FNewPagesPerUserPlugin trunk/pgsrc/Help%2FNoCachePlugin trunk/pgsrc/Help%2FOldStyleTablePlugin trunk/pgsrc/Help%2FOrphanedPagesPlugin trunk/pgsrc/Help%2FPageDumpPlugin trunk/pgsrc/Help%2FPageGroupPlugin trunk/pgsrc/Help%2FPageHistoryPlugin trunk/pgsrc/Help%2FPageInfoPlugin trunk/pgsrc/Help%2FPageList trunk/pgsrc/Help%2FPagePermissions trunk/pgsrc/Help%2FPageTrailPlugin trunk/pgsrc/Help%2FPasswordResetPlugin trunk/pgsrc/Help%2FPhpHighlightPlugin trunk/pgsrc/Help%2FPhpWiki trunk/pgsrc/Help%2FPloticusPlugin trunk/pgsrc/Help%2FPluginManagerPlugin trunk/pgsrc/Help%2FPopUpPlugin trunk/pgsrc/Help%2FPopularNearbyPlugin trunk/pgsrc/Help%2FPopularTagsPlugin trunk/pgsrc/Help%2FPredefinedIcons trunk/pgsrc/Help%2FPreferenceAppPlugin trunk/pgsrc/Help%2FPrevNextPlugin trunk/pgsrc/Help%2FProcessingPlugin trunk/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRateItPlugin trunk/pgsrc/Help%2FRawHtmlPlugin trunk/pgsrc/Help%2FRecentChangesPlugin trunk/pgsrc/Help%2FRecentCommentsPlugin trunk/pgsrc/Help%2FRecentEditsPlugin trunk/pgsrc/Help%2FRecentReferrersPlugin trunk/pgsrc/Help%2FRedirectToPlugin trunk/pgsrc/Help%2FReini%20Urban trunk/pgsrc/Help%2FRelatedChangesPlugin trunk/pgsrc/Help%2FRichTablePlugin trunk/pgsrc/Help%2FRssFeedPlugin trunk/pgsrc/Help%2FSearchHighlightPlugin trunk/pgsrc/Help%2FSemanticRelations trunk/pgsrc/Help%2FSemanticRelationsPlugin trunk/pgsrc/Help%2FSemanticSearchAdvancedPlugin trunk/pgsrc/Help%2FSemanticSearchPlugin trunk/pgsrc/Help%2FSiteMapPlugin trunk/pgsrc/Help%2FSpellCheckPlugin trunk/pgsrc/Help%2FSpreadsheet trunk/pgsrc/Help%2FSqlResultPlugin trunk/pgsrc/Help%2FSteve%20Wainstead trunk/pgsrc/Help%2FSyncWikiPlugin trunk/pgsrc/Help%2FSyntaxHighlighterPlugin trunk/pgsrc/Help%2FTeX2pngPlugin trunk/pgsrc/Help%2FTemplatePlugin trunk/pgsrc/Help%2FTexToPngPlugin trunk/pgsrc/Help%2FTextFormattingRules trunk/pgsrc/Help%2FTitleSearchPlugin trunk/pgsrc/Help%2FTranscludePlugin trunk/pgsrc/Help%2FTranslateTextPlugin trunk/pgsrc/Help%2FUnfoldSubpagesPlugin trunk/pgsrc/Help%2FUpLoadPlugin trunk/pgsrc/Help%2FUriResolverPlugin trunk/pgsrc/Help%2FUserPreferencesPlugin trunk/pgsrc/Help%2FUserRatingsPlugin trunk/pgsrc/Help%2FVideoPlugin trunk/pgsrc/Help%2FVisualWikiPlugin trunk/pgsrc/Help%2FWabiSabi trunk/pgsrc/Help%2FWantedPagesPlugin trunk/pgsrc/Help%2FWatchPagePlugin trunk/pgsrc/Help%2FWhoIsOnlinePlugin trunk/pgsrc/Help%2FWikiAdminChownPlugin trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin trunk/pgsrc/Help%2FWikiAdminPurgePlugin trunk/pgsrc/Help%2FWikiAdminRemovePlugin trunk/pgsrc/Help%2FWikiAdminRenamePlugin trunk/pgsrc/Help%2FWikiAdminSearchReplacePlugin trunk/pgsrc/Help%2FWikiAdminSelectPlugin trunk/pgsrc/Help%2FWikiAdminSetAclPlugin trunk/pgsrc/Help%2FWikiAdminSetAclSimplePlugin trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin trunk/pgsrc/Help%2FWikiAdminUtilsPlugin trunk/pgsrc/Help%2FWikiBlogPlugin trunk/pgsrc/Help%2FWikiFormPlugin trunk/pgsrc/Help%2FWikiFormRichPlugin trunk/pgsrc/Help%2FWikiForumPlugin trunk/pgsrc/Help%2FWikiPlugin trunk/pgsrc/Help%2FWikiPollPlugin trunk/pgsrc/Help%2FWikiTranslationPlugin trunk/pgsrc/Help%2FWikiWikiWeb trunk/pgsrc/Help%2FWikicreole trunk/pgsrc/Help%2FWikicreoleTablePlugin trunk/pgsrc/Help%2FYouTubePlugin trunk/pgsrc/Help%2Ftext2pngPlugin trunk/pgsrc/HomePage trunk/pgsrc/HomePageAlias trunk/pgsrc/InterWikiSearch trunk/pgsrc/LdapSearch trunk/pgsrc/LeastPopular trunk/pgsrc/LikePages trunk/pgsrc/LinkDatabase trunk/pgsrc/LinkSearch trunk/pgsrc/ListRelations trunk/pgsrc/LockedPages trunk/pgsrc/ModeratedPage trunk/pgsrc/MostPopular trunk/pgsrc/MyRatings trunk/pgsrc/MyRecentChanges trunk/pgsrc/MyRecentEdits trunk/pgsrc/NewPagesPerUser trunk/pgsrc/OrphanedPages trunk/pgsrc/PageDump trunk/pgsrc/PageHistory trunk/pgsrc/PageInfo trunk/pgsrc/PasswordReset trunk/pgsrc/PhpWikiAdministration trunk/pgsrc/PhpWikiAdministration%2FChown trunk/pgsrc/PhpWikiAdministration%2FDeleteAcl trunk/pgsrc/PhpWikiAdministration%2FPurge trunk/pgsrc/PhpWikiAdministration%2FRemove trunk/pgsrc/PhpWikiAdministration%2FRename trunk/pgsrc/PhpWikiAdministration%2FSearchReplace trunk/pgsrc/PhpWikiAdministration%2FSetAcl trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/pgsrc/PhpWikiDocumentation trunk/pgsrc/PhpWikiManual trunk/pgsrc/PhpWikiPoll trunk/pgsrc/PhpWikiRecentChanges trunk/pgsrc/PluginManager trunk/pgsrc/ProjectSummary trunk/pgsrc/RandomPage trunk/pgsrc/RateIt trunk/pgsrc/RecentChanges trunk/pgsrc/RecentChangesMyPages trunk/pgsrc/RecentComments trunk/pgsrc/RecentEdits trunk/pgsrc/RecentNewPages trunk/pgsrc/RecentReleases trunk/pgsrc/RecentVisitors trunk/pgsrc/RelatedChanges trunk/pgsrc/San%20Diego trunk/pgsrc/SandBox trunk/pgsrc/SearchHighlight trunk/pgsrc/SemanticRelations trunk/pgsrc/SemanticSearch trunk/pgsrc/SetGlobalAccessRights trunk/pgsrc/SetGlobalAccessRightsSimple trunk/pgsrc/SpecialPages trunk/pgsrc/SpellCheck trunk/pgsrc/SystemInfo trunk/pgsrc/Template%2FAttribute trunk/pgsrc/Template%2FCategory trunk/pgsrc/Template%2FExample trunk/pgsrc/Template%2FLinkto trunk/pgsrc/Template%2FNewPlugin trunk/pgsrc/Template%2FRelation trunk/pgsrc/Template%2FTalk trunk/pgsrc/Template%2FUserPage trunk/pgsrc/The%20PhpWiki%20programming%20team trunk/pgsrc/TitleSearch trunk/pgsrc/TranslateText trunk/pgsrc/UpLoad trunk/pgsrc/UriResolver trunk/pgsrc/UserContribs trunk/pgsrc/UserPreferences trunk/pgsrc/UserRatings trunk/pgsrc/WantedPages trunk/pgsrc/WatchPage trunk/pgsrc/WhoIsOnline trunk/pgsrc/WikiBlog trunk/pgsrc/area trunk/pgsrc/is_a trunk/pgsrc/located_in trunk/pgsrc/population Modified: trunk/pgsrc/AllPages =================================================================== --- trunk/pgsrc/AllPages 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllPages 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllPages; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AllPagesByAcl =================================================================== --- trunk/pgsrc/AllPagesByAcl 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllPagesByAcl 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllPagesByAcl; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AllPagesCreatedByMe =================================================================== --- trunk/pgsrc/AllPagesCreatedByMe 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllPagesCreatedByMe 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllPagesCreatedByMe; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AllPagesLastEditedByMe =================================================================== --- trunk/pgsrc/AllPagesLastEditedByMe 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllPagesLastEditedByMe 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllPagesLastEditedByMe; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AllPagesOwnedByMe =================================================================== --- trunk/pgsrc/AllPagesOwnedByMe 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllPagesOwnedByMe 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllPagesOwnedByMe; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AllUserPages =================================================================== --- trunk/pgsrc/AllUserPages 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllUserPages 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllUserPages; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AllUsers =================================================================== --- trunk/pgsrc/AllUsers 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AllUsers 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AllUsers; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AppendText =================================================================== --- trunk/pgsrc/AppendText 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AppendText 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AppendText; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/AuthorHistory =================================================================== --- trunk/pgsrc/AuthorHistory 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/AuthorHistory 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=AuthorHistory; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/BackLinks =================================================================== --- trunk/pgsrc/BackLinks 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/BackLinks 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=BackLinks; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/BlogArchives =================================================================== --- trunk/pgsrc/BlogArchives 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/BlogArchives 2025-02-18 03:41:07 UTC (rev 11123) @@ -2,7 +2,7 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) Content-Type: application/x-phpwiki; pagename=BlogArchives; - flags=""; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/BlogJournal =================================================================== --- trunk/pgsrc/BlogJournal 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/BlogJournal 2025-02-18 03:41:07 UTC (rev 11123) @@ -2,7 +2,7 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) Content-Type: application/x-phpwiki; pagename=BlogJournal; - flags=""; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CategoryActionPage =================================================================== --- trunk/pgsrc/CategoryActionPage 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CategoryActionPage 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=CategoryActionPage; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CategoryCategory =================================================================== --- trunk/pgsrc/CategoryCategory 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CategoryCategory 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=CategoryCategory; flags=EXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CategoryDebugPage =================================================================== --- trunk/pgsrc/CategoryDebugPage 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CategoryDebugPage 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=CategoryDebugPage; author=The%20PhpWiki%20Team; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CategoryGroup =================================================================== --- trunk/pgsrc/CategoryGroup 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CategoryGroup 2025-02-18 03:41:07 UTC (rev 11123) @@ -2,7 +2,7 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) Content-Type: application/x-phpwiki; pagename=CategoryGroup; - flags=""; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CategoryHomePages =================================================================== --- trunk/pgsrc/CategoryHomePages 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CategoryHomePages 2025-02-18 03:41:07 UTC (rev 11123) @@ -2,7 +2,7 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) Content-Type: application/x-phpwiki; pagename=CategoryHomePages; - flags=""; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CategoryWikiPlugin =================================================================== --- trunk/pgsrc/CategoryWikiPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CategoryWikiPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=CategoryWikiPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Copyrights =================================================================== --- trunk/pgsrc/Copyrights 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Copyrights 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Copyrights; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/CreatePage =================================================================== --- trunk/pgsrc/CreatePage 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/CreatePage 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=CreatePage; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/FindPage =================================================================== --- trunk/pgsrc/FindPage 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/FindPage 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=FindPage; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/FullRecentChanges =================================================================== --- trunk/pgsrc/FullRecentChanges 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/FullRecentChanges 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=FullRecentChanges; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/FullTextSearch =================================================================== --- trunk/pgsrc/FullTextSearch 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/FullTextSearch 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=FullTextSearch; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/FuzzyPages =================================================================== --- trunk/pgsrc/FuzzyPages 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/FuzzyPages 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=FuzzyPages; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/GeneralDisclaimer =================================================================== --- trunk/pgsrc/GeneralDisclaimer 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/GeneralDisclaimer 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=GeneralDisclaimer; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help =================================================================== --- trunk/pgsrc/Help 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FActionPage =================================================================== --- trunk/pgsrc/Help%2FActionPage 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FActionPage 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FActionPage; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAddCommentPlugin =================================================================== --- trunk/pgsrc/Help%2FAddCommentPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAddCommentPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAddCommentPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAddingPages =================================================================== --- trunk/pgsrc/Help%2FAddingPages 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAddingPages 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAddingPages; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users =================================================================== --- trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAdvice%20for%20Mediawiki%20users; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAllPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FAllPagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAllPagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAllPagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAllUsersPlugin =================================================================== --- trunk/pgsrc/Help%2FAllUsersPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAllUsersPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAllUsersPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin =================================================================== --- trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAnalyseAccessLogSqlPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAppendTextPlugin =================================================================== --- trunk/pgsrc/Help%2FAppendTextPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAppendTextPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAppendTextPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAsciiMathPlugin =================================================================== --- trunk/pgsrc/Help%2FAsciiMathPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAsciiMathPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAsciiMathPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAsciiSVGPlugin =================================================================== --- trunk/pgsrc/Help%2FAsciiSVGPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAsciiSVGPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAsciiSVGPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAtomFeedPlugin =================================================================== --- trunk/pgsrc/Help%2FAtomFeedPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAtomFeedPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAtomFeedPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FAuthorHistoryPlugin =================================================================== --- trunk/pgsrc/Help%2FAuthorHistoryPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FAuthorHistoryPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FAuthorHistoryPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FBackLinksPlugin =================================================================== --- trunk/pgsrc/Help%2FBackLinksPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FBackLinksPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FBackLinksPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FBlogArchivesPlugin =================================================================== --- trunk/pgsrc/Help%2FBlogArchivesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FBlogArchivesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FBlogArchivesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FBlogJournalPlugin =================================================================== --- trunk/pgsrc/Help%2FBlogJournalPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FBlogJournalPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FBlogJournalPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FBoxRightPlugin =================================================================== --- trunk/pgsrc/Help%2FBoxRightPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FBoxRightPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FBoxRightPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCacheTestPlugin =================================================================== --- trunk/pgsrc/Help%2FCacheTestPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCacheTestPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCacheTestPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCalendarListPlugin =================================================================== --- trunk/pgsrc/Help%2FCalendarListPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCalendarListPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCalendarListPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCalendarPlugin =================================================================== --- trunk/pgsrc/Help%2FCalendarPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCalendarPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCalendarPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCategories =================================================================== --- trunk/pgsrc/Help%2FCategories 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCategories 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCategories; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FChartPlugin =================================================================== --- trunk/pgsrc/Help%2FChartPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FChartPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FChartPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCommentPlugin =================================================================== --- trunk/pgsrc/Help%2FCommentPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCommentPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCommentPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCreateBibPlugin =================================================================== --- trunk/pgsrc/Help%2FCreateBibPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCreateBibPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCreateBibPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCreatePagePlugin =================================================================== --- trunk/pgsrc/Help%2FCreatePagePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCreatePagePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCreatePagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCreateTocPlugin =================================================================== --- trunk/pgsrc/Help%2FCreateTocPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCreateTocPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCreateTocPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FCurrentTimePlugin =================================================================== --- trunk/pgsrc/Help%2FCurrentTimePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FCurrentTimePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FCurrentTimePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FDeadEndPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FDeadEndPagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FDeadEndPagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FDeadEndPagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FDebugAuthInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugAuthInfoPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FDebugAuthInfoPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -4,6 +4,7 @@ pagename=Help%2FDebugAuthInfoPlugin; flags=PAGE_LOCKED; author=The%20PhpWiki%20Team; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FDiffPlugin =================================================================== --- trunk/pgsrc/Help%2FDiffPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FDiffPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FDiffPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FDynamicIncludePagePlugin =================================================================== --- trunk/pgsrc/Help%2FDynamicIncludePagePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FDynamicIncludePagePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FDynamicIncludePagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FEditMetaDataPlugin =================================================================== --- trunk/pgsrc/Help%2FEditMetaDataPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FEditMetaDataPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FEditMetaDataPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FEditText =================================================================== --- trunk/pgsrc/Help%2FEditText 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FEditText 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FEditText; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FFacebookLikePlugin =================================================================== --- trunk/pgsrc/Help%2FFacebookLikePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FFacebookLikePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FFacebookLikePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FFileInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FFileInfoPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FFileInfoPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FFileInfoPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FFoafViewerPlugin =================================================================== --- trunk/pgsrc/Help%2FFoafViewerPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FFoafViewerPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FFoafViewerPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FFullTextSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FFullTextSearchPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FFullTextSearchPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FFullTextSearchPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FFuzzyPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FFuzzyPagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FFuzzyPagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FFuzzyPagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FGoToPlugin =================================================================== --- trunk/pgsrc/Help%2FGoToPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FGoToPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FGoToPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FGoodStyle =================================================================== --- trunk/pgsrc/Help%2FGoodStyle 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FGoodStyle 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FGoodStyle; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FGoogleLink =================================================================== --- trunk/pgsrc/Help%2FGoogleLink 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FGoogleLink 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FGoogleLink; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FGoogleMapsPlugin =================================================================== --- trunk/pgsrc/Help%2FGoogleMapsPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FGoogleMapsPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FGoogleMapsPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FGooglePluginPlugin =================================================================== --- trunk/pgsrc/Help%2FGooglePluginPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FGooglePluginPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FGooglePluginPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FGraphVizPlugin =================================================================== --- trunk/pgsrc/Help%2FGraphVizPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FGraphVizPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FGraphVizPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FHelloWorldPlugin =================================================================== --- trunk/pgsrc/Help%2FHelloWorldPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FHelloWorldPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FHelloWorldPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FHowToUseWiki =================================================================== --- trunk/pgsrc/Help%2FHowToUseWiki 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FHowToUseWiki 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FHowToUseWiki; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FHtmlConverterPlugin =================================================================== --- trunk/pgsrc/Help%2FHtmlConverterPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FHtmlConverterPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FHtmlConverterPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FImages =================================================================== --- trunk/pgsrc/Help%2FImages 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FImages 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FImages; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FIncludePagePlugin =================================================================== --- trunk/pgsrc/Help%2FIncludePagePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FIncludePagePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FIncludePagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FIncludePagesPlugin =================================================================== --- trunk/pgsrc/Help%2FIncludePagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FIncludePagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FIncludePagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FIncludeSiteMapPlugin =================================================================== --- trunk/pgsrc/Help%2FIncludeSiteMapPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FIncludeSiteMapPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FIncludeSiteMapPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FIncludeTreePlugin =================================================================== --- trunk/pgsrc/Help%2FIncludeTreePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FIncludeTreePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FIncludeTreePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FInterWiki =================================================================== --- trunk/pgsrc/Help%2FInterWiki 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FInterWiki 2025-02-18 03:41:07 UTC (rev 11123) @@ -1,4 +1,4 @@ -Date: Thu, 13 Feb 2025 06:00:23 +0000 +Date: Sat, 15 Feb 2025 07:47:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Help%2FInterWiki; @@ -34,8 +34,9 @@ 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|CategoryCategory]] page, yet this page -won't show up in the back-links listing of [[:CategoryCategory|CategoryCategory]]. +[[Category:Category]] links to the [[:CategoryCategory|CategoryCategory]] +page, yet this page won't show up in the back-links listing of +[[:CategoryCategory|CategoryCategory]]. The term "~InterWiki" also refers to a broader concept. See [[InterWikiSearch]] for more links. Modified: trunk/pgsrc/Help%2FInterWikiSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FInterWikiSearchPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FInterWikiSearchPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FInterWikiSearchPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FJabberPresencePlugin =================================================================== --- trunk/pgsrc/Help%2FJabberPresencePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FJabberPresencePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FJabberPresencePlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FJeff%20Dairiki =================================================================== --- trunk/pgsrc/Help%2FJeff%20Dairiki 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FJeff%20Dairiki 2025-02-18 03:41:07 UTC (rev 11123) @@ -2,7 +2,7 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) Content-Type: application/x-phpwiki; pagename=Help%2FJeff%20Dairiki; - flags=""; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FLdapSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FLdapSearchPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FLdapSearchPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FLdapSearchPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FLikePagesPlugin =================================================================== --- trunk/pgsrc/Help%2FLikePagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FLikePagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FLikePagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FLinkDatabasePlugin =================================================================== --- trunk/pgsrc/Help%2FLinkDatabasePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FLinkDatabasePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FLinkDatabasePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FLinkIcons =================================================================== --- trunk/pgsrc/Help%2FLinkIcons 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FLinkIcons 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FLinkIcons; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FListPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FListPagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FListPagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FListPagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FListRelationsPlugin =================================================================== --- trunk/pgsrc/Help%2FListRelationsPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FListRelationsPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FListRelationsPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FListSubpagesPlugin =================================================================== --- trunk/pgsrc/Help%2FListSubpagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FListSubpagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FListSubpagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FMagicPhpWikiURLs =================================================================== --- trunk/pgsrc/Help%2FMagicPhpWikiURLs 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FMagicPhpWikiURLs 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FMagicPhpWikiURLs; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FMediawikiTablePlugin =================================================================== --- trunk/pgsrc/Help%2FMediawikiTablePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FMediawikiTablePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FMediawikiTablePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FModeratedPagePlugin =================================================================== --- trunk/pgsrc/Help%2FModeratedPagePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FModeratedPagePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FModeratedPagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FMoreAboutMechanics =================================================================== --- trunk/pgsrc/Help%2FMoreAboutMechanics 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FMoreAboutMechanics 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FMoreAboutMechanics; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FMostPopularPlugin =================================================================== --- trunk/pgsrc/Help%2FMostPopularPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FMostPopularPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FMostPopularPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FNewPagesPerUserPlugin =================================================================== --- trunk/pgsrc/Help%2FNewPagesPerUserPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FNewPagesPerUserPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FNewPagesPerUserPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FNoCachePlugin =================================================================== --- trunk/pgsrc/Help%2FNoCachePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FNoCachePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FNoCachePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FOldStyleTablePlugin =================================================================== --- trunk/pgsrc/Help%2FOldStyleTablePlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FOldStyleTablePlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FOldStyleTablePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FOrphanedPagesPlugin =================================================================== --- trunk/pgsrc/Help%2FOrphanedPagesPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FOrphanedPagesPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FOrphanedPagesPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPageDumpPlugin =================================================================== --- trunk/pgsrc/Help%2FPageDumpPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPageDumpPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPageDumpPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPageGroupPlugin =================================================================== --- trunk/pgsrc/Help%2FPageGroupPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPageGroupPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPageGroupPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPageHistoryPlugin =================================================================== --- trunk/pgsrc/Help%2FPageHistoryPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPageHistoryPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPageHistoryPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPageInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FPageInfoPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPageInfoPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPageInfoPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPageList =================================================================== --- trunk/pgsrc/Help%2FPageList 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPageList 2025-02-18 03:41:07 UTC (rev 11123) @@ -2,7 +2,7 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) Content-Type: application/x-phpwiki; pagename=Help%2FPageList; - flags=""; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPagePermissions =================================================================== --- trunk/pgsrc/Help%2FPagePermissions 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPagePermissions 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPagePermissions; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPageTrailPlugin =================================================================== --- trunk/pgsrc/Help%2FPageTrailPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPageTrailPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPageTrailPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPasswordResetPlugin =================================================================== --- trunk/pgsrc/Help%2FPasswordResetPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPasswordResetPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPasswordResetPlugin; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPhpHighlightPlugin =================================================================== --- trunk/pgsrc/Help%2FPhpHighlightPlugin 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPhpHighlightPlugin 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPhpHighlightPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FPhpWiki =================================================================== --- trunk/pgsrc/Help%2FPhpWiki 2025-02-18 02:58:05 UTC (rev 11122) +++ trunk/pgsrc/Help%2FPhpWiki 2025-02-18 03:41:07 UTC (rev 11123) @@ -3,6 +3,7 @@ Content-Type: application/x-phpwiki; pagename=Help%2FPhpWiki; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2... [truncated message content] |
From: <var...@us...> - 2025-03-15 10:09:39
|
Revision: 11183 http://sourceforge.net/p/phpwiki/code/11183 Author: vargenau Date: 2025-03-15 10:09:30 +0000 (Sat, 15 Mar 2025) Log Message: ----------- Use LF terminator Modified Paths: -------------- trunk/pgsrc/CategoryDebugPage trunk/pgsrc/DebugAuthInfo trunk/pgsrc/DebugBackendInfo trunk/pgsrc/DebugGroupInfo trunk/pgsrc/EditMetaData trunk/pgsrc/Help%2FDebugRetransformPlugin trunk/pgsrc/Help%2FSystemInfoPlugin trunk/pgsrc/PhpWikiDebug Modified: trunk/pgsrc/CategoryDebugPage =================================================================== --- trunk/pgsrc/CategoryDebugPage 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/CategoryDebugPage 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,13 +1,13 @@ Date: Fri, 14 Mar 2025 22:14:45 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=CategoryDebugPage; - author=The%20PhpWiki%20Team; - author=The%20PhpWiki%20Team; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<BackLinks info||=pagename,mtime,hits,author sortby||=pagename>> - ----- -[[CategoryCategory]] +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=CategoryDebugPage; + author=The%20PhpWiki%20Team; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<BackLinks info||=pagename,mtime,hits,author sortby||=pagename>> + +---- +[[CategoryCategory]] Modified: trunk/pgsrc/DebugAuthInfo =================================================================== --- trunk/pgsrc/DebugAuthInfo 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/DebugAuthInfo 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,15 +1,15 @@ -Date: Tue, 11 Feb 2025 19:20:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=DebugAuthInfo; - flags=PAGE_LOCKED; - author=The%20PhpWiki%20Team; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<DebugAuthInfo>> - ----- -[[CategoryActionPage]] -[[CategoryDebugPage]] +Date: Tue, 11 Feb 2025 19:20:41 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=DebugAuthInfo; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<DebugAuthInfo>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/DebugBackendInfo =================================================================== --- trunk/pgsrc/DebugBackendInfo 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/DebugBackendInfo 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,17 +1,17 @@ -Date: Tue, 11 Feb 2025 18:45:19 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=DebugBackendInfo; - flags=PAGE_LOCKED; - author=The%20PhpWiki%20Team; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Detailed view of a page, which is probably more useful for debugging than anything else. - -<<DebugBackendInfo page||=''>> - ----- -[[CategoryActionPage]] -[[CategoryDebugPage]] +Date: Tue, 11 Feb 2025 18:45:19 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=DebugBackendInfo; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +Detailed view of a page, which is probably more useful for debugging than anything else. + +<<DebugBackendInfo page||=''>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/DebugGroupInfo =================================================================== --- trunk/pgsrc/DebugGroupInfo 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/DebugGroupInfo 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,15 +1,15 @@ -Date: Fri, 14 Feb 2025 02:50:55 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=DebugGroupInfo; - flags=PAGE_LOCKED; - author=The%20PhpWiki%20Team; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<DebugGroupInfo>> - ----- -[[CategoryActionPage]] -[[CategoryDebugPage]] +Date: Fri, 14 Feb 2025 02:50:55 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=DebugGroupInfo; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<DebugGroupInfo>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/EditMetaData =================================================================== --- trunk/pgsrc/EditMetaData 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/EditMetaData 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,14 +1,14 @@ -Date: Tue, 11 Feb 2025 19:47:08 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=EditMetaData; - flags=PAGE_LOCKED; - author=The%20PhpWiki%20Team; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<EditMetaData>> - ----- -[[CategoryActionPage]] -[[CategoryDebugPage]] +Date: Tue, 11 Feb 2025 19:47:08 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=EditMetaData; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +<<EditMetaData>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] Modified: trunk/pgsrc/Help%2FDebugRetransformPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugRetransformPlugin 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/Help%2FDebugRetransformPlugin 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,44 +1,44 @@ -Date: Tue, 11 Feb 2025 19:41:01 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=Help%2FDebugRetransformPlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - author=The%20PhpWiki%20Team; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Show a markup retransformation of a wiki page. - -== Usage == - -{{{ -<<DebugRetransform arguments>> -}}} - -== Arguments == - -{| class="bordered" -|- -! Argument -! Description -! Default value -|- -| **page** -| The page to show markup retransformation from. -| current pagename -|} - -== Example == - -<<DebugRetransform page=HomePage>> - -== Author == -* [[Help:Reini Urban|Reini Urban]] - -== See Also == - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -[[CategoryDebugPage]] -</noinclude> +Date: Tue, 11 Feb 2025 19:41:01 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=Help%2FDebugRetransformPlugin; + flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +Show a markup retransformation of a wiki page. + +== Usage == + +{{{ +<<DebugRetransform arguments>> +}}} + +== Arguments == + +{| class="bordered" +|- +! Argument +! Description +! Default value +|- +| **page** +| The page to show markup retransformation from. +| current pagename +|} + +== Example == + +<<DebugRetransform page=HomePage>> + +== Author == +* [[Help:Reini Urban|Reini Urban]] + +== See Also == + +<noinclude> +---- +[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] +</noinclude> Modified: trunk/pgsrc/Help%2FSystemInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FSystemInfoPlugin 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/Help%2FSystemInfoPlugin 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,31 +1,31 @@ -Date: Tue, 11 Feb 2025 20:18:59 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=Help%2FSystemInfoPlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - author=The%20PhpWiki%20Team; - charset=UTF-8 -Content-Transfer-Encoding: binary - -The **~SystemInfo** [[Help:WikiPlugin|plugin]] provides access to lower -level system information for the platform ~PhpWiki is installed on. - -== Usage == - -{{{ - <<SystemInfo all>> - or <<SystemInfo pagestats cachestats discspace hitstats>> - or <<SystemInfo version>> - or <<SystemInfo current_theme>> - or <<SystemInfo PHPWIKI_DIR>> -}}} - -== Example == - -<<SystemInfo all>> - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -[[CategoryDebugPage]] -</noinclude> +Date: Tue, 11 Feb 2025 20:18:59 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=Help%2FSystemInfoPlugin; + flags=PAGE_LOCKED%2CEXTERNAL_PAGE; + author=The%20PhpWiki%20Team; + charset=UTF-8 +Content-Transfer-Encoding: binary + +The **~SystemInfo** [[Help:WikiPlugin|plugin]] provides access to lower +level system information for the platform ~PhpWiki is installed on. + +== Usage == + +{{{ + <<SystemInfo all>> + or <<SystemInfo pagestats cachestats discspace hitstats>> + or <<SystemInfo version>> + or <<SystemInfo current_theme>> + or <<SystemInfo PHPWIKI_DIR>> +}}} + +== Example == + +<<SystemInfo all>> + +<noinclude> +---- +[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] +[[CategoryDebugPage]] +</noinclude> Modified: trunk/pgsrc/PhpWikiDebug =================================================================== --- trunk/pgsrc/PhpWikiDebug 2025-03-15 09:27:28 UTC (rev 11182) +++ trunk/pgsrc/PhpWikiDebug 2025-03-15 10:09:30 UTC (rev 11183) @@ -1,69 +1,69 @@ -Date: Tue, 11 Feb 2025 19:02:57 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=PhpWikiDebug; - flags=PAGE_LOCKED; - author=The%20PhpWiki%20Team; - acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; - charset=UTF-8 -Content-Transfer-Encoding: binary - -**//Note://** //Most of the actions on this page require administrative -privileges.// - -<<CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 >> - -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 HTML 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 page content will be transformed and re-cached next -time someone views it.) - -<<WikiAdminUtils action=purge-cache>> - -== Clean Wiki Database of Illegal Filenames == - -Page names beginning with the subpage-separator, 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. - -<<WikiAdminUtils action=purge-bad-pagenames>> - -== Clean Wiki Database 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. - -<<WikiAdminUtils action=purge-empty-pages>> - -== Check Wiki Database == - -This button will check the Wiki page database for consistency. This can last -several minutes. - -<<WikiAdminUtils action=db-check>> - -== Rebuild Wiki Database == - -This will retransform all pages and rebuild the Wiki database on consistency -errors or parser updates. This can last several minutes, eat a lot of memory -and possibly times out! - -<<WikiAdminUtils action=db-rebuild>> - ----- -[[CategoryActionPage]] -[[CategoryDebugPage]] +Date: Tue, 11 Feb 2025 19:02:57 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Content-Type: application/x-phpwiki; + pagename=PhpWikiDebug; + flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; + acl="view:_AUTHENTICATED; edit:_AUTHENTICATED; create:_AUTHENTICATED,_BOGOUSER; list:_AUTHENTICATED; remove:_ADMIN,_OWNER; change:_ADMIN,_OWNER; dump:_EVERY"; + charset=UTF-8 +Content-Transfer-Encoding: binary + +**//Note://** //Most of the actions on this page require administrative +privileges.// + +<<CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1 >> + +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 HTML 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 page content will be transformed and re-cached next +time someone views it.) + +<<WikiAdminUtils action=purge-cache>> + +== Clean Wiki Database of Illegal Filenames == + +Page names beginning with the subpage-separator, 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. + +<<WikiAdminUtils action=purge-bad-pagenames>> + +== Clean Wiki Database 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. + +<<WikiAdminUtils action=purge-empty-pages>> + +== Check Wiki Database == + +This button will check the Wiki page database for consistency. This can last +several minutes. + +<<WikiAdminUtils action=db-check>> + +== Rebuild Wiki Database == + +This will retransform all pages and rebuild the Wiki database on consistency +errors or parser updates. This can last several minutes, eat a lot of memory +and possibly times out! + +<<WikiAdminUtils action=db-rebuild>> + +---- +[[CategoryActionPage]] +[[CategoryDebugPage]] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-03-15 10:13:14
|
Revision: 11184 http://sourceforge.net/p/phpwiki/code/11184 Author: vargenau Date: 2025-03-15 10:13:03 +0000 (Sat, 15 Mar 2025) Log Message: ----------- Remove duplicate author Modified Paths: -------------- trunk/pgsrc/CategoryDebugPage trunk/pgsrc/Help%2FDebugAuthInfoPlugin Modified: trunk/pgsrc/CategoryDebugPage =================================================================== --- trunk/pgsrc/CategoryDebugPage 2025-03-15 10:09:30 UTC (rev 11183) +++ trunk/pgsrc/CategoryDebugPage 2025-03-15 10:13:03 UTC (rev 11184) @@ -1,9 +1,8 @@ -Date: Fri, 14 Mar 2025 22:14:45 +0000 +Date: Sat, 15 Mar 2025 11:12:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=CategoryDebugPage; author=The%20PhpWiki%20Team; - author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/pgsrc/Help%2FDebugAuthInfoPlugin =================================================================== --- trunk/pgsrc/Help%2FDebugAuthInfoPlugin 2025-03-15 10:09:30 UTC (rev 11183) +++ trunk/pgsrc/Help%2FDebugAuthInfoPlugin 2025-03-15 10:13:03 UTC (rev 11184) @@ -1,10 +1,9 @@ -Date: Fri, 14 Feb 2025 03:08:10 +0000 +Date: Sat, 15 Mar 2025 11:12:26 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Help%2FDebugAuthInfoPlugin; flags=PAGE_LOCKED; author=The%20PhpWiki%20Team; - author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |