From 337857e44c47a6b63f4684e2fc8837a9967cdb17 Mon Sep 17 00:00:00 2001 From: vargenau Date: Fri, 14 Jun 2013 08:54:02 +0000 Subject: [PATCH] Remove chmod; split subpages before translation git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@8802 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- TODO | 1 - lib/IniConfig.php | 5 -- lib/plugin/SemanticRelations.php | 4 +- lib/plugin/SemanticSearch.php | 2 +- lib/plugin/SemanticSearchAdvanced.php | 2 +- lib/plugin/WikiAdminChown.php | 2 +- lib/plugin/WikiAdminDeleteAcl.php | 4 +- lib/plugin/WikiAdminMarkup.php | 2 +- lib/plugin/WikiAdminPurge.php | 2 +- lib/plugin/WikiAdminRemove.php | 2 +- lib/plugin/WikiAdminRename.php | 2 +- lib/plugin/WikiAdminSelect.php | 4 +- lib/plugin/WikiAdminSetAcl.php | 2 +- lib/plugin/WikiAdminSetAclSimple.php | 2 +- lib/plugin/WikiAdminSetExternal.php | 2 +- lib/plugin/_WikiTranslation.php | 80 ++++++++++++------------ locale/de/pgsrc/PhpWikiSystemverwalten | 4 +- locale/it/pgsrc/AmministrazioneDiPhpWiki | 4 +- locale/nl/pgsrc/PhpWikiBeheer | 4 +- themes/Crao/templates/editpage.tmpl | 8 +-- themes/Portland/templates/editpage.tmpl | 8 +-- themes/Wordpress/templates/editpage.tmpl | 8 +-- themes/blog/templates/blogform.tmpl | 4 +- themes/default/templates/blogform.tmpl | 4 +- themes/default/templates/editpage.tmpl | 8 +-- 25 files changed, 82 insertions(+), 88 deletions(-) diff --git a/TODO b/TODO index 352c8c946..ada0c9076 100644 --- a/TODO +++ b/TODO @@ -83,7 +83,6 @@ Maybe (probably defer): to statically define predicates used by PhpWiki:SemanticWeb (semantically enriched links, like interwiki links). * SqlResult paging (finished?) -* plugin\WikiAdminSetAclSimple, Chmod * plugin\NewUserWelcomePage.php (some better template solution) * plugin\SearchHighlight * logfile stuff: diff --git a/lib/IniConfig.php b/lib/IniConfig.php index 5a6bb0c5e..d1877f31b 100644 --- a/lib/IniConfig.php +++ b/lib/IniConfig.php @@ -728,7 +728,6 @@ function fixup_static_configs($file) $AllAllowedPlugins[] = 'TexToPng'; $AllAllowedPlugins[] = 'VisualWiki'; $AllAllowedPlugins[] = 'WantedPagesOld'; - $AllAllowedPlugins[] = 'WikiAdminChmod'; $AllAllowedPlugins[] = 'WikiAdminMarkup'; $AllAllowedPlugins[] = 'WikiForum'; $AllAllowedPlugins[] = '_WikiTranslation'; @@ -767,10 +766,6 @@ function fixup_static_configs($file) // The FUSIONFORGE theme omits them if (!(defined('FUSIONFORGE') and FUSIONFORGE)) { - // Add some some action pages depending on configuration - if (DEBUG) { - $AllActionPages[] = 'PhpWikiAdministration/Chmod'; - } $AllActionPages[] = 'PhpWikiAdministration/Markup'; } diff --git a/lib/plugin/SemanticRelations.php b/lib/plugin/SemanticRelations.php index 016eae8fd..763f8ac79 100644 --- a/lib/plugin/SemanticRelations.php +++ b/lib/plugin/SemanticRelations.php @@ -131,8 +131,8 @@ class WikiPlugin_SemanticRelations if ($nohelp) return $relhtml; return HTML($relhtml, HTML::hr(), - WikiLink(_("Help/SemanticRelations"), false, - HTML::em(_("Help/SemanticRelations"))), + WikiLink(__("Help").":".__("SemanticRelations"), false, + HTML::em(_("Help")."/"._("SemanticRelations"))), " - ", HTML::em(_("Find out how to add relations and attributes to pages."))); } diff --git a/lib/plugin/SemanticSearch.php b/lib/plugin/SemanticSearch.php index 2a16c036c..ae731e6cc 100644 --- a/lib/plugin/SemanticSearch.php +++ b/lib/plugin/SemanticSearch.php @@ -284,7 +284,7 @@ class WikiPlugin_SemanticSearch _("Warning:"), HTML::br(), _("No relations nor attributes in the whole wikidb defined!") , "\n" - , fmt("See %s", WikiLink(_("Help:SemanticRelations"))))); + , fmt("See %s", WikiLink(_("Help").":"._("SemanticRelations"))))); extract($args); // for convenience and harmony we allow GET requests also. if (!$request->isPost()) { diff --git a/lib/plugin/SemanticSearchAdvanced.php b/lib/plugin/SemanticSearchAdvanced.php index a0f4c1ee4..d5d538909 100644 --- a/lib/plugin/SemanticSearchAdvanced.php +++ b/lib/plugin/SemanticSearchAdvanced.php @@ -131,7 +131,7 @@ class WikiPlugin_SemanticSearchAdvanced $posted = $request->getArg('semsearch'); $request->setArg('semsearch', false); if ($request->isPost() and isset($posted['help'])) { - $request->redirect(WikiURL(_("Help/SemanticSearchAdvancedPlugin"), + $request->redirect(WikiURL(__("Help")."/".__("SemanticSearchAdvancedPlugin"), array('redirectfrom' => $basepage), true)); } $allrelations = $dbi->listRelations(); diff --git a/lib/plugin/WikiAdminChown.php b/lib/plugin/WikiAdminChown.php index ff7ed2b8a..8085b81b8 100644 --- a/lib/plugin/WikiAdminChown.php +++ b/lib/plugin/WikiAdminChown.php @@ -104,7 +104,7 @@ class WikiPlugin_WikiAdminChown function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if (!$request->getArg('action') == _("PhpWikiAdministration/Chown")) { + if (!$request->getArg('action') == __("PhpWikiAdministration")."/".__("Chown")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminDeleteAcl.php b/lib/plugin/WikiAdminDeleteAcl.php index 28af6c6d2..d9056bcb6 100644 --- a/lib/plugin/WikiAdminDeleteAcl.php +++ b/lib/plugin/WikiAdminDeleteAcl.php @@ -22,7 +22,7 @@ */ /** - * Set simple individual PagePermissions + * Delete individual PagePermissions * * Usage: <> or called via WikiAdminSelect * Author: Marc-Etienne Vargenau, Alcatel-Lucent @@ -80,7 +80,7 @@ class WikiPlugin_WikiAdminDeleteAcl function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if ($request->getArg('action') != _("PhpWikiAdministration/AdminAclDelete")) { + if ($request->getArg('action') != __("PhpWikiAdministration")."/".__("AdminDeleteAcl")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminMarkup.php b/lib/plugin/WikiAdminMarkup.php index 94fb4b13d..982377cb2 100644 --- a/lib/plugin/WikiAdminMarkup.php +++ b/lib/plugin/WikiAdminMarkup.php @@ -106,7 +106,7 @@ class WikiPlugin_WikiAdminMarkup function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if (!$request->getArg('action') == _("PhpWikiAdministration/Markup")) { + if (!$request->getArg('action') == __("PhpWikiAdministration")."/".__("Markup")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminPurge.php b/lib/plugin/WikiAdminPurge.php index ee294d07e..0c5c0f2e7 100644 --- a/lib/plugin/WikiAdminPurge.php +++ b/lib/plugin/WikiAdminPurge.php @@ -90,7 +90,7 @@ class WikiPlugin_WikiAdminPurge function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if ($request->getArg('action') != _("PhpWikiAdministration/Purge")) { + if ($request->getArg('action') != __("PhpWikiAdministration")."/".__("Purge")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminRemove.php b/lib/plugin/WikiAdminRemove.php index 7144fb3c1..102db9732 100644 --- a/lib/plugin/WikiAdminRemove.php +++ b/lib/plugin/WikiAdminRemove.php @@ -134,7 +134,7 @@ class WikiPlugin_WikiAdminRemove function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if ($request->getArg('action') != _("PhpWikiAdministration/Remove")) { + if ($request->getArg('action') != __("PhpWikiAdministration")."/".__("Remove")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminRename.php b/lib/plugin/WikiAdminRename.php index 63c677e5c..8bcbe2fe7 100644 --- a/lib/plugin/WikiAdminRename.php +++ b/lib/plugin/WikiAdminRename.php @@ -65,7 +65,7 @@ class WikiPlugin_WikiAdminRename { $action = $request->getArg('action'); if ($action != 'browse' and $action != 'rename' - and $action != _("PhpWikiAdministration") . "/" . _("Rename") + and $action != __("PhpWikiAdministration"). "/". __("Rename") ) { return $this->disabled(_("Plugin not run: not in browse mode")); } diff --git a/lib/plugin/WikiAdminSelect.php b/lib/plugin/WikiAdminSelect.php index 8114a7e45..aed2459a0 100644 --- a/lib/plugin/WikiAdminSelect.php +++ b/lib/plugin/WikiAdminSelect.php @@ -23,7 +23,7 @@ /** * Allows selection of multiple pages which get passed to other - * WikiAdmin plugins then. Then do Rename, Remove, Chmod, Chown, ... + * WikiAdmin plugins then. Then do Rename, Remove, Chown, ... * * Usage: <> * Author: Reini Urban @@ -208,7 +208,7 @@ class WikiPlugin_WikiAdminSelect $args["p[$page]"] = 1; } header("Location: " . - WikiURL(_("PhpWikiAdministration") . "/" . _($plugin_action), $args, 1)); + WikiURL(__("PhpWikiAdministration")."/".__($plugin_action), $args, 1)); exit(); } } elseif (empty($args['s'])) { diff --git a/lib/plugin/WikiAdminSetAcl.php b/lib/plugin/WikiAdminSetAcl.php index 935db15dd..a0e42c1a6 100644 --- a/lib/plugin/WikiAdminSetAcl.php +++ b/lib/plugin/WikiAdminSetAcl.php @@ -138,7 +138,7 @@ class WikiPlugin_WikiAdminSetAcl function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if ($request->getArg('action') != _("PhpWikiAdministration/SetAcl")) { + if ($request->getArg('action') != __("PhpWikiAdministration")."/".__("SetAcl")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminSetAclSimple.php b/lib/plugin/WikiAdminSetAclSimple.php index 9dae5dfee..e7976d1c8 100644 --- a/lib/plugin/WikiAdminSetAclSimple.php +++ b/lib/plugin/WikiAdminSetAclSimple.php @@ -42,7 +42,7 @@ class WikiPlugin_WikiAdminSetAclSimple function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if ($request->getArg('action') != _("PhpWikiAdministration/SetAclSimple")) { + if ($request->getArg('action') != __("PhpWikiAdministration")."/".__("SetAclSimple")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/WikiAdminSetExternal.php b/lib/plugin/WikiAdminSetExternal.php index d35cae1b1..ff6278f77 100644 --- a/lib/plugin/WikiAdminSetExternal.php +++ b/lib/plugin/WikiAdminSetExternal.php @@ -91,7 +91,7 @@ class WikiPlugin_WikiAdminSetExternal function run($dbi, $argstr, &$request, $basepage) { if ($request->getArg('action') != 'browse') { - if (!$request->getArg('action') == _("PhpWikiAdministration/SetExternal")) { + if (!$request->getArg('action') == __("PhpWikiAdministration")."/".__("SetExternal")) { return $this->disabled(_("Plugin not run: not in browse mode")); } } diff --git a/lib/plugin/_WikiTranslation.php b/lib/plugin/_WikiTranslation.php index e263326f3..e9cff7180 100644 --- a/lib/plugin/_WikiTranslation.php +++ b/lib/plugin/_WikiTranslation.php @@ -45,6 +45,8 @@ /* Container for untranslated pagenames. Needed to show up in locale/po/phpwiki.pot */ $pgsrc_container = _("AddComment") . ',' . + _("AddCommentPlugin") . ',' . + _("AddingPages") . ',' . _("AllPages") . ',' . _("AllPagesCreatedByMe") . ',' . _("AllPagesLastEditedByMe") . ',' . @@ -57,6 +59,7 @@ $pgsrc_container = _("AtomFeed") . ',' . _("_AuthInfo") . ',' . _("AuthorHistory") . ',' . + _("AuthorHistoryPlugin") . ',' . _("_BackendInfo") . ',' . _("BackLinks") . ',' . _("BlogArchives") . ',' . @@ -65,26 +68,35 @@ $pgsrc_container = _("CacheTest") . ',' . _("Calendar") . ',' . _("CalendarList") . ',' . + _("CalendarListPlugin") . ',' . + _("CalendarPlugin") . ',' . _("CategoryCategory") . ',' . _("CategoryHomePages") . ',' . _("CategoryPage") . ',' . _("Chart") . ',' . + _("Chown") . ',' . _("Comment") . ',' . + _("CommentPlugin") . ',' . _("CreateBib") . ',' . _("CreatePage") . ',' . _("CreateToc") . ',' . + _("CreateTocPlugin") . ',' . _("CurrentTime") . ',' . _("DeadEndPages") . ',' . _("DebugInfo") . ',' . _("Diff") . ',' . _("DynamicIncludePage") . ',' . _("EditMetaData") . ',' . + _("EditMetaDataPlugin") . ',' . _("ExternalSearch") . ',' . + _("ExternalSearchPlugin") . ',' . _("FacebookLike") . ',' . _("FileInfo") . ',' . _("FindPage") . ',' . _("FoafViewer") . ',' . + _("FoafViewerPlugin") . ',' . _("FrameInclude") . ',' . + _("FrameIncludePlugin") . ',' . _("FullRecentChanges") . ',' . _("FullTextSearch") . ',' . _("FuzzyPages") . ',' . @@ -94,43 +106,12 @@ $pgsrc_container = _("GraphViz") . ',' . _("_GroupInfo") . ',' . _("HelloWorld") . ',' . - _("Help/AddCommentPlugin") . ',' . - _("Help/AddingPages") . ',' . - _("Help/AuthorHistoryPlugin") . ',' . - _("Help/CalendarListPlugin") . ',' . - _("Help/CalendarPlugin") . ',' . - _("Help/CommentPlugin") . ',' . - _("Help/CreateTocPlugin") . ',' . - _("Help/EditMetaDataPlugin") . ',' . - _("Help/ExternalSearchPlugin") . ',' . - _("Help/FoafViewerPlugin") . ',' . - _("Help/FrameIncludePlugin") . ',' . - _("Help/HelloWorldPlugin") . ',' . - _("Help/IncludePagePlugin") . ',' . - _("Help/LinkIcons") . ',' . - _("Help/MagicPhpWikiURLs") . ',' . - _("Help/MoreAboutMechanics") . ',' . - _("Help/OldStyleTablePlugin") . ',' . - _("Help/PhotoAlbumPlugin") . ',' . - _("Help/PhpHighlightPlugin") . ',' . - _("Help/PhpWeatherPlugin") . ',' . - _("Help/PhpWiki") . ',' . - _("Help/PloticusPlugin") . ',' . - _("Help/RawHtmlPlugin") . ',' . - _("Help/RedirectToPlugin") . ',' . - _("Help/RichTablePlugin") . ',' . - _("Help/SystemInfoPlugin") . ',' . - _("Help/TranscludePlugin") . ',' . - _("Help/UnfoldSubpagesPlugin") . ',' . - _("Help/UpLoadPlugin") . ',' . - _("Help/WabiSabi") . ',' . - _("Help/WikiBlogPlugin") . ',' . - _("Help/WikiPlugin") . ',' . - _("Help/WikiWikiWeb") . ',' . + _("HelloWorldPlugin") . ',' . _("HomePageAlias") . ',' . _("HtmlConverter") . ',' . _("Imdb") . ',' . _("IncludePage") . ',' . + _("IncludePagePlugin") . ',' . _("IncludePages") . ',' . _("IncludeSiteMap") . ',' . _("IncludeTree") . ',' . @@ -140,16 +121,20 @@ $pgsrc_container = _("LdapSearch") . ',' . _("LikePages") . ',' . _("LinkDatabase") . ',' . + _("LinkIcons") . ',' . _("LinkSearch") . ',' . _("ListPages") . ',' . _("ListRelations") . ',' . _("ListSubpages") . ',' . + _("MagicPhpWikiURLs") . ',' . _("MediawikiTable") . ',' . _("ModeratedPage") . ',' . + _("MoreAboutMechanics") . ',' . _("MostPopular") . ',' . _("NewPagesPerUser") . ',' . _("NoCache") . ',' . _("OldStyleTable") . ',' . + _("OldStyleTablePlugin") . ',' . _("OrphanedPages") . ',' . _("PageDump") . ',' . _("PageGroup") . ',' . @@ -158,17 +143,17 @@ $pgsrc_container = _("PageTrail") . ',' . _("PasswordReset") . ',' . _("PhotoAlbum") . ',' . + _("PhotoAlbumPlugin") . ',' . _("PhpHighlight") . ',' . + _("PhpHighlightPlugin") . ',' . _("PhpWeather") . ',' . - _("PhpWikiAdministration/Chmod") . ',' . - _("PhpWikiAdministration/Chown") . ',' . - _("PhpWikiAdministration/Remove") . ',' . - _("PhpWikiAdministration/Rename") . ',' . - _("PhpWikiAdministration/Replace") . ',' . - _("PhpWikiAdministration/SetAcl") . ',' . + _("PhpWeatherPlugin") . ',' . + _("PhpWiki") . ',' . + _("PhpWikiAdministration") . ',' . _("PhpWikiDocumentation") . ',' . _("PhpWikiPoll") . ',' . _("Ploticus") . ',' . + _("PloticusPlugin") . ',' . _("PluginManager") . ',' . _("PopularNearby") . ',' . _("PopularTags") . ',' . @@ -180,6 +165,7 @@ $pgsrc_container = _("RandomPage") . ',' . _("RateIt") . ',' . _("RawHtml") . ',' . + _("RawHtmlPlugin") . ',' . _("RecentChanges") . ',' . _("RecentChangesCached") . ',' . _("RecentComments") . ',' . @@ -187,21 +173,29 @@ $pgsrc_container = _("RecentReferrers") . ',' . _("RecentVisitors") . ',' . _("RedirectTo") . ',' . + _("RedirectToPlugin") . ',' . _("RelatedChanges") . ',' . _("ReleaseNotes") . ',' . + _("Remove") . ',' . + _("Rename") . ',' . + _("Replace") . ',' . _("_Retransform") . ',' . _("RichTable") . ',' . + _("RichTablePlugin") . ',' . _("RssFeed") . ',' . _("SearchHighlight") . ',' . _("SemanticRelations") . ',' . _("SemanticSearch") . ',' . _("SemanticSearchAdvanced") . ',' . + _("SetAcl") . ',' . _("SiteMap") . ',' . _("SpellCheck") . ',' . + _("SpecialPages") . ',' . _("SqlResult") . ',' . _("SyncWiki") . ',' . _("SyntaxHighlighter") . ',' . _("SystemInfo") . ',' . + _("SystemInfoPlugin") . ',' . _("Template") . ',' . _("TeX2png") . ',' . _("text2png") . ',' . @@ -209,19 +203,22 @@ $pgsrc_container = _("TexToPng") . ',' . _("TitleSearch") . ',' . _("Transclude") . ',' . + _("TranscludePlugin") . ',' . _("TranslateText") . ',' . _("UnfoldSubpages") . ',' . + _("UnfoldSubpagesPlugin") . ',' . _("UpLoad") . ',' . + _("UpLoadPlugin") . ',' . _("UriResolver") . ',' . _("UserPreferences") . ',' . _("UserRatings") . ',' . _("Video") . ',' . _("VisualWiki") . ',' . + _("WabiSabi") . ',' . _("WantedPages") . ',' . _("WantedPagesOld") . ',' . _("WatchPage") . ',' . _("WhoIsOnline") . ',' . - _("WikiAdminChmod") . ',' . _("WikiAdminChown") . ',' . _("WikiAdminDeleteAcl") . ',' . _("WikiAdminMarkup") . ',' . @@ -235,12 +232,15 @@ $pgsrc_container = _("WikiAdminSetExternal") . ',' . _("WikiAdminUtils") . ',' . _("WikiBlog") . ',' . + _("WikiBlogPlugin") . ',' . _("WikicreoleTable") . ',' . _("WikiForm") . ',' . _("WikiFormRich") . ',' . _("WikiForum") . ',' . + _("WikiPlugin") . ',' . _("WikiPoll") . ',' . _("_WikiTranslation") . ',' . + _("WikiWikiWeb") . ',' . _("YouTube"); require_once 'lib/PageList.php'; diff --git a/locale/de/pgsrc/PhpWikiSystemverwalten b/locale/de/pgsrc/PhpWikiSystemverwalten index 3d6ff81d1..d31b5a256 100644 --- a/locale/de/pgsrc/PhpWikiSystemverwalten +++ b/locale/de/pgsrc/PhpWikiSystemverwalten @@ -1,4 +1,4 @@ -Date: Tue, 16 Apr 2013 17:14:25 +0000 +Date: Thu, 13 Jun 2013 17:02:10 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten; @@ -21,7 +21,7 @@ Entweder wähle zuerst die Seiten und führe dann die Aktion aus: oder rufe die möglichen ~WikiAdmin Aktionen direkt auf: -| [[/Löschen]] | [[/Umbenennen]] | [[/SuchenErsetzen]] | [[/AclSetzen]] | [[/Chown]] | [[/Chmod]] +| [[/Löschen]] | [[/Umbenennen]] | [[/SuchenErsetzen]] | [[/AclSetzen]] | [[/Chown]] == Benutzerverwaltung == diff --git a/locale/it/pgsrc/AmministrazioneDiPhpWiki b/locale/it/pgsrc/AmministrazioneDiPhpWiki index 0b385a92f..1c0f4289c 100644 --- a/locale/it/pgsrc/AmministrazioneDiPhpWiki +++ b/locale/it/pgsrc/AmministrazioneDiPhpWiki @@ -1,4 +1,4 @@ -Date: Tue, 16 Apr 2013 17:14:15 +0000 +Date: Thu, 13 Jun 2013 17:01:53 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=AmministrazioneDiPhpWiki; @@ -21,7 +21,7 @@ First select pages and then define the action: or call the available ~WikiAdmin actions directly: -| [[/Rimuovi]] | [[/Rename]] | [[/Replace]] | [[/SetAcl]] | [[/Chmod]] | [[/Chown]] +| [[/Rimuovi]] | [[/Rename]] | [[/Replace]] | [[/SetAcl]] | [[/Chown]] == User Management diff --git a/locale/nl/pgsrc/PhpWikiBeheer b/locale/nl/pgsrc/PhpWikiBeheer index cc4d30a03..159289802 100644 --- a/locale/nl/pgsrc/PhpWikiBeheer +++ b/locale/nl/pgsrc/PhpWikiBeheer @@ -1,4 +1,4 @@ -Date: Fri, 4 Feb 2011 16:36:35 +0000 +Date: Thu, 13 Jun 2013 17:01:41 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0) Content-Type: application/x-phpwiki; pagename=PhpWikiBeheer; @@ -21,7 +21,7 @@ First select pages and then define the action: or call the available ~WikiAdmin actions directly: -| [[/Verwijder]] | [[/Rename]] | [[/Vervangt]] | [[/SetAcl]] | [[/Chmod]] | [[/Chown]] +| [[/Verwijder]] | [[/Rename]] | [[/Vervangt]] | [[/SetAcl]] | [[/Chown]] == User Management diff --git a/themes/Crao/templates/editpage.tmpl b/themes/Crao/templates/editpage.tmpl index a55a247a7..4871c4ca7 100644 --- a/themes/Crao/templates/editpage.tmpl +++ b/themes/Crao/templates/editpage.tmpl @@ -87,13 +87,13 @@ function showOldMarkupRules(show) {
-

