From: <var...@us...> - 2021-12-15 17:49:11
|
Revision: 10787 http://sourceforge.net/p/phpwiki/code/10787 Author: vargenau Date: 2021-12-15 17:49:09 +0000 (Wed, 15 Dec 2021) Log Message: ----------- Remove USECACHE, always true Modified Paths: -------------- trunk/config/config-default.ini trunk/config/config-dist.ini trunk/configurator.php trunk/lib/IniConfig.php trunk/lib/Request.php trunk/lib/WikiDB/backend/flatfile.php trunk/lib/WikiDB.php trunk/lib/loadsave.php trunk/lib/plugin/SystemInfo.php trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes trunk/themes/MonoBook/templates/actionbar.tmpl trunk/themes/Sidebar/templates/actionbar.tmpl trunk/themes/default/templates/actionbar.tmpl Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/config/config-default.ini 2021-12-15 17:49:09 UTC (rev 10787) @@ -7,7 +7,6 @@ JS_SEARCHREPLACE = true ENABLE_DOUBLECLICKEDIT = false ENABLE_OPEN_GRAPH = false -USECACHE = true ISREADONLY = false ; calculated dynamically, but need a default Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/config/config-dist.ini 2021-12-15 17:49:09 UTC (rev 10787) @@ -465,12 +465,6 @@ ; to set this parameter to 0 (disabled). ;DATABASE_OPTIMISE_FREQUENCY = 50 -; Store DB query results (esp. for page lists) in memory to avoid duplicate queries. -; Disable only for old php's with low memory or memory_limit=8MB. -; Requires at least memory_limit=16MB -; Default: true -;USECACHE = false - ;======================================================================== ; Part Three: User Authentication ;======================================================================== Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/configurator.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -805,9 +805,6 @@ $properties["DATABASE_OPTIMISE_FREQUENCY"] = new numeric_define_optional('DATABASE_OPTIMISE_FREQUENCY', DATABASE_OPTIMISE_FREQUENCY); -$properties["USECACHE"] = - new boolean_define_commented_optional('USECACHE'); - ///////////////////////////////////////////////////////////////////// $properties["Part Three"] = Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/lib/IniConfig.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -129,7 +129,7 @@ $_IC_VALID_BOOL = array ('ENABLE_PAGEPERM', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE', 'ENABLE_DOUBLECLICKEDIT', - 'USECACHE', 'WIKIDB_NOCACHE_MARKUP', + 'WIKIDB_NOCACHE_MARKUP', 'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH', 'ENABLE_RAW_HTML', 'ENABLE_RAW_HTML_LOCKEDONLY', 'ENABLE_RAW_HTML_SAFE', 'STRICT_MAILABLE_PAGEDUMPS', 'COMPRESS_OUTPUT', Modified: trunk/lib/Request.php =================================================================== --- trunk/lib/Request.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/lib/Request.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -334,11 +334,6 @@ function buffer_output($compress = true) { - // FIXME: disables sessions (some byte before all headers_sent()) - /*if (defined('USECACHE') and !USECACHE) { - $this->_is_buffering_output = false; - return; - }*/ if (defined('COMPRESS_OUTPUT')) { if (!COMPRESS_OUTPUT) $compress = false; Modified: trunk/lib/WikiDB/backend/flatfile.php =================================================================== --- trunk/lib/WikiDB/backend/flatfile.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/lib/WikiDB/backend/flatfile.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -125,7 +125,7 @@ // Construct a dummy page_revision object $page = new WikiDB_Page($this->_wikidb, $pagename); // data may be pagedate or versiondata updates - if (USECACHE and empty($data['pagedata'])) { + if (empty($data['pagedata'])) { $cache =& $this->_wikidb->_cache; if (!empty($cache->_pagedata_cache[$pagename]) and is_array($cache->_pagedata_cache[$pagename]) Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/lib/WikiDB.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -529,11 +529,6 @@ */ public function renamePage($from, $to, $updateWikiLinks = false) { - /** - * @var WikiRequest $request - */ - global $request; - if (!empty($this->readonly)) { if ((int)DEBUG) { trigger_error("readonly database", E_USER_WARNING); @@ -1666,14 +1661,14 @@ $possibly_cache_results = true; - if (!USECACHE or WIKIDB_NOCACHE_MARKUP) { + if (WIKIDB_NOCACHE_MARKUP) { if (WIKIDB_NOCACHE_MARKUP == 'purge') { // flush cache for this page. $page = $this->getPage(); - $page->set('_cached_html', ''); // ignored with !USECACHE + $page->set('_cached_html', ''); } $possibly_cache_results = false; - } elseif (USECACHE and !$this->_transformedContent) { + } elseif (!$this->_transformedContent) { //$backend->lock(); if ($this->isCurrent()) { $page = $this->getPage(); @@ -2196,17 +2191,13 @@ public function get_pagedata($pagename) { assert(is_string($pagename) && $pagename != ''); - if (USECACHE) { - $cache = &$this->_pagedata_cache; - if (!isset($cache[$pagename]) || !is_array($cache[$pagename])) { - $cache[$pagename] = $this->_backend->get_pagedata($pagename); - if (empty($cache[$pagename])) - $cache[$pagename] = array(); - } - return $cache[$pagename]; - } else { - return $this->_backend->get_pagedata($pagename); + $cache = &$this->_pagedata_cache; + if (!isset($cache[$pagename]) || !is_array($cache[$pagename])) { + $cache[$pagename] = $this->_backend->get_pagedata($pagename); + if (empty($cache[$pagename])) + $cache[$pagename] = array(); } + return $cache[$pagename]; } public function update_pagedata($pagename, $newdata) @@ -2221,16 +2212,14 @@ $this->_backend->update_pagedata($pagename, $newdata); - if (USECACHE) { - if (!empty($this->_pagedata_cache[$pagename]) - and is_array($this->_pagedata_cache[$pagename]) - ) { - $cachedata = &$this->_pagedata_cache[$pagename]; - foreach ($newdata as $key => $val) - $cachedata[$key] = $val; - } else - $this->_pagedata_cache[$pagename] = $newdata; - } + if (!empty($this->_pagedata_cache[$pagename]) + and is_array($this->_pagedata_cache[$pagename]) + ) { + $cachedata = &$this->_pagedata_cache[$pagename]; + foreach ($newdata as $key => $val) + $cachedata[$key] = $val; + } else + $this->_pagedata_cache[$pagename] = $newdata; } public function invalidate_cache($pagename) @@ -2279,7 +2268,6 @@ { // FIXME: Seriously ugly hackage $readdata = false; - if (USECACHE) { //temporary - for debugging assert(is_string($pagename) && $pagename != ''); $nc = $need_content ? '1' : '0'; $cache = &$this->_versiondata_cache; @@ -2297,14 +2285,10 @@ } } $vdata = $cache[$pagename][$version][$nc]; - } else { - $vdata = $this->_backend->get_versiondata($pagename, $version, $need_content); - $readdata = true; - } + if ($readdata && is_array($vdata) && !empty($vdata['%pagedata'])) { if (empty($this->_pagedata_cache)) $this->_pagedata_cache = array(); - /* PHP Fatal error: Cannot create references to/from string offsets nor overloaded objects in /var/www/html/phpwiki/lib/WikiDB.php on line 2180, referer: wiki/TitleSearch?s=and&auto_redirect=1 */ $this->_pagedata_cache[$pagename] = $vdata['%pagedata']; } return $vdata; @@ -2363,17 +2347,13 @@ public function get_latest_version($pagename) { - if (USECACHE) { - assert(is_string($pagename) && $pagename != ''); - $cache = &$this->_glv_cache; - if (!isset($cache[$pagename])) { - $cache[$pagename] = $this->_backend->get_latest_version($pagename); - if (empty($cache[$pagename])) - $cache[$pagename] = 0; - } - return $cache[$pagename]; - } else { - return $this->_backend->get_latest_version($pagename); + assert(is_string($pagename) && $pagename != ''); + $cache = &$this->_glv_cache; + if (!isset($cache[$pagename])) { + $cache[$pagename] = $this->_backend->get_latest_version($pagename); + if (empty($cache[$pagename])) + $cache[$pagename] = 0; } + return $cache[$pagename]; } } Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/lib/loadsave.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -730,12 +730,10 @@ $zip->addFromString($filename, $data); } - if (USECACHE) { - $request->_dbi->_cache->invalidate_cache($pagename); - unset ($request->_dbi->_cache->_pagedata_cache); - unset ($request->_dbi->_cache->_versiondata_cache); - unset ($request->_dbi->_cache->_glv_cache); - } + $request->_dbi->_cache->invalidate_cache($pagename); + unset ($request->_dbi->_cache->_pagedata_cache); + unset ($request->_dbi->_cache->_versiondata_cache); + unset ($request->_dbi->_cache->_glv_cache); unset ($request->_dbi->_cache->_backend->_page_data); unset($msg); Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/lib/plugin/SystemInfo.php 2021-12-15 17:49:09 UTC (rev 10787) @@ -137,8 +137,6 @@ function cachestats() { - if (!defined('USECACHE') or !USECACHE) - return _("no cache used"); $dbi =& $this->_dbi; $cache = $dbi->_cache; $s = _("cached pagedata:") . " " . count($cache->_pagedata_cache); Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-12-15 17:49:09 UTC (rev 10787) @@ -1,4 +1,4 @@ -Date: Wed, 15 Dec 2021 10:20:21 +0000 +Date: Wed, 15 Dec 2021 18:48:29 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -15,6 +15,7 @@ === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) +* blog theme improved === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. @@ -22,6 +23,7 @@ * Add sample images for ~PhotoAlbum in blog theme * Remove EDITING_POLICY * Remove ENABLE_XHTML_XML +* Remove USECACHE, always true * More translations === Plugins === Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/pgsrc/ReleaseNotes 2021-12-15 17:49:09 UTC (rev 10787) @@ -1,4 +1,4 @@ -Date: Wed, 15 Dec 2021 10:20:21 +0000 +Date: Wed, 15 Dec 2021 18:48:29 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -15,6 +15,7 @@ === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) +* blog theme improved === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. @@ -22,6 +23,7 @@ * Add sample images for ~PhotoAlbum in blog theme * Remove EDITING_POLICY * Remove ENABLE_XHTML_XML +* Remove USECACHE, always true * More translations === Plugins === Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2021-12-15 17:49:09 UTC (rev 10787) @@ -76,7 +76,7 @@ <?php echo ActionButton(array('action'=>__("AuthorHistory")), _("Author History"), $pagename) ?> <?php echo ActionButton("diff") ?> <?php echo ActionButton(array('action'=>__("PageDump")), _("Page Dump"), $pagename) ?> - <?php if (DEBUG and USECACHE) { + <?php if (DEBUG) { $PurgeCache = ActionButton(array('nocache' => 'purge'), _("Purge HTML cache"), $pagename); $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); ?> Modified: trunk/themes/Sidebar/templates/actionbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/actionbar.tmpl 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/themes/Sidebar/templates/actionbar.tmpl 2021-12-15 17:49:09 UTC (rev 10787) @@ -62,10 +62,9 @@ <?php echo ActionButton("diff") ?> <?php if ($isAdmin) { ?> <?php echo ActionButton(__("PageDump"), _("Page Dump")) ?> - <?php if (USECACHE) { ?> <?php echo ActionButton(array('nocache' => 'purge'), _("Purge HTML cache"), $pagename, array('title'=>_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed."))) ?> - <?php }} ?> + <?php } ?> </ul> </div> </div> Modified: trunk/themes/default/templates/actionbar.tmpl =================================================================== --- trunk/themes/default/templates/actionbar.tmpl 2021-12-15 15:46:35 UTC (rev 10786) +++ trunk/themes/default/templates/actionbar.tmpl 2021-12-15 17:49:09 UTC (rev 10787) @@ -31,7 +31,7 @@ <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php echo $SEP?><?php echo Button(__("PageDump"), _("Page Dump")) ?> <?php - if (DEBUG & _DEBUG_SQL and USECACHE) { + if (DEBUG & _DEBUG_SQL) { $PurgeCache = Button(array('nocache' => 'purge'), _("Purge HTML cache"), $page->getName()); $PurgeCache->addTooltip(_("Purge HTML cache for this page. Regenerate from WikiMarkup when next accessed.")); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-12-25 08:50:55
|
Revision: 10800 http://sourceforge.net/p/phpwiki/code/10800 Author: vargenau Date: 2021-12-25 08:50:52 +0000 (Sat, 25 Dec 2021) Log Message: ----------- No need to translate this, modern browsers will display their own message Modified Paths: -------------- trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/fusionforge/templates/editpage.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/de.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -2950,9 +2950,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "kein Cache verwendet" - msgid "cached pagedata:" msgstr "Seitendaten in den Cachespeicher aufgenommen:" @@ -5628,9 +5625,6 @@ msgid "This revision of the page does not exist." msgstr "Leider, Version ist nicht in der Datenbank." -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" @@ -5837,6 +5831,9 @@ msgid "Edit this page" msgstr "Diese Seite bearbeiten" +#~ msgid "no cache used" +#~ msgstr "kein Cache verwendet" + #~ msgid "External Links" #~ msgstr "Externe Links" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/es.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2884,9 +2884,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "" - msgid "cached pagedata:" msgstr "Página archivada:" @@ -5501,9 +5498,6 @@ msgid "This revision of the page does not exist." msgstr "Esta revisión de la página no existe." -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/fr.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -2935,9 +2935,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "Affiche les informations de bas niveau pour PhpWiki." -msgid "no cache used" -msgstr "pas de cache utilisé" - msgid "cached pagedata:" msgstr "page en cache :" @@ -5622,9 +5619,6 @@ msgid "This revision of the page does not exist." msgstr "Cette version de la page n'existe pas." -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "Attention : quitter cette page annulera toutes vos modifications !" - msgid "Make the page public?" msgstr "Rendre la page publique ?" @@ -5832,6 +5826,12 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "no cache used" +#~ msgstr "pas de cache utilisé" + +#~ msgid "Warning: leaving the page will lose all your modifications!" +#~ msgstr "Attention : quitter cette page annulera toutes vos modifications !" + #~ msgid "Tutorial" #~ msgstr "Tutoriel" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/it.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -2861,9 +2861,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "" - msgid "cached pagedata:" msgstr "" @@ -5461,9 +5458,6 @@ msgid "This revision of the page does not exist." msgstr "" -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/ja.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2847,9 +2847,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "キャッシュを使いません" - msgid "cached pagedata:" msgstr "ページデータをキャッシュ:" @@ -5447,9 +5444,6 @@ msgid "This revision of the page does not exist." msgstr "" -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" @@ -5653,6 +5647,9 @@ msgid "Edit this page" msgstr "ページを編集しています" +#~ msgid "no cache used" +#~ msgstr "キャッシュを使いません" + #~ msgid "Submit country" #~ msgstr "国名送信" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/nl.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -2853,9 +2853,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "" - msgid "cached pagedata:" msgstr "" @@ -5453,9 +5450,6 @@ msgid "This revision of the page does not exist." msgstr "" -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/phpwiki.pot 2021-12-25 08:50:52 UTC (rev 10800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2847,9 +2847,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "" - msgid "cached pagedata:" msgstr "" @@ -5447,9 +5444,6 @@ msgid "This revision of the page does not exist." msgstr "" -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/sv.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2848,9 +2848,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "" -msgid "no cache used" -msgstr "" - msgid "cached pagedata:" msgstr "" @@ -5448,9 +5445,6 @@ msgid "This revision of the page does not exist." msgstr "" -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/locale/po/zh.po 2021-12-25 08:50:52 UTC (rev 10800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-15 16:33+0100\n" +"POT-Creation-Date: 2021-12-22 15:23+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2856,9 +2856,6 @@ msgid "Provide access to PhpWiki's lower level system information." msgstr "提供存取 PhpWiki 下層系統資訊." -msgid "no cache used" -msgstr "沒有快取被使用" - msgid "cached pagedata:" msgstr "已置於快取的頁面資料:" @@ -5475,9 +5472,6 @@ msgid "This revision of the page does not exist." msgstr "" -msgid "Warning: leaving the page will lose all your modifications!" -msgstr "" - msgid "Make the page public?" msgstr "" @@ -5681,6 +5675,9 @@ msgid "Edit this page" msgstr "編輯此頁面" +#~ msgid "no cache used" +#~ msgstr "沒有快取被使用" + #~ msgid "External Links" #~ msgstr "外部連結" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/fusionforge/templates/editpage.tmpl =================================================================== --- trunk/themes/fusionforge/templates/editpage.tmpl 2021-12-16 17:24:40 UTC (rev 10799) +++ trunk/themes/fusionforge/templates/editpage.tmpl 2021-12-25 08:50:52 UTC (rev 10800) @@ -25,7 +25,7 @@ } } $(document).ready(function() { - $("#editpage").FormNavigate('<?php echo _('Warning: leaving the page will lose all your modifications!') ?>'); + $("#editpage").FormNavigate('<?php echo 'Warning: leaving the page will lose all your modifications!' ?>'); jQuery(this).find(":submit").unbind('click'); jQuery(this).on('click', "input[name='edit[save]']", function () { global_formNavigate = true; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-12-25 10:56:39
|
Revision: 10801 http://sourceforge.net/p/phpwiki/code/10801 Author: vargenau Date: 2021-12-25 10:56:37 +0000 (Sat, 25 Dec 2021) Log Message: ----------- Remove unused buttons UPLOAD_B and SPELLCHECK_B Modified Paths: -------------- trunk/lib/editpage.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/lib/editpage.php 2021-12-25 10:56:37 UTC (rev 10801) @@ -1067,12 +1067,6 @@ $el['CHANGES_B'] = Button('submit:edit[diff]', _("Changes"), 'wikiaction', array('title' => _('Preview the current changes as diff'))); - $el['UPLOAD_B'] = Button('submit:edit[upload]', - _("Upload"), 'wikiaction', - array('title' => _('Select a local file and press Upload to attach into this page'))); - $el['SPELLCHECK_B'] = Button('submit:edit[SpellCheck]', - _("Spell Check"), 'wikiaction', - array('title' => _('Check the spelling'))); $el['IS_CURRENT'] = $this->version == $this->current->getVersion(); $el['SEP'] = $WikiTheme->getButtonSeparator(); $el['AUTHOR_MESSAGE'] = fmt("Author will be logged as %s.", Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/de.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -439,18 +439,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "Hochladen" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "%s wird als Autor aufgenommen." @@ -3227,6 +3215,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "Hochladen" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/es.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -437,18 +437,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "Registrarán al autor como %s." @@ -3152,6 +3140,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/fr.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -445,20 +445,6 @@ msgid "Preview the current changes as diff" msgstr "Prévisualiser les modifications actuelles en tant que diff" -msgid "Upload" -msgstr "Télécharger" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" -"Sélectionnez un fichier local et cliquez sur Télécharger pour le joindre à " -"cette page" - -msgid "Spell Check" -msgstr "Vérifier l'orthographe" - -msgid "Check the spelling" -msgstr "Vérifier l'orthographe" - #, php-format msgid "Author will be logged as %s." msgstr "L'auteur sera enregistré sous le nom %s." @@ -3213,6 +3199,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "Transférer les fichiers vers [[Upload:fichier]]" +msgid "Upload" +msgstr "Télécharger" + msgid "You cannot upload files." msgstr "" @@ -5826,6 +5815,17 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "Select a local file and press Upload to attach into this page" +#~ msgstr "" +#~ "Sélectionnez un fichier local et cliquez sur Télécharger pour le joindre " +#~ "à cette page" + +#~ msgid "Spell Check" +#~ msgstr "Vérifier l'orthographe" + +#~ msgid "Check the spelling" +#~ msgstr "Vérifier l'orthographe" + #~ msgid "no cache used" #~ msgstr "pas de cache utilisé" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/it.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -427,18 +427,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "L'autore sarà annotato come %s." @@ -3129,6 +3117,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/ja.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -415,18 +415,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "アップロード" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "" @@ -3115,6 +3103,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "アップロード" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/nl.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -421,18 +421,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "" @@ -3121,6 +3109,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/phpwiki.pot 2021-12-25 10:56:37 UTC (rev 10801) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -415,18 +415,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "" @@ -3115,6 +3103,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/sv.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -416,18 +416,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "" @@ -3116,6 +3104,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "" +msgid "Upload" +msgstr "" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2021-12-25 08:50:52 UTC (rev 10800) +++ trunk/locale/po/zh.po 2021-12-25 10:56:37 UTC (rev 10801) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-22 15:23+0100\n" +"POT-Creation-Date: 2021-12-25 11:54+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -418,18 +418,6 @@ msgid "Preview the current changes as diff" msgstr "" -msgid "Upload" -msgstr "上傳" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - #, php-format msgid "Author will be logged as %s." msgstr "作者將登入為 %s." @@ -3125,6 +3113,9 @@ msgid "Upload files to the local InterWiki [[Upload:filename]]" msgstr "上傳檔案到本地 InterWiki. [[Upload:filename]]" +msgid "Upload" +msgstr "上傳" + msgid "You cannot upload files." msgstr "" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-12-30 09:44:09
|
Revision: 10802 http://sourceforge.net/p/phpwiki/code/10802 Author: vargenau Date: 2021-12-30 09:44:07 +0000 (Thu, 30 Dec 2021) Log Message: ----------- Page locking and unlocking is now saved in page history Modified Paths: -------------- trunk/lib/editpage.php trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2021-12-25 10:56:37 UTC (rev 10801) +++ trunk/lib/editpage.php 2021-12-30 09:44:07 UTC (rev 10802) @@ -286,10 +286,11 @@ $this->tokens['LOCK_CHANGED_MSG'] .= ($this->locked ? _("Page now locked.") - : _("Page now unlocked.") . " "); + : _("Page now unlocked.")); $changed = true; } - if (defined('ENABLE_PAGE_PUBLIC') and ENABLE_PAGE_PUBLIC and (bool)$this->page->get('public') != (bool)$this->public) { + if (defined('ENABLE_PAGE_PUBLIC') and ENABLE_PAGE_PUBLIC + and (bool)$this->page->get('public') != (bool)$this->public) { $this->page->set('public', (bool)$this->public); $this->tokens['LOCK_CHANGED_MSG'] .= ($this->public @@ -298,15 +299,14 @@ $changed = true; } - if (defined('ENABLE_EXTERNAL_PAGES') and ENABLE_EXTERNAL_PAGES) { - if ((bool)$this->page->get('external') != (bool)$this->external) { - $this->page->set('external', (bool)$this->external); - $this->tokens['LOCK_CHANGED_MSG'] - = ($this->external - ? _("Page now external.") - : _("Page now not-external.")) . " "; - $changed = true; - } + if (defined('ENABLE_EXTERNAL_PAGES') and ENABLE_EXTERNAL_PAGES + and (bool)$this->page->get('external') != (bool)$this->external) { + $this->page->set('external', (bool)$this->external); + $this->tokens['LOCK_CHANGED_MSG'] + .= ($this->external + ? _("Page now external.") + : _("Page now not-external.")); + $changed = true; } return $changed; // lock changed. } @@ -318,13 +318,14 @@ if ($this->isUnchanged()) { // Allow admin lock/unlock even if // no text changes were made. + $lock_changed = false; if ($this->updateLock()) { - $dbi = $request->getDbh(); - $dbi->touch(); + $lock_changed = true; + } else { + // Save failed. No changes made. + $this->_redirectToBrowsePage(); + return true; } - // Save failed. No changes made. - $this->_redirectToBrowsePage(); - return true; } if (!$this->user->isAdmin() and $this->isSpam()) { @@ -338,6 +339,9 @@ // has not been explicitly updated. $meta = $this->selected->getMetaData(); $meta = array_merge($meta, $this->meta); + if ($lock_changed) { + $meta['summary'] = $this->tokens['LOCK_CHANGED_MSG']; + } // Save new revision $this->_content = $this->getContent(); Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-12-25 10:56:37 UTC (rev 10801) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-12-30 09:44:07 UTC (rev 10802) @@ -1,4 +1,4 @@ -Date: Wed, 15 Dec 2021 18:48:29 +0000 +Date: Thu, 30 Dec 2021 10:43:13 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -20,7 +20,8 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. -* Add sample images for ~PhotoAlbum in blog theme +* Page locking and unlocking is now saved in page history. +* Add sample images for ~PhotoAlbum in blog theme. * Remove EDITING_POLICY * Remove ENABLE_XHTML_XML * Remove USECACHE, always true Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2021-12-25 10:56:37 UTC (rev 10801) +++ trunk/pgsrc/ReleaseNotes 2021-12-30 09:44:07 UTC (rev 10802) @@ -1,4 +1,4 @@ -Date: Wed, 15 Dec 2021 18:48:29 +0000 +Date: Thu, 30 Dec 2021 10:43:13 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -20,7 +20,8 @@ === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. -* Add sample images for ~PhotoAlbum in blog theme +* Page locking and unlocking is now saved in page history. +* Add sample images for ~PhotoAlbum in blog theme. * Remove EDITING_POLICY * Remove ENABLE_XHTML_XML * Remove USECACHE, always true This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-02 14:40:55
|
Revision: 10806 http://sourceforge.net/p/phpwiki/code/10806 Author: vargenau Date: 2022-01-02 14:40:53 +0000 (Sun, 02 Jan 2022) Log Message: ----------- RecentChanges: Deleted --> Removed; action is "Remove page" Modified Paths: -------------- trunk/lib/plugin/RecentChanges.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/plugin/RecentChanges.php =================================================================== --- trunk/lib/plugin/RecentChanges.php 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/lib/plugin/RecentChanges.php 2022-01-02 14:40:53 UTC (rev 10806) @@ -146,7 +146,7 @@ switch ($this->status($rev)) { case 'deleted': - return _("Deleted"); + return _("Removed"); case 'new': return _("New page"); default: Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/de.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -2503,7 +2503,7 @@ msgid "RecentEdits" msgstr "GeringfügigeÄnderungen" -msgid "Deleted" +msgid "Removed" msgstr "Gelöscht" msgid "diff" @@ -3533,6 +3533,9 @@ msgid "No pages purged." msgstr "Keine Seiten entfernt." +msgid "Purge" +msgstr "Entfernen" + msgid "Confirm purge" msgstr "" @@ -3570,7 +3573,7 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich löschen wollen?" @@ -3577,15 +3580,6 @@ msgid "Select the pages to remove" msgstr "Wähle Seiten zum Umbenennen aus" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "Auch Seiten, die in den letzten %s Tagen gelöscht wurden." - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" -"Seiten, die in den letzten %s Tagen gelöscht wurden, sind bereits ausgewählt." - msgid "Rename selected pages" msgstr "Ausgewählte Seiten umbenennen" @@ -5610,9 +5604,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "Entfernen" - msgid "This revision of the page does not exist." msgstr "Leider, Version ist nicht in der Datenbank." @@ -5822,6 +5813,17 @@ msgid "Edit this page" msgstr "Diese Seite bearbeiten" +#~ msgid "Deleted" +#~ msgstr "Gelöscht" + +#~ msgid "Also pages which have been deleted at least %s days." +#~ msgstr "Auch Seiten, die in den letzten %s Tagen gelöscht wurden." + +#~ msgid "Pages which have been deleted at least %s days are already checked." +#~ msgstr "" +#~ "Seiten, die in den letzten %s Tagen gelöscht wurden, sind bereits " +#~ "ausgewählt." + #~ msgid "no cache used" #~ msgstr "kein Cache verwendet" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/es.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2439,7 +2439,7 @@ msgid "RecentEdits" msgstr "RecienteCorrige" -msgid "Deleted" +msgid "Removed" msgstr "Borrada" msgid "diff" @@ -3453,6 +3453,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3489,20 +3492,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" - msgid "Rename selected pages" msgstr "" @@ -5483,9 +5478,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "Esta revisión de la página no existe." @@ -5692,6 +5684,9 @@ msgid "Edit this page" msgstr "Corrija esta página" +#~ msgid "Deleted" +#~ msgstr "Borrada" + #~ msgid "External Links" #~ msgstr "Acoplamientos Externos" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/fr.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -2482,7 +2482,7 @@ msgid "RecentEdits" msgstr "ÉditionsRécentes" -msgid "Deleted" +msgid "Removed" msgstr "Supprimé" msgid "diff" @@ -3526,6 +3526,9 @@ msgid "No pages purged." msgstr "Aucune page purgée." +msgid "Purge" +msgstr "Purger" + msgid "Confirm purge" msgstr "Confirmer la purge" @@ -3563,21 +3566,12 @@ msgid "Confirm removal" msgstr "Confirmer la suppression" -msgid "Are you sure you want to remove the selected pages?" -msgstr "Êtes-vous certain de vouloir supprimer les pages sélectionnées ?" +msgid "Are you sure you want to remove the following pages?" +msgstr "Êtes-vous certain de vouloir supprimer les pages suivantes ?" msgid "Select the pages to remove" msgstr "Sélectionner les pages à supprimer" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "Même les pages qui ont été supprimées il y a au plus %s jours." - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" -"Les pages qui ont été supprimées il y a au plus %s jours sont déjà cochées." - msgid "Rename selected pages" msgstr "Renommer les pages sélectionnées" @@ -5602,9 +5596,6 @@ msgid "Access Rights" msgstr "Droits d'accès" -msgid "Purge" -msgstr "Purger" - msgid "This revision of the page does not exist." msgstr "Cette version de la page n'existe pas." @@ -5815,6 +5806,17 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "Deleted" +#~ msgstr "Supprimé" + +#~ msgid "Also pages which have been deleted at least %s days." +#~ msgstr "Même les pages qui ont été supprimées il y a au plus %s jours." + +#~ msgid "Pages which have been deleted at least %s days are already checked." +#~ msgstr "" +#~ "Les pages qui ont été supprimées il y a au plus %s jours sont déjà " +#~ "cochées." + #~ msgid "Select a local file and press Upload to attach into this page" #~ msgstr "" #~ "Sélectionnez un fichier local et cliquez sur Télécharger pour le joindre " Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/it.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -2420,7 +2420,7 @@ msgid "RecentEdits" msgstr "" -msgid "Deleted" +msgid "Removed" msgstr "Rimossa" msgid "diff" @@ -3430,6 +3430,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3466,20 +3469,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" - msgid "Rename selected pages" msgstr "" @@ -5443,9 +5438,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "" @@ -5652,6 +5644,9 @@ msgid "Edit this page" msgstr "" +#~ msgid "Deleted" +#~ msgstr "Rimossa" + #~ msgid "External Links" #~ msgstr "Collegamenti Esterni" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/ja.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2406,7 +2406,7 @@ msgid "RecentEdits" msgstr "" -msgid "Deleted" +msgid "Removed" msgstr "削除しました" msgid "diff" @@ -3416,6 +3416,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3452,20 +3455,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" - msgid "Rename selected pages" msgstr "" @@ -5429,9 +5424,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "" @@ -5638,6 +5630,9 @@ msgid "Edit this page" msgstr "ページを編集しています" +#~ msgid "Deleted" +#~ msgstr "削除しました" + #~ msgid "no cache used" #~ msgstr "キャッシュを使いません" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/nl.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -2412,7 +2412,7 @@ msgid "RecentEdits" msgstr "" -msgid "Deleted" +msgid "Removed" msgstr "" msgid "diff" @@ -3422,6 +3422,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3458,20 +3461,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" - msgid "Rename selected pages" msgstr "" @@ -5435,9 +5430,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/phpwiki.pot 2022-01-02 14:40:53 UTC (rev 10806) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2406,7 +2406,7 @@ msgid "RecentEdits" msgstr "" -msgid "Deleted" +msgid "Removed" msgstr "" msgid "diff" @@ -3416,6 +3416,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3452,20 +3455,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" - msgid "Rename selected pages" msgstr "" @@ -5429,9 +5424,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/sv.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2407,7 +2407,7 @@ msgid "RecentEdits" msgstr "" -msgid "Deleted" +msgid "Removed" msgstr "" msgid "diff" @@ -3417,6 +3417,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3453,20 +3456,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "" - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "" - msgid "Rename selected pages" msgstr "" @@ -5430,9 +5425,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-02 14:29:06 UTC (rev 10805) +++ trunk/locale/po/zh.po 2022-01-02 14:40:53 UTC (rev 10806) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-25 11:54+0100\n" +"POT-Creation-Date: 2022-01-02 15:35+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2415,7 +2415,7 @@ msgid "RecentEdits" msgstr "" -msgid "Deleted" +msgid "Removed" msgstr "已刪除" msgid "diff" @@ -3427,6 +3427,9 @@ msgid "No pages purged." msgstr "" +msgid "Purge" +msgstr "" + msgid "Confirm purge" msgstr "" @@ -3463,20 +3466,12 @@ msgid "Confirm removal" msgstr "" -msgid "Are you sure you want to remove the selected pages?" +msgid "Are you sure you want to remove the following pages?" msgstr "" msgid "Select the pages to remove" msgstr "" -#, php-format -msgid "Also pages which have been deleted at least %s days." -msgstr "也列出過去 %s 天被刪除的頁面." - -#, php-format -msgid "Pages which have been deleted at least %s days are already checked." -msgstr "列出過去 %s 天內已被刪除且檢查過的頁面." - msgid "Rename selected pages" msgstr "更名已選定的頁面" @@ -5457,9 +5452,6 @@ msgid "Access Rights" msgstr "" -msgid "Purge" -msgstr "" - msgid "This revision of the page does not exist." msgstr "" @@ -5666,6 +5658,15 @@ msgid "Edit this page" msgstr "編輯此頁面" +#~ msgid "Deleted" +#~ msgstr "已刪除" + +#~ msgid "Also pages which have been deleted at least %s days." +#~ msgstr "也列出過去 %s 天被刪除的頁面." + +#~ msgid "Pages which have been deleted at least %s days are already checked." +#~ msgstr "列出過去 %s 天內已被刪除且檢查過的頁面." + #~ msgid "no cache used" #~ msgstr "沒有快取被使用" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-03 10:58:18
|
Revision: 10808 http://sourceforge.net/p/phpwiki/code/10808 Author: vargenau Date: 2022-01-03 10:58:16 +0000 (Mon, 03 Jan 2022) Log Message: ----------- UpLoad plugin: allow more filenames (e.g. with Chinese characters) Modified Paths: -------------- trunk/lib/plugin/UpLoad.php trunk/lib/stdlib.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/pgsrc/ReleaseNotes Modified: trunk/lib/plugin/UpLoad.php =================================================================== --- trunk/lib/plugin/UpLoad.php 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/lib/plugin/UpLoad.php 2022-01-03 10:58:16 UTC (rev 10808) @@ -177,12 +177,6 @@ $sanified_userfile_name = sanify_filename($userfile_name); - if (preg_match("/[^._a-zA-Z0-9- ]/", strip_accents($sanified_userfile_name))) { - $err_header->pushContent(HTML::p(_("Invalid filename."))); - $message->pushContent($err_header); - return HTML($message, $form); - } - if (file_exists($file_dir . $sanified_userfile_name)) { $err_header->pushContent(HTML::p(fmt("There is already a file with name “%s” uploaded.", $sanified_userfile_name))); $message->pushContent($err_header); Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/lib/stdlib.php 2022-01-03 10:58:16 UTC (rev 10808) @@ -2117,18 +2117,6 @@ } /** - * Remove accents from given text. - */ -function strip_accents($text) -{ - $res = utf8_decode($text); - $res = strtr($res, - utf8_decode('àáâãäçèéêëìíîïñòóôõöùúûüýÿÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ'), - 'aaaaaceeeeiiiinooooouuuuyyAAAAACEEEEIIIINOOOOOUUUUY'); - return utf8_encode($res); -} - -/** * Sanify filename: * - remove spaces from the beginning and end * - replace multiple spaces by single space Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-03 10:58:16 UTC (rev 10808) @@ -1,4 +1,4 @@ -Date: Thu, 30 Dec 2021 10:43:13 +0000 +Date: Mon, 3 Jan 2022 11:57:23 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -8,7 +8,7 @@ <<CreateToc with_toclink||=1 headers||=1,2,3 width=300px position=right>> -== 1.6.1 2021-12-XX Marc-Etienne Vargenau == +== 1.6.1 2022-01-XX Marc-Etienne Vargenau == This release makes ~PhpWiki compatible with PHP 8.1. ##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. @@ -29,6 +29,7 @@ === Plugins === * Chart plugin: new argument “legend” +* UpLoad plugin: allow more filenames (e.g. with Chinese characters) * ~PreferencesInfo plugin removed * ~CategoryPage plugin removed, categories are better created with the button in the toolbar Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/de.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -3261,9 +3261,6 @@ msgid "Sorry but this file is too big." msgstr "Leider ist diese Datei zu groß." -msgid "Invalid filename." -msgstr "Ungültiger Dateiname." - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "Es existiert schon eine gleichnamige, hochgeladene Datei »%s«." @@ -5813,6 +5810,9 @@ msgid "Edit this page" msgstr "Diese Seite bearbeiten" +#~ msgid "Invalid filename." +#~ msgstr "Ungültiger Dateiname." + #~ msgid "Deleted" #~ msgstr "Gelöscht" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/es.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -3185,9 +3185,6 @@ msgid "Sorry but this file is too big." msgstr "" -msgid "Invalid filename." -msgstr "Nombre de archivo inválido." - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "" @@ -5684,6 +5681,9 @@ msgid "Edit this page" msgstr "Corrija esta página" +#~ msgid "Invalid filename." +#~ msgstr "Nombre de archivo inválido." + #~ msgid "Deleted" #~ msgstr "Borrada" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/fr.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -3244,9 +3244,6 @@ msgid "Sorry but this file is too big." msgstr "Désolé, mais le fichier est trop gros." -msgid "Invalid filename." -msgstr "Nom de fichier incorrect." - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "Un fichier portant le nom « %s » existe déjà." @@ -5806,6 +5803,9 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "Invalid filename." +#~ msgstr "Nom de fichier incorrect." + #~ msgid "Deleted" #~ msgstr "Supprimé" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/it.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -3162,9 +3162,6 @@ msgid "Sorry but this file is too big." msgstr "" -msgid "Invalid filename." -msgstr "" - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/ja.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -3148,9 +3148,6 @@ msgid "Sorry but this file is too big." msgstr "" -msgid "Invalid filename." -msgstr "" - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/nl.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -3154,9 +3154,6 @@ msgid "Sorry but this file is too big." msgstr "" -msgid "Invalid filename." -msgstr "" - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/phpwiki.pot 2022-01-03 10:58:16 UTC (rev 10808) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -3148,9 +3148,6 @@ msgid "Sorry but this file is too big." msgstr "" -msgid "Invalid filename." -msgstr "" - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/sv.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -3149,9 +3149,6 @@ msgid "Sorry but this file is too big." msgstr "" -msgid "Invalid filename." -msgstr "" - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/locale/po/zh.po 2022-01-03 10:58:16 UTC (rev 10808) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-02 15:35+0100\n" +"POT-Creation-Date: 2022-01-03 11:54+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -3158,9 +3158,6 @@ msgid "Sorry but this file is too big." msgstr "抱歉,因為檔案太大了." -msgid "Invalid filename." -msgstr "" - #, php-format msgid "There is already a file with name “%s” uploaded." msgstr "已經有個名為 %s 的檔案存在." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-03 10:48:42 UTC (rev 10807) +++ trunk/pgsrc/ReleaseNotes 2022-01-03 10:58:16 UTC (rev 10808) @@ -1,4 +1,4 @@ -Date: Thu, 30 Dec 2021 10:43:13 +0000 +Date: Mon, 3 Jan 2022 11:57:23 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -8,7 +8,7 @@ <<CreateToc with_toclink||=1 headers||=1,2,3 width=300px position=right>> -== 1.6.1 2021-12-XX Marc-Etienne Vargenau == +== 1.6.1 2022-01-XX Marc-Etienne Vargenau == This release makes ~PhpWiki compatible with PHP 8.1. ##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. @@ -29,6 +29,7 @@ === Plugins === * Chart plugin: new argument “legend” +* UpLoad plugin: allow more filenames (e.g. with Chinese characters) * ~PreferencesInfo plugin removed * ~CategoryPage plugin removed, categories are better created with the button in the toolbar This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-05 12:22:22
|
Revision: 10819 http://sourceforge.net/p/phpwiki/code/10819 Author: vargenau Date: 2022-01-05 12:22:19 +0000 (Wed, 05 Jan 2022) Log Message: ----------- Put "Warning:" in bold in editpage.tmpl, split "Warning:" from rest of message Modified Paths: -------------- trunk/lib/WysiwygEdit/Wikiwyg.php trunk/lib/plugin/PageDump.php trunk/lib/plugin/PasswordReset.php trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SemanticSearchAdvanced.php trunk/lib/plugin/WikiAdminSearchReplace.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/Crao/templates/editpage.tmpl trunk/themes/Portland/templates/editpage.tmpl trunk/themes/Wordpress/templates/editpage.tmpl trunk/themes/default/templates/editpage.tmpl trunk/themes/fusionforge/templates/editpage.tmpl Modified: trunk/lib/WysiwygEdit/Wikiwyg.php =================================================================== --- trunk/lib/WysiwygEdit/Wikiwyg.php 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/lib/WysiwygEdit/Wikiwyg.php 2022-01-05 12:22:19 UTC (rev 10819) @@ -135,7 +135,7 @@ $iframe0 = new RawXml('<iframe id="iframe0" src="blank.htm" height="0" width="0" frameborder="0"></iframe>'); if ($request->getArg('mode') and $request->getArg('mode') == 'wysiwyg') { $out = HTML(HTML::div(array('class' => 'hint'), - _("Warning: This Wikiwyg editor has only Beta quality!")), + _("Warning")._(": ")._("This Wikiwyg editor has only Beta quality!")), $textarea, $iframe0, "\n"); Modified: trunk/lib/plugin/PageDump.php =================================================================== --- trunk/lib/plugin/PageDump.php 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/lib/plugin/PageDump.php 2022-01-05 12:22:19 UTC (rev 10819) @@ -214,8 +214,7 @@ HTML::pre($mailified), $altpreviewbuttons, HTML::div(array('class' => 'error'), - HTML::strong(_("Warning:")), - " ", $warning), + HTML::strong(_("Warning")), _(": "), $warning), $dl, $Sep, $dlall, $Sep, $dlsvn ); } Modified: trunk/lib/plugin/PasswordReset.php =================================================================== --- trunk/lib/plugin/PasswordReset.php 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/lib/plugin/PasswordReset.php 2022-01-05 12:22:19 UTC (rev 10819) @@ -151,7 +151,7 @@ return $this->doForm($request, $userid); } if (!$userid) { - $alert = new Alert(_("Warning:"), + $alert = new Alert(_("Warning")._(": "), _("You need to specify the userid!")); $alert->show(); return $this->doForm($request); @@ -195,7 +195,7 @@ } $verified = $thisuser->_prefs->_prefs['email']->getraw('emailVerified'); if (!$verified) - $header->pushContent(HTML::br(), _("Warning: This users email address is unverified!")); + $header->pushContent(HTML::br(), _("Warning")._(": ")._("This user's email address is unverified!")); } return $this->doForm($request, $userid, $header, Modified: trunk/lib/plugin/SemanticSearch.php =================================================================== --- trunk/lib/plugin/SemanticSearch.php 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/lib/plugin/SemanticSearch.php 2022-01-05 12:22:19 UTC (rev 10819) @@ -289,7 +289,7 @@ if (isset($this->_norelations_warning)) $form->pushContent (HTML::div(array('class' => 'warning'), - _("Warning:"), HTML::br(), + _("Warning")._(":"), HTML::br(), _("No relations nor attributes in the whole wikidb defined!") , "\n" , fmt("See %s", WikiLink(_("Help").":"._("SemanticRelations"))))); Modified: trunk/lib/plugin/SemanticSearchAdvanced.php =================================================================== --- trunk/lib/plugin/SemanticSearchAdvanced.php 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/lib/plugin/SemanticSearchAdvanced.php 2022-01-05 12:22:19 UTC (rev 10819) @@ -146,7 +146,7 @@ $form = $this->showForm($dbi, $request, $args, $allrelations); if (isset($this->_norelations_warning)) $form->pushContent(HTML::div(array('class' => 'warning'), - _("Warning:") . $this->_norelations_warning)); + _("Warning")._(": ") . $this->_norelations_warning)); extract($args); Modified: trunk/lib/plugin/WikiAdminSearchReplace.php =================================================================== --- trunk/lib/plugin/WikiAdminSearchReplace.php 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/lib/plugin/WikiAdminSearchReplace.php 2022-01-05 12:22:19 UTC (rev 10819) @@ -104,7 +104,7 @@ $result = HTML::div(); if ($request->isPost() and empty($post_args['from'])) { $result->pushContent(HTML::p(array('class' => 'warning'), - _("Warning: The search string cannot be empty!"))); + _("Warning")._(": ")._("The search string cannot be empty!"))); } if ($next_action == 'select' and empty($pages)) { // List all pages to select from. Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/de.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -2154,8 +2154,8 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" -msgstr "Achtung:" +msgid "Warning" +msgstr "Achtung" #, php-format msgid "PageGroup for %s." @@ -2277,7 +2277,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3655,8 +3655,8 @@ msgstr "" "Sie müssen Administratorrechte haben, um dieses Zusatzprogramm zu benutzen." -msgid "Warning: The search string cannot be empty!" -msgstr "Achtung! Das Suchwort darf nicht leer sein!" +msgid "The search string cannot be empty!" +msgstr "Das Suchwort darf nicht leer sein!" msgid "Select the pages to search and replace" msgstr "Seiten auswählen" @@ -5052,7 +5052,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -5074,6 +5074,9 @@ msgid "Note:" msgstr "Hinweis:" +msgid "This page has been locked and cannot be edited." +msgstr "Diese Seite wurde gesperrt und kann nicht bearbeitet werden." + msgid "You are viewing an old revision of this page." msgstr "Sie sehen eine alte Version dieser Seite." @@ -5105,9 +5108,6 @@ msgid "Page Trail" msgstr "Spur" -msgid "This page has been locked and cannot be edited." -msgstr "Diese Seite wurde gesperrt und kann nicht bearbeitet werden." - #, php-format msgid "Comment modified on %s by %s" msgstr "Kommentare am %s geändert von %s" @@ -5159,8 +5159,8 @@ "page.)" msgstr "" -msgid "Warning: You are editing an old revision." -msgstr "Achtung: Sie bearbeiten eine alte Version." +msgid "You are editing an old revision." +msgstr "Sie bearbeiten eine alte Version." msgid "Saving this page will overwrite the current version." msgstr "" @@ -5974,13 +5974,6 @@ #~ msgid "edit area" #~ msgstr "Texteingabe Fenster" -#~ msgid "" -#~ "Warning: You are editing an old revision. Saving this page will overwrite " -#~ "the current version." -#~ msgstr "" -#~ "Wenn Sie diese Seite jetzt speichern, wird die aktuelle Version " -#~ "überschrieben." - #~ msgid "ActionPage" #~ msgstr "Aktion Seite" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/es.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2097,7 +2097,7 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" +msgid "Warning" msgstr "" #, php-format @@ -2219,7 +2219,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3571,7 +3571,7 @@ msgid "You must be an administrator to use this plugin." msgstr "" -msgid "Warning: The search string cannot be empty!" +msgid "The search string cannot be empty!" msgstr "" msgid "Select the pages to search and replace" @@ -4950,7 +4950,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4972,6 +4972,9 @@ msgid "Note:" msgstr "Nota:" +msgid "This page has been locked and cannot be edited." +msgstr "Esta página ha sido bloqueada y no puede ser editada." + msgid "You are viewing an old revision of this page." msgstr "" @@ -5003,9 +5006,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "Esta página ha sido bloqueada y no puede ser editada." - #, php-format msgid "Comment modified on %s by %s" msgstr "Comentario modificado en %s por %s" @@ -5054,7 +5054,7 @@ "page.)" msgstr "" -msgid "Warning: You are editing an old revision." +msgid "You are editing an old revision." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/fr.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -2137,8 +2137,8 @@ "fichiers téléchargés avant de les éditer sous Emacs et les publier sous " "Subversion." -msgid "Warning:" -msgstr "Attention :" +msgid "Warning" +msgstr "Attention" #, php-format msgid "PageGroup for %s." @@ -2259,9 +2259,8 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" -msgstr "" -"Attention : l'adresse électronique de cet utilsateur n'a pas été vérifiée !" +msgid "This user's email address is unverified!" +msgstr "l'adresse électronique de cet utilsateur n'a pas été vérifiée !" #, php-format msgid "Do you really want to reset the password of user %s?" @@ -3645,8 +3644,8 @@ msgid "You must be an administrator to use this plugin." msgstr "Vous devez être un administrateur pour utiliser ce greffon." -msgid "Warning: The search string cannot be empty!" -msgstr "Attention : vous devez entrez au moins une lettre pour la recherche!" +msgid "The search string cannot be empty!" +msgstr "vous devez entrez au moins une lettre pour la recherche !" msgid "Select the pages to search and replace" msgstr "Sélectionner les pages dans lesquelles la recherche sera effectuée" @@ -5041,7 +5040,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -5063,6 +5062,9 @@ msgid "Note:" msgstr "Note :" +msgid "This page has been locked and cannot be edited." +msgstr "Cette page a été verrouillée et ne peut pas être modifiée." + msgid "You are viewing an old revision of this page." msgstr "Vous lisez une ancienne version de cette page." @@ -5094,9 +5096,6 @@ msgid "Page Trail" msgstr "Fil d'Ariane" -msgid "This page has been locked and cannot be edited." -msgstr "Cette page a été verrouillée et ne peut pas être modifiée." - #, php-format msgid "Comment modified on %s by %s" msgstr "Commentaire modifié le %s par %s" @@ -5149,8 +5148,8 @@ "Veuillez continuer vos modifications. (Vous trouverez votre zone de " "modification en bas de page)." -msgid "Warning: You are editing an old revision." -msgstr "Attention : vous modifiez une ancienne version." +msgid "You are editing an old revision." +msgstr "vous modifiez une ancienne version." msgid "Saving this page will overwrite the current version." msgstr "Enregistrer cette page écrasera la version actuelle." @@ -5831,9 +5830,6 @@ #~ msgid "no cache used" #~ msgstr "pas de cache utilisé" -#~ msgid "Warning: leaving the page will lose all your modifications!" -#~ msgstr "Attention : quitter cette page annulera toutes vos modifications !" - #~ msgid "Tutorial" #~ msgstr "Tutoriel" @@ -6058,20 +6054,6 @@ #~ msgid "edit area" #~ msgstr "zone d'édition" -#~ msgid "" -#~ "Preview only! Changes not saved. Please continue editing. (You'll find " -#~ "your edit area at the bottom of the page.)" -#~ msgstr "" -#~ "Vous êtes en prévisualisation ! Veuillez continuer votre édition. (Vous " -#~ "trouverez votre zone d'édition en bas de page)." - -#~ msgid "" -#~ "Warning: You are editing an old revision. Saving this page will overwrite " -#~ "the current version." -#~ msgstr "" -#~ "Attention : vous modifiez une ancienne version de cette page. Enregistrer " -#~ "cette page écrasera la version actuelle." - #~ msgid "ActionPage" #~ msgstr "Pages d'action" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/it.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -2078,8 +2078,8 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" -msgstr "Avvertimento:" +msgid "Warning" +msgstr "Avvertimento" #, php-format msgid "PageGroup for %s." @@ -2200,7 +2200,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3548,7 +3548,7 @@ msgid "You must be an administrator to use this plugin." msgstr "" -msgid "Warning: The search string cannot be empty!" +msgid "The search string cannot be empty!" msgstr "" msgid "Select the pages to search and replace" @@ -4910,7 +4910,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4932,6 +4932,9 @@ msgid "Note:" msgstr "Nota:" +msgid "This page has been locked and cannot be edited." +msgstr "Questa pagina è stata bloccata e non può essere modificata." + msgid "You are viewing an old revision of this page." msgstr "" @@ -4963,9 +4966,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "Questa pagina è stata bloccata e non può essere modificata." - #, php-format msgid "Comment modified on %s by %s" msgstr "" @@ -5014,7 +5014,7 @@ "page.)" msgstr "" -msgid "Warning: You are editing an old revision." +msgid "You are editing an old revision." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/ja.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2064,8 +2064,8 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" -msgstr "警告:" +msgid "Warning" +msgstr "警告" #, php-format msgid "PageGroup for %s." @@ -2186,7 +2186,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3534,7 +3534,7 @@ msgid "You must be an administrator to use this plugin." msgstr "" -msgid "Warning: The search string cannot be empty!" +msgid "The search string cannot be empty!" msgstr "" msgid "Select the pages to search and replace" @@ -4896,7 +4896,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4918,6 +4918,9 @@ msgid "Note:" msgstr "ノート:" +msgid "This page has been locked and cannot be edited." +msgstr "" + msgid "You are viewing an old revision of this page." msgstr "" @@ -4949,9 +4952,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "" - #, php-format msgid "Comment modified on %s by %s" msgstr "" @@ -5000,8 +5000,8 @@ "page.)" msgstr "編集を続けて下さい。 (編集エリアのページの下部も見てください)" -msgid "Warning: You are editing an old revision." -msgstr "警告: あなたは古いリビジョンを編集しています。" +msgid "You are editing an old revision." +msgstr "あなたは古いリビジョンを編集しています。" msgid "Saving this page will overwrite the current version." msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/nl.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -2070,7 +2070,7 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" +msgid "Warning" msgstr "" #, php-format @@ -2192,7 +2192,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3540,7 +3540,7 @@ msgid "You must be an administrator to use this plugin." msgstr "" -msgid "Warning: The search string cannot be empty!" +msgid "The search string cannot be empty!" msgstr "" msgid "Select the pages to search and replace" @@ -4902,7 +4902,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4924,6 +4924,9 @@ msgid "Note:" msgstr "" +msgid "This page has been locked and cannot be edited." +msgstr "Deze pagina is afgesloten en kan niet veranderd worden." + msgid "You are viewing an old revision of this page." msgstr "" @@ -4955,9 +4958,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "Deze pagina is afgesloten en kan niet veranderd worden." - #, php-format msgid "Comment modified on %s by %s" msgstr "" @@ -5006,7 +5006,7 @@ "page.)" msgstr "" -msgid "Warning: You are editing an old revision." +msgid "You are editing an old revision." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/phpwiki.pot 2022-01-05 12:22:19 UTC (rev 10819) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2064,7 +2064,7 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" +msgid "Warning" msgstr "" #, php-format @@ -2186,7 +2186,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3534,7 +3534,7 @@ msgid "You must be an administrator to use this plugin." msgstr "" -msgid "Warning: The search string cannot be empty!" +msgid "The search string cannot be empty!" msgstr "" msgid "Select the pages to search and replace" @@ -4896,7 +4896,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4918,6 +4918,9 @@ msgid "Note:" msgstr "" +msgid "This page has been locked and cannot be edited." +msgstr "" + msgid "You are viewing an old revision of this page." msgstr "" @@ -4949,9 +4952,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "" - #, php-format msgid "Comment modified on %s by %s" msgstr "" @@ -5000,7 +5000,7 @@ "page.)" msgstr "" -msgid "Warning: You are editing an old revision." +msgid "You are editing an old revision." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/sv.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2065,7 +2065,7 @@ "markup before rewrapping with emacs and checking into Subversion." msgstr "" -msgid "Warning:" +msgid "Warning" msgstr "" #, php-format @@ -2187,7 +2187,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3535,7 +3535,7 @@ msgid "You must be an administrator to use this plugin." msgstr "" -msgid "Warning: The search string cannot be empty!" +msgid "The search string cannot be empty!" msgstr "" msgid "Select the pages to search and replace" @@ -4897,7 +4897,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4919,6 +4919,9 @@ msgid "Note:" msgstr "" +msgid "This page has been locked and cannot be edited." +msgstr "Den här sidan är låst och kan ej redigeras." + msgid "You are viewing an old revision of this page." msgstr "" @@ -4950,9 +4953,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "Den här sidan är låst och kan ej redigeras." - #, php-format msgid "Comment modified on %s by %s" msgstr "" @@ -5001,7 +5001,7 @@ "page.)" msgstr "" -msgid "Warning: You are editing an old revision." +msgid "You are editing an old revision." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/locale/po/zh.po 2022-01-05 12:22:19 UTC (rev 10819) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-03 11:54+0100\n" +"POT-Creation-Date: 2022-01-05 13:02+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2073,8 +2073,8 @@ "在以 emacs 重包裝與簽入之前,PhpWiki 開發者應會因為巢狀標記而手動審閱已下載的" "檔案." -msgid "Warning:" -msgstr "警告:" +msgid "Warning" +msgstr "警告" #, php-format msgid "PageGroup for %s." @@ -2195,7 +2195,7 @@ msgid "You need to ask an Administrator to reset this password. See below: " msgstr "" -msgid "Warning: This users email address is unverified!" +msgid "This user's email address is unverified!" msgstr "" #, php-format @@ -3545,8 +3545,8 @@ msgid "You must be an administrator to use this plugin." msgstr "你必須是管理者才能使用此 plugin." -msgid "Warning: The search string cannot be empty!" -msgstr "警告: 搜尋字串不能是空白!" +msgid "The search string cannot be empty!" +msgstr "搜尋字串不能是空白!" msgid "Select the pages to search and replace" msgstr "選擇頁面以進行搜尋" @@ -4918,7 +4918,7 @@ msgid "Sub" msgstr "" -msgid "Warning: This Wikiwyg editor has only Beta quality!" +msgid "This Wikiwyg editor has only Beta quality!" msgstr "" msgid "xml-rpc change" @@ -4940,6 +4940,9 @@ msgid "Note:" msgstr "注意:" +msgid "This page has been locked and cannot be edited." +msgstr "此頁面已經被管理者鎖定,並且無法編輯." + msgid "You are viewing an old revision of this page." msgstr "你正在查看此頁面的較舊修訂." @@ -4971,9 +4974,6 @@ msgid "Page Trail" msgstr "" -msgid "This page has been locked and cannot be edited." -msgstr "此頁面已經被管理者鎖定,並且無法編輯." - #, php-format msgid "Comment modified on %s by %s" msgstr "意見在 %s 被 %s 變更" @@ -5022,8 +5022,8 @@ "page.)" msgstr "請繼續編輯. (你將在頁面的底部找到你的編輯區域.)" -msgid "Warning: You are editing an old revision." -msgstr "警告: 你正在編輯較舊的修訂." +msgid "You are editing an old revision." +msgstr "你正在編輯較舊的修訂." msgid "Saving this page will overwrite the current version." msgstr "儲存此頁面將會覆寫掉目前版本." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/themes/Crao/templates/editpage.tmpl 2022-01-05 12:22:19 UTC (rev 10819) @@ -10,10 +10,11 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (! $IS_CURRENT) { ?> - <p class="warning_msg"> - <?php echo _("Warning: You are editing an old revision.")?> - <?php echo _("Saving this page will overwrite the current version.")?> - </p> + <p class="warning_msg"> + <strong><?php echo _("Warning")._(": ") ?></strong> + <?php echo _("You are editing an old revision.") ?> + <?php echo _("Saving this page will overwrite the current version.") ?> + </p> <?php } ?> <form method="post" id="editpage" name="editpage" action="<?php echo $request->getPostURL() ?>" @@ -33,8 +34,8 @@ </fieldset> <?php if (ENABLE_CAPTCHA) { ?> <fieldset class="toolbar" style="text-align: center;"> - <?php echo $CAPTCHA_IMAGE ?><br/> - <?php echo $CAPTCHA_LABEL ?><?php echo $CAPTCHA_INPUT ?> + <?php echo $CAPTCHA_IMAGE ?><br/> + <?php echo $CAPTCHA_LABEL ?><?php echo $CAPTCHA_INPUT ?> </fieldset> <?php } ?> <fieldset class="toolbar"> Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/themes/Portland/templates/editpage.tmpl 2022-01-05 12:22:19 UTC (rev 10819) @@ -7,8 +7,11 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (!$IS_CURRENT) { ?> - <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?> - <?php echo _("Saving this page will overwrite the current version.")?></strong></p> + <p class="warning_msg"> + <strong><?php echo _("Warning")._(": ") ?></strong> + <?php echo _("You are editing an old revision.") ?> + <?php echo _("Saving this page will overwrite the current version.") ?> + </p> <?php } ?> </td> </tr> Modified: trunk/themes/Wordpress/templates/editpage.tmpl =================================================================== --- trunk/themes/Wordpress/templates/editpage.tmpl 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/themes/Wordpress/templates/editpage.tmpl 2022-01-05 12:22:19 UTC (rev 10819) @@ -9,8 +9,11 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (!$IS_CURRENT) { ?> - <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?> - <?php echo _("Saving this page will overwrite the current version.")?></strong></p> + <p class="warning_msg"> + <strong><?php echo _("Warning")._(": ") ?></strong> + <?php echo _("You are editing an old revision.") ?> + <?php echo _("Saving this page will overwrite the current version.") ?> + </p> <?php } ?> </td> <td> Modified: trunk/themes/default/templates/editpage.tmpl =================================================================== --- trunk/themes/default/templates/editpage.tmpl 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/themes/default/templates/editpage.tmpl 2022-01-05 12:22:19 UTC (rev 10819) @@ -10,10 +10,11 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (! $IS_CURRENT) { ?> - <p class="warning_msg"> - <?php echo _("Warning: You are editing an old revision.")?> - <?php echo _("Saving this page will overwrite the current version.")?> - </p> + <p class="warning_msg"> + <strong><?php echo _("Warning")._(": ") ?></strong> + <?php echo _("You are editing an old revision.") ?> + <?php echo _("Saving this page will overwrite the current version.") ?> + </p> <?php } ?> <form method="post" id="editpage" name="editpage" action="<?php echo $request->getPostURL() ?>" Modified: trunk/themes/fusionforge/templates/editpage.tmpl =================================================================== --- trunk/themes/fusionforge/templates/editpage.tmpl 2022-01-04 17:42:19 UTC (rev 10818) +++ trunk/themes/fusionforge/templates/editpage.tmpl 2022-01-05 12:22:19 UTC (rev 10819) @@ -8,10 +8,11 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (! $IS_CURRENT) { ?> - <p class="warning_msg"> - <?php echo _("Warning: You are editing an old revision.")?> - <?php echo _("Saving this page will overwrite the current version.")?> - </p> + <p class="warning_msg"> + <strong><?php echo _("Warning")._(": ") ?></strong> + <?php echo _("You are editing an old revision.") ?> + <?php echo _("Saving this page will overwrite the current version.") ?> + </p> <?php } ?> <?php if (forge_get_config('use_jquery_form_navigate')) { ?> <script type="text/javascript"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-06 10:41:34
|
Revision: 10845 http://sourceforge.net/p/phpwiki/code/10845 Author: vargenau Date: 2022-01-06 10:41:31 +0000 (Thu, 06 Jan 2022) Log Message: ----------- Better link for SetAcl and SetAclSimple Modified Paths: -------------- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple trunk/pgsrc/PhpWikiAdministration%2FSetAcl trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple Added Paths: ----------- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2022-01-06 09:41:57 UTC (rev 10844) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2022-01-06 10:41:31 UTC (rev 10845) @@ -1,4 +1,4 @@ -Date: Wed, 10 Apr 2019 18:35:55 +0000 +Date: Thu, 6 Jan 2022 11:36:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclSetzen; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -For simple Access Rights modifications, see **[[phpwiki:?action=setaclsimple|SetAclSimple]]**. +For simple Access Rights modifications, see **[[PhpWikiSystemverwalten/AclSetzenEinfach|AclSetzenEinfach]]**. ---- Added: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach (rev 0) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach 2022-01-06 10:41:31 UTC (rev 10845) @@ -0,0 +1,23 @@ +Date: Thu, 6 Jan 2022 11:36:59 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Content-Type: application/x-phpwiki; + pagename=PhpWikiSystemverwalten%2FAclSetzenEinfach; + flags=PAGE_LOCKED; + charset=UTF-8 +Content-Transfer-Encoding: binary + +{| style="width: 100%; background-color: #e9fbff; border-style: solid; border-color: blue; border-width: 2px;" +|- +| {{(on)}} **//Liberal Access Rights//** means **//Everyone can edit//**. +|- +| {{(on)}} **//Restrictive Access Rights//** means **//Only logged users can see the page//**. +|} + +For more complex Access Rights modifications, see **[[PhpWikiSystemverwalten/AclSetzen|AclSetzen]]**. + +---- + +<<WikiAdminSetAclSimple>> + +---- +[[KategorieAktionSeite]] Modified: trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl =================================================================== --- trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl 2022-01-06 09:41:57 UTC (rev 10844) +++ trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl 2022-01-06 10:41:31 UTC (rev 10845) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:17 +0000 +Date: Thu, 6 Jan 2022 11:36:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=AdministrationDePhpWiki%2FD%C3%A9finirAcl; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -Pour des modifications simples d'ACL, voir **[[phpwiki:?action=setaclsimple|DéfinirAclSimple]]**. +Pour des modifications simples d'ACL, voir **[[AdministrationDePhpWiki/DéfinirAclSimple|DéfinirAclSimple]]**. ---- Modified: trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple =================================================================== --- trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple 2022-01-06 09:41:57 UTC (rev 10844) +++ trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple 2022-01-06 10:41:31 UTC (rev 10845) @@ -1,4 +1,4 @@ -Date: Thu, 4 Apr 2019 17:13:16 +0000 +Date: Thu, 6 Jan 2022 11:36:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=AdministrationDePhpWiki%2FD%C3%A9finirAclSimple; @@ -13,7 +13,7 @@ | {{(on)}} **//Droits d'accès restreints//** signifie **//Seuls les utilisateurs connectés peuvent voir la page//**. |} -Pour des modification plus complexes des droits d'accès, voir **[[phpwiki:?action=setacl|SetAcl]]**. +Pour des modification plus complexes des droits d'accès, voir **[[AdministrationDePhpWiki/DéfinirAcl|DéfinirAcl]]**. ---- Modified: trunk/pgsrc/PhpWikiAdministration%2FSetAcl =================================================================== --- trunk/pgsrc/PhpWikiAdministration%2FSetAcl 2022-01-06 09:41:57 UTC (rev 10844) +++ trunk/pgsrc/PhpWikiAdministration%2FSetAcl 2022-01-06 10:41:31 UTC (rev 10845) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Thu, 6 Jan 2022 11:36:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiAdministration%2FSetAcl; @@ -6,7 +6,7 @@ charset=UTF-8 Content-Transfer-Encoding: binary -For simple Access Rights modifications, see **[[phpwiki:?action=setaclsimple|SetAclSimple]]**. +For simple Access Rights modifications, see **[[PhpWikiAdministration/SetAclSimple|SetAclSimple]]**. ---- Modified: trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple =================================================================== --- trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple 2022-01-06 09:41:57 UTC (rev 10844) +++ trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple 2022-01-06 10:41:31 UTC (rev 10845) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Thu, 6 Jan 2022 10:36:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiAdministration%2FSetAclSimple; @@ -13,7 +13,7 @@ | {{(on)}} **//Restrictive Access Rights//** means **//Only logged users can see the page//**. |} -For more complex Access Rights modifications, see **[[phpwiki:?action=setacl|SetAcl]]**. +For more complex Access Rights modifications, see **[[PhpWikiAdministration/SetAcl|SetAcl]]**. ---- Modified: trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple =================================================================== --- trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple 2022-01-06 09:41:57 UTC (rev 10844) +++ trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple 2022-01-06 10:41:31 UTC (rev 10845) @@ -1,4 +1,4 @@ -Date: Wed, 4 Aug 2021 09:27:34 +0000 +Date: Thu, 6 Jan 2022 11:36:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=PhpWikiAdministration%2FSetAclSimple; @@ -13,7 +13,7 @@ | {{(on)}} **//Restrictive Access Rights//** means **//Only project members can see the page//**. |} -For more complex Access Rights modifications, see **[[phpwiki:?action=setacl|SetAcl]]**. +For more complex Access Rights modifications, see **[[PhpWikiAdministration/SetAcl|SetAcl]]**. ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-11 10:27:57
|
Revision: 10881 http://sourceforge.net/p/phpwiki/code/10881 Author: vargenau Date: 2022-01-11 10:27:54 +0000 (Tue, 11 Jan 2022) Log Message: ----------- Use smart quotes Modified Paths: -------------- trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SemanticSearchAdvanced.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/plugin/SemanticSearch.php =================================================================== --- trunk/lib/plugin/SemanticSearch.php 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/lib/plugin/SemanticSearch.php 2022-01-11 10:27:54 UTC (rev 10881) @@ -459,7 +459,7 @@ $pagelist->setCaption ( // on mozilla the form doesn't fit into the caption very well. HTML($noform ? '' : HTML($form, HTML::hr()), - fmt("Semantic %s Search Result for \"%s\" in pages \"%s\"", + fmt("Semantic %s Search Result for “%s” in pages “%s”", $searchtype, $querydesc, $page))); } return $pagelist; Modified: trunk/lib/plugin/SemanticSearchAdvanced.php =================================================================== --- trunk/lib/plugin/SemanticSearchAdvanced.php 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/lib/plugin/SemanticSearchAdvanced.php 2022-01-11 10:27:54 UTC (rev 10881) @@ -200,7 +200,7 @@ if (!$noheader) { $pagelist->setCaption (HTML($noform ? '' : HTML($form, HTML::hr()), - fmt("Semantic %s Search Result for \"%s\" in pages \"%s\"", + fmt("Semantic %s Search Result for “%s” in pages “%s”", '', $s, $page))); } if (!$regex and $missing = array_diff($parsed_relations, $allrelations)) Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/de.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -2782,7 +2782,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/es.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2715,7 +2715,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/fr.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -2762,7 +2762,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/it.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -2692,7 +2692,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/ja.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2678,7 +2678,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/nl.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -2684,7 +2684,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/phpwiki.pot 2022-01-11 10:27:54 UTC (rev 10881) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2678,7 +2678,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/sv.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2679,7 +2679,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-11 10:15:40 UTC (rev 10880) +++ trunk/locale/po/zh.po 2022-01-11 10:27:54 UTC (rev 10881) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-06 12:06+0100\n" +"POT-Creation-Date: 2022-01-11 11:27+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2687,7 +2687,7 @@ msgstr "" #, php-format -msgid "Semantic %s Search Result for \"%s\" in pages \"%s\"" +msgid "Semantic %s Search Result for “%s” in pages “%s”" msgstr "" msgid "Relation" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-12 12:19:59
|
Revision: 10885 http://sourceforge.net/p/phpwiki/code/10885 Author: vargenau Date: 2022-01-12 12:19:57 +0000 (Wed, 12 Jan 2022) Log Message: ----------- UserPreferences: display feedback banner in case of redirect Modified Paths: -------------- trunk/lib/plugin/UserPreferences.php trunk/themes/default/templates/userprefs.tmpl Modified: trunk/lib/plugin/UserPreferences.php =================================================================== --- trunk/lib/plugin/UserPreferences.php 2022-01-12 11:36:57 UTC (rev 10884) +++ trunk/lib/plugin/UserPreferences.php 2022-01-12 12:19:57 UTC (rev 10885) @@ -114,7 +114,8 @@ $request->setArg("verify", false); $request->setArg("delete", false); if ($old_theme != THEME) { - return HTML($request->redirect(WikiURL(__("UserPreferences"), array(), 'absurl'), false)); + $url = WikiURL(__("UserPreferences"), array(), 'absurl')."?num=reset"; + return HTML($request->redirect($url, false)); } $errmsg .= _("Your UserPreferences have been successfully reset to default."); @@ -182,7 +183,8 @@ // If user has changed theme, we redirect so that the display is not ugly // (mix of old and new templates) if ($new_theme && ($new_theme != $old_theme)) { - return HTML($request->redirect(WikiURL(__("UserPreferences"), array(), 'absurl'), false)); + $url = WikiURL(__("UserPreferences"), array(), 'absurl').'?num='.$num; + return HTML($request->redirect($url, false)); } } Modified: trunk/themes/default/templates/userprefs.tmpl =================================================================== --- trunk/themes/default/templates/userprefs.tmpl 2022-01-12 11:36:57 UTC (rev 10884) +++ trunk/themes/default/templates/userprefs.tmpl 2022-01-12 12:19:57 UTC (rev 10885) @@ -9,6 +9,7 @@ $time = time(); $user =& $request->getUser(); $pref =& $request->_prefs; +$num = $request->getArg('num'); if (!$pref) return; $offset = $pref->get('timeOffset'); @@ -118,6 +119,15 @@ ?> <?php echo $errmsg ?> +<?php if (empty($errmsg)) { ?> +<?php if ($num=='reset') { ?> +<div class="feedback"><p><?php echo _('Your UserPreferences have been successfully reset to default.') ?></p></div> +<?php } elseif ($num==1) { ?> +<div class="feedback"><p><?php echo _('One UserPreferences field successfully updated.') ?></p></div> +<?php } elseif ($num) { ?> +<div class="feedback"><p><?php echo sprintf(_("%d UserPreferences fields successfully updated."), $num) ?></p></div> +<?php } ?> +<?php } ?> <p> <?php echo fmt("User preferences for user %s", WikiLink($user->UserName())) ?> </p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-12 13:35:44
|
Revision: 10886 http://sourceforge.net/p/phpwiki/code/10886 Author: vargenau Date: 2022-01-12 13:35:42 +0000 (Wed, 12 Jan 2022) Log Message: ----------- Better handling of theme change in ~UserPreferences. Modified Paths: -------------- trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-12 12:19:57 UTC (rev 10885) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-12 13:35:42 UTC (rev 10886) @@ -1,4 +1,4 @@ -Date: Mon, 3 Jan 2022 11:57:23 +0000 +Date: Wed, 12 Jan 2022 14:33:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -16,11 +16,12 @@ === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) * blog theme improved +* Better handling of theme change in ~UserPreferences. === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. -* Page locking and unlocking is now saved in page history. +* Page locking and unlocking is now saved in page history (in Edit mode). * Add sample images for ~PhotoAlbum in blog theme. * Remove EDITING_POLICY * Remove ENABLE_XHTML_XML Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-12 12:19:57 UTC (rev 10885) +++ trunk/pgsrc/ReleaseNotes 2022-01-12 13:35:42 UTC (rev 10886) @@ -1,4 +1,4 @@ -Date: Mon, 3 Jan 2022 11:57:23 +0000 +Date: Wed, 12 Jan 2022 14:33:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -16,11 +16,12 @@ === Fixes === * Make list of pages work with PDO (~AllPages, ~MostPopular...) * blog theme improved +* Better handling of theme change in ~UserPreferences. === Changes === * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. -* Page locking and unlocking is now saved in page history. +* Page locking and unlocking is now saved in page history (in Edit mode). * Add sample images for ~PhotoAlbum in blog theme. * Remove EDITING_POLICY * Remove ENABLE_XHTML_XML This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-13 17:42:56
|
Revision: 10897 http://sourceforge.net/p/phpwiki/code/10897 Author: vargenau Date: 2022-01-13 17:42:53 +0000 (Thu, 13 Jan 2022) Log Message: ----------- UserPreferences plugin: check if user isAuthenticated Modified Paths: -------------- trunk/lib/plugin/UserPreferences.php trunk/pgsrc/Help%2FUserPreferencesPlugin Modified: trunk/lib/plugin/UserPreferences.php =================================================================== --- trunk/lib/plugin/UserPreferences.php 2022-01-13 16:58:32 UTC (rev 10896) +++ trunk/lib/plugin/UserPreferences.php 2022-01-13 17:42:53 UTC (rev 10897) @@ -60,11 +60,9 @@ $user =& $request->_user; $user->_request = $request; $iserror = false; - if (defined('FUSIONFORGE') && FUSIONFORGE) { - if (!($user->isAuthenticated())) { - return HTML::p(array('class' => 'error'), - _("Error: You are not logged in, cannot display UserPreferences.")); - } + if (!($user->isAuthenticated())) { + return HTML::p(array('class' => 'error'), + _("Error: You are not logged in, cannot display UserPreferences.")); } if ((!isActionPage($request->getArg('pagename')) and (!isset($user->_prefs->_method) Modified: trunk/pgsrc/Help%2FUserPreferencesPlugin =================================================================== --- trunk/pgsrc/Help%2FUserPreferencesPlugin 2022-01-13 16:58:32 UTC (rev 10896) +++ trunk/pgsrc/Help%2FUserPreferencesPlugin 2022-01-13 17:42:53 UTC (rev 10897) @@ -1,4 +1,4 @@ -Date: Thu, 13 Jan 2022 16:16:14 +0000 +Date: Thu, 13 Jan 2022 18:39:57 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FUserPreferencesPlugin; @@ -25,6 +25,8 @@ <<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-01-14 14:33:20
|
Revision: 10900 http://sourceforge.net/p/phpwiki/code/10900 Author: vargenau Date: 2022-01-14 14:33:17 +0000 (Fri, 14 Jan 2022) Log Message: ----------- themes/Portland/templates/actionbar.tmpl: add separator, better link message Modified Paths: -------------- trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/Portland/templates/actionbar.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/de.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -5737,6 +5737,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "Diese Seite bearbeiten" + #, php-format msgid "%s of this page" msgstr "%s von dieser Seite" @@ -5806,9 +5809,6 @@ #~ msgid "EditText" #~ msgstr "TextBearbeiten" -#~ msgid "Edit this page" -#~ msgstr "Diese Seite bearbeiten" - #~ msgid "Invalid filename." #~ msgstr "Ungültiger Dateiname." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/es.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -5612,6 +5612,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "Corrija esta página" + #, php-format msgid "%s of this page" msgstr "" @@ -5666,9 +5669,6 @@ #~ msgid "EditText" #~ msgstr "Editar" -#~ msgid "Edit this page" -#~ msgstr "Corrija esta página" - #~ msgid "Invalid filename." #~ msgstr "Nombre de archivo inválido." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/fr.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -5726,6 +5726,9 @@ msgid "Favorite Categories" msgstr "Catégories populaires" +msgid "Edit this page" +msgstr "Modifier cette page" + #, php-format msgid "%s of this page" msgstr "%s de cette page" @@ -5799,9 +5802,6 @@ #~ msgid "EditText" #~ msgstr "ÉditerLeContenu" -#~ msgid "Edit this page" -#~ msgstr "Modifier cette page" - #~ msgid "Invalid filename." #~ msgstr "Nom de fichier incorrect." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/it.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -5572,6 +5572,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "Modifica la pagina" + #, php-format msgid "%s of this page" msgstr "%s di questa pagina" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/ja.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5558,6 +5558,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "ページを編集しています" + #, php-format msgid "%s of this page" msgstr "" @@ -5621,9 +5624,6 @@ #~ msgid "Language" #~ msgstr "言語" -#~ msgid "Edit this page" -#~ msgstr "ページを編集しています" - #~ msgid "Deleted" #~ msgstr "削除しました" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/nl.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -5564,6 +5564,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "Verander pagina" + #, php-format msgid "%s of this page" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/phpwiki.pot 2022-01-14 14:33:17 UTC (rev 10900) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5558,6 +5558,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "" + #, php-format msgid "%s of this page" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/sv.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -5559,6 +5559,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "Redigera den här sidan" + #, php-format msgid "%s of this page" msgstr "%s för den här sidan" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/locale/po/zh.po 2022-01-14 14:33:17 UTC (rev 10900) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-12 18:09+0100\n" +"POT-Creation-Date: 2022-01-14 15:31+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -5586,6 +5586,9 @@ msgid "Favorite Categories" msgstr "" +msgid "Edit this page" +msgstr "編輯此頁面" + #, php-format msgid "%s of this page" msgstr "此頁面的 %s" @@ -5649,9 +5652,6 @@ #~ msgid "Language" #~ msgstr "語言" -#~ msgid "Edit this page" -#~ msgstr "編輯此頁面" - #~ msgid "Deleted" #~ msgstr "已刪除" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/Portland/templates/actionbar.tmpl =================================================================== --- trunk/themes/Portland/templates/actionbar.tmpl 2022-01-14 12:33:00 UTC (rev 10899) +++ trunk/themes/Portland/templates/actionbar.tmpl 2022-01-14 14:33:17 UTC (rev 10900) @@ -1,15 +1,21 @@ <?php if ($revision && (!$page->get('locked') || $user->isAdmin())) { - $EditB = Button("edit", $revision->isCurrent() ? _("Edit") : _("Edit Old Revision")); + if ($revision->isCurrent()) { + $EditB = Button("edit", _("Edit this page")); + } else { + $EditB = Button("edit", _("Edit Old Revision")); + $EditB = fmt("%s of this page", $EditB); + } } else { $EditB = Button("viewsource", _("View Source")); + $EditB = fmt("%s of this page", $EditB); } -$EditB = fmt("%s of this page", $EditB); if (empty($revision)) { $revision = $page->getCurrentRevision(false); } ?> <?php echo $EditB ?> +<?php echo $SEP?> <a href="<?php echo WikiURL($revision,array('action'=>'diff'))?>"><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> <?php echo $SEP?> <?php echo Button(__("PageHistory"), _("Page History")) ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-14 14:41:11
|
Revision: 10901 http://sourceforge.net/p/phpwiki/code/10901 Author: vargenau Date: 2022-01-14 14:41:07 +0000 (Fri, 14 Jan 2022) Log Message: ----------- Warn user that leaving the page will lose modifications: in all themes Modified Paths: -------------- trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes trunk/themes/Crao/templates/editpage.tmpl trunk/themes/Portland/templates/editpage.tmpl trunk/themes/Wordpress/templates/editpage.tmpl Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-14 14:33:17 UTC (rev 10900) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-14 14:41:07 UTC (rev 10901) @@ -1,4 +1,4 @@ -Date: Wed, 12 Jan 2022 14:33:19 +0000 +Date: Fri, 14 Jan 2022 15:40:31 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -19,6 +19,7 @@ * Better handling of theme change in ~UserPreferences. === Changes === +* Warn user that leaving the page will lose modifications. * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. * Page locking and unlocking is now saved in page history (in Edit mode). Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-14 14:33:17 UTC (rev 10900) +++ trunk/pgsrc/ReleaseNotes 2022-01-14 14:41:07 UTC (rev 10901) @@ -1,4 +1,4 @@ -Date: Wed, 12 Jan 2022 14:33:19 +0000 +Date: Fri, 14 Jan 2022 15:40:31 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -19,6 +19,7 @@ * Better handling of theme change in ~UserPreferences. === Changes === +* Warn user that leaving the page will lose modifications. * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. * Page locking and unlocking is now saved in page history (in Edit mode). Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2022-01-14 14:33:17 UTC (rev 10900) +++ trunk/themes/Crao/templates/editpage.tmpl 2022-01-14 14:41:07 UTC (rev 10901) @@ -16,6 +16,35 @@ <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> +<script type="text/javascript"> +<!--// +$(document).ready(function() { + ret=window.sessionStorage.getItem('wiki_modified'); + if (ret) { + wiki_modified=ret; + } else { + wiki_modified=0; + } + sessionStorage.removeItem('wiki_modified'); + $('form *').change(function(){ + wiki_modified=1; + }); + window.onbeforeunload = confirmExit; + function confirmExit() { + if (wiki_modified == 1) { + return "Warning: leaving the page will lose all your modifications!"; + } + } + $("input[name='edit[save]']").click(function() { + wiki_modified=0; + sessionStorage.removeItem('wiki_modified'); + }); + $("input[name='edit[preview]'],input[name='edit[diff]']").click(function() { + window.sessionStorage.setItem('wiki_modified', wiki_modified); + wiki_modified=0; + }); +}); +// --></script> <form method="post" id="editpage" name="editpage" action="<?php echo $request->getPostURL() ?>" accept-charset="UTF-8"> Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2022-01-14 14:33:17 UTC (rev 10900) +++ trunk/themes/Portland/templates/editpage.tmpl 2022-01-14 14:41:07 UTC (rev 10901) @@ -13,6 +13,35 @@ <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> +<script type="text/javascript"> +<!--// +$(document).ready(function() { + ret=window.sessionStorage.getItem('wiki_modified'); + if (ret) { + wiki_modified=ret; + } else { + wiki_modified=0; + } + sessionStorage.removeItem('wiki_modified'); + $('form *').change(function(){ + wiki_modified=1; + }); + window.onbeforeunload = confirmExit; + function confirmExit() { + if (wiki_modified == 1) { + return "Warning: leaving the page will lose all your modifications!"; + } + } + $("input[name='edit[save]']").click(function() { + wiki_modified=0; + sessionStorage.removeItem('wiki_modified'); + }); + $("input[name='edit[preview]'],input[name='edit[diff]']").click(function() { + window.sessionStorage.setItem('wiki_modified', wiki_modified); + wiki_modified=0; + }); +}); +// --></script> </td> </tr> </table> Modified: trunk/themes/Wordpress/templates/editpage.tmpl =================================================================== --- trunk/themes/Wordpress/templates/editpage.tmpl 2022-01-14 14:33:17 UTC (rev 10900) +++ trunk/themes/Wordpress/templates/editpage.tmpl 2022-01-14 14:41:07 UTC (rev 10901) @@ -15,6 +15,35 @@ <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> +<script type="text/javascript"> +<!--// +$(document).ready(function() { + ret=window.sessionStorage.getItem('wiki_modified'); + if (ret) { + wiki_modified=ret; + } else { + wiki_modified=0; + } + sessionStorage.removeItem('wiki_modified'); + $('form *').change(function(){ + wiki_modified=1; + }); + window.onbeforeunload = confirmExit; + function confirmExit() { + if (wiki_modified == 1) { + return "Warning: leaving the page will lose all your modifications!"; + } + } + $("input[name='edit[save]']").click(function() { + wiki_modified=0; + sessionStorage.removeItem('wiki_modified'); + }); + $("input[name='edit[preview]'],input[name='edit[diff]']").click(function() { + window.sessionStorage.setItem('wiki_modified', wiki_modified); + wiki_modified=0; + }); +}); +// --></script> </td> <td> </td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-16 19:38:51
|
Revision: 10904 http://sourceforge.net/p/phpwiki/code/10904 Author: vargenau Date: 2022-01-16 19:38:49 +0000 (Sun, 16 Jan 2022) Log Message: ----------- In DATABASE_TYPE = file, do not update metadata if page does not exist (reported by Harold Hallikainen). Modified Paths: -------------- trunk/lib/WikiDB/backend/file.php trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes Modified: trunk/lib/WikiDB/backend/file.php =================================================================== --- trunk/lib/WikiDB/backend/file.php 2022-01-15 16:46:50 UTC (rev 10903) +++ trunk/lib/WikiDB/backend/file.php 2022-01-16 19:38:49 UTC (rev 10904) @@ -322,13 +322,15 @@ * @param string $pagename Page name. * @param array $newdata hash New meta-data. * - * This will create a new page if page being requested does not - * exist. */ function update_pagedata($pagename, $newdata) { $data = $this->get_pagedata($pagename); if (count($data) == 0) { + // Do not update metadata if page does not exist + if ($this->get_latest_version($pagename) == 0) { + return; + } $this->_savePageData($pagename, $newdata); // create a new pagedata-file return; } Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-15 16:46:50 UTC (rev 10903) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-16 19:38:49 UTC (rev 10904) @@ -1,4 +1,4 @@ -Date: Fri, 14 Jan 2022 15:40:31 +0000 +Date: Sun, 16 Jan 2022 20:37:57 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -14,9 +14,10 @@ ##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. === Fixes === -* Make list of pages work with PDO (~AllPages, ~MostPopular...) -* blog theme improved +* Make list of pages work with PDO (~AllPages, ~MostPopular...). * Better handling of theme change in ~UserPreferences. +* In DATABASE_TYPE = file, do not update metadata if page does not exist (reported by Harold Hallikainen). +* blog theme improved. === Changes === * Warn user that leaving the page will lose modifications. Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-15 16:46:50 UTC (rev 10903) +++ trunk/pgsrc/ReleaseNotes 2022-01-16 19:38:49 UTC (rev 10904) @@ -1,4 +1,4 @@ -Date: Fri, 14 Jan 2022 15:40:31 +0000 +Date: Sun, 16 Jan 2022 20:37:57 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -14,9 +14,10 @@ ##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. === Fixes === -* Make list of pages work with PDO (~AllPages, ~MostPopular...) -* blog theme improved +* Make list of pages work with PDO (~AllPages, ~MostPopular...). * Better handling of theme change in ~UserPreferences. +* In DATABASE_TYPE = file, do not update metadata if page does not exist (reported by Harold Hallikainen). +* blog theme improved. === Changes === * Warn user that leaving the page will lose modifications. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-18 15:29:50
|
Revision: 10906 http://sourceforge.net/p/phpwiki/code/10906 Author: vargenau Date: 2022-01-18 15:29:48 +0000 (Tue, 18 Jan 2022) Log Message: ----------- TOOLBAR_IMAGE_PULLDOWN is true by default Modified Paths: -------------- trunk/config/config-default.ini trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/Help%2FImages trunk/pgsrc/ReleaseNotes Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2022-01-18 14:07:21 UTC (rev 10905) +++ trunk/config/config-default.ini 2022-01-18 15:29:48 UTC (rev 10906) @@ -4,6 +4,9 @@ DEBUG = 0 ENABLE_PAGEPERM = true ENABLE_EDIT_TOOLBAR = true +TOOLBAR_IMAGE_PULLDOWN = true +; TOOLBAR_PAGELINK_PULLDOWN = * +; TOOLBAR_TEMPLATE_PULLDOWN = Template* JS_SEARCHREPLACE = true ENABLE_DOUBLECLICKEDIT = false ENABLE_OPEN_GRAPH = false @@ -144,8 +147,6 @@ ; FORTUNE_DIR = /usr/share/fortune ; GOOGLE_LICENSE_KEY = "..." BLOG_DEFAULT_EMPTY_PREFIX = true -; TOOLBAR_PAGELINK_PULLDOWN = * -; TOOLBAR_TEMPLATE_PULLDOWN = Template* ; External executables: ; USE_EXTERNAL_HTML2PDF = "htmldoc --quiet --format pdf14 --no-toc --no-title %s" Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-18 14:07:21 UTC (rev 10905) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-18 15:29:48 UTC (rev 10906) @@ -1,4 +1,4 @@ -Date: Sun, 16 Jan 2022 20:37:57 +0000 +Date: Tue, 18 Jan 2022 16:29:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -21,6 +21,7 @@ === Changes === * Warn user that leaving the page will lose modifications. +* TOOLBAR_IMAGE_PULLDOWN is true by default. * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. * Page locking and unlocking is now saved in page history (in Edit mode). Modified: trunk/pgsrc/Help%2FImages =================================================================== --- trunk/pgsrc/Help%2FImages 2022-01-18 14:07:21 UTC (rev 10905) +++ trunk/pgsrc/Help%2FImages 2022-01-18 15:29:48 UTC (rev 10906) @@ -1,4 +1,4 @@ -Date: Mon, 28 Dec 2020 19:46:14 +0000 +Date: Tue, 18 Jan 2022 16:29:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FImages; @@ -22,6 +22,8 @@ Select an image and click //Insert//. The image will be inserted without options or alternative text. +##TOOLBAR_IMAGE_PULLDOWN## must be set to ##true## for the icon to appear in the toolbar (default). + === Syntax === You give access to the uploaded image with the following syntax. Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-18 14:07:21 UTC (rev 10905) +++ trunk/pgsrc/ReleaseNotes 2022-01-18 15:29:48 UTC (rev 10906) @@ -1,4 +1,4 @@ -Date: Sun, 16 Jan 2022 20:37:57 +0000 +Date: Tue, 18 Jan 2022 16:29:05 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -21,6 +21,7 @@ === Changes === * Warn user that leaving the page will lose modifications. +* TOOLBAR_IMAGE_PULLDOWN is true by default. * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. * Page locking and unlocking is now saved in page history (in Edit mode). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-18 15:58:52
|
Revision: 10907 http://sourceforge.net/p/phpwiki/code/10907 Author: vargenau Date: 2022-01-18 15:58:50 +0000 (Tue, 18 Jan 2022) Log Message: ----------- Make the toolbar image button work when UPLOAD_USERDIR is set Modified Paths: -------------- trunk/lib/editpage.php trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2022-01-18 15:29:48 UTC (rev 10906) +++ trunk/lib/editpage.php 2022-01-18 15:58:50 UTC (rev 10907) @@ -980,8 +980,11 @@ if (defined('UPLOAD_USERDIR') and UPLOAD_USERDIR) { $image_dir .= "/" . $request->_user->_userid; $pd = new ImageOrVideoSet($image_dir, '*'); - $images = array_merge($images, $pd->getFiles()); + $userimages = $pd->getFiles(); unset($pd); + foreach ($userimages as $image) { + $images[] = $request->_user->_userid . '/' . $image; + } } sort($images); if (!empty($images)) { Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-18 15:29:48 UTC (rev 10906) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-18 15:58:50 UTC (rev 10907) @@ -1,4 +1,4 @@ -Date: Tue, 18 Jan 2022 16:29:05 +0000 +Date: Tue, 18 Jan 2022 16:58:09 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -17,6 +17,7 @@ * Make list of pages work with PDO (~AllPages, ~MostPopular...). * Better handling of theme change in ~UserPreferences. * In DATABASE_TYPE = file, do not update metadata if page does not exist (reported by Harold Hallikainen). +* Make the toolbar image button work when ##UPLOAD_USERDIR## is set. * blog theme improved. === Changes === Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-18 15:29:48 UTC (rev 10906) +++ trunk/pgsrc/ReleaseNotes 2022-01-18 15:58:50 UTC (rev 10907) @@ -1,4 +1,4 @@ -Date: Tue, 18 Jan 2022 16:29:05 +0000 +Date: Tue, 18 Jan 2022 16:58:09 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -17,6 +17,7 @@ * Make list of pages work with PDO (~AllPages, ~MostPopular...). * Better handling of theme change in ~UserPreferences. * In DATABASE_TYPE = file, do not update metadata if page does not exist (reported by Harold Hallikainen). +* Make the toolbar image button work when ##UPLOAD_USERDIR## is set. * blog theme improved. === Changes === This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-20 10:05:05
|
Revision: 10911 http://sourceforge.net/p/phpwiki/code/10911 Author: vargenau Date: 2022-01-20 10:05:03 +0000 (Thu, 20 Jan 2022) Log Message: ----------- Add quotes in error message for clarity Modified Paths: -------------- trunk/lib/stdlib.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/lib/stdlib.php 2022-01-20 10:05:03 UTC (rev 10911) @@ -479,7 +479,7 @@ } else { $url = substr(strrchr($ori_url, "/"), 1); return HTML::span(array('class' => 'error'), - sprintf(_("Invalid attribute %s=%s for image %s"), + sprintf(_("Invalid attribute “%s=%s” for image “%s”"), $attr, $value, $url)); } } Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/de.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -4535,8 +4535,8 @@ msgstr "URL Formfehler für Bild" #, php-format -msgid "Invalid attribute %s=%s for image %s" -msgstr "Ungültiger Parameter %s=%s für Bild %s" +msgid "Invalid attribute “%s=%s” for image “%s”" +msgstr "Ungültiger Parameter »%s=%s« für Bild »%s«" #, php-format msgid "Invalid image link fixed “%s” => “%s”. Spaces must be quoted with %%20." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/es.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -4432,7 +4432,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/fr.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -4526,8 +4526,8 @@ msgstr "URL incorrecte pour l'image" #, php-format -msgid "Invalid attribute %s=%s for image %s" -msgstr "Attribut non valable %s=%s pour l'image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" +msgstr "Attribut non valable « %s=%s » pour l'image « %s »" #, php-format msgid "Invalid image link fixed “%s” => “%s”. Spaces must be quoted with %%20." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/it.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -4409,7 +4409,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/ja.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -4395,7 +4395,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/nl.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -4401,7 +4401,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/phpwiki.pot 2022-01-20 10:05:03 UTC (rev 10911) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -4395,7 +4395,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/sv.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -4396,7 +4396,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-20 10:00:37 UTC (rev 10910) +++ trunk/locale/po/zh.po 2022-01-20 10:05:03 UTC (rev 10911) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-14 15:31+0100\n" +"POT-Creation-Date: 2022-01-20 11:03+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -4410,7 +4410,7 @@ msgstr "" #, php-format -msgid "Invalid attribute %s=%s for image %s" +msgid "Invalid attribute “%s=%s” for image “%s”" msgstr "" #, php-format Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-20 11:20:49
|
Revision: 10912 http://sourceforge.net/p/phpwiki/code/10912 Author: vargenau Date: 2022-01-20 11:19:14 +0000 (Thu, 20 Jan 2022) Log Message: ----------- RecentChangesCached plugin removed, RecentChanges plugin is fast enough Modified Paths: -------------- trunk/doc/README.phpwiki-cache trunk/lib/IniConfig.php trunk/lib/WikiDB.php trunk/lib/WikiPluginCached.php trunk/lib/plugin/WikiTranslation.php trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/pgsrc/ReleaseNotes trunk/themes/Sidebar/templates/rc.tmpl Removed Paths: ------------- trunk/lib/plugin/RecentChangesCached.php trunk/pgsrc/Help%2FRecentChangesCachedPlugin Modified: trunk/doc/README.phpwiki-cache =================================================================== --- trunk/doc/README.phpwiki-cache 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/doc/README.phpwiki-cache 2022-01-20 11:19:14 UTC (rev 10912) @@ -54,25 +54,11 @@ * VisualWiki and TexToPng use png image type for communication with the image creating scripts (dot and pstoimg), so they rely on CreateImageFronPNG(...) -* RecentChangesCached produces a strange RSS-link for the RSS-image - when it has to store a new html snippet in the cache immediately - after an edit/save cycle. - - - - - - - - - !!!Examples This extension of WikiPlugin replaces my old WikiPluginImageCache and allows to cache the following kinds of output: -* html -** example: [RecentChangesCached - source|http://amor.rz.hu-berlin.de/~h0444nmx/wiki/RecentChangesCached_php] (RecentChanges with a 15 minutes caching interval) * images ** example: [TexToPng - source|http://amor.rz.hu-berlin.de/~h0444nmx/wiki/TexToPng_php] (TeX to image converter) ** and [CacheTest - source|http://amor.rz.hu-berlin.de/~h0444nmx/wiki/CacheTest_php] (simple example) @@ -115,7 +101,6 @@ ** !TexToPng.php ''into'' lib/plugin/!TexToPng.php ** !CacheTest.php ''into'' lib/plugin/!CacheText.php ** !VisualWiki.php ''into'' lib/plugin/!VisualWiki.php -** !RecentChangesCached.php ''into'' lib/plugin/!RecentChangesCached.php ** Cache.php ''into'' lib/pear/Cache.php ** Error.php ''into'' lib/pear/Cache/Error.php ** Container.php ''into'' lib/pear/Cache/Container.php @@ -135,7 +120,6 @@ !!!To Do * complete doc -* There is a bug in RecentChangesCached which scrambles the rss link during the first run. * VisualWiki and TexToPng use png image type for communication with the image creating scripts (dot and pstoimg), so they rely on CreateImageFromPNG(...) which is not necessary. --JohannesGroße Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/lib/IniConfig.php 2022-01-20 11:19:14 UTC (rev 10912) @@ -545,7 +545,6 @@ $AllAllowedPlugins[] = 'PrevNext'; $AllAllowedPlugins[] = 'Processing'; $AllAllowedPlugins[] = 'RawHtml'; - $AllAllowedPlugins[] = 'RecentChangesCached'; $AllAllowedPlugins[] = 'RecentReferrers'; $AllAllowedPlugins[] = 'RedirectTo'; $AllAllowedPlugins[] = 'RichTable'; Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/lib/WikiDB.php 2022-01-20 11:19:14 UTC (rev 10912) @@ -1081,7 +1081,7 @@ ) { require_once 'lib/WikiPlugin.php'; $w = new WikiPluginLoader(); - $p = $w->getPlugin("RecentChangesCached"); + $p = $w->getPlugin("RecentChanges"); $p->box_update(false, $request, $this->_pagename); } return $newrevision; Modified: trunk/lib/WikiPluginCached.php =================================================================== --- trunk/lib/WikiPluginCached.php 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/lib/WikiPluginCached.php 2022-01-20 11:19:14 UTC (rev 10912) @@ -49,7 +49,6 @@ * Have a look at the example files * <ul><li>plugin/TexToPng.php</li> * <li>plugin/CacheTest.php (extremely simple example)</li> - * <li>plugin/RecentChangesCached.php</li> * <li>plugin/VisualWiki.php</li> * <li>plugin/Ploticus.php</li> * </ul> Deleted: trunk/lib/plugin/RecentChangesCached.php =================================================================== --- trunk/lib/plugin/RecentChangesCached.php 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/lib/plugin/RecentChangesCached.php 2022-01-20 11:19:14 UTC (rev 10912) @@ -1,168 +0,0 @@ -<?php -/** - * Copyright © 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam - * Copyright © 2002 Johannes Große | - * - * This file is part of PhpWiki. - * - * PhpWiki is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * PhpWiki is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with PhpWiki; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - * - * SPDX-License-Identifier: GPL-2.0-or-later - * - */ - -/* There is a bug in it: - * When the cache is empty and you safe the wikipages, - * an immediately created cached output of - * RecentChanges will at the rss-image-link include - * an action=edit - */ - -require_once 'lib/WikiPluginCached.php'; -require_once 'lib/plugin/RecentChanges.php'; - -class WikiPlugin_RecentChangesCached - extends WikiPluginCached -{ - public $_args; - public $_type; - public $_static; - public $_dbi; - - function getPluginType() - { - return PLUGIN_CACHED_HTML; - } - - function getDescription() - { - return _('Cache output of RecentChanges called with default arguments.'); - } - - function getDefaultArguments() - { - $rc = new WikiPlugin_RecentChanges(); - return $rc->getDefaultArguments(); - } - - function getExpire($dbi, $argarray, $request) - { - return '+900'; // 15 minutes - } - - /** - * We don't go through pi parsing, instead we go directly to the - * better plugin methods. - * - * @param WikiDB $dbi - * @param string $argarray - * @param WikiRequest $request - * @param string $basepage - * @return mixed - */ - protected function getHtml($dbi, $argarray, $request, $basepage) - { - $plugin = new WikiPlugin_RecentChanges(); - $changes = $plugin->getChanges($dbi, $argarray); - return $plugin->format($changes, $argarray); - /* - $loader = new WikiPluginLoader(); - return $loader->expandPI('<?plugin RecentChanges ' - . WikiPluginCached::glueArgs($argarray) - . ' ?>', $request, $this, $basepage); - */ - } - - protected function getImage($dbi, $argarray, $request) - { - trigger_error('pure virtual', E_USER_ERROR); - } - - protected function getMap($dbi, $argarray, $request) - { - trigger_error('pure virtual', E_USER_ERROR); - } - - /** - * ->box is used to display a fixed-width, narrow version with common header. - * Just a limited list of pagenames, without date. - * This does not use ->run, to avoid pi construction and deconstruction - * - * @param string $args - * @param WikiRequest $request - * @param string $basepage - * @param bool $do_save - * @return $this|HtmlElement|XmlContent - */ - function box($args = '', $request = null, $basepage = '', $do_save = false) - { - if (!$request) $request =& $GLOBALS['request']; - if (!isset($args['limit'])) $args['limit'] = 12; - $args['format'] = 'box'; - $args['show_minor'] = false; - $args['show_major'] = true; - $args['show_deleted'] = 'sometimes'; - $args['show_all'] = false; - $args['days'] = 90; - - $cache = $this->newCache(); - if (is_array($args)) - ksort($args); - $argscopy = $args; - unset($argscopy['limit']); - $this->_args =& $args; - $this->_type = $this->getPluginType(); - $this->_static = false; - - /* OLD: */ - //list($id, $url) = $this->genUrl($cache, $args); - - /* NEW: This cache entry needs an update on major changes. - * So we should rather use an unique ID, because there will only be - * one global cached box. - */ - $id = $cache->generateId(serialize(array("RecentChangesCachedBox", $argscopy))); - $content = $cache->get($id, 'imagecache'); - if ($do_save || !$content || !$content['html']) { - $this->resetError(); - $plugin = new WikiPlugin_RecentChanges(); - $title = WikiLink($this->getName(), '', SplitPagename($this->getName())); - $changes = $plugin->getChanges($request->_dbi, $args); - $content['html'] = - $this->makeBox($title, - $plugin->format($changes, $args)); - if ($errortext = $this->getError()) { - $this->printError($errortext, 'html'); - return HTML(); - } - $do_save = true; - } - if ($do_save) { - $content['args'] = md5($this->_pi); - $expire = $this->getExpire($request->_dbi, $content['args'], $request); - $cache->save($id, $content, $expire, 'imagecache'); - } - if ($content['html']) - return $content['html']; - return HTML(); - } - - // force box cache update on major changes. - function box_update($args = '', $request = null, $basepage = '') - { - $this->box($args, $request, $basepage, true); - } - -} Modified: trunk/lib/plugin/WikiTranslation.php =================================================================== --- trunk/lib/plugin/WikiTranslation.php 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/lib/plugin/WikiTranslation.php 2022-01-20 11:19:14 UTC (rev 10912) @@ -162,7 +162,6 @@ _("RawHtml") . ',' . _("RawHtmlPlugin") . ',' . _("RecentChanges") . ',' . - _("RecentChangesCached") . ',' . _("RecentComments") . ',' . _("RecentEdits") . ',' . _("RecentReferrers") . ',' . Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/Makefile 2022-01-20 11:19:14 UTC (rev 10912) @@ -231,7 +231,6 @@ ${POT_FILE}: .././lib/plugin/RandomPage.php ${POT_FILE}: .././lib/plugin/RateIt.php ${POT_FILE}: .././lib/plugin/RawHtml.php -${POT_FILE}: .././lib/plugin/RecentChangesCached.php ${POT_FILE}: .././lib/plugin/RecentChanges.php ${POT_FILE}: .././lib/plugin/RecentComments.php ${POT_FILE}: .././lib/plugin/RecentEdits.php Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-20 11:19:14 UTC (rev 10912) @@ -1,4 +1,4 @@ -Date: Tue, 18 Jan 2022 16:58:09 +0000 +Date: Thu, 20 Jan 2022 12:14:25 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -37,6 +37,7 @@ * UpLoad plugin: allow more filenames (e.g. with Chinese characters) * ~PreferencesInfo plugin removed * ~CategoryPage plugin removed, categories are better created with the button in the toolbar +* ~RecentChangesCached plugin removed, ~RecentChanges plugin is fast enough == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/de.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -2494,9 +2494,6 @@ msgid "%s is only allowed in locked pages." msgstr "%s wird/werden nur in gesperrten Seiten erlaubt." -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "BenutzerBewertungen" @@ -4261,9 +4258,6 @@ msgid "RawHtmlPlugin" msgstr "RawHtmlPlugin" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/es.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2430,9 +2430,6 @@ msgid "%s is only allowed in locked pages." msgstr "" -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4164,9 +4161,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/fr.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -2472,9 +2472,6 @@ msgid "%s is only allowed in locked pages." msgstr "%s n'est autorisé que dans les pages verrouillées." -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4250,9 +4247,6 @@ msgid "RawHtmlPlugin" msgstr "GreffonHtmlPur" -msgid "RecentChangesCached" -msgstr "DernièresModifsEnCache" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/it.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -2411,9 +2411,6 @@ msgid "%s is only allowed in locked pages." msgstr "" -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4141,9 +4138,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/ja.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2397,9 +2397,6 @@ msgid "%s is only allowed in locked pages." msgstr "" -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4127,9 +4124,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/nl.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -2403,9 +2403,6 @@ msgid "%s is only allowed in locked pages." msgstr "" -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4133,9 +4130,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/phpwiki.pot 2022-01-20 11:19:14 UTC (rev 10912) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -2397,9 +2397,6 @@ msgid "%s is only allowed in locked pages." msgstr "" -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4127,9 +4124,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/sv.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2398,9 +2398,6 @@ msgid "%s is only allowed in locked pages." msgstr "" -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4128,9 +4125,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/locale/po/zh.po 2022-01-20 11:19:14 UTC (rev 10912) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-20 11:03+0100\n" +"POT-Creation-Date: 2022-01-20 12:14+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2406,9 +2406,6 @@ msgid "%s is only allowed in locked pages." msgstr "%s 只允許在鎖定的頁面中." -msgid "Cache output of RecentChanges called with default arguments." -msgstr "" - msgid "UserContribs" msgstr "" @@ -4138,9 +4135,6 @@ msgid "RawHtmlPlugin" msgstr "" -msgid "RecentChangesCached" -msgstr "" - msgid "RecentReferrers" msgstr "" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Deleted: trunk/pgsrc/Help%2FRecentChangesCachedPlugin =================================================================== --- trunk/pgsrc/Help%2FRecentChangesCachedPlugin 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/pgsrc/Help%2FRecentChangesCachedPlugin 2022-01-20 11:19:14 UTC (rev 10912) @@ -1,36 +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%2FRecentChangesCachedPlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Cache output of RecentChanges called with default arguments. - -== Usage == -{{{ -<<RecentChangesCached>> -}}} - -== Arguments == - -Same as [[Help:RecentChangesPlugin]] - -== Example == - -{{{ -<<RecentChangesCached limit=10>> -}}} - -<<RecentChangesCached limit=10>> - -== Author == -* [[Help:Reini Urban|Reini Urban]] - -== See Also == - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -</noinclude> Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/pgsrc/ReleaseNotes 2022-01-20 11:19:14 UTC (rev 10912) @@ -1,4 +1,4 @@ -Date: Tue, 18 Jan 2022 16:58:09 +0000 +Date: Thu, 20 Jan 2022 12:14:25 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -37,6 +37,7 @@ * UpLoad plugin: allow more filenames (e.g. with Chinese characters) * ~PreferencesInfo plugin removed * ~CategoryPage plugin removed, categories are better created with the button in the toolbar +* ~RecentChangesCached plugin removed, ~RecentChanges plugin is fast enough == 1.6.0 2021-08-12 Marc-Etienne Vargenau == Modified: trunk/themes/Sidebar/templates/rc.tmpl =================================================================== --- trunk/themes/Sidebar/templates/rc.tmpl 2022-01-20 10:05:03 UTC (rev 10911) +++ trunk/themes/Sidebar/templates/rc.tmpl 2022-01-20 11:19:14 UTC (rev 10912) @@ -1,4 +1,4 @@ -<?php // RecentChangesCached Box ?> +<?php // RecentChanges Box ?> <nav role="navigation" aria-label="<?php echo _("Recent Changes Menu") ?>"> <div class="portlet" id="p-rc"> <h2><?php echo _("Recent Changes") ?> <?php echo $WikiTheme->folderArrow('p-rc', 'Closed') ?></h2> @@ -5,7 +5,7 @@ <div class="pBody" id="p-rc-body" style="display:none;"> <?php require_once("lib/WikiTheme.php"); - $box = new PluginSidebarBox("RecentChangesCached", array("limit"=>12)); + $box = new PluginSidebarBox("RecentChanges", array("limit"=>12)); printXml($box->format()); ?> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-20 15:27:16
|
Revision: 10918 http://sourceforge.net/p/phpwiki/code/10918 Author: vargenau Date: 2022-01-20 15:27:13 +0000 (Thu, 20 Jan 2022) Log Message: ----------- Remove _DEBUG_APD Modified Paths: -------------- trunk/lib/config.php trunk/lib/main.php trunk/lib/prepend.php trunk/tests/unit/test.php Modified: trunk/lib/config.php =================================================================== --- trunk/lib/config.php 2022-01-20 15:22:30 UTC (rev 10917) +++ trunk/lib/config.php 2022-01-20 15:27:13 UTC (rev 10918) @@ -43,7 +43,6 @@ define ('_DEBUG_PARSER', 4); // verbose parsing steps define ('_DEBUG_TRACE', 8); // test php memory usage, prints php debug backtraces define ('_DEBUG_INFO', 16); -define ('_DEBUG_APD', 32); // APD tracing/profiling define ('_DEBUG_LOGIN', 64); // verbose login debug-msg (settings and reason for failure) define ('_DEBUG_SQL', 128); // force check db, force optimize, print some debugging logs define ('_DEBUG_REMOTE', 256); // remote debug into subrequests (xmlrpc, ajax, wikiwyg, ...) Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2022-01-20 15:22:30 UTC (rev 10917) +++ trunk/lib/main.php 2022-01-20 15:27:13 UTC (rev 10918) @@ -1387,13 +1387,9 @@ validateSessionPath(); global $request; - if ((DEBUG & _DEBUG_APD) and extension_loaded("apd")) { - //apd_set_session_trace(9); - apd_set_pprof_trace(); - } + global $ErrorManager; // Postpone warnings - global $ErrorManager; if (defined('E_STRICT')) // and (E_ALL & E_STRICT)) // strict php5? $ErrorManager->setPostponedErrorMask(E_NOTICE | E_USER_NOTICE | E_USER_WARNING | E_WARNING | E_STRICT | E_DEPRECATED); else Modified: trunk/lib/prepend.php =================================================================== --- trunk/lib/prepend.php 2022-01-20 15:22:30 UTC (rev 10917) +++ trunk/lib/prepend.php 2022-01-20 15:27:13 UTC (rev 10918) @@ -58,9 +58,6 @@ xdebug_start_trace("trace"); // on Dbgp protocol add 2 xdebug_enable(); } -if (defined('DEBUG') and (DEBUG & 32) and extension_loaded("apd")) { - apd_set_pprof_trace(); -} // Used for debugging purposes class DebugTimer Modified: trunk/tests/unit/test.php =================================================================== --- trunk/tests/unit/test.php 2022-01-20 15:22:30 UTC (rev 10917) +++ trunk/tests/unit/test.php 2022-01-20 15:27:13 UTC (rev 10918) @@ -305,7 +305,6 @@ 'PARSER' => 4, 'TRACE' => 8, 'INFO' => 16, - 'APD' => 32, 'LOGIN' => 64, 'SQL' => 128, 'REMOTE' => 256, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-23 11:11:03
|
Revision: 10928 http://sourceforge.net/p/phpwiki/code/10928 Author: vargenau Date: 2022-01-23 11:11:01 +0000 (Sun, 23 Jan 2022) Log Message: ----------- pgsrc/Help%2FAddingPages (and translations): add help for removing and purging pages Modified Paths: -------------- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor trunk/locale/zh/pgsrc/Help%2FAddingPages trunk/pgsrc/Help%2FAddingPages Modified: trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Sat, 26 Dec 2020 12:40:06 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSeitenErzeugen; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Seiten erzeugen == + Um dem Wiki eine neue Seite hinzuzufügen mußt du dir nur einen sinnvollen Titel und zwischen {{{[[doppelte Klammern]]}}} setzen. @@ -32,9 +34,24 @@ <tags>werden einfach wie normaler Text angezeigt.</tags> Wiki soll so einfach wie möglich sein, damit es jeder benutzen kann. -Es gibt eine Funktion, durch die der Systemverwalter HTML in Dokumenten erlauben +Es gibt eine Funktion, durch die der Systemverwalter [[Hilfe:RawHtmlPlugin|HTML in Dokumenten]] erlauben kann, das führt aber zu Sicherheitsrisiken. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[NeuesteÄnderungen]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[NeuesteÄnderungen]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDokumentation]] Modified: trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas =================================================================== --- trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Fri, 22 Dec 2020 10:36:59 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Ayuda%2FAgregarPaginas; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Agregar paginas == + Para añadir una nueva página a Wiki, todo lo que tiene que hacer es empezar con un titulo significativo y colóquelo entre {{{[[corchetes dobles]]}}}. @@ -33,8 +35,23 @@ ser lo mas simple posible y así promover su uso. Tenga en cuenta que existe la posibilidad de que el administrador del sistema -pueda activar código HTML embebido, pero esto tiene riesgos de seguridad. +pueda activar [[Ayuda:RawHtmlPlugin|código HTML]] embebido, pero esto tiene riesgos de seguridad. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[CambiosRecientes]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[CambiosRecientes]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDocumentation]] Modified: trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Tue, 30 Nov 2021 13:29:00 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Aide%2FAjouterDesPages; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Ajouter des pages == + Pour ajouter une nouvelle page au wiki, vous n'avez qu'à trouver un titre parlant et le mettre entre {{{[[double crochets]]}}}. @@ -33,8 +35,23 @@ simple que possible pour encourager son utilisation. Notez qu'il existe une fonctionnalité que votre administrateur système peut valider -pour autoriser le HTML incorporé, mais cela implique des risques de sécurité. +pour autoriser le [[Aide:GreffonHtmlPur|HTML incorporé]], mais cela implique des risques de sécurité. +== Supprimer des pages == + +Supprimer une page effacera toutes ses versions. +L'historique de la page sera toujours visible et la suppression apparaîtera dans les [[DernièresModifs]]. +Il sera possible de de restaurer la page en créant une nouvelle version ; dans ce cas, toutes les versions précédentes seront restaurées. + +Vous devez être identifié comme administrateur pour pouvoir supprimer une page. + +== Purger des pages == + +Purger une page la supprimera ainsi que toutes ses versions sans aucune possibilté de restauration. +La suppression n'apparaîtera pas dans les [[DernièresModifs]]. + +Vous devez être identifié comme administrateur pour pouvoir purger une page. + <noinclude> ---- [[DocumentationDePhpWiki]] Modified: trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine =================================================================== --- trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Thu, 16 Dec 2020 12:01:56 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Aiuto%2FAggiungerePagine; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Aggiungere pagine == + Per aggiungere una nuova pagina al wiki, tutto ciò che devi fare è trovare un titolo significativo e inserirlo tra {{{[[parentesi quadre doppie]]}}}. @@ -32,9 +34,24 @@ <tags>Mostrerannno solo testo</tags> Wiki si pone come obiettivo quello di essere il più semplice possibile. -C'è in effetti la possibilità di utilizzare l'HTML ma è necessario +C'è in effetti la possibilità di [[Aiuto:RawHtmlPlugin|utilizzare l'HTML]] ma è necessario accordarsi con l'amministratore di sistema del Wiki. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[CambiamentiRecenti]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[CambiamentiRecenti]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDocumentation]] Modified: trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen =================================================================== --- trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Thu, 24 Dec 2020 17:40:03 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPaginasToevoegen; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Paginas toevoegen == + Voor het toevoegen van een nieuwe pagina aan Wiki, hoef je alleen maar een zinvolle titel de bedenken en deze tussen {{{[[dubbele haakjes]]}}} te plaatsen. @@ -33,8 +35,23 @@ mogelijk zijn, om gebruik aan te moedigen. Merk op dat er een kunstje is dat je systeembeheerder aan kan zetten om -ingebedde HTML toe te staan, maar hier zijn beveiligingsrisiko's mee gemoeid. +[[Help:RawHtmlPlugin|ingebedde HTML]] toe te staan, maar hier zijn beveiligingsrisiko's mee gemoeid. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[RecenteVeranderingen]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[RecenteVeranderingen]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDocumentatie]] Modified: trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor =================================================================== --- trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Tue, 19 Dec 2020 17:57:35 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Hj%C3%A4lp%2FL%C3%A4ggaTillSidor; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Lägga till sidor == + Allt du behöver göra för att skapa en sida i Wiki är att komma på en meningsfull titel, kan du sätt vad som helst innanför {{{[[dubbla hakparenteser]]}}. @@ -28,13 +30,28 @@ }}} [[http://phpwiki.sourceforge.net/|Projekthemsidan för PhpWiki]] -Wiki stöder inte HTML-taggar (se [[Help:Textformateringsregler|Textformateringsregler]]). <taggar>De +Wiki stöder inte HTML-taggar (se [[Hjälp:Textformateringsregler|Textformateringsregler]]). <taggar>De kommer att rendreras som text.</taggar> Wiki är menat att vara så enkelt som möjligt för att uppmuntra dess användning. Observera att det är möjligt för systemadministratören att tillåta -inbäddad HTML, men det innebär säkerhetsrisker. +[[Hjälp:RawHtmlPlugin|inbäddad HTML]], men det innebär säkerhetsrisker. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[SenasteÄndringar]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[SenasteÄndringar]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDocumentation]] Modified: trunk/locale/zh/pgsrc/Help%2FAddingPages =================================================================== --- trunk/locale/zh/pgsrc/Help%2FAddingPages 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/locale/zh/pgsrc/Help%2FAddingPages 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Thu, 24 Dec 2020 18:13:17 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FAddingPages; @@ -6,8 +6,10 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Adding pages == + 要加入一個新的頁面到 wiki, 你所要做的,就是使用一個有意義的標題, 除此之外,你也可以把任何單字放到中括號中, -像這樣 {{{[[square brackets]]}}}. +像這樣 {{{[[double brackets]]}}}. 然後你可以點選新超連結後的問號繼續 ClickTheQuestionMark, 而 Wiki 將會給你一個製作新頁面的視窗. @@ -30,8 +32,23 @@ Wiki 不支援 HTML 標籤 (參閱 [[Help:TextFormattingRules|TextFormattingRules]]). <tags>標籤就只會顯示為標籤.</tags> 為鼓勵使用, Wiki 盡可能地保持簡單. -你的管理者可以打開允許嵌入 HTML 的功能, 但這樣可能就會牽涉到安全性議題. +你的管理者可以打開允許[[Help:RawHtmlPlugin|嵌入 HTML]] 的功能, 但這樣可能就會牽涉到安全性議題. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[RecentChanges]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[RecentChanges]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDocumentation]] Modified: trunk/pgsrc/Help%2FAddingPages =================================================================== --- trunk/pgsrc/Help%2FAddingPages 2022-01-23 10:56:37 UTC (rev 10927) +++ trunk/pgsrc/Help%2FAddingPages 2022-01-23 11:11:01 UTC (rev 10928) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:28 +0000 +Date: Sun, 23 Jan 2022 12:04:43 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FAddingPages; @@ -6,6 +6,8 @@ charset=UTF-8 Content-Transfer-Encoding: binary +== Adding pages == + To add a new page to the wiki, all you have to do is come up with a meaningful title and put it between {{{[[double brackets]]}}}. @@ -33,8 +35,23 @@ simple as possible to encourage use. Note that there is a feature that your system administrator can enable -to allow embedded HTML, but there are security risks involved. +to allow [[Help:RawHtmlPlugin|embedded HTML]], but there are security risks involved. +== Removing pages == + +Removing a page will clear all it versions. +The history of the page will still be visible and the removal will appear in the [[RecentChanges]]. +It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. + +You must be logged as administrator to be able to remove a page. + +== Purging pages == + +Purging a page will delete it with all its versions without any possibility to restore it. +Purging will not appear in the [[RecentChanges]]. + +You must be logged as administrator to be able to purge a page. + <noinclude> ---- [[PhpWikiDocumentation]] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-23 11:44:15
|
Revision: 10929 http://sourceforge.net/p/phpwiki/code/10929 Author: vargenau Date: 2022-01-23 11:44:12 +0000 (Sun, 23 Jan 2022) Log Message: ----------- pgsrc/Help%2FAddingPages (and translations): add link to PhpWikiAdministration/Remove and PhpWikiAdministration/Purge Modified Paths: -------------- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor trunk/locale/zh/pgsrc/Help%2FAddingPages trunk/pgsrc/Help%2FAddingPages Modified: trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSeitenErzeugen; @@ -39,7 +39,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[PhpWikiSystemverwalten/Löschen|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[NeuesteÄnderungen]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -47,7 +47,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiSystemverwalten/Entfernen|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[NeuesteÄnderungen]]. You must be logged as administrator to be able to purge a page. Modified: trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas =================================================================== --- trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Ayuda%2FAgregarPaginas; @@ -39,7 +39,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[PhpWikiAdministration/Remove|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[CambiosRecientes]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -47,7 +47,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiAdministration/Purge|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[CambiosRecientes]]. You must be logged as administrator to be able to purge a page. Modified: trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Aide%2FAjouterDesPages; @@ -39,7 +39,7 @@ == Supprimer des pages == -Supprimer une page effacera toutes ses versions. +[[AdministrationDePhpWiki/Supprimer|Supprimer une page]] effacera toutes ses versions. L'historique de la page sera toujours visible et la suppression apparaîtera dans les [[DernièresModifs]]. Il sera possible de de restaurer la page en créant une nouvelle version ; dans ce cas, toutes les versions précédentes seront restaurées. @@ -47,7 +47,7 @@ == Purger des pages == -Purger une page la supprimera ainsi que toutes ses versions sans aucune possibilté de restauration. +[[AdministrationDePhpWiki/Purger|Purger une page]] la supprimera ainsi que toutes ses versions sans aucune possibilté de restauration. La suppression n'apparaîtera pas dans les [[DernièresModifs]]. Vous devez être identifié comme administrateur pour pouvoir purger une page. Modified: trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine =================================================================== --- trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Aiuto%2FAggiungerePagine; @@ -39,7 +39,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[AmministrazioneDiPhpWiki/Rimuovi|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[CambiamentiRecenti]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -47,7 +47,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiAdministration/Purge|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[CambiamentiRecenti]]. You must be logged as administrator to be able to purge a page. Modified: trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen =================================================================== --- trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FPaginasToevoegen; @@ -39,7 +39,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[PhpWikiBeheer/Verwijder|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[RecenteVeranderingen]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -47,7 +47,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiAdministration/Purge|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[RecenteVeranderingen]]. You must be logged as administrator to be able to purge a page. Modified: trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor =================================================================== --- trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Hj%C3%A4lp%2FL%C3%A4ggaTillSidor; @@ -39,7 +39,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[PhpWikiAdministration/Remove|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[SenasteÄndringar]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -47,7 +47,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiAdministration/Purge|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[SenasteÄndringar]]. You must be logged as administrator to be able to purge a page. Modified: trunk/locale/zh/pgsrc/Help%2FAddingPages =================================================================== --- trunk/locale/zh/pgsrc/Help%2FAddingPages 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/locale/zh/pgsrc/Help%2FAddingPages 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FAddingPages; @@ -36,7 +36,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[PhpWikiAdministration/Remove|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[RecentChanges]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -44,7 +44,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiAdministration/Purge|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[RecentChanges]]. You must be logged as administrator to be able to purge a page. Modified: trunk/pgsrc/Help%2FAddingPages =================================================================== --- trunk/pgsrc/Help%2FAddingPages 2022-01-23 11:11:01 UTC (rev 10928) +++ trunk/pgsrc/Help%2FAddingPages 2022-01-23 11:44:12 UTC (rev 10929) @@ -1,4 +1,4 @@ -Date: Sun, 23 Jan 2022 12:04:43 +0000 +Date: Sun, 23 Jan 2022 12:36:11 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=Help%2FAddingPages; @@ -39,7 +39,7 @@ == Removing pages == -Removing a page will clear all it versions. +[[PhpWikiAdministration/Remove|Removing a page]] will clear all it versions. The history of the page will still be visible and the removal will appear in the [[RecentChanges]]. It will be possible to restore the page by creating a new version; in that case, all previous versions will be restored. @@ -47,7 +47,7 @@ == Purging pages == -Purging a page will delete it with all its versions without any possibility to restore it. +[[PhpWikiAdministration/Purge|Purging a page]] will delete it with all its versions without any possibility to restore it. Purging will not appear in the [[RecentChanges]]. You must be logged as administrator to be able to purge a page. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-23 17:29:42
|
Revision: 10931 http://sourceforge.net/p/phpwiki/code/10931 Author: vargenau Date: 2022-01-23 17:29:40 +0000 (Sun, 23 Jan 2022) Log Message: ----------- Add button to create the page if it does not exist. Modified Paths: -------------- trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes trunk/themes/Crao/templates/body.tmpl trunk/themes/MonoBook/templates/body.tmpl trunk/themes/Portland/templates/body.tmpl trunk/themes/Sidebar/templates/body.tmpl trunk/themes/Wordpress/templates/body.tmpl trunk/themes/blog/templates/body.tmpl trunk/themes/default/templates/body.tmpl trunk/themes/wikilens/templates/body.tmpl Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2022-01-23 17:29:40 UTC (rev 10931) @@ -1,4 +1,4 @@ -Date: Thu, 20 Jan 2022 12:14:25 +0000 +Date: Sun, 23 Jan 2022 18:28:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -22,6 +22,7 @@ === Changes === * Warn user that leaving the page will lose modifications. +* Add button to create the page if it does not exist. * TOOLBAR_IMAGE_PULLDOWN is true by default. * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/pgsrc/ReleaseNotes 2022-01-23 17:29:40 UTC (rev 10931) @@ -1,4 +1,4 @@ -Date: Thu, 20 Jan 2022 12:14:25 +0000 +Date: Sun, 23 Jan 2022 18:28:59 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -22,6 +22,7 @@ === Changes === * Warn user that leaving the page will lose modifications. +* Add button to create the page if it does not exist. * TOOLBAR_IMAGE_PULLDOWN is true by default. * Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. * Add “Rename” tab in Sidebar theme. Modified: trunk/themes/Crao/templates/body.tmpl =================================================================== --- trunk/themes/Crao/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/Crao/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -14,25 +14,32 @@ <main role="main"> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <?php echo $CONTENT ?> </main> <?php echo Template('bottom') ?> Modified: trunk/themes/MonoBook/templates/body.tmpl =================================================================== --- trunk/themes/MonoBook/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/MonoBook/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -8,25 +8,32 @@ <main role="main"> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <div id="bodyContent"> <?php echo $CONTENT ?> <div class="clear-floats"></div> Modified: trunk/themes/Portland/templates/body.tmpl =================================================================== --- trunk/themes/Portland/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/Portland/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -9,25 +9,32 @@ <main role="main"> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <?php echo $CONTENT ?> </main> <?php echo Template('navbar') ?> Modified: trunk/themes/Sidebar/templates/body.tmpl =================================================================== --- trunk/themes/Sidebar/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/Sidebar/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -6,25 +6,32 @@ <?php echo Template('top') ?> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <div id="bodyContent"> <?php echo $CONTENT ?> <div class="clear-floats"></div> Modified: trunk/themes/Wordpress/templates/body.tmpl =================================================================== --- trunk/themes/Wordpress/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/Wordpress/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -5,25 +5,32 @@ <main role="main"> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <?php echo $CONTENT ?> </main> <?php echo $GLOBALS['ErrorManager']->getPostponedErrorsAsHTML() ?> Modified: trunk/themes/blog/templates/body.tmpl =================================================================== --- trunk/themes/blog/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/blog/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -6,25 +6,32 @@ <main role="main"> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <div id="bodyContent"> <?php echo $CONTENT ?> </div> Modified: trunk/themes/default/templates/body.tmpl =================================================================== --- trunk/themes/default/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/default/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -7,25 +7,32 @@ <main role="main"> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <div id="content"> <?php echo $CONTENT ?> </div> Modified: trunk/themes/wikilens/templates/body.tmpl =================================================================== --- trunk/themes/wikilens/templates/body.tmpl 2022-01-23 12:10:34 UTC (rev 10930) +++ trunk/themes/wikilens/templates/body.tmpl 2022-01-23 17:29:40 UTC (rev 10931) @@ -30,25 +30,32 @@ } ?> </h1> <?php $action = $request->getArg('action'); - if (empty($revision)) { - $revision = $page->getCurrentRevision(false); - } - if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("This page has been locked and cannot be edited.") ?> - </p> - <?php - } - if (($action != 'edit') && ($action != 'revert') - && $revision and !$revision->isCurrent()) { ?> - <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> - <?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('browse', _("View the current version."), $page)?> - </p> + if ($page->exists()) { + if (empty($revision)) { + $revision = $page->getCurrentRevision(false); + } + if (($action == 'edit') && $page->get('locked') && !$user->isAdmin()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("This page has been locked and cannot be edited.") ?> + </p> + <?php + } + if (($action != 'edit') && ($action != 'revert') + && $revision and !$revision->isCurrent()) { ?> + <p class="warning_msg"><strong><?php echo _("Note:") ?></strong> + <?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('browse', _("View the current version."), $page)?> + </p> + <?php } ?> + <?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> + <?php } ?> + <?php } elseif (($action != "create") && ($action != "edit")) { ?> + <p class="warning_msg"> + <?php echo _("This page does not exist.") ?> + <?php echo Button('create', _("Create it."), $page)?> + </p> <?php } ?> - <?php if (!empty($redirected)) { ?> - <p><?php echo $redirected ?></p> - <?php } ?> <?php echo $CONTENT ?> </main> <?php echo Template('bottom') ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-24 16:45:04
|
Revision: 10934 http://sourceforge.net/p/phpwiki/code/10934 Author: vargenau Date: 2022-01-24 16:45:01 +0000 (Mon, 24 Jan 2022) Log Message: ----------- old revision --> old version Modified Paths: -------------- trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo trunk/themes/Crao/templates/editpage.tmpl trunk/themes/Portland/templates/editpage.tmpl trunk/themes/Wordpress/templates/editpage.tmpl trunk/themes/default/templates/editpage.tmpl trunk/themes/fusionforge/templates/editpage.tmpl Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/de.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -5160,7 +5160,7 @@ "page.)" msgstr "" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "Sie bearbeiten eine alte Version." msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/es.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -5057,7 +5057,7 @@ "page.)" msgstr "" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/fr.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -5148,7 +5148,7 @@ "Veuillez continuer vos modifications. (Vous trouverez votre zone de " "modification en bas de page)." -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "vous modifiez une ancienne version." msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/it.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -5017,7 +5017,7 @@ "page.)" msgstr "" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/ja.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5003,7 +5003,7 @@ "page.)" msgstr "編集を続けて下さい。 (編集エリアのページの下部も見てください)" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "あなたは古いリビジョンを編集しています。" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/nl.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -5009,7 +5009,7 @@ "page.)" msgstr "" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/phpwiki.pot 2022-01-24 16:45:01 UTC (rev 10934) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -5003,7 +5003,7 @@ "page.)" msgstr "" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/sv.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -5004,7 +5004,7 @@ "page.)" msgstr "" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "" msgid "Saving this page will overwrite the current version." Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/locale/po/zh.po 2022-01-24 16:45:01 UTC (rev 10934) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-01-24 16:52+0100\n" +"POT-Creation-Date: 2022-01-24 17:43+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -5025,7 +5025,7 @@ "page.)" msgstr "請繼續編輯. (你將在頁面的底部找到你的編輯區域.)" -msgid "You are editing an old revision." +msgid "You are editing an old version." msgstr "你正在編輯較舊的修訂." msgid "Saving this page will overwrite the current version." Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/themes/Crao/templates/editpage.tmpl 2022-01-24 16:45:01 UTC (rev 10934) @@ -12,7 +12,7 @@ <?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> <p class="warning_msg"> <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old revision.") ?> + <?php echo _("You are editing an old version.") ?> <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/themes/Portland/templates/editpage.tmpl 2022-01-24 16:45:01 UTC (rev 10934) @@ -9,7 +9,7 @@ <?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> <p class="warning_msg"> <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old revision.") ?> + <?php echo _("You are editing an old version.") ?> <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> Modified: trunk/themes/Wordpress/templates/editpage.tmpl =================================================================== --- trunk/themes/Wordpress/templates/editpage.tmpl 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/themes/Wordpress/templates/editpage.tmpl 2022-01-24 16:45:01 UTC (rev 10934) @@ -11,7 +11,7 @@ <?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> <p class="warning_msg"> <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old revision.") ?> + <?php echo _("You are editing an old version.") ?> <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> Modified: trunk/themes/default/templates/editpage.tmpl =================================================================== --- trunk/themes/default/templates/editpage.tmpl 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/themes/default/templates/editpage.tmpl 2022-01-24 16:45:01 UTC (rev 10934) @@ -12,7 +12,7 @@ <?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> <p class="warning_msg"> <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old revision.") ?> + <?php echo _("You are editing an old version.") ?> <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> Modified: trunk/themes/fusionforge/templates/editpage.tmpl =================================================================== --- trunk/themes/fusionforge/templates/editpage.tmpl 2022-01-24 15:55:43 UTC (rev 10933) +++ trunk/themes/fusionforge/templates/editpage.tmpl 2022-01-24 16:45:01 UTC (rev 10934) @@ -10,7 +10,7 @@ <?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> <p class="warning_msg"> <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old revision.") ?> + <?php echo _("You are editing an old version.") ?> <?php echo _("Saving this page will overwrite the current version.") ?> </p> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2022-01-24 17:46:38
|
Revision: 10935 http://sourceforge.net/p/phpwiki/code/10935 Author: vargenau Date: 2022-01-24 17:46:34 +0000 (Mon, 24 Jan 2022) Log Message: ----------- Produced by PhpWiki 1.6.1 Modified Paths: -------------- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten trunk/locale/de/pgsrc/AlleBenutzer trunk/locale/de/pgsrc/AlleSeiten trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir trunk/locale/de/pgsrc/BackLinks trunk/locale/de/pgsrc/BenutzerEinstellungen trunk/locale/de/pgsrc/DebugAuthInfo trunk/locale/de/pgsrc/DebugBackendInfo trunk/locale/de/pgsrc/DebugGruppenInfo trunk/locale/de/pgsrc/EditiereText trunk/locale/de/pgsrc/Einstellungen trunk/locale/de/pgsrc/FuzzySuche trunk/locale/de/pgsrc/G%C3%A4steBuch trunk/locale/de/pgsrc/GaesteBuch trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen trunk/locale/de/pgsrc/GleicheSeiten trunk/locale/de/pgsrc/Hilfe trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin trunk/locale/de/pgsrc/Hilfe%2FGuterStil trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin trunk/locale/de/pgsrc/Hilfe%2FPhpWiki trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin trunk/locale/de/pgsrc/Hilfe%2FWabiSabi trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin trunk/locale/de/pgsrc/HochLaden trunk/locale/de/pgsrc/HomePage trunk/locale/de/pgsrc/InterWikiListe trunk/locale/de/pgsrc/KategorieAktionSeite trunk/locale/de/pgsrc/KategorieKategorie trunk/locale/de/pgsrc/KategorieWikiPlugin trunk/locale/de/pgsrc/LeereSeiten trunk/locale/de/pgsrc/LinkSuche trunk/locale/de/pgsrc/ListeRelationen trunk/locale/de/pgsrc/MeistBesucht trunk/locale/de/pgsrc/ModerierteSeite trunk/locale/de/pgsrc/NeueSeite trunk/locale/de/pgsrc/Neueste%C3%84nderungen trunk/locale/de/pgsrc/NeuesteSeiten trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen trunk/locale/de/pgsrc/PhpWikiDokumentation trunk/locale/de/pgsrc/PhpWikiSystemverwalten trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclL%C3%B6schen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FEntfernen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FUmbenennen trunk/locale/de/pgsrc/PhpWikiUmfrage trunk/locale/de/pgsrc/SandKasten trunk/locale/de/pgsrc/SandKiste trunk/locale/de/pgsrc/SeiteBeobarten trunk/locale/de/pgsrc/SeiteFinden trunk/locale/de/pgsrc/SeiteSpeichern trunk/locale/de/pgsrc/SeitenInfo trunk/locale/de/pgsrc/SeitenProtokoll trunk/locale/de/pgsrc/SemantischeRelationen trunk/locale/de/pgsrc/SemantischeSuche trunk/locale/de/pgsrc/StartSeite trunk/locale/de/pgsrc/StartSeiteAlias trunk/locale/de/pgsrc/TitelSuche trunk/locale/de/pgsrc/Verlinkte%C3%84nderungen trunk/locale/de/pgsrc/VerwaisteSeiten trunk/locale/de/pgsrc/VolltextSuche trunk/locale/de/pgsrc/Vorlage%2FBeispiel trunk/locale/de/pgsrc/WerIstOnline trunk/locale/de/pgsrc/WikiAdminAuswahl trunk/locale/de/pgsrc/WunschZettelSeiten trunk/locale/de/pgsrc/ZufallsSeite trunk/locale/es/pgsrc/Ayuda trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas trunk/locale/es/pgsrc/Ayuda%2FBuenEstilo trunk/locale/es/pgsrc/Ayuda%2FComoUsarWiki trunk/locale/es/pgsrc/Ayuda%2FEditarElTexto trunk/locale/es/pgsrc/Ayuda%2FKBrown trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica trunk/locale/es/pgsrc/Ayuda%2FPhpWiki trunk/locale/es/pgsrc/Ayuda%2FReglasDeFormatoDeTexto trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead trunk/locale/es/pgsrc/Ayuda%2FWabiSabi trunk/locale/es/pgsrc/Ayuda%2FWikiWikiWeb trunk/locale/es/pgsrc/BuscarP%C3%A1gina trunk/locale/es/pgsrc/CajaDeArena trunk/locale/es/pgsrc/CambiosRecientes trunk/locale/es/pgsrc/HomePage trunk/locale/es/pgsrc/MasPopulares trunk/locale/es/pgsrc/NotasDeLiberacion trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/TodasLasPaginas trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/fr/pgsrc/%C3%89diterLesM%C3%A9taDonn%C3%A9es trunk/locale/fr/pgsrc/%C3%89ditionsR%C3%A9centes trunk/locale/fr/pgsrc/AdministrationDePhpWiki trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FChown trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FPurger trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRechercherRemplacer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRenommer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimerAcl trunk/locale/fr/pgsrc/Aide trunk/locale/fr/pgsrc/Aide%2F%C3%89diterLeContenu trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages trunk/locale/fr/pgsrc/Aide%2FCommentUtiliserUnWiki trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques trunk/locale/fr/pgsrc/Aide%2FGreffon%C3%89diterLesM%C3%A9taDonn%C3%A9es trunk/locale/fr/pgsrc/Aide%2FGreffonAjouterDesCommentaires trunk/locale/fr/pgsrc/Aide%2FGreffonAlbumPhotos trunk/locale/fr/pgsrc/Aide%2FGreffonBeauTableau trunk/locale/fr/pgsrc/Aide%2FGreffonBonjourLeMonde trunk/locale/fr/pgsrc/Aide%2FGreffonCalendrier trunk/locale/fr/pgsrc/Aide%2FGreffonColorationPhp trunk/locale/fr/pgsrc/Aide%2FGreffonCommenter trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUneTdm trunk/locale/fr/pgsrc/Aide%2FGreffonD%C3%A9plierLesSousPages trunk/locale/fr/pgsrc/Aide%2FGreffonHistoriqueAuteur trunk/locale/fr/pgsrc/Aide%2FGreffonHtmlPur trunk/locale/fr/pgsrc/Aide%2FGreffonInclureUnePage trunk/locale/fr/pgsrc/Aide%2FGreffonInfosSyst%C3%A8me trunk/locale/fr/pgsrc/Aide%2FGreffonIns%C3%A9rer trunk/locale/fr/pgsrc/Aide%2FGreffonListeDePages trunk/locale/fr/pgsrc/Aide%2FGreffonListeDesSousPages trunk/locale/fr/pgsrc/Aide%2FGreffonListeDuCalendrier trunk/locale/fr/pgsrc/Aide%2FGreffonPageAl%C3%A9atoire trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues trunk/locale/fr/pgsrc/Aide%2FGreffonRechercheExterne trunk/locale/fr/pgsrc/Aide%2FGreffonRedirection trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss trunk/locale/fr/pgsrc/Aide%2FGreffonTableauAncienStyle trunk/locale/fr/pgsrc/Aide%2FGreffonTeX2png trunk/locale/fr/pgsrc/Aide%2FGreffonTestDeCache trunk/locale/fr/pgsrc/Aide%2FGreffonWiki trunk/locale/fr/pgsrc/Aide%2FGreffonWikiBlog trunk/locale/fr/pgsrc/Aide%2FIc%C3%B4nesDeLien trunk/locale/fr/pgsrc/Aide%2FInterWiki trunk/locale/fr/pgsrc/Aide%2FLienGoogle trunk/locale/fr/pgsrc/Aide%2FListeDePages trunk/locale/fr/pgsrc/Aide%2FPhpWiki trunk/locale/fr/pgsrc/Aide%2FR%C3%A8glesDeFormatageDesTextes trunk/locale/fr/pgsrc/Aide%2FSteve%20Wainstead trunk/locale/fr/pgsrc/Aide%2FStyleCorrect trunk/locale/fr/pgsrc/Aide%2FURLMagiquesPhpWiki trunk/locale/fr/pgsrc/Aide%2FWabiSabi trunk/locale/fr/pgsrc/Aide%2FWikiWikiWeb trunk/locale/fr/pgsrc/Aide%2FWikisUtilisantPhpWiki trunk/locale/fr/pgsrc/AliasAccueil trunk/locale/fr/pgsrc/Bac%C3%80Sable trunk/locale/fr/pgsrc/CarteInterWiki trunk/locale/fr/pgsrc/Cat%C3%A9gorieCat%C3%A9gorie trunk/locale/fr/pgsrc/Cat%C3%A9gorieGreffonWiki trunk/locale/fr/pgsrc/Cat%C3%A9gorieGroupes trunk/locale/fr/pgsrc/Cat%C3%A9goriePageDAction trunk/locale/fr/pgsrc/Cat%C3%A9goriePagesAccueil trunk/locale/fr/pgsrc/ChangementsLi%C3%A9s trunk/locale/fr/pgsrc/ChercherUnePage trunk/locale/fr/pgsrc/ClassezLa trunk/locale/fr/pgsrc/CommentairesR%C3%A9cents trunk/locale/fr/pgsrc/Cr%C3%A9erUnePage trunk/locale/fr/pgsrc/D%C3%A9bogageDePhpWiki trunk/locale/fr/pgsrc/D%C3%A9poserUnFichier trunk/locale/fr/pgsrc/Derni%C3%A8resModifs trunk/locale/fr/pgsrc/Derni%C3%A8resModifsCompl%C3%A8tes trunk/locale/fr/pgsrc/DocumentationDePhpWiki trunk/locale/fr/pgsrc/GestionnaireDesGreffons trunk/locale/fr/pgsrc/HistoriqueDeLaPage trunk/locale/fr/pgsrc/HomePage trunk/locale/fr/pgsrc/InfosAuthentification trunk/locale/fr/pgsrc/InfosDeD%C3%A9bogage trunk/locale/fr/pgsrc/InfosSurLaPage trunk/locale/fr/pgsrc/LesPlusVisit%C3%A9es trunk/locale/fr/pgsrc/ManuelPhpWiki trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki trunk/locale/fr/pgsrc/NotesDeVersion trunk/locale/fr/pgsrc/PageAccueil trunk/locale/fr/pgsrc/PageAl%C3%A9atoire trunk/locale/fr/pgsrc/PagesFloues trunk/locale/fr/pgsrc/PagesOrphelines trunk/locale/fr/pgsrc/PagesRecherch%C3%A9es trunk/locale/fr/pgsrc/PagesSemblables trunk/locale/fr/pgsrc/PierrickMeignen trunk/locale/fr/pgsrc/Pr%C3%A9f%C3%A9rencesUtilisateur trunk/locale/fr/pgsrc/QuiEstEnLigne trunk/locale/fr/pgsrc/R%C3%A9cup%C3%A9rationDeLaPage trunk/locale/fr/pgsrc/R%C3%A9troLiens trunk/locale/fr/pgsrc/RechercheEnTexteInt%C3%A9gral trunk/locale/fr/pgsrc/RechercheInterWiki trunk/locale/fr/pgsrc/RechercheParTitre trunk/locale/fr/pgsrc/SommaireDuProjet trunk/locale/fr/pgsrc/SondagePhpWiki trunk/locale/fr/pgsrc/Suivre trunk/locale/fr/pgsrc/TousLesUtilisateurs trunk/locale/fr/pgsrc/ToutesLesPages trunk/locale/fr/pgsrc/TraduireUnTexte trunk/locale/fr/pgsrc/VersionsR%C3%A9centes trunk/locale/fr/pgsrc/VisiteursR%C3%A9cents trunk/locale/it/pgsrc/Aiuto trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine trunk/locale/it/pgsrc/Aiuto%2FBuonStile trunk/locale/it/pgsrc/Aiuto%2FComeUsareWiki trunk/locale/it/pgsrc/Aiuto%2FMagicPhpWikiURLs trunk/locale/it/pgsrc/Aiuto%2FModificaIlTesto trunk/locale/it/pgsrc/Aiuto%2FPhpWiki trunk/locale/it/pgsrc/Aiuto%2FRegoleFormattazioneTesto trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento trunk/locale/it/pgsrc/Aiuto%2FWabiSabi trunk/locale/it/pgsrc/Aiuto%2FWikiWikiWeb trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki%2FRimuovi trunk/locale/it/pgsrc/CambiamentiRecenti trunk/locale/it/pgsrc/FuzzyPages trunk/locale/it/pgsrc/HomePage trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/Pi%C3%B9Popolari trunk/locale/it/pgsrc/RicercaDelTesto trunk/locale/it/pgsrc/RicercaPerTitolo trunk/locale/it/pgsrc/ScatolaDiSabbia trunk/locale/it/pgsrc/TrovaPagina trunk/locale/it/pgsrc/TutteLePagine trunk/locale/it/pgsrc/VisitatoriRecenti trunk/locale/ja/pgsrc/%E3%83%9A%E3%83%BC%E3%82%B8%E6%A4%9C%E7%B4%A2 trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 trunk/locale/ja/pgsrc/HomePage trunk/locale/nl/pgsrc/Help trunk/locale/nl/pgsrc/Help%2FGebruikersVoorkeuren trunk/locale/nl/pgsrc/Help%2FGoedeStijl trunk/locale/nl/pgsrc/Help%2FHoeWikiTeGebruiken trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen trunk/locale/nl/pgsrc/Help%2FPhpWiki trunk/locale/nl/pgsrc/Help%2FTekstFormatteringsRegels trunk/locale/nl/pgsrc/Help%2FToverPhpWikiURLs trunk/locale/nl/pgsrc/Help%2FVeranderTekst trunk/locale/nl/pgsrc/Help%2FWabiSabi trunk/locale/nl/pgsrc/Help%2FWikiWikiWeb trunk/locale/nl/pgsrc/HomePage trunk/locale/nl/pgsrc/MeestBezocht trunk/locale/nl/pgsrc/PhpWikiBeheer trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVerwijder trunk/locale/nl/pgsrc/PhpWikiBeheer%2FZoekVervangt trunk/locale/nl/pgsrc/PhpWikiDocumentatie trunk/locale/nl/pgsrc/RecenteBezoekers trunk/locale/nl/pgsrc/RecenteVeranderingen trunk/locale/nl/pgsrc/ThuisPagina trunk/locale/nl/pgsrc/UitgaveNoten trunk/locale/nl/pgsrc/ZandBak trunk/locale/nl/pgsrc/ZoekPagina trunk/locale/sv/pgsrc/Framsida trunk/locale/sv/pgsrc/G%C3%A4stboken trunk/locale/sv/pgsrc/Hj%C3%A4lp trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FHurManAnv%C3%A4nderWiki trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FPhpWiki trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FRedigeraText trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FTextformateringsregler trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FWikiWikiWeb trunk/locale/sv/pgsrc/HomePage trunk/locale/sv/pgsrc/MestPopul%C3%A4r trunk/locale/sv/pgsrc/PhpWikiAdministration trunk/locale/sv/pgsrc/S%C3%B6kEfterSida trunk/locale/sv/pgsrc/Sandl%C3%A5dan trunk/locale/sv/pgsrc/Senaste%C3%84ndringar trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 trunk/locale/zh/pgsrc/AllPages trunk/locale/zh/pgsrc/AllUsers trunk/locale/zh/pgsrc/BackLinks trunk/locale/zh/pgsrc/DebugBackendInfo trunk/locale/zh/pgsrc/FindPage trunk/locale/zh/pgsrc/FullRecentChanges trunk/locale/zh/pgsrc/FullTextSearch trunk/locale/zh/pgsrc/FuzzyPages trunk/locale/zh/pgsrc/Help trunk/locale/zh/pgsrc/Help%2FAddingPages trunk/locale/zh/pgsrc/Help%2FBackLinksPlugin trunk/locale/zh/pgsrc/Help%2FCalendarPlugin trunk/locale/zh/pgsrc/Help%2FCommentPlugin trunk/locale/zh/pgsrc/Help%2FEditText trunk/locale/zh/pgsrc/Help%2FExternalSearchPlugin trunk/locale/zh/pgsrc/Help%2FHelloWorldPlugin trunk/locale/zh/pgsrc/Help%2FHowToUseWiki trunk/locale/zh/pgsrc/Help%2FInterWiki trunk/locale/zh/pgsrc/Help%2FLinkIcons trunk/locale/zh/pgsrc/Help%2FMagicPhpWikiURLs trunk/locale/zh/pgsrc/Help%2FMoreAboutMechanics trunk/locale/zh/pgsrc/Help%2FOldStyleTablePlugin trunk/locale/zh/pgsrc/Help%2FPhotoAlbumPlugin trunk/locale/zh/pgsrc/Help%2FPhpHighlightPlugin trunk/locale/zh/pgsrc/Help%2FPhpWiki trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin trunk/locale/zh/pgsrc/Help%2FRedirectToPlugin trunk/locale/zh/pgsrc/Help%2FSystemInfoPlugin trunk/locale/zh/pgsrc/Help%2FTranscludePlugin trunk/locale/zh/pgsrc/Help%2FWikiPlugin trunk/locale/zh/pgsrc/Help%2FWikiWikiWeb trunk/locale/zh/pgsrc/HomePage trunk/locale/zh/pgsrc/HomePageAlias trunk/locale/zh/pgsrc/InterWikiMap trunk/locale/zh/pgsrc/InterWikiSearch trunk/locale/zh/pgsrc/LikePages trunk/locale/zh/pgsrc/OrphanedPages trunk/locale/zh/pgsrc/PageDump trunk/locale/zh/pgsrc/PhpWikiAdministration trunk/locale/zh/pgsrc/PhpWikiDebug trunk/locale/zh/pgsrc/RandomPage trunk/locale/zh/pgsrc/RecentChanges trunk/locale/zh/pgsrc/RecentEdits trunk/locale/zh/pgsrc/RecentVisitors trunk/locale/zh/pgsrc/SandBox trunk/locale/zh/pgsrc/TitleSearch trunk/locale/zh/pgsrc/UpLoad trunk/locale/zh/pgsrc/UserPreferences trunk/locale/zh/pgsrc/WantedPages 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/CategoryGroup trunk/pgsrc/CategoryHomePages trunk/pgsrc/CategoryWikiPlugin trunk/pgsrc/Copyrights trunk/pgsrc/CreatePage trunk/pgsrc/DebugAuthInfo trunk/pgsrc/DebugBackendInfo trunk/pgsrc/DebugGroupInfo trunk/pgsrc/EditMetaData 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%2FDebugBackendInfoPlugin trunk/pgsrc/Help%2FDebugGroupInfoPlugin trunk/pgsrc/Help%2FDebugRetransformPlugin trunk/pgsrc/Help%2FDiffPlugin trunk/pgsrc/Help%2FDynamicIncludePagePlugin trunk/pgsrc/Help%2FEditMetaDataPlugin trunk/pgsrc/Help%2FEditText trunk/pgsrc/Help%2FExternalSearchPlugin 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%2FLinkSearchPlugin 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%2FPhotoAlbumPlugin 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%2FSystemInfoPlugin 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%2FWikisUsingPhpWiki trunk/pgsrc/Help%2FYouTubePlugin trunk/pgsrc/Help%2Ftext2pngPlugin trunk/pgsrc/HomePage trunk/pgsrc/HomePageAlias trunk/pgsrc/InterWikiMap 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/PhpWikiDebug 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/ReleaseNotes 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/WikiAdminSelect trunk/pgsrc/WikiBlog trunk/pgsrc/area trunk/pgsrc/is_a trunk/pgsrc/located_in trunk/pgsrc/population trunk/themes/blog/pgsrc/About trunk/themes/blog/pgsrc/Blog trunk/themes/blog/pgsrc/CategoryHowTo trunk/themes/blog/pgsrc/HomePage trunk/themes/blog/pgsrc/HowTo trunk/themes/blog/pgsrc/PhotoAlbum trunk/themes/fusionforge/pgsrc/CategoryWiki%20templates trunk/themes/fusionforge/pgsrc/CategoryWiki%20user trunk/themes/fusionforge/pgsrc/ExternalPages trunk/themes/fusionforge/pgsrc/FindPage trunk/themes/fusionforge/pgsrc/FullTextSearch trunk/themes/fusionforge/pgsrc/HomePage trunk/themes/fusionforge/pgsrc/PhpWikiAdministration trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetExternal trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple trunk/themes/fusionforge/pgsrc/SpecialPages trunk/themes/fusionforge/pgsrc/TextFormattingRules trunk/themes/fusionforge/pgsrc/TitleSearch trunk/themes/fusionforge/pgsrc/UpLoad trunk/themes/fusionforge/pgsrc/colorbox trunk/themes/fusionforge/pgsrc/titlebar trunk/themes/wikilens/pgsrc/LeftbarContent Modified: trunk/locale/de/pgsrc/%C3%84hnlicheSeiten =================================================================== --- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 16 Apr 2019 15:27:59 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=%C3%84hnlicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleBenutzer =================================================================== --- trunk/locale/de/pgsrc/AlleBenutzer 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/AlleBenutzer 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 19 Apr 2019 17:28:11 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=AlleBenutzer; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeiten =================================================================== --- trunk/locale/de/pgsrc/AlleSeiten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/AlleSeiten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=AlleSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=AlleSeitenEditiertVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=AlleSeitenErzeugtVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=AlleSeitenImBesitzVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/BackLinks =================================================================== --- trunk/locale/de/pgsrc/BackLinks 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/BackLinks 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=BackLinks; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BenutzerEinstellungen =================================================================== --- trunk/locale/de/pgsrc/BenutzerEinstellungen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/BenutzerEinstellungen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=BenutzerEinstellungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/DebugAuthInfo =================================================================== --- trunk/locale/de/pgsrc/DebugAuthInfo 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/DebugAuthInfo 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=DebugAuthInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugBackendInfo =================================================================== --- trunk/locale/de/pgsrc/DebugBackendInfo 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/DebugBackendInfo 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=DebugBackendInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugGruppenInfo =================================================================== --- trunk/locale/de/pgsrc/DebugGruppenInfo 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/DebugGruppenInfo 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=DebugGruppenInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/EditiereText =================================================================== --- trunk/locale/de/pgsrc/EditiereText 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/EditiereText 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 13 Oct 2016 15:09:23 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=EditiereText; flags=""; Modified: trunk/locale/de/pgsrc/Einstellungen =================================================================== --- trunk/locale/de/pgsrc/Einstellungen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Einstellungen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Einstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/FuzzySuche =================================================================== --- trunk/locale/de/pgsrc/FuzzySuche 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/FuzzySuche 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 18:24:49 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=FuzzySuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/G%C3%A4steBuch =================================================================== --- trunk/locale/de/pgsrc/G%C3%A4steBuch 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/G%C3%A4steBuch 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 18:24:49 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; flags=""; Modified: trunk/locale/de/pgsrc/GaesteBuch =================================================================== --- trunk/locale/de/pgsrc/GaesteBuch 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/GaesteBuch 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 13 Oct 2016 15:09:23 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=GaesteBuch; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Geringf%C3%BCgige%C3%84nderungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/GleicheSeiten =================================================================== --- trunk/locale/de/pgsrc/GleicheSeiten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/GleicheSeiten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 13 Oct 2016 15:09:23 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=GleicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe =================================================================== --- trunk/locale/de/pgsrc/Hilfe 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 13 Oct 2016 15:09:23 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 18:24:49 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAktionsSeite; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 30 Nov 2021 13:29:00 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAutorenProtokollPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 30 Nov 2021 13:29:00 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FBackLinksPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 30 Nov 2021 13:29:00 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGraphVizPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FGuterStil =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 19 Apr 2019 17:28:11 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGuterStil; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 26 Jul 2019 10:46:32 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHalloWeltPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 26 Jul 2019 10:46:32 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHochLadenPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 9 Dec 2021 18:48:34 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FInhaltsVerzeichnisPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 19 Apr 2019 17:28:11 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FModerierteSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 30 Nov 2021 13:29:00 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 30 Nov 2021 13:29:00 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeuerKommentarPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 8 Dec 2021 10:26:58 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhpWiki =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 20 Jun 2019 16:47:21 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhpWiki; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sun, 23 Jan 2022 12:36:11 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSeitenErzeugen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSteve%20Wainstead; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Mon, 16 Aug 2021 18:28:17 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextBearbeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextFormatierungsRegeln; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 9 Dec 2021 18:48:34 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FVorlagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWabiSabi =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWabiSabi; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWieManWikiBenutzt; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Mon, 2 Sep 2019 14:45:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiTechnik; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 16 Apr 2019 15:27:59 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiWikiWeb; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 25 Nov 2021 19:41:59 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FZufallsSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/HochLaden =================================================================== --- trunk/locale/de/pgsrc/HochLaden 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/HochLaden 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Tue, 30 Nov 2021 12:47:39 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=HochLaden; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/HomePage =================================================================== --- trunk/locale/de/pgsrc/HomePage 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/HomePage 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sun, 14 Apr 2019 21:02:35 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=HomePage; flags=""; Modified: trunk/locale/de/pgsrc/InterWikiListe =================================================================== --- trunk/locale/de/pgsrc/InterWikiListe 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/InterWikiListe 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 19 Apr 2019 17:28:11 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=InterWikiListe; pagetype=interwikimap; Modified: trunk/locale/de/pgsrc/KategorieAktionSeite =================================================================== --- trunk/locale/de/pgsrc/KategorieAktionSeite 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/KategorieAktionSeite 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Fri, 19 Apr 2019 17:28:11 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=KategorieAktionSeite; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/KategorieKategorie =================================================================== --- trunk/locale/de/pgsrc/KategorieKategorie 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/KategorieKategorie 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=KategorieKategorie; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/KategorieWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/KategorieWikiPlugin 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/KategorieWikiPlugin 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 13 Oct 2016 15:09:23 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=KategorieWikiPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/LeereSeiten =================================================================== --- trunk/locale/de/pgsrc/LeereSeiten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/LeereSeiten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 25 Jul 2019 15:34:07 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=LeereSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/LinkSuche =================================================================== --- trunk/locale/de/pgsrc/LinkSuche 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/LinkSuche 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=LinkSuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeRelationen =================================================================== --- trunk/locale/de/pgsrc/ListeRelationen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/ListeRelationen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=ListeRelationen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/MeistBesucht =================================================================== --- trunk/locale/de/pgsrc/MeistBesucht 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/MeistBesucht 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=MeistBesucht; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/ModerierteSeite 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Sat, 26 Dec 2020 12:40:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=ModerierteSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/NeueSeite =================================================================== --- trunk/locale/de/pgsrc/NeueSeite 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/NeueSeite 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=NeueSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Neueste%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=Neueste%C3%84nderungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/NeuesteSeiten =================================================================== --- trunk/locale/de/pgsrc/NeuesteSeiten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/NeuesteSeiten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=NeuesteSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen =================================================================== --- trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 25 Jul 2019 15:34:07 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=PasswortZur%C3%BCcksetzen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiDokumentation =================================================================== --- trunk/locale/de/pgsrc/PhpWikiDokumentation 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/PhpWikiDokumentation 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Wed, 10 Apr 2019 16:39:09 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=PhpWikiDokumentation; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 6 Jan 2022 17:36:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclL%C3%B6schen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclL%C3%B6schen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclL%C3%B6schen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 6 Jan 2022 17:36:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclL%C3%B6schen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 6 Jan 2022 11:36:59 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclSetzen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach 2022-01-24 16:45:01 UTC (rev 10934) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach 2022-01-24 17:46:34 UTC (rev 10935) @@ -1,5 +1,5 @@ Date: Thu, 6 Jan 2022 11:36:59 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.1) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclSetzenEinfach; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown ================================================... [truncated message content] |