- +

+
-

- +

+
diff --git a/themes/Portland/templates/editpage.tmpl b/themes/Portland/templates/editpage.tmpl index 74c8f3292..c6f522cab 100644 --- a/themes/Portland/templates/editpage.tmpl +++ b/themes/Portland/templates/editpage.tmpl @@ -72,13 +72,13 @@ function showOldMarkupRules(show) {
-

- +

+
-

- +

+
diff --git a/themes/Wordpress/templates/editpage.tmpl b/themes/Wordpress/templates/editpage.tmpl index e1cbf87c4..613190826 100644 --- a/themes/Wordpress/templates/editpage.tmpl +++ b/themes/Wordpress/templates/editpage.tmpl @@ -87,13 +87,13 @@ function showOldMarkupRules(show) {
-

- +

+
-

- +

+
diff --git a/themes/blog/templates/blogform.tmpl b/themes/blog/templates/blogform.tmpl index 409bc64cd..67473aa8e 100644 --- a/themes/blog/templates/blogform.tmpl +++ b/themes/blog/templates/blogform.tmpl @@ -18,8 +18,8 @@
-

- +

+
diff --git a/themes/default/templates/blogform.tmpl b/themes/default/templates/blogform.tmpl index 7551c3a51..aad698e55 100644 --- a/themes/default/templates/blogform.tmpl +++ b/themes/default/templates/blogform.tmpl @@ -18,8 +18,8 @@
-

- +

+
diff --git a/themes/default/templates/editpage.tmpl b/themes/default/templates/editpage.tmpl index a98ee955b..b0d1c47fc 100644 --- a/themes/default/templates/editpage.tmpl +++ b/themes/default/templates/editpage.tmpl @@ -111,13 +111,13 @@ function showOldMarkupRules(show) {
-

- +

+
-

- +

+