From: <var...@us...> - 2015-02-27 10:38:04
|
Revision: 9568 http://sourceforge.net/p/phpwiki/code/9568 Author: vargenau Date: 2015-02-27 10:37:56 +0000 (Fri, 27 Feb 2015) Log Message: ----------- Add private/protected Modified Paths: -------------- trunk/lib/WikiTheme.php trunk/themes/blog/themeinfo.php Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-02-26 13:58:41 UTC (rev 9567) +++ trunk/lib/WikiTheme.php 2015-02-27 10:37:56 UTC (rev 9568) @@ -538,7 +538,7 @@ return fmt("Last edited on %s", $date); } - function _relativeDay($time_t) + private function _relativeDay($time_t) { /** * @var WikiRequest $request @@ -914,7 +914,7 @@ private $button_path; - function _findButton($button_file) + private function _findButton($button_file) { if (empty($this->button_path)) $this->button_path = $this->_getButtonPath(); @@ -926,7 +926,7 @@ return false; } - function _getButtonPath() + private function _getButtonPath() { $button_dir = $this->_findFile("buttons"); $path_dir = $this->_path . $button_dir; @@ -1116,7 +1116,7 @@ WikiURL($pagename, $args), 'wiki'); } - function _get_name_and_rev($page_or_rev) + protected function _get_name_and_rev($page_or_rev) { $version = false; @@ -1142,7 +1142,7 @@ return compact('pagename', 'version'); } - function _labelForAction($action) + protected function _labelForAction($action) { switch ($action) { case 'edit': @@ -1173,7 +1173,7 @@ } //---------------------------------------------------------------- - private $_buttonSeparator = "\n | "; + private $buttonSeparator = "\n | "; function setButtonSeparator($separator) { @@ -1226,7 +1226,7 @@ // //////////////////////////////////////////////////////////////// - function _CSSlink($title, $css_file, $media, $is_alt = false) + protected function _CSSlink($title, $css_file, $media, $is_alt = false) { // Don't set title on default style. This makes it clear to // the user which is the default (i.e. most supported) style. @@ -1269,7 +1269,7 @@ * between media types and CSS file names. Use a key of '' (the empty string) * to set the default CSS for non-specified media. (See above for an example.) */ - function setDefaultCSS($title, $css_files) + protected function setDefaultCSS($title, $css_files) { if (!is_array($css_files)) $css_files = array('' => $css_files); @@ -1283,7 +1283,7 @@ * @param string $title Name of style. * @param string $css_files Name of CSS file. */ - function addAlternateCSS($title, $css_files) + protected function addAlternateCSS($title, $css_files) { if (!is_array($css_files)) $css_files = array('' => $css_files); @@ -1610,7 +1610,7 @@ // Works only on action=browse. Patch #970004 by pixels // Usage: call $WikiTheme->initDoubleClickEdit() from theme init or // define ENABLE_DOUBLECLICKEDIT - function initDoubleClickEdit() + private function initDoubleClickEdit() { if (!$this->HTML_DUMP_SUFFIX) $this->addMoreAttr('body', 'DoubleClickEdit', HTML::raw(" ondblclick=\"url = document.URL; url2 = url; if (url.indexOf('?') != -1) url2 = url.slice(0, url.indexOf('?')); if ((url.indexOf('action') == -1) || (url.indexOf('action=browse') != -1)) document.location = url2 + '?action=edit';\"")); @@ -1619,7 +1619,7 @@ // Immediate title search results via XMLHTML(HttpRequest) // by Bitflux GmbH, bitflux.ch. You need to install the livesearch.js separately. // Google's or acdropdown is better. - function initLiveSearch() + private function initLiveSearch() { //subclasses of Sidebar will init this twice static $already = 0; @@ -1636,7 +1636,7 @@ // Immediate title search results via XMLHttpRequest // using the shipped moacdropdown js-lib - function initMoAcDropDown() + private function initMoAcDropDown() { //subclasses of Sidebar will init this twice static $already = 0; Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2015-02-26 13:58:41 UTC (rev 9567) +++ trunk/themes/blog/themeinfo.php 2015-02-27 10:37:56 UTC (rev 9568) @@ -81,7 +81,7 @@ 'title' => _("Click to hide/show"))); } - function _labelForAction($action) + protected function _labelForAction($action) { switch ($action) { case 'edit': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-02-27 15:50:47
|
Revision: 9569 http://sourceforge.net/p/phpwiki/code/9569 Author: vargenau Date: 2015-02-27 15:50:45 +0000 (Fri, 27 Feb 2015) Log Message: ----------- PAGE_PREFIX becomes a variable (Fusionforge only) Modified Paths: -------------- trunk/g trunk/lib/WikiDB/backend/PearDB_ffpgsql.php trunk/lib/WikiUser.php trunk/lib/wikilens/RatingsUser.php Modified: trunk/g =================================================================== --- trunk/g 2015-02-27 10:37:56 UTC (rev 9568) +++ trunk/g 2015-02-27 15:50:45 UTC (rev 9569) @@ -47,7 +47,11 @@ // Disable compression, seems needed to get all the messages. $no_gz_buffer=true; -require_once('../../../common/include/env.inc.php'); +if (defined('WIKI_SOAP')) { + require_once 'include/env.inc.php'; +} else { + require_once '../../../common/include/env.inc.php'; +} require_once $gfcommon.'include/pre.php'; require_once $gfplugins.'wiki/common/wikiconfig.class.php'; @@ -60,6 +64,10 @@ define('ENABLE_EDIT_TOOLBAR', false); } +if (defined('WIKI_SOAP')) { + $group_id = 6; +} + if (isset($group_id) && $group_id) { if (! isset($project) || ! $project) { $project = group_get_object($group_id); @@ -89,7 +97,8 @@ $wc = new WikiConfig($group_id); define('VIRTUAL_PATH', '/wiki/g/'.$group_name); - define('PAGE_PREFIX', '_g'.$group_id.'_'); + global $page_prefix; + $page_prefix = '_g'.$group_id.'_'; // We have to use a smaller value than Phpwiki due to page prefix define('MAX_PAGENAME_LENGTH', 92); Modified: trunk/lib/WikiDB/backend/PearDB_ffpgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2015-02-27 10:37:56 UTC (rev 9568) +++ trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2015-02-27 15:50:45 UTC (rev 9569) @@ -54,7 +54,8 @@ $dbparams['dsn'] = str_replace('ffpgsql:', 'pgsql:', $dbparams['dsn']); parent::__construct($dbparams); - $p = strlen(PAGE_PREFIX) + 1; + global $page_prefix; + $p = strlen($page_prefix) + 1; $page_tbl = $this->_table_names['page_tbl']; $this->page_tbl_fields = "$page_tbl.id AS id, substring($page_tbl.pagename from $p) AS pagename, $page_tbl.hits AS hits"; @@ -65,7 +66,8 @@ { $dbh = &$this->_dbh; extract($this->_table_names); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; return $dbh->getCol("SELECT substring(pagename from $p)" . " FROM $nonempty_tbl, $page_tbl" @@ -77,7 +79,8 @@ { $dbh = &$this->_dbh; extract($this->_table_names); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; return $dbh->getOne("SELECT count(*)" . " FROM $nonempty_tbl, $page_tbl" @@ -87,7 +90,8 @@ function get_pagedata($pagename) { - return parent::get_pagedata(PAGE_PREFIX . $pagename); + global $page_prefix; + return parent::get_pagedata($page_prefix . $pagename); } function update_pagedata($pagename, $newdata) @@ -100,7 +104,8 @@ // Note that this will fail silently if the page does not // have a record in the page table. Since it's just the // hit count, who cares? - $pagename = PAGE_PREFIX . $pagename; + global $page_prefix; + $pagename = $page_prefix . $pagename; $dbh->query(sprintf("UPDATE $page_tbl SET hits=%d WHERE pagename='%s'", $newdata['hits'], $dbh->escapeSimple($pagename))); return; @@ -139,7 +144,8 @@ $dbh->escapeSimple($this->_serialize($data)), $dbh->escapeSimple($pagename))); */ - $pagename = PAGE_PREFIX . $pagename; + global $page_prefix; + $pagename = $page_prefix . $pagename; $dbh->query("UPDATE $page_tbl" . " SET hits=?, pagedata=?" . " WHERE pagename=?", @@ -149,12 +155,14 @@ function get_latest_version($pagename) { - return parent::get_latest_version(PAGE_PREFIX . $pagename); + global $page_prefix; + return parent::get_latest_version($page_prefix . $pagename); } function get_previous_version($pagename, $version) { - return parent::get_previous_version(PAGE_PREFIX . $pagename, $version); + global $page_prefix; + return parent::get_previous_version($page_prefix . $pagename, $version); } function get_versiondata($pagename, $version, $want_content = false) @@ -178,7 +186,8 @@ . "$iscontent AS have_content"; } - $pagename = PAGE_PREFIX . $pagename; + global $page_prefix; + $pagename = $page_prefix . $pagename; $result = $dbh->getRow(sprintf("SELECT $fields" . " FROM $page_tbl, $version_tbl" . " WHERE $page_tbl.id=$version_tbl.id" @@ -192,12 +201,14 @@ function get_cached_html($pagename) { - return parent::get_cached_html(PAGE_PREFIX . $pagename); + global $page_prefix; + return parent::get_cached_html($page_prefix . $pagename); } function set_cached_html($pagename, $data) { - parent::set_cached_html(PAGE_PREFIX . $pagename, $data); + global $page_prefix; + parent::set_cached_html($page_prefix . $pagename, $data); } function _get_pageid($pagename, $create_if_missing = false) @@ -217,7 +228,8 @@ $dbh = &$this->_dbh; $page_tbl = $this->_table_names['page_tbl']; - $pagename = PAGE_PREFIX . $pagename; + global $page_prefix; + $pagename = $page_prefix . $pagename; $query = sprintf("SELECT id FROM $page_tbl WHERE pagename='%s'", $dbh->escapeSimple($pagename)); @@ -287,7 +299,8 @@ else $exclude = ''; - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; $qpagename = $dbh->escapeSimple($pagename); @@ -323,7 +336,8 @@ $dbh = &$this->_dbh; extract($this->_table_names); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; $orderby = $this->sortby($sortby, 'db'); @@ -389,7 +403,8 @@ { $dbh = &$this->_dbh; extract($this->_table_names); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; if ($limit < 0) { $order = "hits ASC"; @@ -479,7 +494,8 @@ if ($pick) $where_clause .= " AND " . join(" AND ", $pick); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; // FIXME: use SQL_BUFFER_RESULT for mysql? @@ -502,7 +518,8 @@ { $dbh = &$this->_dbh; extract($this->_table_names); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $p = strlen($pat) + 1; if ($orderby = $this->sortby($sortby, 'db', array('pagename', 'wantedfrom'))) $orderby = 'ORDER BY ' . $orderby; @@ -512,7 +529,7 @@ if ($exclude) // array of pagenames $exclude = " AND p.pagename NOT IN " . $this->_sql_set($exclude); - $p = strlen(PAGE_PREFIX) + 1; + $p = strlen($page_prefix) + 1; $sql = "SELECT substring(p.pagename from $p) AS wantedfrom, substring(pp.pagename from $p) AS pagename" . " FROM $page_tbl p, $link_tbl linked" . " LEFT JOIN $page_tbl pp ON linked.linkto = pp.id" @@ -553,8 +570,9 @@ $dbh->query("UPDATE $link_tbl SET linkto=$id WHERE linkto=$new"); $dbh->query("DELETE FROM $page_tbl WHERE id=$new"); } + global $page_prefix; $dbh->query(sprintf("UPDATE $page_tbl SET pagename='%s' WHERE id=$id", - $dbh->escapeSimple(PAGE_PREFIX . $to))); + $dbh->escapeSimple($page_prefix . $to))); } $this->unlock(); return $id; @@ -562,12 +580,14 @@ function is_wiki_page($pagename) { - return parent::is_wiki_page(PAGE_PREFIX . $pagename); + global $page_prefix; + return parent::is_wiki_page($page_prefix . $pagename); } function increaseHitCount($pagename) { - parent::increaseHitCount(PAGE_PREFIX . $pagename); + global $page_prefix; + parent::increaseHitCount($page_prefix . $pagename); } function _serialize($data) @@ -592,7 +612,8 @@ { $dbh = &$this->_dbh; extract($this->_table_names); - $pat = PAGE_PREFIX; + global $page_prefix; + $pat = $page_prefix; $len = strlen($pat) + 1; $orderby = $this->sortby($sortby, 'db'); if ($sortby and $orderby) $orderby = ' ORDER BY ' . $orderby; @@ -675,7 +696,8 @@ $word = $node->sql(); // @alu: use _quote maybe instead of direct pg_escape_string $word = pg_escape_string($word); - $len = strlen(PAGE_PREFIX) + 1; + global $page_prefix; + $len = strlen($page_prefix) + 1; if ($node->op == 'REGEX') { // posix regex extensions return ($this->_case_exact ? "substring(pagename from $len) ~* '$word'" Modified: trunk/lib/WikiUser.php =================================================================== --- trunk/lib/WikiUser.php 2015-02-27 10:37:56 UTC (rev 9568) +++ trunk/lib/WikiUser.php 2015-02-27 15:50:45 UTC (rev 9569) @@ -2199,7 +2199,8 @@ // notifyPages are pages to notify in the current project // while $notifyPagesAll is used to store all the monitored pages. if (isset($prefs['notifyPages'])) { - $this->notifyPagesAll[PAGE_PREFIX] = $prefs['notifyPages']; + global $page_prefix; + $this->notifyPagesAll[$page_prefix] = $prefs['notifyPages']; $prefs['notifyPages'] = @serialize($this->notifyPagesAll); } } @@ -2250,8 +2251,9 @@ // while $notifyPagesAll is used to store all the monitored pages. if (isset($prefs['notifyPages'])) { $this->notifyPagesAll = $prefs['notifyPages']; - if (isset($this->notifyPagesAll[PAGE_PREFIX])) { - $prefs['notifyPages'] = $this->notifyPagesAll[PAGE_PREFIX]; + global $page_prefix; + if (isset($this->notifyPagesAll[$page_prefix])) { + $prefs['notifyPages'] = $this->notifyPagesAll[$page_prefix]; } else { $prefs['notifyPages'] = ''; } Modified: trunk/lib/wikilens/RatingsUser.php =================================================================== --- trunk/lib/wikilens/RatingsUser.php 2015-02-27 10:37:56 UTC (rev 9568) +++ trunk/lib/wikilens/RatingsUser.php 2015-02-27 15:50:45 UTC (rev 9569) @@ -341,7 +341,8 @@ while ($rating = $rating_iter->next()) { if (defined('FUSIONFORGE') && FUSIONFORGE) { - $rating['pagename'] = preg_replace('/^' . PAGE_PREFIX . '/', '', $rating['pagename']); + global $page_prefix; + $rating['pagename'] = preg_replace('/^' . $page_prefix . '/', '', $rating['pagename']); } $this->_num_ratings++; $this->_ratings[$rating['pagename']][$rating['dimension']] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-02-27 17:05:49
|
Revision: 9571 http://sourceforge.net/p/phpwiki/code/9571 Author: vargenau Date: 2015-02-27 17:05:46 +0000 (Fri, 27 Feb 2015) Log Message: ----------- Remove acdropdown and livesearch Modified Paths: -------------- trunk/config/config-default.ini trunk/config/config-dist.ini trunk/configurator.php trunk/g trunk/lib/EditToolbar.php trunk/lib/IniConfig.php trunk/lib/WikiTheme.php trunk/lib/WysiwygEdit/spaw.php trunk/lib/plugin/LinkSearch.php trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SemanticSearchAdvanced.php trunk/lib/plugin/WikiFormRich.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/pgsrc/ReleaseNotes trunk/themes/Crao/templates/navbar.tmpl trunk/themes/Sidebar/templates/search.tmpl trunk/themes/blog/themeinfo.php trunk/themes/default/templates/search.tmpl trunk/themes/default/toolbar.js Removed Paths: ------------- trunk/themes/default/moacdropdown/ trunk/themes/default/moacdropdown.js Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/config/config-default.ini 2015-02-27 17:05:46 UTC (rev 9571) @@ -22,10 +22,7 @@ ENABLE_CAPTCHA = false ENABLE_MAILNOTIFY = true USE_CAPTCHA_RANDOM_WORD = false -ENABLE_ACDROPDOWN = true DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS = false -; deprecated, because non-free -ENABLE_LIVESEARCH = false ENABLE_WYSIWYG = false WYSIWYG_BACKEND = Wikiwyg WYSIWYG_DEFAULT_PAGETYPE_HTML = false Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/config/config-dist.ini 2015-02-27 17:05:46 UTC (rev 9571) @@ -117,25 +117,10 @@ ; All internal action links do contain ref=nofollow ;GOOGLE_LINKS_NOFOLLOW = false -; LiveSearch enables immediate title search results via XMLHttpRequest. -; Displays the results in a dropdown under the titlesearch inputbox -; while typing. (experimental, only with certain themes) -; You'll have to copy livesearch.js from http://blog.bitflux.ch/wiki/LiveSearch -; to themes/default/ and define ENABLE_LIVESEARCH in config.ini to true. -; See themes/blog/themeinfo.php. -; We used the bitflux.ch library temporarily, but we changed to -; the better moacdropdown. -;ENABLE_LIVESEARCH = true - -; ENABLE_ACDROPDOWN replaces now ENABLE_LIVESEARCH -; http://momche.net/publish/article.php?page=acdropdown -;ENABLE_ACDROPDOWN = false - ; Aysnchronous ajax callbacks to dynamically display pages ; (as format=xml) on demand. ; Experimental feature for plugin DynamicIncludePage, which might fail on ; some strictly non-conformant entities. -; Note: TitleSearch ajax calls are enabled by ENABLE_ACDROPDOWN (xmlrpc, not xml) ;ENABLE_AJAX = false ; Experimental WikiPedia feature: Force Discussion/Article link at the topnavbar. Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/configurator.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -454,12 +454,6 @@ $properties["GOOGLE_LINKS_NOFOLLOW"] = new boolean_define_commented_optional('GOOGLE_LINKS_NOFOLLOW'); -$properties["ENABLE_LIVESEARCH"] = - new boolean_define_commented_optional('ENABLE_LIVESEARCH'); - -$properties["ENABLE_ACDROPDOWN"] = - new boolean_define_commented_optional('ENABLE_ACDROPDOWN'); - $properties["ENABLE_DISCUSSION_LINK"] = new boolean_define_commented_optional('ENABLE_DISCUSSION_LINK'); Modified: trunk/g =================================================================== --- trunk/g 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/g 2015-02-27 17:05:46 UTC (rev 9571) @@ -170,8 +170,6 @@ // Allow <div> and <span> in wiki code define('ENABLE_MARKUP_DIVSPAN', true); - // Disable ENABLE_ACDROPDOWN, it creates a <style> in the <body> (illegal) - define('ENABLE_ACDROPDOWN', false); define('ENABLE_AJAX', false); define('TOOLBAR_PAGELINK_PULLDOWN', false); Modified: trunk/lib/EditToolbar.php =================================================================== --- trunk/lib/EditToolbar.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/EditToolbar.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -27,7 +27,7 @@ * Features: * - save-preview and formatting buttons from mediawiki * - Search&Replace from walterzorn.de - * - pageinsert popup by Reini Urban (TODO: should be a pulldown, use acdropdown) + * - pageinsert popup by Reini Urban (TODO: should be a pulldown) */ class EditToolbar @@ -274,8 +274,7 @@ $sr_html = ''; } - //TODO: Delegate this to run-time with showing an hidden input at the right, and do - // a separate moacdropdown and xmlrpc:titleSearch. + //TODO: Delegate this to run-time with showing an hidden input at the right // Button to generate categories, display in extra window as popup and insert $sr_html = HTML($sr_html, $this->categoriesPulldown()); Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/IniConfig.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -187,7 +187,7 @@ // List of all valid config options to be define()d which take booleans. $_IC_VALID_BOOL = array ('ENABLE_PAGEPERM', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE', - 'ENABLE_XHTML_XML', 'ENABLE_DOUBLECLICKEDIT', 'ENABLE_LIVESEARCH', 'ENABLE_ACDROPDOWN', + 'ENABLE_XHTML_XML', 'ENABLE_DOUBLECLICKEDIT', 'USECACHE', 'WIKIDB_NOCACHE_MARKUP', 'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH', 'ENABLE_RAW_HTML', 'ENABLE_RAW_HTML_LOCKEDONLY', 'ENABLE_RAW_HTML_SAFE', Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/WikiTheme.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -268,18 +268,6 @@ or ENABLE_DOUBLECLICKEDIT ) $this->initDoubleClickEdit(); - - // will be replaced by acDropDown - if (ENABLE_LIVESEARCH) { // by bitflux.ch - $this->initLiveSearch(); - } - // replaces external LiveSearch - // enable ENABLE_AJAX for DynamicIncludePage - if (ENABLE_ACDROPDOWN or ENABLE_AJAX) { - $this->initMoAcDropDown(); - if (ENABLE_AJAX and DEBUG) // minified all together - $this->addMoreHeaders(JavaScript('', array('src' => $this->_findData("ajax.js")))); - } } function file($file) @@ -1616,41 +1604,6 @@ $this->addMoreAttr('body', 'DoubleClickEdit', HTML::raw(" ondblclick=\"url = document.URL; url2 = url; if (url.indexOf('?') != -1) url2 = url.slice(0, url.indexOf('?')); if ((url.indexOf('action') == -1) || (url.indexOf('action=browse') != -1)) document.location = url2 + '?action=edit';\"")); } - // Immediate title search results via XMLHTML(HttpRequest) - // by Bitflux GmbH, bitflux.ch. You need to install the livesearch.js separately. - // Google's or acdropdown is better. - private function initLiveSearch() - { - //subclasses of Sidebar will init this twice - static $already = 0; - if (!$this->HTML_DUMP_SUFFIX and !$already) { - $this->addMoreAttr('body', 'LiveSearch', - HTML::raw(" onload=\"liveSearchInit()")); - $this->addMoreHeaders(JavaScript('var liveSearchURI="' - . WikiURL(_("TitleSearch"), array(), true) . '";')); - $this->addMoreHeaders(JavaScript('', array - ('src' => $this->_findData('livesearch.js')))); - $already = 1; - } - } - - // Immediate title search results via XMLHttpRequest - // using the shipped moacdropdown js-lib - private function initMoAcDropDown() - { - //subclasses of Sidebar will init this twice - static $already = 0; - if (!$this->HTML_DUMP_SUFFIX and !$already) { - $dir = $this->_findData('moacdropdown'); - if (!DEBUG and ($css = $this->_findFile('moacdropdown/css/dropdown.css'))) { - $this->addMoreHeaders($this->_CSSlink(0, $css, 'all')); - } else { - $this->addMoreHeaders(HTML::style(array('type' => 'text/css'), " @import url( $dir/css/dropdown.css );\n")); - } - $already = 1; - } - } - function calendarLink($date = false) { return $this->calendarBase() . '/' . Modified: trunk/lib/WysiwygEdit/spaw.php =================================================================== --- trunk/lib/WysiwygEdit/spaw.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/WysiwygEdit/spaw.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -38,7 +38,6 @@ $width='100%', // width $height='300px', // height $css_stylesheet='', // css stylesheet file for content - $dropdown_data='' // data for dropdowns (style, font, etc.) */ $this->SPAW = new SPAW_Wysiwyg($id, $textarea->_content); $textarea->SetAttr('id', $name); Modified: trunk/lib/plugin/LinkSearch.php =================================================================== --- trunk/lib/plugin/LinkSearch.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/plugin/LinkSearch.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -63,7 +63,6 @@ 'value' => $args['page'], 'title' => _("Search only in these pages. With autocompletion."), 'class' => 'dropdown', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'false', 'autocomplete_list' => 'xmlrpc:wiki.titleSearch ^[S] 4' @@ -72,7 +71,6 @@ 'value' => $args['s'], 'title' => _("Filter by this link. These are pagenames. With autocompletion."), 'class' => 'dropdown', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'true', 'autocomplete_list' => 'xmlrpc:wiki.titleSearch ^[S] 4' Modified: trunk/lib/plugin/SemanticSearch.php =================================================================== --- trunk/lib/plugin/SemanticSearch.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/plugin/SemanticSearch.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -97,7 +97,6 @@ 'value' => $args['page'], 'title' => _("Search only in these pages. With autocompletion."), 'class' => 'dropdown', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'false', 'autocomplete_list' => 'xmlrpc:wiki.titleSearch ^[S] 4' @@ -110,7 +109,6 @@ 'title' => _("Filter by this relation. With autocompletion."), 'class' => 'dropdown', 'style' => 'width:10em', - 'acdropdown' => 'true', 'autocomplete_assoc' => 'false', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'true', @@ -120,7 +118,6 @@ 'value' => $args['s'], 'title' => _("Filter by this link. These are pagenames. With autocompletion."), 'class' => 'dropdown', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'true', 'autocomplete_list' => 'xmlrpc:wiki.titleSearch ^[S] 4' @@ -180,7 +177,6 @@ 'title' => _("Filter by this attribute name. With autocompletion."), 'class' => 'dropdown', 'style' => 'width:10em', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'true', 'autocomplete_assoc' => 'false', @@ -192,7 +188,6 @@ 'title' => _("Comparison operator. With autocompletion."), 'class' => 'dropdown', 'style' => 'width:2em', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'true', 'autocomplete_assoc' => 'false', @@ -202,7 +197,6 @@ 'value' => $args['s'], 'title' => _("Filter by this numeric attribute value. With autocompletion."), //? 'class' => 'dropdown', - 'acdropdown' => 'false', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'false', 'autocomplete_assoc' => 'false', Modified: trunk/lib/plugin/SemanticSearchAdvanced.php =================================================================== --- trunk/lib/plugin/SemanticSearchAdvanced.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/plugin/SemanticSearchAdvanced.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -89,7 +89,6 @@ 'value' => $args['page'], 'title' => _("Search only in these pages. With autocompletion."), 'class' => 'dropdown', - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_matchsubstring' => 'false', 'autocomplete_list' => 'xmlrpc:wiki.titleSearch ^[S] 4' @@ -100,7 +99,6 @@ $querybox = HTML::textarea(array('name' => 's', 'title' => _("Enter a valid query expression"), 'rows' => 4, - 'acdropdown' => 'true', 'autocomplete_complete' => 'true', 'autocomplete_assoc' => 'false', 'autocomplete_matchsubstring' => 'true', Modified: trunk/lib/plugin/WikiFormRich.php =================================================================== --- trunk/lib/plugin/WikiFormRich.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/lib/plugin/WikiFormRich.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -331,8 +331,6 @@ { global $request; $input['class'] = "dropdown"; - $input['acdropdown'] = "true"; - //$input['autocomplete'] = "OFF"; $input['autocomplete_complete'] = "true"; // only match begin: autocomplete_matchbegin, or $input['autocomplete_matchsubstring'] = "true"; @@ -348,7 +346,6 @@ static $tmpArray = 'tmpArray00'; // deferred remote xmlrpc call if (string_starts_with($input['method'], "dynxmlrpc:")) { - // how is server + method + args encoding parsed by acdropdown? $input['autocomplete_list'] = substr($input['method'], 3); if ($input['args']) $input['autocomplete_list'] .= (" " . $input['args']); 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 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/de.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+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." @@ -5355,9 +5355,6 @@ msgid "Today" msgstr "Heute" -msgid "LiveSearch" -msgstr "LiveSuche" - #, php-format msgid "You are signed in as %s" msgstr "Sie sind angemeldet als %s" @@ -6125,6 +6122,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "LiveSearch" +#~ msgstr "LiveSuche" + #~ msgid "Can't open ZIP file “%s” for reading" #~ msgstr "Konnte ZIP-Datei »%s« nicht zum Lesen öffnen" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/es.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -5230,9 +5230,6 @@ msgid "Today" msgstr "Hoy" -msgid "LiveSearch" -msgstr "" - #, php-format msgid "You are signed in as %s" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/fr.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+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." @@ -5289,9 +5289,6 @@ msgid "Today" msgstr "Aujourd'hui" -msgid "LiveSearch" -msgstr "RechercheLive" - #, php-format msgid "You are signed in as %s" msgstr "Vous êtes connecté comme %s" @@ -6027,6 +6024,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "LiveSearch" +#~ msgstr "RechercheLive" + #~ msgid "Can't open ZIP file “%s” for reading" #~ msgstr "Impossible d'ouvrir le fichier ZIP « %s » en lecture" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/it.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+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" @@ -5175,9 +5175,6 @@ msgid "Today" msgstr "Oggi" -msgid "LiveSearch" -msgstr "RicercaLive" - #, php-format msgid "You are signed in as %s" msgstr "Utente corrente: %s" @@ -5890,6 +5887,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "LiveSearch" +#~ msgstr "RicercaLive" + #~ msgid "reverse" #~ msgstr "ritorni" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/ja.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+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" @@ -5333,10 +5333,6 @@ msgid "Today" msgstr "今日" -#, fuzzy -msgid "LiveSearch" -msgstr "タイトル検索" - #, fuzzy, php-format msgid "You are signed in as %s" msgstr "%s としてサインインしました" @@ -6088,6 +6084,10 @@ msgstr "" #, fuzzy +#~ msgid "LiveSearch" +#~ msgstr "タイトル検索" + +#, fuzzy #~ msgid "sent to %s" #~ msgstr "%s に戻る" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/nl.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+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" @@ -5167,9 +5167,6 @@ msgid "Today" msgstr "" -msgid "LiveSearch" -msgstr "LiveZoek" - #, php-format msgid "You are signed in as %s" msgstr "" @@ -5880,6 +5877,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "LiveSearch" +#~ msgstr "LiveZoek" + #~ msgid "" #~ "Your home page has not been created yet so your preferences cannot not be " #~ "saved." Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/phpwiki.pot 2015-02-27 17:05:46 UTC (rev 9571) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+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" @@ -5159,9 +5159,6 @@ msgid "Today" msgstr "" -msgid "LiveSearch" -msgstr "" - #, php-format msgid "You are signed in as %s" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/sv.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -5160,9 +5160,6 @@ msgid "Today" msgstr "" -msgid "LiveSearch" -msgstr "" - #, php-format msgid "You are signed in as %s" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/locale/po/zh.po 2015-02-27 17:05:46 UTC (rev 9571) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-18 15:00+0100\n" +"POT-Creation-Date: 2015-02-27 17:55+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -5426,10 +5426,6 @@ msgid "Today" msgstr "今天" -#, fuzzy -msgid "LiveSearch" -msgstr "標題搜索" - #, fuzzy, php-format msgid "You are signed in as %s" msgstr "你必須簽入才能 %s." @@ -6193,6 +6189,10 @@ msgid "Y-m-d H:i" msgstr "" +#, fuzzy +#~ msgid "LiveSearch" +#~ msgstr "標題搜索" + #~ msgid "Can't open ZIP file “%s” for reading" #~ msgstr "無法開啟 ZIP 檔案 “%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 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/pgsrc/ReleaseNotes 2015-02-27 17:05:46 UTC (rev 9571) @@ -1,4 +1,4 @@ -Date: Fri, 20 Feb 2015 17:50:57 +0000 +Date: Fri, 27 Feb 2015 17:55:50 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -23,6 +23,7 @@ * load theme pgsrc, if it exists * SUBPAGE_SEPARATOR removed, it must be '/' * RateIt plugin for Fusionforge +* remove acdropdown and livesearch == 1.5.2 2014-10-10 Marc-Etienne Vargenau == Modified: trunk/themes/Crao/templates/navbar.tmpl =================================================================== --- trunk/themes/Crao/templates/navbar.tmpl 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/themes/Crao/templates/navbar.tmpl 2015-02-27 17:05:46 UTC (rev 9571) @@ -40,15 +40,7 @@ onfocus="if (this.value == '<?php echo _("Search")?>') {this.value = '';}" onmouseout="window.status=''; return true;" onmouseover="window.status='<?php echo _("Search")?>'; return true;" -<?php if (ENABLE_LIVESEARCH) { ?> - title="<?php echo _("LiveSearch")?>" - onKeypress="liveSearchStart()" - onblur="setTimeout('closeResults()',2000); if (this.value == '') {this.value = '<?php echo _("Search")?>';}" /> - </div><br /><div class="align-left" id="LSResult"></div> -<?php } else { ?> title="<?php echo _("TitleSearch")?>" /> </div> -<?php } ?> </td></tr></table></div> </form> - Modified: trunk/themes/Sidebar/templates/search.tmpl =================================================================== --- trunk/themes/Sidebar/templates/search.tmpl 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/themes/Sidebar/templates/search.tmpl 2015-02-27 17:05:46 UTC (rev 9571) @@ -15,21 +15,8 @@ onmouseout="window.status=''; return true;" onmouseover="window.status='<?php echo _("Quick Search")?>'; return true;" accesskey="f" -<?php if (0 and ENABLE_ACDROPDOWN) { ?> - class="dropdown" id="searchInput" title="<?php echo _("LiveSearch") . " [$p-f]"?>" - style="width:115px;" - acdropdown="true" autocomplete_complete="false" autocomplete_matchsubstring="false" - autocomplete_list="xmlrpc:wiki.titleSearch [S] 4" /> -<?php } elseif (ENABLE_LIVESEARCH) { ?> - type="text" id="livesearch" title="<?php echo _("LiveSearch") . " [$p-f]"?>" - onKeypress="liveSearchStart()" - onblur="setTimeout('closeResults()',2000); if (this.value == '') {this.value = '<?php echo _("Search")?>';}" /> - <br/> - <div id="LSResult"> - </div> -<?php } else { ?> type="text" id="search" title="<?php echo _("Search term(s)") . " [$p-f]"?>" /> -<?php } ?> <?php echo $SEARCH_AFTER ?> +<?php echo $SEARCH_AFTER ?> </form> </div> Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/themes/blog/themeinfo.php 2015-02-27 17:05:46 UTC (rev 9571) @@ -29,15 +29,6 @@ * PageTrail: > .. > .. * Right sidebar boxes: Archives, Syndication, Links, GoogleAds * - * For the livesearch feature (autodropdown of the results while you tip) - * you'll have to copy livesearch.js from http://blog.bitflux.ch/wiki/LiveSearch - * to themes/default/, change the liveSearchReq.open line to: -liveSearchReq.open("GET", liveSearchURI + "?format=livesearch&paging=none&limit=25&s=" + document.forms.searchform.s.value); - * and define ENABLE_LIVESEARCH in config.ini to true. - * - * Better autodropdown's are in consideration: - * http://momche.net/publish/article.php?page=acdropdown) - * * Happy blogging. */ Deleted: trunk/themes/default/moacdropdown.js =================================================================== --- trunk/themes/default/moacdropdown.js 2015-02-27 16:12:26 UTC (rev 9570) +++ trunk/themes/default/moacdropdown.js 2015-02-27 17:05:46 UTC (rev 9571) @@ -1,1354 +0,0 @@ - -function cBrowser(){var userAgent=navigator.userAgent.toLowerCase() -this.version=parseInt(navigator.appVersion) -this.subVersion=parseFloat(navigator.appVersion) -this.ns=((userAgent.indexOf('mozilla')!=-1)&&((userAgent.indexOf('spoofer')==-1)&&(userAgent.indexOf('compatible')==-1))) -this.ns2=(this.ns&&(this.version==2)) -this.ns3=(this.ns&&(this.version==3)) -this.ns4b=(this.ns&&(this.subVersion<4.04)) -this.ns4=(this.ns&&(this.version==4)) -this.ns5=(this.ns&&(this.version==5)) -this.ie=(userAgent.indexOf('msie')!=-1) -this.ie3=(this.ie&&(this.version==2)) -this.ie4=(this.ie&&(this.version==4)&&(userAgent.indexOf('msie 4.')!=-1)) -this.ie5=(this.ie&&(this.version==4)&&(userAgent.indexOf('msie 5.0')!=-1)) -this.ie55=(this.ie&&(this.version==4)&&(userAgent.indexOf('msie 5.5')!=-1)) -this.ie6=(this.ie&&(this.version==4)&&(userAgent.indexOf('msie 6.0')!=-1)) -this.op3=(userAgent.indexOf('opera')!=-1) -this.win=(userAgent.indexOf('win')!=-1) -this.mac=(userAgent.indexOf('mac')!=-1) -this.unix=(userAgent.indexOf('x11')!=-1) -this.name=navigator.appName -this.dom=this.ns5||this.ie5||this.ie55||this.ie6} -var bw=new cBrowser() -cDomEvent={e:null,type:'',button:0,key:0,x:0,y:0,pagex:0,pagey:0,target:null,from:null,to:null} -cDomEvent.init=function(e) -{if(window.event)e=window.event -this.e=e -this.type=e.type -this.button=(e.which)?e.which:e.button -this.key=(e.which)?e.which:e.keyCode -this.target=(e.srcElement)?e.srcElement:e.originalTarget -this.currentTarget=(e.currentTarget)?e.currentTarget:e.srcElement -this.from=(e.originalTarget)?e.originalTarget:(e.fromElement)?e.fromElement:null -this.to=(e.currentTarget)?e.currentTarget:(e.toElement)?e.toElement:null -this.x=(e.layerX)?e.layerX:(e.offsetX)?e.offsetX:null -this.y=(e.layerY)?e.layerY:(e.offsetY)?e.offsetY:null -this.screenX=e.screenX -this.screenY=e.screenY -this.pageX=(e.pageX)?e.pageX:e.x+document.body.scrollLeft -this.pageY=(e.pageY)?e.pageY:e.y+document.body.scrollTop} -cDomEvent.getEvent=function(e) -{if(window.event)e=window.event -return{e:e,type:e.type,button:(e.which)?e.which:e.button,key:(e.which)?e.which:e.keyCode,target:(e.srcElement)?e.srcElement:e.originalTarget,currentTarget:(e.currentTarget)?e.currentTarget:e.srcElement,from:(e.originalTarget)?e.originalTarget:(e.fromElement)?e.fromElement:null,to:(e.currentTarget)?e.currentTarget:(e.toElement)?e.toElement:null,x:(e.layerX)?e.layerX:(e.offsetX)?e.offsetX:null,y:(e.layerY)?e.layerY:(e.offsetY)?e.offsetY:null,screenX:e.screenX,screenY:e.screenY,pageX:(e.pageX)?e.pageX:(e.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)),pageY:(e.pageY)?e.pageY:(e.clientY+(document.documentElement.scrollTop||document.body.scrollTop))}} -cDomEvent.cancelEvent=function(e) -{if(e.preventDefault) -{e.preventDefault()} -e.returnValue=false -e.cancelBubble=true -return false} -cDomEvent.addEvent=function(hElement,sEvent,handler,bCapture) -{if(hElement.addEventListener) -{hElement.addEventListener(sEvent,handler,bCapture) -return true} -else if(hElement.attachEvent) -{return hElement.attachEvent('on'+sEvent,handler)} -else if(document.all||hElement.captureEvents) -{if(hElement.captureEvents)eval('hElement.captureEvents( Event.'+sEvent.toUpperCase()+' )') -eval('hElement.on'+sEvent+' = '+handler)} -else -{alert('Not implemented yet!')}} -cDomEvent.encapsulateEvent=function(hHandler) -{return function(hEvent) -{hEvent=cDomEvent.getEvent(hEvent) -hHandler.call(hEvent.target,hEvent.e)}} -cDomEvent.addEvent2=function(hElement,sEvent,handler,bCapture) -{if(hElement) -{if(hElement.addEventListener) -{hElement.addEventListener(sEvent,cDomEvent.encapsulateEvent(handler),bCapture) -return true} -else if(hElement.attachEvent) -{return hElement.attachEvent('on'+sEvent,cDomEvent.encapsulateEvent(handler))} -else -{alert('Not implemented yet!')}} -else -{}} -cDomEvent.addCustomEvent2=function(hElement,sEvent,handler) -{if(hElement) -{hElement[sEvent]=handler} -else -{}} -cDomEvent.removeEvent=function(hElement,sEvent,handler,bCapture) -{if(hElement.addEventListener) -{hElement.removeEventListener(sEvent,handler,bCapture) -return true} -else if(hElement.attachEvent) -{return hElement.detachEvent('on'+sEvent,handler)} -else if(document.all||hElement.captureEvents) -{eval('hElement.on'+sEvent+' = null')} -else -{alert('Not implemented yet!')}} -function MouseButton() -{if(document.layers) -{this.left=1 -this.middle=2 -this.right=3} -else if(document.all) -{this.left=1 -this.middle=4 -this.right=2} -else -{this.left=0 -this.middle=1 -this.right=2}} -var MB=new MouseButton() -if(document.ELEMENT_NODE==null) -{document.ELEMENT_NODE=1 -document.TEXT_NODE=3} -function getSubNodeByName(hNode,sNodeName) -{if(hNode!=null) -{var nNc=0 -var nC=0 -var hNodeChildren=hNode.childNodes -var hCNode=null -while(nC<hNodeChildren.length) -{hCNode=hNodeChildren.item(nC++) -if((hCNode.nodeType==1)&&(hCNode.nodeName.toLowerCase()==sNodeName)) -{return hCNode}}} -return null} -function getPrevNodeSibling(hNode) -{if(hNode!=null) -{do{hNode=hNode.previousSibling}while(hNode!=null&&hNode.nodeType!=1) -return hNode}} -function getNextNodeSibling(hNode) -{if(hNode!=null) -{do{hNode=hNode.nextSibling}while(hNode!=null&&hNode.nodeType!=1) -return hNode}} -function getLastSubNodeByName(hNode,sNodeName) -{if(hNode!=null) -{var nNc=0 -var nC=0 -var hNodeChildren=hNode.childNodes -var hCNode=null -var nLength=hNodeChildren.length-1 -while(nLength>=0) -{hCNode=hNodeChildren.item(nLength) -if((hCNode.nodeType==1)&&(hCNode.nodeName.toLowerCase()==sNodeName)) -{return hCNode} -nLength--}} -return null} -function getSubNodeByProperty(hNode,sProperty,sPropValue) -{if(hNode!=null) -{var nNc=0 -var nC=0 -var hNodeChildren=hNode.childNodes -var hCNode=null -var sAttribute -var hProp -sPropValue=sPropValue.toLowerCase() -while(nC<hNodeChildren.length) -{hCNode=hNodeChildren.item(nC++) -if(hCNode.nodeType==document.ELEMENT_NODE) -{hProp=eval('hCNode.'+sProperty) -if(typeof(sPropValue)!='undefined') -{if(hProp.toLowerCase()==sPropValue) -{return hCNode}} -else -{return hCNode}} -nNc++}} -return null} -function findAttribute(hNode,sAtt) -{sAtt=sAtt.toLowerCase() -for(var nI=0;nI<hNode.attributes.length;nI++) -{if(hNode.attributes.item(nI).nodeName.toLowerCase()==sAtt) -{return hNode.attributes.item(nI).nodeValue}} -return null} -function getSubNodeByAttribute(hNode,sAtt,sAttValue) -{if(hNode!=null) -{var nNc=0 -var nC=0 -var hNodeChildren=hNode.childNodes -var hCNode=null -var sAttribute -sAttValue=sAttValue.toLowerCase() -while(nC<hNodeChildren.length) -{hCNode=hNodeChildren.item(nC++) -if(hCNode.nodeType==document.ELEMENT_NODE) -{sAttribute=hCNode.getAttribute(sAtt) -if(sAttribute&&sAttribute.toLowerCase()==sAttValue) -return hCNode} -nNc++}} -return null} -function getLastSubNodeByAttribute(hNode,sAtt,sAttValue) -{if(hNode!=null) -{var nNc=0 -var nC=0 -var hNodeChildren=hNode.childNodes -var hCNode=null -var nLength=hNodeChildren.length-1 -while(nLength>=0) -{hCNode=hNodeChildren.item(nLength) -if(hCNode.nodeType==document.ELEMENT_NODE) -{sAttribute=hCNode.getAttribute(sAtt) -if(sAttribute&&sAttribute.toLowerCase()==sAttValue) -return hCNode} -nLength--}} -return null} -function getParentByTagName(hNode,sParentTagName) -{while((hNode.tagName)&&!(/(body|html)/i.test(hNode.tagName))) -{if(hNode.tagName==sParentTagName) -{return hNode} -hNode=hNode.parentNode} -return null} -function getParentByAttribute(hNode,sAtt,sAttValue) -{while((hNode.tagName)&&!(/(body|html)/i.test(hNode.tagName))) -{var sAttr=hNode.getAttribute(sAtt) -if(sAttr!=null&&sAttr.toString().length>0) -{if(sAttValue!==null) -{if(sAttr==sAttValue) -{return hNode}} -else -{return hNode}} -hNode=hNode.parentNode} -return null} -function getParentByProperty(hNode,sProperty,sPropValue) -{while((hNode.tagName)&&!(/(body|html)/i.test(hNode.tagName))) -{var hProp=eval('hNode.'+sProperty) -if(hProp!=null&&hProp.toString().length>0) -{if(sPropValue!==null) -{if(hProp==sPropValue) -{return hNode}} -else -{return hNode}} -hNode=hNode.parentNode} -return null} -function getNodeText(hNode) -{if(hNode==null) -{return''} -var sRes -if(hNode.hasChildNodes()) -{sRes=hNode.childNodes.item(0).nodeValue} -else -{sRes=hNode.text} -return sRes} -function cDomExtension(hParent,aSelectors,hInitFunction) -{this.hParent=hParent -this.aSelectors=aSelectors -this.hInitFunction=hInitFunction} -cDomExtensionManager={aExtensions:new Array()} -cDomExtensionManager.register=function(hDomExtension) -{cDomExtensionManager.aExtensions.push(hDomExtension)} -cDomExtensionManager.initSelector=function(hParent,sSelector,hInitFunction) -{var hSelectorRegEx -var hAttributeRegEx -var aSelectorData -var aAttributeData -var sAttribute -hSelectorRegEx=/([a-z0-9_]*)\[?([^\]]*)\]?/i -hAttributeRegEx=/([a-z0-9_]*)([\*\^\$]?)(=?)(([a-z0-9_=]*))/i -if(hSelectorRegEx.test(sSelector)&&!/[@#\.]/.test(sSelector)) -{aSelectorData=hSelectorRegEx.exec(sSelector) -if(aSelectorData[1]!='') -{hGroup=hParent.getElementsByTagName(aSelectorData[1].toLowerCase()) -for(nI=0;nI<hGroup.length;nI++) -{hGroup[nI].markExt=true} -for(nI=0;nI<hGroup.length;nI++) -{if(!hGroup[nI].markExt) -{continue} -else -{hGroup[nI].markExt=false} -if(aSelectorData[2]=='') -{if(hGroup[nI].tagName.toLowerCase()==aSelectorData[1].toLowerCase()) -{hInitFunction(hGroup[nI])}} -else -{aAttributeData=hAttributeRegEx.exec(aSelectorData[2]) -if(aAttributeData[1]=='class') -{sAttribute=hGroup[nI].className} -else -{sAttribute=hGroup[nI].getAttribute(aAttributeData[1])} -if(sAttribute!=null&&sAttribute.length>0) -{if(aAttributeData[3]=='=') -{if(aAttributeData[2]=='') -{if(sAttribute==aAttributeData[4]) -{hInitFunction(hGroup[nI])}} -else -{switch(aAttributeData[2]) -{case'^':if(sAttribute.indexOf(aAttributeData[4])==0) -{hInitFunction(hGroup[nI])} -break -case'$':if(sAttribute.lastIndexOf(aAttributeData[4])==sAttribute.length-aAttributeData[4].length) -{hInitFunction(hGroup[nI])} -break -case'*':if(sAttribute.indexOf(aAttributeData[4])>=0) -{hInitFunction(hGroup[nI])} -break}}} -else -{hInitFunction(hGroup[nI])}}}} -return}} -hSelectorRegEx=/([a-z0-9_]*)([\.#@]?)([a-z0-9_=~]*)/i -hAttributeRegEx=/([a-z0-9_]*)([=~])?([a-z0-9_]*)/i -aSelectorData=hSelectorRegEx.exec(sSelector) -if(aSelectorData[1]!='') -{var hGroup=hParent.getElementsByTagName(aSelectorData[1]) -for(nI=0;nI<hGroup.length;nI++) -{hGroup[nI].markExt=true} -for(nI=0;nI<hGroup.length;nI++) -{if(!hGroup[nI].markExt) -{continue} -else -{hGroup[nI].markExt=false} -if(aSelectorData[2]!='') -{switch(aSelectorData[2]) -{case'.':if(hGroup[nI].className==aSelectorData[3]) -{hInitFunction(hGroup[nI])} -break -case'#':if(hGroup[nI].id==aSelectorData[3]) -{hInitFunction(hGroup[nI])} -break -case'@':aAttributeData=hAttributeRegEx.exec(aSelectorData[3]) -sAttribute=hGroup[nI].getAttribute(aAttributeData[1]) -if(sAttribute!=null&&sAttribute.length>0) -{if(aAttributeData[3]!='') -{if(aAttributeData[2]=='=') -{if(sAttribute==aAttributeData[3]) -{hInitFunction(hGroup[nI])}} -else -{if(sAttribute.indexOf(aAttributeData[3])>=0) -{hInitFunction(hGroup[nI])}}} -else -{hInitFunction(hGroup[nI])}} -break}}}}} -cDomExtensionManager.initialize=function() -{var hDomExtension=null -var aSelectors -for(var nKey in cDomExtensionManager.aExtensions) -{aSelectors=cDomExtensionManager.aExtensions[nKey].aSelectors -for(var nKey2 in aSelectors) -{cDomExtensionManager.initSelector(cDomExtensionManager.aExtensions[nKey].hParent,aSelectors[nKey2],cDomExtensionManager.aExtensions[nKey].hInitFunction)}}} -if(window.addEventListener) -{window.addEventListener('load',cDomExtensionManager.initialize,false)} -else if(window.attachEvent) -{window.attachEvent('onload',cDomExtensionManager.initialize)} -function cDomObject(sId) -{if(bw.dom||bw.ie) -{this.hElement=document.getElementById(sId) -this.hStyle=this.hElement.style}} -cDomObject.prototype.getWidth=function() -{return cDomObject.getWidth(this.hElement)} -cDomObject.getWidth=function(hElement) -{if(hElement.currentStyle) -{var nWidth=parseInt(hElement.currentStyle.width) -if(isNaN(nWidth)) -{return parseInt(hElement.offsetWidth)} -else -{return nWidth}} -else -{return parseInt(hElement.offsetWidth)}} -cDomObject.prototype.getHeight=function() -{return cDomObject.getHeight(this.hElement)} -cDomObject.getHeight=function(hElement) -{if(hElement.currentStyle) -{var nHeight=parseInt(hElement.currentStyle.height) -if(isNaN(nHeight)) -{return parseInt(hElement.offsetHeight)} -else -{return nHeight}} -else -{return parseInt(hElement.offsetHeight)}} -cDomObject.prototype.getLeft=function() -{return cDomObject.getLeft(this.hElement)} -cDomObject.getLeft=function(hElement) -{return parseInt(hElement.offsetLeft)} -cDomObject.prototype.getTop=function() -{return cDomObject.getTop(this.hElement)} -cDomObject.getTop=function(hElement) -{return parseInt(hElement.offsetTop)} -cDomObject.getOffsetParam=function(hElement,sParam,hLimitParent) -{var nRes=0 -if(hLimitParent==null) -{hLimitParent=document.body.parentElement} -while(hElement!=hLimitParent) -{nRes+=eval('hElement.'+sParam) -if(!hElement.offsetParent){break} -hElement=hElement.offsetParent} -return nRes} -cDomObject.getScrollOffset=function(hElement,sParam,hLimitParent) -{nRes=0 -if(hLimitParent==null) -{hLimitParent=document.body.parentElement} -while(hElement!=hLimitParent) -{nRes+=eval('hElement.scroll'+sParam) -if(!hElement.offsetParent){break} -hElement=hElement.parentNode} -return nRes} -function getDomDocumentPrefix(){if(getDomDocumentPrefix.prefix) -return getDomDocumentPrefix.prefix;var prefixes=["MSXML2","Microsoft","MSXML","MSXML3"];var o;for(var i=0;i<prefixes.length;i++){try{o=new ActiveXObject(prefixes[i]+".DomDocument");return getDomDocumentPrefix.prefix=prefixes[i];} -catch(ex){};} -throw new Error("Could not find an installed XML parser");} -function getXmlHttpPrefix(){if(getXmlHttpPrefix.prefix) -return getXmlHttpPrefix.prefix;var prefixes=["MSXML2","Microsoft","MSXML","MSXML3"];var o;for(var i=0;i<prefixes.length;i++){try{o=new ActiveXObject(prefixes[i]+".XmlHttp");return getXmlHttpPrefix.prefix=prefixes[i];} -catch(ex){};} -throw new Error("Could not find an installed XML parser");} -function XmlHttp(){} -XmlHttp.create=function(){try{if(window.XMLHttpRequest){var req=new XMLHttpRequest();if(req.readyState==null){req.readyState=1;req.addEventListener("load",function(){req.readyState=4;if(typeof req.onreadystatechange=="function") -req.onreadystatechange();},false);} -return req;} -if(window.ActiveXObject){return new ActiveXObject(getXmlHttpPrefix()+".XmlHttp");}} -catch(ex){} -throw new Error("Your browser does not support XmlHttp objects");};function XmlDocument(){} -XmlDocument.create=function(){try{if(document.implementation&&document.implementation.createDocument){var doc=document.implementation.createDocument("","",null);if(doc.readyState==null){doc.readyState=1;doc.addEventListener("load",function(){doc.readyState=4;if(typeof doc.onreadystatechange=="function") -doc.onreadystatechange();},false);} -return doc;} -if(window.ActiveXObject) -return new ActiveXObject(getDomDocumentPrefix()+".DomDocument");} -catch(ex){} -throw new Error("Your browser does not support XmlDocument objects");};if(window.DOMParser&&window.XMLSerializer&&window.Node&&Node.prototype&&Node.prototype.__defineGetter__){Document.prototype.loadXML=function(s){var doc2=(new DOMParser()).parseFromString(s,"text/xml");while(this.hasChildNodes()) -this.removeChild(this.lastChild);for(var i=0;i<doc2.childNodes.length;i++){this.appendChild(this.importNode(doc2.childNodes[i],true));}};Document.prototype.__defineGetter__("xml",function(){return(new XMLSerializer()).serializeToString(this);});} -function cAutocomplete(sInputId) -{this.init(sInputId)} -var xmlrpc_url;cAutocomplete.CS_NAME='Autocomplete component' -cAutocomplete.CS_OBJ_NAME='AC_COMPONENT' -cAutocomplete.CS_LIST_PREFIX='ACL_' -cAutocomplete.CS_BUTTON_PREFIX='ACB_' -cAutocomplete.CS_INPUT_PREFIX='AC_' -cAutocomplete.CS_HIDDEN_INPUT_PREFIX='ACH_' -cAutocomplete.CS_INPUT_CLASSNAME='dropdown' -cAutocomplete.CB_AUTOINIT=true -cAutocomplete.CB_AUTOCOMPLETE=false -cAutocomplete.CB_FORCECORRECT=false -cAutocomplete.CB_MATCHSUBSTRING=false -cAutocomplete.CS_SEPARATOR=',' -cAutocomplete.CS_ARRAY_SEPARATOR=',' -cAutocomplete.CB_MATCHSTRINGBEGIN=true -cAutocomplete.CN_OFFSET_TOP=2 -cAutocomplete.CN_OFFSET_LEFT=-1 -cAutocomplete.CN_LINE_HEIGHT=19 -cAutocomplete.CN_NUMBER_OF_LINES=10 -cAutocomplete.CN_HEIGHT_FIX=2 -cAutocomplete.CN_CLEAR_TIMEOUT=300 -cAutocomplete.CN_SHOW_TIMEOUT=400 -cAutocomplete.CN_REMOTE_SHOW_TIMEOUT=1000 -cAutocomplete.CN_MARK_TIMEOUT=400 -cAutocomplete.hListDisplayed=null -cAutocomplete.nCount=0 -cAutocomplete.autoInit=function() -{var nI=0 -var hACE=null -var sLangAtt -var nInputsLength=document.getElementsByTagName('INPUT').length -for(nI=0;nI<nInputsLength;nI++) -{if(document.getElementsByTagName('INPUT')[nI].type.toLowerCase()=='text') -{sLangAtt=document.getElementsByTagName('INPUT')[nI].getAttribute('acdropdown') -if(sLangAtt!=null&&sLangAtt.length>0) -{if(document.getElementsByTagName('INPUT')[nI].id==null||document.getElementsByTagName('INPUT')[nI].id.length==0) -{document.getElementsByTagName('INPUT')[nI].id=cAutocomplete.CS_OBJ_NAME+cAutocomplete.nCount} -hACE=new cAutocomplete(document.getElementsByTagName('INPUT')[nI].id)}}} -var nTALength=document.getElementsByTagName('TEXTAREA').length -for(nI=0;nI<nTALength;nI++) -{sLangAtt=document.getElementsByTagName('TEXTAREA')[nI].getAttribute('acdropdown') -if(sLangAtt!=null&&sLangAtt.length>0) -{if(document.getElementsByTagName('TEXTAREA')[nI].id==null||document.getElementsByTagName('TEXTAREA')[nI].id.length==0) -{document.getElementsByTagName('TEXTAREA')[nI].id=cAutocomplete.CS_OBJ_NAME+cAutocomplete.nCount} -hACE=new cAutocomplete(document.getElementsByTagName('TEXTAREA')[nI].id)}} -var nSelectsLength=document.getElementsByTagName('SELECT').length -var aSelect=null -for(nI=0;nI<nSelectsLength;nI++) -{aSelect=document.getElementsByTagName('SELECT')[nI] -sLangAtt=aSelect.getAttribute('acdropdown') -if(sLangAtt!=null&&sLangAtt.length>0) -{if(aSelect.id==null||aSelect.id.length==0) -{aSelect.id=cAutocomplete.CS_OBJ_NAME+cAutocomplete.nCount} -hACE=new cAutocomplete(aSelect.id) -nSelectsLength-- -nI--}}} -if(cAutocomplete.CB_AUTOINIT) -{if(window.attachEvent) -{window.attachEvent('onload',cAutocomplete.autoInit)} -else if(window.addEventListener) -{window.addEventListener('load',cAutocomplete.autoInit,false)}} -cAutocomplete.prototype.init=function(sInputId) -{this.bDebug=false -this.sInputId=sInputId -this.sListId=cAutocomplete.CS_LIST_PREFIX+sInputId -this.sObjName=cAutocomplete.CS_OBJ_NAME+'_obj_'+(cAutocomplete.nCount++) -this.hObj=this.sObjName -this.hActiveSelection=null -this.nSelectedItemIdx=-1 -this.sLastActiveValue='' -this.sActiveValue='' -this.bListDisplayed=false -this.nItemsDisplayed=0 -this.bAssociative=true -this.sHiddenInputId=null -this.bHasButton=false -this.aData=null -this.aSearchData=new Array() -this.bSorted=false -this.nLastMatchLength=0 -this.bForceCorrect=cAutocomplete.CB_FORCECORRECT -var sForceCorrect=document.getElementById(this.sInputId).getAttribute('autocomplete_forcecorrect') -if(sForceCorrect!=null&&sForceCorrect.length>0) -{this.bForceCorrect=eval(sForceCorrect)} -this.bMatchBegin=cAutocomplete.CB_MATCHSTRINGBEGIN -var sMatchBegin=document.getElementById(this.sInputId).getAttribute('autocomplete_matchbegin') -if(sMatchBegin!=null&&sMatchBegin.length>0) -{this.bMatchBegin=eval(sMatchBegin)} -this.bMatchSubstring=cAutocomplete.CB_MATCHSUBSTRING -var sMatchSubstring=document.getElementById(this.sInputId).getAttribute('autocomplete_matchsubstring') -if(sMatchSubstring!=null&&sMatchSubstring.length>0) -{this.bMatchSubstring=eval(sMatchSubstring)} -this.bAutoComplete=cAutocomplete.CB_AUTOCOMPLETE -this.bAutocompleted=false -var sAutoComplete=document.getElementById(this.sInputId).getAttribute('autocomplete_complete') -if(sAutoComplete!=null&&sAutoComplete.length>0) -{this.bAutoComplete=eval(sAutoComplete)} -this.formatOptions=null -var sFormatFunction=document.getElementById(this.sInputId).getAttribute('autocomplete_format') -if(sFormatFunction!=null&&sFormatFunction.length>0) -{this.formatOptions=eval(sFormatFunction)} -this.onSelect=null -var sOnSelectFunction=document.getElementById(this.sInputId).getAttribute('autocomplete_onselect') -if(sOnSelectFunction!=null&&sOnSelectFunction.length>0) -{this.onSelect=eval(sOnSelectFunction)} -if(this.getListArrayType()=='url'||this.getListArrayType()=='xmlrpc') -{this.bAssociative=false -this.bRemoteList=true -this.sListURL=this.getListURL() -this.hXMLHttp=XmlHttp.create() -this.bXMLRPC=(this.getListArrayType()=='xmlrpc')} -else -{this.bRemoteList=false} -var sAssociative=document.getElementById(this.sInputId).getAttribute('autocomplete_assoc') -if(sAssociative!=null&&sAssociative.length>0) -{this.bAssociative=eval(sAssociative)} -this.initListArray() -this.initListContainer() -this.initInput() -eval(this.hObj+'= this')} -cAutocomplete.prototype.initInput=function() -{var hInput=document.getElementById(this.sInputId) -hInput.hAutocomplete=this -var hContainer=document.getElementById(this.sListId) -hContainer.hAutocomplete=this -var nWidth=hInput.offsetWidth -if(!nWidth||nWidth==0) -{var hOWInput=hInput.cloneNode(true) -hOWInput.style.position='absolute' -hOWInput.style.top='-1000px' -document.body.appendChild(hOWInput) -var nWidth=hOWInput.offsetWidth -document.body.removeChild(hOWInput)} -var sInputName=hInput.name -var hForm=hInput.form -var bHasButton=false -var sHiddenValue=hInput.value -var sValue=hInput.type.toLowerCase()=='text'?hInput.value:'' -var sHasButton=hInput.getAttribute('autocomplete_button') -if(sHasButton!=null&&sHasButton.length>0) -{bHasButton=true} -if(hInput.type.toLowerCase()=='select-one') -{bHasButton=true -if(hInput.selectedIndex>=0) -{sHiddenValue=hInput.options[hInput.selectedIndex].value -sValue=hInput.options[hInput.selectedIndex].text}} -if(hForm) -{var hHiddenInput=document.createElement('INPUT') -hHiddenInput.id=cAutocomplete.CS_HIDDEN_INPUT_PREFIX+this.sInputId -hHiddenInput.type='hidden' -hForm.appendChild(hHiddenInput) -if(this.bAssociative) -{hHiddenInput.name=sInputName -hInput.name=cAutocomplete.CS_INPUT_PREFIX+sInputName} -else -{hHiddenInput.name=cAutocomplete.CS_INPUT_PREFIX+sInputName} -hHiddenInput.value=sHiddenValue -this.sHiddenInputId=hHiddenInput.id} -if(bHasButton) -{this.bHasButton=true -var hInputContainer=document.createElement('DIV') -hInputContainer.className='acinputContainer' -hInputContainer.style.width=nWidth -var hInputButton=document.createElement('INPUT') -hInputButton.id=cAutocomplete.CS_BUTTON_PREFIX+this.sInputId -hInputButton.type='button' -hInputButton.className='button' -hInputButton.tabIndex=hInput.tabIndex+1 -hInputButton.hAutocomplete=this -var hNewInput=document.createElement('INPUT') -if(this.bAssociative) -{hNewInput.name=cAutocomplete.CS_INPUT_PREFIX+sInputName} -else -{hNewInput.name=sInputName} -hNewInput.type='text' -hNewInput.value=sValue -hNewInput.style.width=nWidth-22 -hNewInput.className=cAutocomplete.CS_INPUT_CLASSNAME -hNewInput.tabIndex=hInput.tabIndex -hNewInput.hAutocomplete=this -hInputContainer.appendChild(hNewInput) -hInputContainer.appendChild(hInputButton) -hInput.parentNode.replaceChild(hInputContainer,hInput) -hNewInput.id=this.sInputId -hInput=hNewInput} -if(hInput.attachEvent) -{hInput.attachEvent('onkeyup',cAutocomplete.onInputKeyUp) -hInput.attachEvent('onkeyup',cAutocomplete.saveCaretPosition) -hInput.attachEvent('onkeydown',cAutocomplete.onInputKeyDown) -hInput.attachEvent('onblur',cAutocomplete.onInputBlur) -hInput.attachEvent('onfocus',cAutocomplete.onInputFocus) -if(hInputButton) -{hInputButton.attachEvent('onclick',cAutocomplete.onButtonClick)}} -else if(hInput.addEventListener) -{hInput.addEventListener('keyup',cAutocomplete.onInputKeyUp,false) -hInput.addEventListener('keyup',cAutocomplete.saveCaretPosition,false) -hInput.addEventListener('keydown',cAutocomplete.onInputKeyDown,false) -hInput.addEventListener('keypress',cAutocomplete.onInputKeyPress,false) -hInput.addEventListener('blur',cAutocomplete.onInputBlur,false) -hInput.addEventListener('focus',cAutocomplete.onInputFocus,false) -if(hInputButton) -{hInputButton.addEventListener('click',cAutocomplete.onButtonClick,false)}} -hInput.setAttribute('autocomplete','OFF') -if(hForm) -{if(hForm.attachEvent) -{hForm.attachEvent('onsubmit',cAutocomplete.onFormSubmit) -if(this.bDebug){this.debug("attachEvent added")}} -else if(hForm.addEventListener) -{hForm.addEventListener('submit',cAutocomplete.onFormSubmit,false) -if(this.bDebug){this.debug("addEventListener")}}}} -cAutocomplete.prototype.initListContainer=function() -{var hInput=document.getElementById(this.sInputId) -var hContainer=document.createElement('DIV') -hContainer.className='autocomplete_holder' -hContainer.id=this.sListId -hContainer.style.zIndex=10000+cAutocomplete.nCount -hContainer.hAutocomplete=this -var hFirstBorder=document.createElement('DIV') -hFirstBorder.className='autocomplete_firstborder' -var hSecondBorder=document.createElement('DIV') -hSecondBorder.className='autocomplete_secondborder' -var hList=document.createElement('UL') -hList.className='autocomplete' -hSecondBorder.appendChild(hList) -hFirstBorder.appendChild(hSecondBorder) -hContainer.appendChild(hFirstBorder) -document.body.appendChild(hContainer) -if(hContainer.attachEvent) -{hContainer.attachEvent('onblur',cAutocomplete.onListBlur) -hContainer.attachEvent('onfocus',cAutocomplete.onListFocus)} -else if(hInput.addEventListener) -{hContainer.addEventListener('blur',cAutocomplete.onListBlur,false) -hContainer.addEventListener('focus',cAutocomplete.onListFocus,false)} -if(hContainer.attachEvent) -{hContainer.attachEvent('onclick',cAutocomplete.onItemClick)} -else if(hContainer.addEventListener) -{hContainer.addEventListener('click',cAutocomplete.onItemClick,false)}} -cAutocomplete.prototype.createList=function() -{var hInput=document.getElementById(this.sInputId) -var hContainer=document.getElementById(this.sListId) -var hList=hContainer.getElementsByTagName('UL')[0] -if(hList) -{hList=hList.parentNode.removeChild(hList) -while(hList.hasChildNodes()) -{hList.removeChild(hList.childNodes[0])}} -var hListItem=null -var hListItemLink=null -var hArrKey=null -var sArrEl=null -var hArr=this.aData -var nI=0 -var sRealText -for(hArrKey in hArr) -{sArrEl=hArr[hArrKey] -hListItem=document.createElement('LI') -hListItemLink=document.createElement('A') -hListItemLink.setAttribute('itemvalue',hArrKey) -var sArrData=sArrEl.split(cAutocomplete.CS_ARRAY_SEPARATOR) -if(sArrData.length>1) -{this.aData[hArrKey]=sArrData[0] -hListItemLink.setAttribute('itemdata',sArrEl.substring(sArrEl.indexOf(cAutocomplete.CS_ARRAY_SEPARATOR)+1)) -sRealText=sArrData[0]} -else -{sRealText=sArrEl} -hListItemLink.href='#' -hListItemLink.appendChild(document.createTextNode(sRealText)) -hListItemLink.realText=sRealText -if(nI==this.nSelectedItemIdx) -{this.hActiveSelection=hListItemLink -this.hActiveSelection.className='selected'} -hListItem.appendChild(hListItemLink) -hList.appendChild(hListItem) -this.aSearchData[nI++]=sRealText.toLowerCase()} -var hSecondBorder=hContainer.firstChild.firstChild -hSecondBorder.appendChild(hList) -this.bListUpdated=false} -cAutocomplete.prototype.initListArray=function() -{var hInput=document.getElementById(this.sInputId) -var hArr=null -if(hInput.type.toLowerCase()=='select-one') -{hArr=new Object() -for(var nI=0;nI<hInput.options.length;nI++) -{hArrKey=hInput.options.item(nI).value -sArrEl=hInput.options.item(nI).text -hArr[hArrKey]=sArrEl -if(hInput.options.item(nI).selected) -{this.nSelectedItemIdx=nI}}} -else -{var sAA=hInput.getAttribute('autocomplete_list') -var sAAS=hInput.getAttribute('autocomplete_list_sort') -var sArrayType=this.getListArrayType() -switch(sArrayType) -{case'array':hArr=eval(sAA.substring(6)) -break -case'list':hArr=new Array() -var hTmpArray=sAA.substring(5).split('|') -var aValueArr -for(hKey in hTmpArray) -{aValueArr=hTmpArray[hKey].split(cAutocomplete.CS_ARRAY_SEPARATOR) -if(aValueArr.length==1) -{hArr[hKey]=hTmpArray[hKey] -this.bAssociative=false} -else -{hArr[aValueArr[0]]=aValueArr[1]}} -break} -if(sAAS!=null&&eval(sAAS)) -{this.bSorted=true -this.aData=hArr.sort() -hArr=hArr.sort()}} -this.setArray(hArr)} -cAutocomplete.prototype.setArray=function(sArray) -{if(typeof sArray=='string') -{this.aData=eval(sArray)} -else -{this.aData=sArray} -this.bListUpdated=true} -cAutocomplete.prototype.setListArray=function(sArray) -{this.setArray(sArray) -this.updateAndShowList()} -cAutocomplete.prototype.getListArrayType=function() -{var hInput=document.getElementById(this.sInputId) -var sAA=hInput.getAttribute('autocomplete_list') -if(sAA!=null&&sAA.length>0) -{if(sAA.indexOf('array:')>=0) -{return'array'} -else if(sAA.indexOf('list:')>=0) -{return'list'} -else if(sAA.indexOf('url:')>=0) -{return'url'} -else if(sAA.indexOf('xmlrpc:')>=0) -{return'xmlrpc'}}} -cAutocomplete.prototype.getListURL=function() -{var hInput=document.getElementById(this.sInputId) -var sAA=hInput.getAttribute('autocomplete_list') -if(sAA!=null&&sAA.length>0) -{if(sAA.indexOf('url:')>=0) -{return sAA.substring(4)} -if(sAA.indexOf('xmlrpc:')>=0) -{return sAA.substring(7)}}} -cAutocomplete.prototype.setListURL=function(sURL) -{this.sListURL=sURL;} -cAutocomplete.prototype.onXmlHttpLoad=function() -{if(this.hXMLHttp.readyState==4) -{var hError=this.hXMLHttp.parseError -if(hError&&hError.errorCode!=0) -{alert(hError.reason)} -else -{this.afterRemoteLoad()}}} -cAutocomplete.prototype.onXMLRPCHttpLoad=function() -{if(this.hXMLHttp.readyState==4) -{var hError=this.hXMLHttp.parseError -if(hError&&hError.errorCode!=0) -{alert(hError.reason)} -else -{this.afterRemoteLoadXMLRPC()}}} -cAutocomplete.prototype.loadXMLRPCListArray=function() -{var sURL=this.sListURL -var xmlrpc_url=data_path+'/RPC2.php' -var aMethodArgs=sURL.split(' ') -var sMethodName=aMethodArgs[0] -var sStartWith=this.getStringForAutocompletion(this.sActiveValue,this.nInsertPoint) -sStartWith=sStartWith.replace(/^\s/,'') -sStartWith=sStartWith.replace(/\s$/,'') -if(sMethodName.indexOf('?')>0) -{sMethodName=sMethodName.replace('/^.+\?/','') -sURL=sURL.replace('/\?.+$/','')} -else -{sURL=xmlrpc_url} -if(sMethodName.length<1) -{var hInput=document.getElementById(this.sInputId) -hInput.value=this.sActiveValue -return} -var sRequest='<?xml version=\'1.0\' encoding="utf-8" ?>\n' -sRequest+='<methodCall><methodName>'+sMethodName+'</methodName>\n' -if(aMethodArgs.length<=1) -{sRequest+='<params/>\n'} -else -{sRequest+='<params>\n' -for(var nI=1;nI<aMethodArgs.length;nI++) -{var sArg=aMethodArgs[nI];if(sArg.indexOf('[S]')>=0) -{sArg=sArg.replace('[S]',sStartWith)} -sRequest+='<param><value><string>' -sRequest+=sArg -sRequest+='</string></value></param>\n'} -sRequest+='</params>\n'} -sRequest+='</methodCall>' -if(this.bDebug){this.debug('url: "'+sURL+'" sRequest: "'+sRequest.substring(20)+'"')} -this.hXMLHttp.open('POST',sURL,true) -var hAC=this -this.hXMLHttp.onreadystatechange=function(){hAC.onXMLRPCHttpLoad()} -this.hXMLHttp.send(sRequest)} -cAutocomplete.prototype.loadListArray=function() -{var sURL=this.sListURL -var sStartWith=this.getStringForAutocompletion(this.sActiveValue,this.nInsertPoint) -sStartWith=sStartWith.replace(/^\s/,'') -sStartWith=sStartWith.replace(/\s$/,'') -if(sURL.indexOf('[S]')>=0) -{sURL=sURL.replace('[S]',sStartWith)} -else -{sURL+=this.sActiveValue} -this.hXMLHttp.open('GET',sURL,true) -var hAC=this -this.hXMLHttp.onreadystatechange=function(){hAC.onXmlHttpLoad()} -this.hXMLHttp.send(null)} -cAutocomplete.prototype.afterRemoteLoad=function() -{var hInput=document.getElementById(this.sInputId) -var hArr=new Array() -var hTmpArray=this.hXMLHttp.responseText.split('|') -var aValueArr -for(hKey in hTmpArray) -{aValueArr=hTmpArray[hKey].split(cAutocomplete.CS_ARRAY_SEPARATOR) -if(aValueArr.length==1) -{hArr[hKey]=hTmpArray[hKey]} -else -{hArr[aValueArr[0]]=hTmpArray[hKey].substr(hTmpArray[hKey].indexOf(cAutocomplete.CS_ARRAY_SEPARATOR)+1)}} -hInput.className='' -hInput.readonly=false -hInput.value=this.sActiveValue -this.setListArray(hArr)} -cAutocomplete.prototype.afterRemoteLoadXMLRPC=function() -{var hInput=document.getElementById(this.sInputId) -var hArr=new Array() -sResult=this.hXMLHttp.responseText -if(this.bDebug){this.debug("respons... [truncated message content] |
From: <var...@us...> - 2015-02-27 17:54:45
|
Revision: 9574 http://sourceforge.net/p/phpwiki/code/9574 Author: vargenau Date: 2015-02-27 17:54:34 +0000 (Fri, 27 Feb 2015) Log Message: ----------- Remove CVS backend Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php trunk/lib/IniConfig.php trunk/lib/TextSearchQuery.php trunk/lib/WikiDB.php trunk/lib/WikiTheme.php trunk/lib/WikiUser/Db.php trunk/lib/interwiki.map trunk/lib/plugin/PageDump.php trunk/lib/plugin/SystemInfo.php trunk/lib/stdlib.php trunk/locale/Makefile trunk/locale/README.de.txt trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/fr/pgsrc/Aide%2FPluginRessourcesRss 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/pgsrc/Help%2FPageDumpPlugin trunk/pgsrc/ReleaseNotes trunk/themes/Sidebar/themeinfo.php trunk/themes/fusionforge/interwiki.map trunk/themes/fusionforge/wikilens.js trunk/themes/wikilens/wikilens.js Removed Paths: ------------- trunk/lib/WikiDB/backend/cvs.php trunk/lib/WikiDB/cvs.php trunk/tests/unit_test_backend_cvs.php Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/config/config-dist.ini 2015-02-27 17:54:34 UTC (rev 9574) @@ -400,7 +400,6 @@ ; dba: use one of the standard UNIX dbm libraries. Use BerkeleyDB (db3,4) (fastest) ; file: use a serialized file database. (easiest) ; flatfile: use a flat file database. (experimental, readable, slow) -; cvs: use a CVS server to store everything. (experimental, slowest, not recommended) DATABASE_TYPE = dba ; Prefix for filenames or table names Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/configurator.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -638,14 +638,12 @@ 'SQL' => "SQL PEAR", 'ADODB' => "SQL ADODB", 'PDO' => "PDO (php5 only)", - 'file' => "flatfile", - 'cvs' => "CVS File handler")/*, " + 'file' => "flatfile")/*, " Select the database backend type: Choose dba (default) to use one of the standard UNIX dba libraries. This is the fastest. Choose ADODB or SQL to use an SQL database with ADODB or PEAR. Choose PDO on php5 to use an SQL database. (experimental, no paging yet) flatfile is simple and slow. -CVS is highly experimental and slow. Recommended is dba or SQL: PEAR or ADODB."*/); $properties["SQL DSN Setup"] = Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/IniConfig.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -318,7 +318,7 @@ unset($rsdef[$item]); } } - $valid_database_types = array('SQL', 'ADODB', 'PDO', 'dba', 'file', 'flatfile', 'cvs', 'cvsclient'); + $valid_database_types = array('SQL', 'ADODB', 'PDO', 'dba', 'file', 'flatfile'); if (!in_array(DATABASE_TYPE, $valid_database_types)) trigger_error(sprintf("Invalid DATABASE_TYPE=%s. Choose one of %s", DATABASE_TYPE, join(",", $valid_database_types)), Modified: trunk/lib/TextSearchQuery.php =================================================================== --- trunk/lib/TextSearchQuery.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/TextSearchQuery.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -403,7 +403,6 @@ * Check the symbolic definition query against unwanted functions and characters. * "population < 20000 and area > 1000000" vs * "area > 1000000 and mail($me,file("/etc/passwd"),...)" - * http://localhost/wikicvs/SemanticSearch?attribute=*&attr_op=<0 and find(1)>&s=-0.01&start_debug=1 */ function check_query($query) { Deleted: trunk/lib/WikiDB/backend/cvs.php =================================================================== --- trunk/lib/WikiDB/backend/cvs.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/WikiDB/backend/cvs.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -1,1031 +0,0 @@ -<?php - -/** - * Backend for handling CVS repository. - * - * ASSUMES: that the shell commands 'cvs', 'grep', 'rm', are all located - * ASSUMES: in the path of the server calling this script. - * - * Author: Gerrit Riessen, ger...@op... - */ - -require_once 'lib/WikiDB/backend.php'; -require_once 'lib/ErrorManager.php'; - -/** - * Constants used by the CVS backend - **/ -// these are the parameters defined in db_params -define('CVS_DOC_DIR', 'doc_dir'); -define('CVS_REPOSITORY', 'repository'); -define('CVS_CHECK_FOR_REPOSITORY', 'check_for_repository'); -define('CVS_DEBUG_FILE', 'debug_file'); -define('CVS_PAGE_SOURCE', 'pgsrc'); -define('CVS_MODULE_NAME', 'module_name'); - -// these are the things that are defined in the page hash -// CMD == Cvs Meta Data -define('CMD_LAST_MODIFIED', 'lastmodified'); -define('CMD_CONTENT', '%content'); -define('CMD_CREATED', 'created'); -define('CMD_VERSION', 'version'); -define('CMD_AUTHOR', 'author'); -define('CMD_LINK_ATT', '_links_'); - -// file names used to store specific information -define('CVS_MP_FILE', '.most_popular'); -define('CVS_MR_FILE', '.most_recent'); - -class WikiDB_backend_cvs - extends WikiDB_backend -{ - public $_docDir; - public $_repository; - public $_module_name; - public $_debug_file; - - /** - * In the following parameters should be defined in dbparam: - * . wiki ==> directory where the pages should be stored - * this is not the CVS repository location - * . repository ==> local directory where the repository should be - * created. This can also be a :pserver: but then - * set check_for_repository to false and checkout - * the documents beforehand. (This is basically CVSROOT) - * . check_for_repository ==> boolean flag to indicate whether the - * repository should be created, this only - * applies to local directories, for pserver - * set this to false and check out the - * document base beforehand - * . debug_file ==> file name where debug information should be sent. - * If file doesn't exist then it's created, if this - * is empty, then debugging is turned off. - * . pgsrc ==> directory name where the default wiki pages are stored. - * This is only required if the backend is to create a - * new CVS repository. - * - * The class also adds a parameter 'module_name' to indicate the name - * of the cvs module that is being used to version the documents. The - * module_name is assumed to be the base name of directory given in - * wiki, e.g. if wiki == '/some/path/to/documents' then module_name - * becomes 'documents' and this module will be created in the CVS - * repository or assumed to exist. If on the other hand the parameter - * already exists, then it is not overwritten. - */ - function __construct($dbparam) - { - // setup all the instance values. - $this->_docDir = $dbparam{CVS_DOC_DIR}; - $this->_repository = $dbparam{CVS_REPOSITORY}; - if (!$dbparam{CVS_MODULE_NAME}) { - $this->_module_name = basename($this->_docDir); - $dbparam{CVS_MODULE_NAME} = $this->_module_name; - } else { - $this->_module_name = $dbparam{CVS_MODULE_NAME}; - } - $this->_debug_file = $dbparam{CVS_DEBUG_FILE}; - - if ($dbparam{CVS_CHECK_FOR_REPOSITORY} - && !(is_dir($this->_repository) - && is_dir($this->_repository . "/CVSROOT") - && is_dir($this->_repository . "/" . $this->_module_name)) - ) { - - $this->_cvsDebug(sprintf("Creating new repository [%s]", $this->_repository)); - - // doesn't exist, need to create it and the replace the wiki - // document directory. - $this->_mkdir($this->_repository, 0775); - - // assume that the repository is a local directory, prefix :local: - if (!ereg("^:local:", $this->_repository)) { - $this->_repository = ":local:" . $this->_repository; - } - - $cmdLine = sprintf("cvs -d \"%s\" init", $this->_repository); - $this->_execCommand($cmdLine, $cmdOutput, true); - - $this->_mkdir($this->_docDir, 0775); - $cmdLine = sprintf("cd %s; cvs -d \"%s\" import -m no_message " - . "%s V R", $this->_docDir, $this->_repository, - $this->_module_name); - $this->_execCommand($cmdLine, $cmdOutput, true); - - // remove the wiki directory and check it out from the - // CVS repository - $cmdLine = sprintf("rm -fr %s; cd %s; cvs -d \"%s\" co %s", - $this->_docDir, dirname($this->_docDir), - $this->_repository, $this->_module_name); - $this->_execCommand($cmdLine, $cmdOutput, true); - - // add the default pages using the update_pagedata - $metaData = array(); - $metaData[$AUTHOR] = "PhpWiki -- CVS Backend"; - - if (is_dir($dbparam[CVS_PAGE_SOURCE])) { - $d = opendir($dbparam[CVS_PAGE_SOURCE]); - while ($entry = readdir($d)) { - $filename = $dbparam[CVS_PAGE_SOURCE] . "/" . $entry; - $this->_cvsDebug(sprintf("Found [%s] in [%s]", $entry, $dbparam[CVS_PAGE_SOURCE])); - - if (is_file($filename)) { - $metaData[CMD_CONTENT] = join('', file($filename)); - $this->update_pagedata($entry, $metaData); - } - } - closedir($d); - } - - // ensure that the results of the is_dir are cleared - clearstatcache(); - } - } - - /** - * Return: metadata about page - */ - function get_pagedata($pagename) - { - // the metadata information about a page is stored in the - // CVS directory of the document root in serialized form. The - // file always has the name, i.e. '_$pagename'. - $metaFile = $this->_docDir . "/CVS/_" . $pagename; - - if (file_exists($metaFile)) { - - $megaHash = - unserialize(join('', $this->_readFileWithPath($metaFile))); - - $filename = $this->_docDir . "/" . $pagename; - if (file_exists($filename)) { - $megaHash[CMD_CONTENT] = $this->_readFileWithPath($filename); - } else { - $megaHash[CMD_CONTENT] = ""; - } - - $this->_updateMostRecent($pagename); - $this->_updateMostPopular($pagename); - - return $megaHash; - } else { - return false; - } - } - - /** - * This will create a new page if page being requested does not - * exist. - */ - function update_pagedata($pagename, $newdata = array()) - { - // check argument - if (!is_array($newdata)) { - trigger_error("update_pagedata: Argument 'newdata' was not array", - E_USER_WARNING); - } - - // retrieve the meta data - $metaData = $this->get_pagedata($pagename); - - if (!$metaData) { - $this->_cvsDebug("update_pagedata: no meta data found"); - // this means that the page does not exist, we need to create - // it. - $metaData = array(); - - $metaData[CMD_CREATED] = time(); - $metaData[CMD_VERSION] = "1"; - - if (!isset($newdata[CMD_CONTENT])) { - $metaData[CMD_CONTENT] = ""; - } else { - $metaData[CMD_CONTENT] = $newdata[CMD_CONTENT]; - } - - // create an empty page ... - $this->_writePage($pagename, $metaData[CMD_CONTENT]); - $this->_addPage($pagename); - - // make sure that the page is written and committed a second time - unset($newdata[CMD_CONTENT]); - unset($metaData[CMD_CONTENT]); - } - - // change any meta data information - foreach ($newdata as $key => $value) { - if ($value == false || empty($value)) { - unset($metaData[$key]); - } else { - $metaData[$key] = $value; - } - } - - // update the page data, if required. Use newdata because it could - // be empty and thus unset($metaData[CMD_CONTENT]). - if (isset($newdata[CMD_CONTENT])) { - $this->_writePage($pagename, $newdata[CMD_CONTENT]); - } - - // remove any content from the meta data before storing it - unset($metaData[CMD_CONTENT]); - $metaData[CMD_LAST_MODIFIED] = time(); - - $metaData[CMD_VERSION] = $this->_commitPage($pagename, $metaData); - $this->_writeMetaInfo($pagename, $metaData); - } - - function get_latest_version($pagename) - { - $metaData = $this->get_pagedata($pagename); - if ($metaData) { - // the version number is everything after the '1.' - return $metaData[CMD_VERSION]; - } else { - $this->_cvsDebug(sprintf("get_latest_versioned FAILED for [%s]", $pagename)); - return 0; - } - } - - function get_previous_version($pagename, $version) - { - // cvs increments the version numbers, so this is real easy ;-) - return ($version > 0 ? $version - 1 : 0); - } - - /** - * the version parameter is assumed to be everything after the '1.' - * in the CVS versioning system. - */ - function get_versiondata($pagename, $version, $want_content = false) - { - $this->_cvsDebug("get_versiondata: [$pagename] [$version] [$want_content]"); - - $filedata = ""; - if ($want_content) { - // retrieve the version from the repository - $cmdLine = sprintf("cvs -d \"%s\" co -p -r 1.%d %s/%s 2>&1", - $this->_repository, $version, - $this->_module_name, $pagename); - $this->_execCommand($cmdLine, $filedata, true); - - // TODO: DEBUG: 5 is a magic number here, depending on the - // TODO: DEBUG: version of cvs used here, 5 might have to - // TODO: DEBUG: change. Basically find a more reliable way of - // TODO: DEBUG: doing this. - // the first 5 lines contain various bits of - // administrative information that can be ignored. - for ($i = 0; $i < 5; $i++) { - array_shift($filedata); - } - } - - /** - * Now obtain the rest of the pagehash information, this is contained - * in the log message for the revision in serialized form. - */ - $cmdLine = sprintf("cd %s; cvs log -r1.%d %s", $this->_docDir, - $version, $pagename); - $this->_execCommand($cmdLine, $logdata, true); - - // shift log data until we get to the 'revision X.X' line - // FIXME: ensure that we don't enter an endless loop here - while (!ereg("^revision 1.([0-9]+)$", $logdata[0], $revInfo)) { - array_shift($logdata); - } - - // serialized hash information now stored in position 2 - $rVal = unserialize(_unescape($logdata[2])); - - // version information is incorrect - $rVal[CMD_VERSION] = $revInfo[1]; - $rVal[CMD_CONTENT] = $filedata; - - foreach ($rVal as $key => $value) { - $this->_cvsDebug("$key == [$value]"); - } - - return $rVal; - } - - /** - * See ADODB for a better delete_page(), which can be undone and is seen in RecentChanges. - * See backend.php - */ - //function delete_page($pagename) { $this->purge_page($pagename); } - - /** - * This returns false if page was not deleted or could not be deleted - * else return true. - */ - function purge_page($pagename) - { - $this->_cvsDebug("delete_page [$pagename]"); - $filename = $this->_docDir . "/" . $pagename; - $metaFile = $this->_docDir . "/CVS/_" . $pagename; - - // obtain a write block before deleting the file - if ($this->_deleteFile($filename) == false) { - return false; - } - - $this->_deleteFile($metaFile); - - $this->_removePage($pagename); - - return true; - } - - /** - * For now delete and create a new one. - * - * This returns false if page was not renamed, - * else return true. - */ - function rename_page($pagename, $to) - { - $this->_cvsDebug("rename_page [$pagename,$to]"); - $data = get_pagedata($pagename); - if (isset($data['pagename'])) - $data['pagename'] = $to; - //$version = $this->get_latest_version($pagename); - //$vdata = get_versiondata($pagename, $version, 1); - //$data[CMD_CONTENT] = $vdata[CMD_CONTENT]; - $this->delete_page($pagename); - $this->update_pagedata($to, $data); - return true; - } - - function delete_versiondata($pagename, $version) - { - // TODO: Not Implemented. - // TODO: This is, for CVS, difficult because it implies removing a - // TODO: revision somewhere in the middle of a revision tree, and - // TODO: this is basically not possible! - trigger_error("delete_versiondata: Not Implemented", E_USER_WARNING); - } - - function set_versiondata($pagename, $version, $data) - { - // TODO: Not Implemented. - // TODO: requires changing the log(commit) message for a particular - // TODO: version and this can't be done??? (You can edit the repository - // TODO: file directly but i don't know of a way of doing it via - // TODO: the cvs tools). - trigger_error("set_versiondata: Not Implemented", E_USER_WARNING); - } - - function update_versiondata($pagename, $version, $newdata) - { - // TODO: same problem as set_versiondata - trigger_error("set_versiondata: Not Implemented", E_USER_WARNING); - } - - function set_links($pagename, $links) - { - // TODO: needs to be tested .... - $megaHash = get_pagedata($pagename); - $megaHash[CMD_LINK_ATT] = $links; - $this->_writeMetaInfo($pagename, $megaHash); - } - - function get_links($pagename, $reversed = true, $include_empty = false, - $sortby = '', $limit = '', $exclude = '') - { - // TODO: ignores the $reversed argument and returns - // TODO: the value of _links_ attribute of the meta information - // TODO: to implement a reversed version, i guess, we going to - // TODO: need to do a grep on all files for the pagename in - // TODO: in question and return all those page names that contained - // TODO: the required pagename! - $megaHash = get_pagedata($pagename); - return $megaHash[CMD_LINK_ATT]; - } - - /* function get_all_revisions($pagename) { - // TODO: should replace this with something more efficient - include_once 'lib/WikiDB/backend/dumb/AllRevisionsIter.php'; - return new WikiDB_backend_dumb_AllRevisionsIter($this, $pagename); - } */ - - public function get_all_pages($include_empty = false, - $sortby = '', $limit = '', $exclude = '') - { - // FIXME: this ignores the parameters. - return new Cvs_Backend_Array_Iterator( - $this->_getAllFileNamesInDir($this->_docDir)); - } - - public function text_search($search, $fulltext = false, - $sortby = '', $limit = '', $exclude = '') - { - if ($fulltext) { - $iter = new Cvs_Backend_Full_Search_Iterator( - $this->_getAllFileNamesInDir($this->_docDir), - $search, - $this->_docDir); - $iter->stoplisted =& $search->stoplisted; - return $iter; - } else { - return new Cvs_Backend_Title_Search_Iterator( - $this->_getAllFileNamesInDir($this->_docDir), - $search); - } - } - - public function most_popular($limit = 20, $sortby = '') - { - // TODO: needs to be tested ... - $mp = $this->_getMostPopular(); - if ($limit < 0) { - asort($mp, SORT_NUMERIC); - $limit = -$limit; - } else { - arsort($mp, SORT_NUMERIC); - } - $returnVal = array(); - - while ((list($key, $val) = each($a)) && $limit > 0) { - $returnVal[] = $key; - $limit--; - } - return $returnVal; - } - - /** - * This only accepts the 'since' and 'limit' attributes, everything - * else is ignored. - */ - public function most_recent($params) - { - // TODO: needs to be tested ... - // most recent are those pages with the highest time value ... - $mr = $this->_getMostRecent(); - $rev = false; - $returnVal = array(); - if (isset($params['limit'])) { - $limit = $params['limit']; - $rev = $limit < 0; - } - if ($rev) { - arsort($mr, SORT_NUMERIC); - } else { - asort($mr, SORT_NUMERIC); - } - if (isset($limit)) { - while ((list($key, $val) = each($a)) && $limit > 0) { - $returnVal[] = $key; - $limit--; - } - } elseif (isset($params['since'])) { - while ((list($key, $val) = each($a))) { - - if ($val > $params['since']) { - $returnVal[] = $key; - } - } - } - - return new Cvs_Backend_Array_Iterator($returnVal); - } - - function lock($tables = array(), $write_lock = true) - { - // TODO: to be implemented - trigger_error("lock: Not Implemented", E_USER_WARNING); - } - - function unlock($tables = array(), $force = false) - { - // TODO: to be implemented - trigger_error("unlock: Not Implemented", E_USER_WARNING); - } - - function close() - { - } - - function sync() - { - } - - function optimize() - { - return true; - } - - /** - * What we do here is take a listing of the documents directory and - * check that each page has metadata file. If not, then a metadata - * file is created for the page. - * - * This can happen if rebuild() was called and someone has added - * files to the CVS repository not via PhpWiki. These files are - * added to the document directory but without any metadata files. - */ - function check() - { - // TODO: - // TODO: test this .... i.e. add test to unit test file. - // TODO: - $page_names = $this->_getAllFileNamesInDir($this->_docDir); - $meta_names = $this->_getAllFileNamesInDir($this->_docDir . "/CVS"); - - array_walk($meta_names, '_strip_leading_underscore'); - reset($meta_names); - $no_meta_files = array_diff($page_names, $meta_names); - - array_walk($no_meta_files, '_create_meta_file', $this); - - return true; - } - - /** - * Do an update of the CVS repository - */ - function rebuild() - { - // TODO: - // TODO: test this .... i.e. add test to unit test file. - // TODO: - $cmdLine = sprintf("cd %s; cvs update -d 2>&1", $this->_docDir); - $this->_execCommand($cmdLine, $cmdOutput, true); - return true; - } - - // - // ..-.-..-.-..-.-.. .--..-......-.--. --.-....----..... - // The rest are all internal methods, not to be used - // directly. - // ..-.-..-.-..-.-.. .--..-......-.--. --.-....----..... - // - function _create_meta_file($page_name, $key, &$backend) - { - // this is used as part of an array walk and therefore takes - // the backend argument - $backend->_cvsDebug(sprintf("Creating meta file for [%s]", $page_name)); - $backend->update_pagedata($page_name, array()); - } - - function _strip_leading_underscore(&$item) - { - $item = ereg_replace("^_", "", $item); - } - - /** - * update the most popular information by incrementing the count - * for the following page. If the page was not defined, it is entered - * with a value of 1. - */ - function _updateMostPopular($pagename) - { - $mp = $this->_getMostPopular(); - if (isset($mp[$pagename])) { - $mp[$pagename]++; - } else { - $mp[$pagename] = 1; - } - $this->_writeFileWithPath($this->_docDir . "/CVS/" . CVS_MP_FILE, - serialize($mp)); - } - - /** - * Returns an array containing the most popular information. This - * creates the most popular file if it does not exist. - */ - function _getMostPopular() - { - $mostPopular = $this->_docDir . "/CVS/" . CVS_MP_FILE; - if (!file_exists($mostPopular)) { - $this->_writeFileWithPath($mostPopular, serialize(array())); - } - return unserialize(join('', $this->_readFileWithPath($mostPopular))); - } - - function _getMostRecent() - { - $mostRecent = $this->_docDir . "/CVS/" . CVS_MR_FILE; - if (!file_exists($mostRecent)) { - $this->_writeFileWithPath($mostRecent, serialize(array())); - } - return unserialize(join('', $this->_readFileWithPath($mostRecent))); - } - - function _updateMostRecent($pagename) - { - $mr = $this->_getMostRecent(); - $mr[$pagename] = time(); - $this->_writeFileWithPath($this->_docDir . "/CVS/" . CVS_MR_FILE, - serialize($mr)); - } - - function _writeMetaInfo($pagename, $hashInfo) - { - $this->_writeFileWithPath($this->_docDir . "/CVS/_" . $pagename, - serialize($hashInfo)); - } - - function _writePage($pagename, $content) - { - $this->_writeFileWithPath($this->_docDir . "/" . $pagename, $content); - } - - function _removePage($pagename) - { - $cmdLine = sprintf("cd %s; cvs remove %s 2>&1; cvs commit -m '%s' " - . "%s 2>&1", $this->_docDir, $pagename, - "remove page", $pagename); - - $this->_execCommand($cmdLine, $cmdRemoveOutput, true); - } - - /** - * this returns the new version number of the file. - */ - function _commitPage($pagename, &$meta_data) - { - $cmdLine = sprintf("cd %s; cvs commit -m \"%s\" %s 2>&1", - $this->_docDir, - escapeshellcmd(serialize($meta_data)), - $pagename); - $this->_execCommand($cmdLine, $cmdOutput, true); - - $cmdOutput = implode("\n", $cmdOutput); - $revInfo = array(); - ereg("\nnew revision: 1[.]([0-9]+); previous revision: ", $cmdOutput, - $revInfo); - - $this->_cvsDebug("CP: revInfo 0: $revInfo[0]"); - $this->_cvsDebug("CP: $cmdOutput"); - if (isset($revInfo[1])) { - $this->_cvsDebug("CP: got revision information"); - return $revInfo[1]; - } else { - ereg("\ninitial revision: 1[.]([0-9]+)", $cmdOutput, $revInfo); - if (isset($revInfo[1])) { - $this->_cvsDebug("CP: is initial release"); - return 1; - } - $this->_cvsDebug("CP: returning old version"); - return $meta_data[CMD_VERSION]; - } - } - - function _addPage($pagename) - { - // TODO: need to add a check for the mimetype so that binary - // TODO: files are added as binary files - $cmdLine = sprintf("cd %s; cvs add %s 2>&1", $this->_docDir, - $pagename); - $this->_execCommand($cmdLine, $cmdAddOutput, true); - } - - /** - * Returns an array containing all the names of files contained - * in a particular directory. The list is sorted according the - * string representation of the filenames. - */ - function _getAllFileNamesInDir($dirName) - { - $namelist = array(); - $d = opendir($dirName); - while ($entry = readdir($d)) { - $namelist[] = $entry; - } - closedir($d); - sort($namelist, SORT_STRING); - return $namelist; - } - - /** - * Recursively create all directories. - */ - function _mkdir($path, $mode) - { - $directoryName = dirname($path); - if ($directoryName != "/" && $directoryName != "\\" - && !is_dir($directoryName) && $directoryName != "" - ) { - $rVal = $this->_mkdir($directoryName, $mode); - } else { - $rVal = true; - } - - return ($rVal && @mkdir($path, $mode)); - } - - /** - * Recursively create all directories and then the file. - */ - function _createFile($path, $mode) - { - $this->_mkdir(dirname($path), $mode); - touch($path); - chmod($path, $mode); - } - - /** - * The lord giveth, and the lord taketh. - */ - function _deleteFile($filename) - { - if ($fd = fopen($filename, 'a')) { - - $locked = flock($fd, 2); // Exclusive blocking lock - - if (!$locked) { - $this->_cvsError("Unable to delete file, lock was not obtained.", - __LINE__, $filename, EM_NOTICE_ERRORS); - } - - if (($rVal = unlink($filename)) != 0) { - $this->_cvsDebug("[$filename] --> Unlink returned [$rVal]"); - } - - return $rVal; - } else { - $this->_cvsError("deleteFile: Unable to open file", - __LINE__, $filename, EM_NOTICE_ERRORS); - return false; - } - } - - /** - * Called when something happened that causes the CVS backend to - * fail. - */ - function _cvsError($msg = "no message", - $errline = 0, - $errfile = "lib/WikiDB/backend/cvs.php", - $errno = EM_FATAL_ERRORS) - { - $err = new PhpError($errno, "[CVS(be)]: " . $msg, $errfile, $errline); - // send error to the debug routine - $this->_cvsDebug($err->asXML()); - // send the error to the error manager - $GLOBALS['ErrorManager']->handleError($err); - } - - /** - * Debug function specifically for the CVS database functions. - * Can be deactived by setting the WikiDB['debug_file'] to "" - */ - function _cvsDebug($msg) - { - if ($this->_debug_file == "") { - return; - } - - if (!file_exists($this->_debug_file)) { - $this->_createFile($this->_debug_file, 0755); - } - - if ($fdlock = @fopen($this->_debug_file, 'a')) { - $locked = flock($fdlock, 2); - if (!$locked) { - fclose($fdlock); - return; - } - - $fdappend = @fopen($this->_debug_file, 'a'); - fwrite($fdappend, ($msg . "\n")); - fclose($fdappend); - fclose($fdlock); - } else { - // TODO: this should be replaced ... - printf("unable to locate/open [%s], turning debug off\n", $filename); - $this->_debug_file = ""; - } - } - - /** - * Execute a command and potentially exit if the flag exitOnNonZero is - * set to true and the return value was nonZero - */ - function _execCommand($cmdLine, &$cmdOutput, $exitOnNonZero) - { - $this->_cvsDebug(sprintf("Preparing to execute [%s]", $cmdLine)); - exec($cmdLine, $cmdOutput, $cmdReturnVal); - if ($exitOnNonZero && ($cmdReturnVal != 0)) { - $this->_cvsDebug(sprintf("Command failed [%s], Output: ", $cmdLine) . "[" . - join("\n", $cmdOutput) . "]"); - $this->_cvsError(sprintf("Command failed [%s], Return value: %s", $cmdLine, $cmdReturnVal), - __LINE__); - } - $this->_cvsDebug("Done execution [" . join("\n", $cmdOutput) . "]"); - - return $cmdReturnVal; - } - - /** - * Read locks a file, reads it, and returns it contents - */ - function _readFileWithPath($filename) - { - if ($fd = @fopen($filename, "r")) { - $locked = flock($fd, 1); // read lock - if (!$locked) { - fclose($fd); - $this->_cvsError("Unable to obtain read lock.", __LINE__); - } - - $content = file($filename); - fclose($fd); - return $content; - } else { - $this->_cvsError(sprintf("Unable to open file '%s' for reading", $filename), - __LINE__); - return false; - } - } - - /** - * Either replace the contents of an existing file or create a - * new file in the particular store using the page name as the - * file name. - * - * Nothing is returned, might be useful to return something ;-) - */ - function _writeFileWithPath($filename, $contents) - { - // TODO: $contents should probably be a reference parameter ... - if ($fd = fopen($filename, 'a')) { - $locked = flock($fd, 2); // Exclusive blocking lock - if (!$locked) { - $this->_cvsError("Timeout while obtaining lock.", __LINE__); - } - - // Second filehandle -- we use this to write the contents - $fdsafe = fopen($filename, 'w'); - fwrite($fdsafe, $contents); - fclose($fdsafe); - fclose($fd); - } else { - $this->_cvsError(sprintf("Could not open file '%s' for writing", $filename), - __LINE__); - } - } - - /** - * Copy the contents of the source directory to the destination directory. - */ - function _copyFilesFromDirectory($src, $dest) - { - $this->_cvsDebug(sprintf("Copying from [%s] to [%s]", $src, $dest)); - - if (is_dir($src) && is_dir($dest)) { - $this->_cvsDebug("Copying "); - $d = opendir($src); - while ($entry = readdir($d)) { - if (is_file($src . "/" . $entry) - && copy($src . "/" . $entry, $dest . "/" . $entry) - ) { - $this->_cvsDebug(sprintf("Copied to [%s]", "$dest/$entry")); - } else { - $this->_cvsDebug(sprintf("Failed to copy [%s]", "$src/$entry")); - } - } - closedir($d); - return true; - } else { - $this->_cvsDebug("Not copying"); - return false; - } - } - - /** - * Unescape a string value. Normally this comes from doing an - * escapeshellcmd. This converts the following: - * \{ --> { - * \} --> } - * \; --> ; - * \" --> " - */ - function _unescape($val) - { - $val = str_replace("\\{", "{", $val); - $val = str_replace("\\}", "}", $val); - $val = str_replace("\\;", ";", $val); - $val = str_replace("\\\"", "\"", $val); - - return $val; - } - - /** - * Function for removing the newlines from the ends of the - * file data returned from file(..). This is used in retrievePage - */ - function _strip_newlines(&$item, $key) - { - $item = ereg_replace("\n$", "", $item); - } - -} /* End of WikiDB_backend_cvs class */ - -/** - * Generic iterator for stepping through an array of values. - */ -class Cvs_Backend_Array_Iterator - extends WikiDB_backend_iterator -{ - public $_array; - - function Cvs_Backend_Iterator($arrayValue = Array()) - { - $this->_array = $arrayValue; - } - - function next() - { - while (($rVal = array_pop($this->_array)) != NULL) { - return $rVal; - } - return false; - } - - function count() - { - return count($this->_array); - } - - function free() - { - unset($this->_array); - } -} - -class Cvs_Backend_Full_Search_Iterator - extends Cvs_Backend_Array_Iterator -{ - public $_searchString = ''; - public $_docDir = ""; - - function __construct($arrayValue = array(), - $searchString = "", - $documentDir = ".") - { - $this->Cvs_Backend_Array_Iterator($arrayValue); - $this->_searchString = $searchString; - $this->_docDir = $documentDir; - } - - function next() - { - do { - $pageName = Cvs_Backend_Array_Iterator::next(); - } while (!$this->_searchFile($this->_searchString, - $this->_docDir . "/" . $pageName)); - - return $pageName; - } - - /** - * Does nothing more than a grep and search the entire contents - * of the given file. Returns TRUE of the searchstring was found, - * false if the search string wasn't find or the file was a directory - * or could not be read. - */ - function _searchFile($searchString, $fileName) - { - // TODO: using grep here, it might make more sense to use - // TODO: some sort of inbuilt/language specific method for - // TODO: searching files. - $cmdLine = sprintf("grep -E -i '%s' %s > /dev/null 2>&1", - $searchString, $fileName); - - return (WikiDB_backend_cvs::_execCommand($cmdLine, $cmdOutput, - false) == 0); - } -} - -/** - * Iterator used for doing a title search. - */ -class Cvs_Backend_Title_Search_Iterator - extends Cvs_Backend_Array_Iterator -{ - public $_searchString = ''; - - function __construct($arrayValue = array(), - $searchString = "") - { - parent::__construct($arrayValue); - $this->_searchString = $searchString; - } - - function next() - { - do { - $pageName = Cvs_Backend_Array_Iterator::next(); - } while (!eregi($this->_searchString, $pageName)); - - return $pageName; - } -} - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Deleted: trunk/lib/WikiDB/cvs.php =================================================================== --- trunk/lib/WikiDB/cvs.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/WikiDB/cvs.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -1,27 +0,0 @@ -<?php - -require_once 'lib/WikiDB.php'; -require_once 'lib/WikiDB/backend/cvs.php'; - -/** - * Wrapper class for the cvs backend. - * - * @Author: Gerrit Riessen, ger...@op... - * - * Use the new cvsclient PECL extension, if available - * http://pecl.php.net/package/cvsclient - * - */ -class WikiDB_cvs - extends WikiDB -{ - public $_backend; - - function __construct($dbparams) - { - if (loadPhpExtension('cvsclient')) - $this->_backend = new WikiDB_backend_cvsclient($dbparams); - else - $this->_backend = new WikiDB_backend_cvs($dbparams); - } -} Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/WikiDB.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -95,8 +95,6 @@ * <dd> Another generic SQL backend. (More current features are tested here. Much faster) * <dt> dba * <dd> Dba based backend. The default and by far the fastest. - * <dt> cvs - * <dd> * <dt> file * <dd> flat files * </dl> @@ -1929,7 +1927,7 @@ } // There's always hits, but we cache only if more - // (well not with file, cvs and dba) + // (well not with file and dba) if (isset($next['pagedata']) and count($next['pagedata']) > 1) { $this->_wikidb->_cache->cache_data($next); // cache existing page id's since we iterate over all links in GleanDescription Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/WikiTheme.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -926,8 +926,6 @@ while (($subdir = $dir->read()) !== false) { if ($subdir[0] == '.') continue; - if ($subdir == 'CVS') - continue; if (is_dir("$path_dir/$subdir")) $path[] = "$button_dir/$subdir"; } @@ -939,8 +937,6 @@ while (($subdir = $dir->read()) !== false) { if ($subdir[0] == '.') continue; - if ($subdir == 'CVS') - continue; if (is_dir("$path_dir/$subdir")) $path[] = "themes/default/buttons/$subdir"; } Modified: trunk/lib/WikiUser/Db.php =================================================================== --- trunk/lib/WikiUser/Db.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/WikiUser/Db.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -29,7 +29,7 @@ * libnss-mysql. * * We support only the SQL and ADODB backends. - * The other WikiDB backends (flat, cvs, dba, ...) should be used for pages, + * The other WikiDB backends (flat, dba, ...) should be used for pages, * not for auth stuff. If one would like to use e.g. dba for auth, he should * use PearDB (SQL) with the right $DBAuthParam['auth_dsn']. * (Not supported yet, since we require SQL. SQLite would make since when Modified: trunk/lib/interwiki.map =================================================================== --- trunk/lib/interwiki.map 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/interwiki.map 2015-02-27 17:54:34 UTC (rev 9574) @@ -89,7 +89,6 @@ php-function http://www.php.net/%s php-lookup http://www.php.net/manual-lookup.php?pattern= PhpWiki http://phpwiki.fr/ -PhpWikiCvs https://sourceforge.net/p/phpwiki/code/HEAD/tree/trunk/ PhpWikiSvn https://sourceforge.net/p/phpwiki/code/HEAD/tree/trunk/ Pikie http://pikie.darktech.org/cgi/pikie? PlWikiPedia http://pl.wikipedia.org/wiki/ Modified: trunk/lib/plugin/PageDump.php =================================================================== --- trunk/lib/plugin/PageDump.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/plugin/PageDump.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -63,7 +63,7 @@ return array('s' => false, 'page' => '[pagename]', //'encoding' => 'binary', // 'binary', 'quoted-printable' - 'format' => false, // 'normal', 'forsvn', 'forcvs', 'backup' + 'format' => false, // 'normal', 'forsvn', 'backup' // display within WikiPage or give a downloadable // raw pgsrc? 'download' => false); @@ -98,14 +98,10 @@ // // Normal: add unique Message-Id, don't // strip any fields from Content-Type. - // - // ForCVS: strip attributes from - // Content-Type field: "author", "version", "lastmodified", - // "author_id", "hits". $this->pagename = $page; $this->generateMessageId($mailified); - if (($format == 'forsvn') || ($format == 'forcvs')) + if ($format == 'forsvn') $this->fixup_headers_forsvn($mailified); else // backup or normal $this->fixup_headers($mailified); Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/plugin/SystemInfo.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -125,10 +125,6 @@ $s .= "DATABASE_DBA_HANDLER: " . DATABASE_DBA_HANDLER . ", "; $s .= "DATABASE_DIRECTORY: \"" . DATABASE_DIRECTORY . "\", "; break; - case 'cvs': - $s .= "DATABASE_DIRECTORY: \"" . DATABASE_DIRECTORY . "\", "; - // $s .= "cvs stuff: , "; - break; case 'flatfile': $s .= "DATABASE_DIRECTORY: " . DATABASE_DIRECTORY . ", "; break; @@ -391,7 +387,7 @@ return $content; } - // Size of databases/files/cvs are possible plus the known size of the app. + // Size of databases/files are possible plus the known size of the app. // Cache this costly operation. // Even if the whole plugin call is stored internally, we cache this // separately with a separate key. @@ -420,7 +416,7 @@ $pagesize = filesize($DBParams['directory'] . "/wiki_pagedb.db3") / 1024; // if issubdirof($dbdir, $dir) $appsize -= $pagesize; - } else { // flatfile, cvs + } else { // flatfile $dbdir = $DBParams['directory']; $pagesize = `du -s $dbdir`; // if issubdirof($dbdir, $dir) $appsize -= $pagesize; Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/lib/stdlib.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -928,7 +928,7 @@ $this->_warnings[] = _("White space converted to single space"); // Delete any control characters. - if (DATABASE_TYPE == 'cvs' or DATABASE_TYPE == 'file' or DATABASE_TYPE == 'flatfile') { + if (DATABASE_TYPE == 'file' or DATABASE_TYPE == 'flatfile') { $pagename = preg_replace('/[\x00-\x1f\x7f\x80-\x9f]/', '', $orig = $pagename); if ($pagename != $orig) $this->_errors[] = _("Control characters not allowed"); @@ -949,9 +949,8 @@ $this->_errors[] = _("Page name too long"); } - // disallow some chars only on file and cvs - if ((DATABASE_TYPE == 'cvs' - or DATABASE_TYPE == 'file' + // disallow some chars only on file + if ((DATABASE_TYPE == 'file' or DATABASE_TYPE == 'flatfile') and preg_match('/(:|\.\.)/', $pagename, $m) ) { @@ -1869,7 +1868,7 @@ } /** - * Useful for PECL overrides: cvsclient, ldap, soap, xmlrpc, pdo, pdo_<driver> + * Useful for PECL overrides: ldap, soap, xmlrpc, pdo, pdo_<driver> */ function loadPhpExtension($extension) { Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/Makefile 2015-02-27 17:54:34 UTC (rev 9574) @@ -322,7 +322,6 @@ ${POT_FILE}: .././lib/WikiDB/backend/ADODB.php ${POT_FILE}: .././lib/WikiDB/backend/ADODB_postgres7.php ${POT_FILE}: .././lib/WikiDB/backend/ADODB_sqlite.php -${POT_FILE}: .././lib/WikiDB/backend/cvs.php ${POT_FILE}: .././lib/WikiDB/backend/dbaBase.php ${POT_FILE}: .././lib/WikiDB/backend/dba.php ${POT_FILE}: .././lib/WikiDB/backend/dumb/AllRevisionsIter.php @@ -345,7 +344,6 @@ ${POT_FILE}: .././lib/WikiDB/backend/PearDB.php ${POT_FILE}: .././lib/WikiDB/backend/PearDB_sqlite.php ${POT_FILE}: .././lib/WikiDB/backend.php -${POT_FILE}: .././lib/WikiDB/cvs.php ${POT_FILE}: .././lib/WikiDB/dba.php ${POT_FILE}: .././lib/WikiDB/file.php ${POT_FILE}: .././lib/WikiDB/flatfile.php Modified: trunk/locale/README.de.txt =================================================================== --- trunk/locale/README.de.txt 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/README.de.txt 2015-02-27 17:54:34 UTC (rev 9574) @@ -11,7 +11,7 @@ sachdienliche Vorschläge: Bitte laden Sie sich zunächst die neueste PhpWiki-Version auf Ihren Rechner von: -Nightly CVS snapshot: +Nightly snapshot: http://phpwiki.sf.net/nightly/phpwiki.nightly.tar.gz Achten Sie auch darauf, diese Datei mit UTF-8 abzuspeichern (nicht mit ISO-8859-1, @@ -34,7 +34,7 @@ Alle Ihre Korrekturen werden dann von einem der Entwickler, sobald ein entsprechender Umfang erreicht ist, bei geeigneter Gelegenheit in -ihrer Gesamtheit ins PhpWiki-CVS (auf Sourceforge) eingesetzt und +ihrer Gesamtheit ins PhpWiki (auf Sourceforge) eingesetzt und damit dann für alle PhpWiki-Benutzer zugänglich und wirksam. -- CarstenKlapp <car...@us...> 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/fr/pgsrc/Aide%2FPluginRessourcesRss =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FPluginRessourcesRss 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/fr/pgsrc/Aide%2FPluginRessourcesRss 2015-02-27 17:54:34 UTC (rev 9574) @@ -1,4 +1,4 @@ -Date: Thu, 20 Nov 2014 14:25:52 +0000 +Date: Fri, 27 Feb 2015 18:41:28 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=Aide%2FPluginRessourcesRss; @@ -43,10 +43,6 @@ 0| nombre maximum d'entrées (0 = illimitée) -=== Code source (depuis v1.3.8): -* [PhpWikiCvs:lib/plugin/RssFeed.php] -* [PhpWikiCvs:lib/RssParser.php] _révisé pour allow_url_fopen=Off_ - === Exemples * sources ~PhpWikiRss 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 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/de.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+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." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/es.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/fr.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+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." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/it.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+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" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/ja.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+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" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/nl.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+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" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/phpwiki.pot 2015-02-27 17:54:34 UTC (rev 9574) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+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" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/sv.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/locale/po/zh.po 2015-02-27 17:54:34 UTC (rev 9574) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-27 17:55+0100\n" +"POT-Creation-Date: 2015-02-27 18:53+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -2042,9 +2042,8 @@ msgid "View a single page dump online." msgstr "" -#, fuzzy msgid "Download for Subversion" -msgstr "給 CVS 的下載" +msgstr "" msgid "Download for backup" 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/pgsrc/Help%2FPageDumpPlugin =================================================================== --- trunk/pgsrc/Help%2FPageDumpPlugin 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/pgsrc/Help%2FPageDumpPlugin 2015-02-27 17:54:34 UTC (rev 9574) @@ -1,4 +1,4 @@ -Date: Tue, 7 Oct 2014 19:05:57 +0000 +Date: Fri, 27 Feb 2015 18:40:24 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=Help%2FPageDumpPlugin; @@ -26,7 +26,7 @@ | pagename |- | **format** -| 'normal', 'forsvn', 'forcvs', 'backup' +| 'normal', 'forsvn', 'backup' | none |- | **download** @@ -34,8 +34,6 @@ | false |} -Note: 'forsvn' and 'forcvs' are the same. - == Example == {{{ Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/pgsrc/ReleaseNotes 2015-02-27 17:54:34 UTC (rev 9574) @@ -1,4 +1,4 @@ -Date: Fri, 27 Feb 2015 17:55:50 +0000 +Date: Fri, 27 Feb 2015 18:40:24 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -24,6 +24,7 @@ * SUBPAGE_SEPARATOR removed, it must be '/' * RateIt plugin for Fusionforge * remove acdropdown and livesearch +* remove CVS backend == 1.5.2 2014-10-10 Marc-Etienne Vargenau == Deleted: trunk/tests/unit_test_backend_cvs.php =================================================================== --- trunk/tests/unit_test_backend_cvs.php 2015-02-27 17:18:07 UTC (rev 9573) +++ trunk/tests/unit_test_backend_cvs.php 2015-02-27 17:54:34 UTC (rev 9574) @@ -1,115 +0,0 @@ -<?php -/** - * Unit tests the 'lib/WikiDB/backend/cvs.php' file and with it - * the class WikiDB_backend_cvs. This isn't based on the PhpUnit, and - * is designed to be run directly using the php4 command. - * - * Author: Gerrit Riessen, ger...@op... - */ - -// assume that the we've cd'ed to the tests directory -ini_set('include_path', '..' ); - -if ( $USER == "root" ) { - // root user can't check in to a CVS repository - print( "can not be run as root\n" ); - exit(); -} - -// set to false if something went wrong -$REMOVE_DEBUG = true; - -require_once 'lib/WikiDB/backend/cvs.php'; - -$db_params = array(); -/** - * These are the parameters required by the backend. - */ -$db_params[CVS_PAGE_SOURCE] = "../pgsrc"; -$db_params[CVS_CHECK_FOR_REPOSITORY] = true; -// the following three are removed if the test succeeds. -$db_params[CVS_DOC_DIR] = "/tmp/wiki_docs"; -$db_params[CVS_REPOSITORY] = "/tmp/wiki_repository"; -$db_params[CVS_DEBUG_FILE] = "/tmp/php_cvs.log"; - -// -// Check the creation of a new CVS repository and the importing of -// the default pages. -// -$cvsdb = new WikiDB_backend_cvs( $db_params ); -// check that all files contained in page source where checked in. -$allPageNames = array(); -$d = opendir( $db_params[CVS_PAGE_SOURCE] ); -while ( $entry = readdir( $d ) ) { - exec( "grep 'Checking in $entry' " . $db_params[CVS_DEBUG_FILE], - $cmdOutput, $cmdRetval ); - - if ( !is_dir( $db_params[CVS_PAGE_SOURCE] . "/" . $entry )) { - $allPageNames[] = $entry; - - if ( $cmdRetval ) { - print "*** Error: [$entry] was not checked in -- view " - . $db_params[CVS_DEBUG_FILE] . " for details\n"; - $REMOVE_DEBUG = false; - } - } -} -closedir( $d ); - -// -// Check that the meta data files were created -// -function get_pagedata( $page_name, $key, &$cvsdb ) -{ - global $REMOVE_DEBUG; - $pageHash = $cvsdb->get_pagedata( $page_name ); - if ( $pageHash[CMD_VERSION] != "1" ) { - print ( "*** Error: [$page_name] version wrong 1 != " - . $pageHash[CMD_VERSION] ."\n" ); - $REMOVE_DEBUG = false; - } - - $new_data = array(); - $new_data[CMD_CONTENT] = ""; - $cvsdb->update_pagedata( $page_name, $new_data ); - - $pageHash = $cvsdb->get_pagedata( $page_name ); - if ( $pageHash[CMD_VERSION] != "2" ) { - print ( "*** Error: [$page_name] version wrong 2 != " - . $pageHa... [truncated message content] |
From: <var...@us...> - 2015-03-02 17:19:16
|
Revision: 9583 http://sourceforge.net/p/phpwiki/code/9583 Author: vargenau Date: 2015-03-02 17:19:09 +0000 (Mon, 02 Mar 2015) Log Message: ----------- Remove "This takes a few seconds." Modified Paths: -------------- trunk/pgsrc/FindPage trunk/themes/fusionforge/pgsrc/FindPage Modified: trunk/pgsrc/FindPage =================================================================== --- trunk/pgsrc/FindPage 2015-03-02 17:05:50 UTC (rev 9582) +++ trunk/pgsrc/FindPage 2015-03-02 17:19:09 UTC (rev 9583) @@ -1,4 +1,4 @@ -Date: Tue, 7 Oct 2014 19:05:57 +0000 +Date: Mon, 2 Mar 2015 17:55:21 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=FindPage; @@ -20,9 +20,8 @@ checkbox[] name=case_exact pulldown[] name=regex value="auto,none,glob,posix,pcre,sql">> -Use the following for a full text search. This takes a few seconds. -The results will show all lines on a given page which contain a -match. +Use the following for a full text search. +The results will show all lines on a given page which contain a match. <<WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction editbox[] name=s text="" Modified: trunk/themes/fusionforge/pgsrc/FindPage =================================================================== --- trunk/themes/fusionforge/pgsrc/FindPage 2015-03-02 17:05:50 UTC (rev 9582) +++ trunk/themes/fusionforge/pgsrc/FindPage 2015-03-02 17:19:09 UTC (rev 9583) @@ -1,4 +1,4 @@ -Date: Mon, 2 Mar 2015 10:45:29 +0000 +Date: Mon, 2 Mar 2015 17:55:39 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=FindPage; @@ -19,9 +19,8 @@ == Full Text Search == -Use the following for a full text search. This takes a few seconds. -The results will show all lines on a given page which contain a -match. +Use the following for a full text search. +The results will show all lines on a given page which contain a match. <<WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction editbox[] name=s text="" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-03-04 13:28:41
|
Revision: 9594 http://sourceforge.net/p/phpwiki/code/9594 Author: vargenau Date: 2015-03-04 13:28:25 +0000 (Wed, 04 Mar 2015) Log Message: ----------- Set PhpWiki version to 1.5.3 Modified Paths: -------------- trunk/INSTALL trunk/Makefile trunk/config/phpwiki.spec trunk/lib/prepend.php trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo 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/DebugGruppenInfo trunk/locale/de/pgsrc/DebugInfo 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%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%2FNeueSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 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/HochLaden trunk/locale/de/pgsrc/InterWikiListe trunk/locale/de/pgsrc/KategorieAktionSeite trunk/locale/de/pgsrc/KategorieKategorie trunk/locale/de/pgsrc/KategorieWikiPlugin trunk/locale/de/pgsrc/LinkSuche trunk/locale/de/pgsrc/ListeRelationen trunk/locale/de/pgsrc/ListeSeiten 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%2FAclSetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 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/SeitenErzeugen 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/UpLoad 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/LC_MESSAGES/phpwiki.mo 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%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/MasPopulares trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/TodasLasPaginas trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/fr/pgsrc/%C3%89diterLesMetaDonn%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%2FIc%C3%B4nesDeLien trunk/locale/fr/pgsrc/Aide%2FInterWiki trunk/locale/fr/pgsrc/Aide%2FLienGoogle trunk/locale/fr/pgsrc/Aide%2FPhpWiki trunk/locale/fr/pgsrc/Aide%2FPlugin%C3%89diterMetaData trunk/locale/fr/pgsrc/Aide%2FPluginAjouterDesCommentaires trunk/locale/fr/pgsrc/Aide%2FPluginAlbumPhotos trunk/locale/fr/pgsrc/Aide%2FPluginBeauTableau trunk/locale/fr/pgsrc/Aide%2FPluginBonjourLeMonde trunk/locale/fr/pgsrc/Aide%2FPluginCalendrier trunk/locale/fr/pgsrc/Aide%2FPluginColorationPhp trunk/locale/fr/pgsrc/Aide%2FPluginCommenter trunk/locale/fr/pgsrc/Aide%2FPluginCr%C3%A9erUnePage trunk/locale/fr/pgsrc/Aide%2FPluginCr%C3%A9erUneTdm trunk/locale/fr/pgsrc/Aide%2FPluginHistoriqueAuteur trunk/locale/fr/pgsrc/Aide%2FPluginHtmlPur trunk/locale/fr/pgsrc/Aide%2FPluginInclureUnePage trunk/locale/fr/pgsrc/Aide%2FPluginInfosSyst%C3%A8me trunk/locale/fr/pgsrc/Aide%2FPluginIns%C3%A9rer trunk/locale/fr/pgsrc/Aide%2FPluginListeDePages trunk/locale/fr/pgsrc/Aide%2FPluginListeDesSousPages trunk/locale/fr/pgsrc/Aide%2FPluginListeDuCalendrier trunk/locale/fr/pgsrc/Aide%2FPluginM%C3%A9t%C3%A9oPhp trunk/locale/fr/pgsrc/Aide%2FPluginRechercheExterne trunk/locale/fr/pgsrc/Aide%2FPluginRedirection trunk/locale/fr/pgsrc/Aide%2FPluginRessourcesRss trunk/locale/fr/pgsrc/Aide%2FPluginTableauAncienStyle trunk/locale/fr/pgsrc/Aide%2FPluginTeX2png trunk/locale/fr/pgsrc/Aide%2FPluginTestDeCache trunk/locale/fr/pgsrc/Aide%2FPluginWiki trunk/locale/fr/pgsrc/Aide%2FPluginWikiBlog 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/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%A9gorieGroupes trunk/locale/fr/pgsrc/Cat%C3%A9goriePageDAction trunk/locale/fr/pgsrc/Cat%C3%A9goriePagesAccueil trunk/locale/fr/pgsrc/Cat%C3%A9goriePluginWiki 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/GestionDesPlugins trunk/locale/fr/pgsrc/HistoriqueDeLaPage 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%A9rencesUtilisateurs 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/LC_MESSAGES/phpwiki.mo 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%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/NoteDiRilascio trunk/locale/it/pgsrc/PaginaDiProva trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/PiuPopolari trunk/locale/it/pgsrc/RicercaDelTesto trunk/locale/it/pgsrc/RicercaSuTutto trunk/locale/it/pgsrc/ScatolaDiSabbia trunk/locale/it/pgsrc/SteveWainstead trunk/locale/it/pgsrc/TrovaPagina trunk/locale/it/pgsrc/TutteLePagine trunk/locale/it/pgsrc/VisitatoriRecenti trunk/locale/ja/LC_MESSAGES/phpwiki.mo 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/nl/LC_MESSAGES/phpwiki.mo 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%2FRecenteBezoekers 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/MeestBezocht trunk/locale/nl/pgsrc/PhpWikiBeheer trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVervangt trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVerwijder 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/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/sv/pgsrc/Framsida trunk/locale/sv/pgsrc/Hj%C3%A4lp trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FG%C3%A4stboken 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%2FTextformateringsregler trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FWikiWikiWeb 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/LC_MESSAGES/phpwiki.mo 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/DebugInfo 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%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%2FPhpWeatherPlugin trunk/locale/zh/pgsrc/Help%2FPhpWiki 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/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/DebugInfo 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%2FAdobe%20Flash 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%2FCategoryPagePlugin 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%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%2FListPagesPlugin 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%2FPhotoAlbumPlugin%2FSlides trunk/pgsrc/Help%2FPhpHighlightPlugin trunk/pgsrc/Help%2FPhpWeatherPlugin trunk/pgsrc/Help%2FPhpWiki trunk/pgsrc/Help%2FPloticusPlugin trunk/pgsrc/Help%2FPluginManagerPlugin trunk/pgsrc/Help%2FPopUpPlugin trunk/pgsrc/Help%2FPopularNearbyPlugin trunk/pgsrc/Help%2FPredefinedIcons trunk/pgsrc/Help%2FPreferenceAppPlugin trunk/pgsrc/Help%2FPreferencesInfoPlugin trunk/pgsrc/Help%2FPrevNextPlugin trunk/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRateItPlugin trunk/pgsrc/Help%2FRawHtmlPlugin trunk/pgsrc/Help%2FRecentChangesCachedPlugin 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%2FSemanticSearchPlugin trunk/pgsrc/Help%2FSiteMapPlugin 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%2FUserPreferencesPlugin trunk/pgsrc/Help%2FUserRatingsPlugin trunk/pgsrc/Help%2FVideoPlugin trunk/pgsrc/Help%2FVisualWikiPlugin trunk/pgsrc/Help%2FWabiSabi trunk/pgsrc/Help%2FWantedPagesOldPlugin trunk/pgsrc/Help%2FWantedPagesPlugin trunk/pgsrc/Help%2FWatchPagePlugin trunk/pgsrc/Help%2FWhoIsOnlinePlugin trunk/pgsrc/Help%2FWikiAdminChownPlugin 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%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%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/BlogArchives 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/InterWikiMap 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/INSTALL =================================================================== --- trunk/INSTALL 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/INSTALL 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,6 +1,6 @@ REQUIREMENTS -PhpWiki 1.5.2 requires a web server with at least PHP version 5.3. +PhpWiki 1.5.3 requires a web server with at least PHP version 5.3. All users of PHP are strongly encouraged to upgrade to PHP 5.3.29 or to PHP 5.4 or 5.5. @@ -61,7 +61,7 @@ Unzip this file into the directory where you want it to live. That's it. -bash$ unzip phpwiki-1.5.2.zip +bash$ unzip phpwiki-1.5.3.zip In the config subdirectory copy 'config-dist.ini' to 'config.ini' and edit the settings in 'config.ini' to your liking. Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/Makefile 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,4 +1,4 @@ -VERSION=1.5.2 +VERSION=1.5.3 RPMBUILD=rpmbuild clean: Modified: trunk/config/phpwiki.spec =================================================================== --- trunk/config/phpwiki.spec 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/config/phpwiki.spec 2015-03-04 13:28:25 UTC (rev 9594) @@ -40,7 +40,7 @@ # RPM spec preamble Summary: PHP-based Wiki webapplication Name: phpwiki -Version: 1.5.2 +Version: 1.5.3 Release: 1 BuildArch: noarch License: GPL Modified: trunk/lib/prepend.php =================================================================== --- trunk/lib/prepend.php 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/lib/prepend.php 2015-03-04 13:28:25 UTC (rev 9594) @@ -5,7 +5,7 @@ */ // see lib/stdlib.php: phpwiki_version() -define('PHPWIKI_VERSION', '1.5.2'); +define('PHPWIKI_VERSION', '1.5.3'); /** PHP5 deprecated old-style globals if !(bool)ini_get('register_long_arrays'). * See Bug #1180115 Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/Makefile 2015-03-04 13:28:25 UTC (rev 9594) @@ -140,14 +140,12 @@ ${POT_FILE}: .././lib/pear/DB/fbsql.php ${POT_FILE}: .././lib/pear/DB/ibase.php ${POT_FILE}: .././lib/pear/DB/ifx.php -${POT_FILE}: .././lib/pear/DB/ldap.php ${POT_FILE}: .././lib/pear/DB/msql.php ${POT_FILE}: .././lib/pear/DB/mssql.php ${POT_FILE}: .././lib/pear/DB/mysqli.php ${POT_FILE}: .././lib/pear/DB/mysql.php ${POT_FILE}: .././lib/pear/DB/oci8.php ${POT_FILE}: .././lib/pear/DB/odbc.php -${POT_FILE}: .././lib/pear/DB/Pager.php ${POT_FILE}: .././lib/pear/DB/pgsql.php ${POT_FILE}: .././lib/pear/DB.php ${POT_FILE}: .././lib/pear/DB/sqlite.php Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/de/pgsrc/%C3%84hnlicheSeiten =================================================================== --- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=%C3%84hnlicheSeiten; flags=""; Modified: trunk/locale/de/pgsrc/AlleBenutzer =================================================================== --- trunk/locale/de/pgsrc/AlleBenutzer 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/AlleBenutzer 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=AlleBenutzer; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeiten =================================================================== --- trunk/locale/de/pgsrc/AlleSeiten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/AlleSeiten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=AlleSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=AlleSeitenEditiertVonMir; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=AlleSeitenErzeugtVonMir; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=AlleSeitenImBesitzVonMir; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BackLinks =================================================================== --- trunk/locale/de/pgsrc/BackLinks 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/BackLinks 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=BackLinks; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BenutzerEinstellungen =================================================================== --- trunk/locale/de/pgsrc/BenutzerEinstellungen 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/BenutzerEinstellungen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=BenutzerEinstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugAuthInfo =================================================================== --- trunk/locale/de/pgsrc/DebugAuthInfo 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/DebugAuthInfo 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=DebugAuthInfo; flags=LOCKED; Modified: trunk/locale/de/pgsrc/DebugGruppenInfo =================================================================== --- trunk/locale/de/pgsrc/DebugGruppenInfo 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/DebugGruppenInfo 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=DebugGruppenInfo; flags=LOCKED; Modified: trunk/locale/de/pgsrc/DebugInfo =================================================================== --- trunk/locale/de/pgsrc/DebugInfo 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/DebugInfo 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=DebugInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/EditiereText =================================================================== --- trunk/locale/de/pgsrc/EditiereText 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/EditiereText 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=EditiereText; flags=""; Modified: trunk/locale/de/pgsrc/Einstellungen =================================================================== --- trunk/locale/de/pgsrc/Einstellungen 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Einstellungen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Einstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/FuzzySuche =================================================================== --- trunk/locale/de/pgsrc/FuzzySuche 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/FuzzySuche 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) 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 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/G%C3%A4steBuch 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; flags=""; Modified: trunk/locale/de/pgsrc/GaesteBuch =================================================================== --- trunk/locale/de/pgsrc/GaesteBuch 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/GaesteBuch 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) 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 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Geringf%C3%BCgige%C3%84nderungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/GleicheSeiten =================================================================== --- trunk/locale/de/pgsrc/GleicheSeiten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/GleicheSeiten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=GleicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe =================================================================== --- trunk/locale/de/pgsrc/Hilfe 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) 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 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAktionsSeite; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAutorenProtokollPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGraphVizPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FGuterStil =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGuterStil; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHalloWeltPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Wed, 11 Feb 2015 15:54:13 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHochLadenPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FInhaltsVerzeichnisPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeuerKommentarPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin%2FDiashow; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhpWiki =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Thu, 20 Nov 2014 14:24:56 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhpWiki; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextBearbeiten; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextFormatierungsRegeln; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FVorlagePlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWabiSabi =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWabiSabi; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWieManWikiBenutzt; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiTechnik; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiWikiWeb; flags=""; Modified: trunk/locale/de/pgsrc/HochLaden =================================================================== --- trunk/locale/de/pgsrc/HochLaden 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/HochLaden 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=HochLaden; flags=""; Modified: trunk/locale/de/pgsrc/InterWikiListe =================================================================== --- trunk/locale/de/pgsrc/InterWikiListe 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/InterWikiListe 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=InterWikiListe; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/KategorieAktionSeite =================================================================== --- trunk/locale/de/pgsrc/KategorieAktionSeite 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/KategorieAktionSeite 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=KategorieAktionSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/KategorieKategorie =================================================================== --- trunk/locale/de/pgsrc/KategorieKategorie 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/KategorieKategorie 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=KategorieKategorie; flags=""; Modified: trunk/locale/de/pgsrc/KategorieWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/KategorieWikiPlugin 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/KategorieWikiPlugin 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=KategorieWikiPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/LinkSuche =================================================================== --- trunk/locale/de/pgsrc/LinkSuche 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/LinkSuche 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=LinkSuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeRelationen =================================================================== --- trunk/locale/de/pgsrc/ListeRelationen 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/ListeRelationen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=ListeRelationen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeSeiten =================================================================== --- trunk/locale/de/pgsrc/ListeSeiten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/ListeSeiten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=ListeSeiten; flags=""; Modified: trunk/locale/de/pgsrc/MeistBesucht =================================================================== --- trunk/locale/de/pgsrc/MeistBesucht 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/MeistBesucht 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=MeistBesucht; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/ModerierteSeite 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=ModerierteSeite; flags="LOCKED"; Modified: trunk/locale/de/pgsrc/NeueSeite =================================================================== --- trunk/locale/de/pgsrc/NeueSeite 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/NeueSeite 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) 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 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Neueste%C3%84nderungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/NeuesteSeiten =================================================================== --- trunk/locale/de/pgsrc/NeuesteSeiten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/NeuesteSeiten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=NeuesteSeiten; flags=""; Modified: trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen =================================================================== --- trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=PasswortZur%C3%BCcksetzen; flags=""; Modified: trunk/locale/de/pgsrc/PhpWikiDokumentation =================================================================== --- trunk/locale/de/pgsrc/PhpWikiDokumentation 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/PhpWikiDokumentation 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=PhpWikiDokumentation; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,5 @@ -Date: Tue, 7 Oct 2014 19:05:52 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) +Date: Wed, 4 Mar 2015 14:19:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclSetzen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 2015-03-04 13:18:09 UTC (rev 9593) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 2015-03-04 13:28:25 UTC (rev 9594) @@ -1,5 +1,... [truncated message content] |
From: <var...@us...> - 2015-03-06 17:21:56
|
Revision: 9619 http://sourceforge.net/p/phpwiki/code/9619 Author: vargenau Date: 2015-03-06 17:21:47 +0000 (Fri, 06 Mar 2015) Log Message: ----------- Remove WantedPagesOld (use WantedPages instead) Modified Paths: -------------- trunk/lib/IniConfig.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/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 Removed Paths: ------------- trunk/lib/plugin/WantedPagesOld.php trunk/pgsrc/Help%2FWantedPagesOldPlugin Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/lib/IniConfig.php 2015-03-06 17:21:47 UTC (rev 9619) @@ -690,7 +690,6 @@ $AllAllowedPlugins[] = 'text2png'; $AllAllowedPlugins[] = 'TexToPng'; $AllAllowedPlugins[] = 'VisualWiki'; - $AllAllowedPlugins[] = 'WantedPagesOld'; $AllAllowedPlugins[] = 'WikiForum'; $AllAllowedPlugins[] = 'WikiTranslation'; } Deleted: trunk/lib/plugin/WantedPagesOld.php =================================================================== --- trunk/lib/plugin/WantedPagesOld.php 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/lib/plugin/WantedPagesOld.php 2015-03-06 17:21:47 UTC (rev 9619) @@ -1,233 +0,0 @@ -<?php - -/* - * 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. - */ - -/** - * A plugin which returns a list of referenced pages which do not exist yet. - * - **/ - -class WikiPlugin_WantedPagesOld - extends WikiPlugin -{ - public $pagelist; - public $_rows; - private $_messageIfEmpty; - public $_columns; - - function getDescription() - { - return _("List referenced page names which do not exist yet."); - } - - function getDefaultArguments() - { - return array('noheader' => false, - 'exclude' => _("PgsrcTranslation"), - 'page' => '[pagename]', - 'sortby' => false, - 'limit' => 50, - 'paging' => 'auto'); - } - - // info arg allows multiple columns - // info=mtime,hits,summary,version,author,locked,minor,markup or all - // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges - - /** - * @param WikiDB $dbi - * @param string $argstr - * @param WikiRequest $request - * @param string $basepage - * @return mixed - */ - function run($dbi, $argstr, &$request, $basepage) - { - extract($this->getArgs($argstr, $request)); - - if (isset($limit) && !is_limit($limit)) { - return HTML::p(array('class' => "error"), - _("Illegal “limit” argument: must be an integer or two integers separated by comma")); - } - - if ($exclude) { - if (!is_array($exclude)) - $exclude = explode(',', $exclude); - } - - if ($page == _("WantedPages")) - $page = ""; - - // The PageList class can't handle the 'count' column needed - // for this table - $this->pagelist = array(); - - // There's probably a more memory-efficient way to do this (eg - // a tailored SQL query via the backend, but this gets the job - // done. - if (!$page) { - $include_empty = false; - $allpages_iter = $dbi->getAllPages($include_empty, $sortby, $limit); - while ($page_handle = $allpages_iter->next()) { - $name = $page_handle->getName(); - if ($name == __("InterWikiMap")) continue; - if (!in_array($name, $exclude)) - $this->iterateLinks($page_handle, $dbi); - } - } elseif ($page && $pageisWikiPage = $dbi->isWikiPage($page)) { - //only get WantedPages links for one page - $page_handle = $dbi->getPage($page); - $this->iterateLinks($page_handle, $dbi); - if (!$request->getArg('count')) { - $args['count'] = count($this->pagelist); - } else { - $args['count'] = $request->getArg('count'); - } - } - ksort($this->pagelist); - arsort($this->pagelist); - - $this->_rows = HTML(); - $caption = false; - $this->_messageIfEmpty = _("None"); - - if ($page) { - // link count always seems to be 1 for a single page so - // omit count column - foreach ($this->pagelist as $key => $val) { - $row = HTML::li(WikiLink((string)$key, 'unknown')); - $this->_rows->pushContent($row); - } - if (!$noheader) { - if ($pageisWikiPage) - $pagelink = WikiLink($page); - else - $pagelink = WikiLink($page, 'unknown'); - $c = count($this->pagelist); - $caption = fmt("Wanted Pages for %s (%d total):", - $pagelink, $c); - } - return $this->generateList($caption); - - } else { - $spacer = new RawXml(" "); - // Clicking on the number in the links column does a - // FullTextSearch for the citations of the WantedPage - // link. - foreach ($this->pagelist as $key => $val) { - $key = (string)$key; // TODO: Not sure why, but this - // string cast type-coersion - // does seem necessary here. - // Enclose any FullTextSearch keys containing a space - // with quotes in oder to request a defnitive search. - $searchkey = (strstr($key, ' ') === false) ? $key : "\"$key\""; - $row = HTML::tr(HTML::td(array('class' => 'align-right'), - Button(array('s' => $searchkey), - $val, _("FullTextSearch")), - // Alternatively, get BackLinks - // instead. - // - //Button(array('action' - // => _("BackLinks")), - // $val, $searchkey), - HTML::td(HTML($spacer, - WikiLink($key, - 'unknown'))) - )); - $this->_rows->pushContent($row); - } - $c = count($this->pagelist); - if (!$noheader) - $caption = sprintf(_("Wanted Pages in this wiki (%d total):"), - $c); - $this->_columns = array(_("Count"), _("Page Name")); - if ($c > 0) - return $this->generateTable($caption); - else - return HTML(HTML::p($caption), HTML::p($this->_messageIfEmpty)); - } - } - - private function generateTable($caption) - { - - if (count($this->pagelist) > 0) { - $table = HTML::table(array('class' => 'pagelist')); - if ($caption) - $table->pushContent(HTML::caption(array('style' => 'caption-side:top'), - $caption)); - - $row = HTML::tr(); - $spacer = new RawXml(" "); - foreach ($this->_columns as $col_heading) { - $row->pushContent(HTML::td(HTML($spacer, - HTML::u($col_heading)))); - $table_summary[] = $col_heading; - } - // Table summary for non-visual browsers. - $table->setAttr('summary', sprintf(_("Columns: %s."), - implode(", ", $table_summary))); - - $table->pushContent(HTML::thead($row), - HTML::tbody(false, $this->_rows)); - } else { - $table = HTML(); - if ($caption) - $table->pushContent(HTML::p($caption)); - $table->pushContent(HTML::p($this->_messageIfEmpty)); - } - - return $table; - } - - private function generateList($caption) - { - $list = HTML(); - $c = count($this->pagelist); - if ($caption) - $list->pushContent(HTML::p($caption)); - - if ($c > 0) - $list->pushContent(HTML::ul($this->_rows)); - else - $list->pushContent(HTML::p($this->_messageIfEmpty)); - - return $list; - } - - private function iterateLinks($page_handle, $dbi) - { - $links_iter = $page_handle->getLinks($reversed = false); - while ($link_handle = $links_iter->next()) { - if (!$dbi->isWikiPage($linkname = $link_handle->getName())) - if (!in_array($linkname, array_keys($this->pagelist))) - $this->pagelist[$linkname] = 1; - else - $this->pagelist[$linkname] += 1; - } - } -} - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/plugin/WikiTranslation.php =================================================================== --- trunk/lib/plugin/WikiTranslation.php 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/lib/plugin/WikiTranslation.php 2015-03-06 17:21:47 UTC (rev 9619) @@ -213,7 +213,6 @@ _("VisualWiki") . ',' . _("WabiSabi") . ',' . _("WantedPages") . ',' . - _("WantedPagesOld") . ',' . _("WatchPage") . ',' . _("WhoIsOnline") . ',' . _("WikiAdminChown") . ',' . Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/Makefile 2015-03-06 17:21:47 UTC (rev 9619) @@ -272,7 +272,6 @@ ${POT_FILE}: .././lib/plugin/UserRatings.php ${POT_FILE}: .././lib/plugin/Video.php ${POT_FILE}: .././lib/plugin/VisualWiki.php -${POT_FILE}: .././lib/plugin/WantedPagesOld.php ${POT_FILE}: .././lib/plugin/WantedPages.php ${POT_FILE}: .././lib/plugin/WatchPage.php ${POT_FILE}: .././lib/plugin/WhoIsOnline.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/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 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/de.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+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." @@ -3368,27 +3368,9 @@ msgid "List referenced page names which do not exist yet." msgstr "Zeige verlinkte Seiten, die noch nicht bearbeitet bzw. erzeugt wurden." -msgid "PgsrcTranslation" -msgstr "PgsrcTranslation" - msgid "WantedPages" msgstr "WunschZettelSeiten" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "WunschZettelSeiten für %s (%d gesamt):" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "WunschZettelSeiten in diesem Wiki (%d gesamt):" - -msgid "Count" -msgstr "Anzahl" - -#, php-format -msgid "Columns: %s." -msgstr "Spalten: %s." - msgid "Wanted From" msgstr "Benötigt von" @@ -4393,9 +4375,6 @@ msgid "WabiSabi" msgstr "" -msgid "WantedPagesOld" -msgstr "WunschZettelSeitenAlt" - msgid "WatchPage" msgstr "SeiteBeobarten" @@ -6122,6 +6101,21 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "PgsrcTranslation" +#~ msgstr "PgsrcTranslation" + +#~ msgid "Wanted Pages for %s (%d total):" +#~ msgstr "WunschZettelSeiten für %s (%d gesamt):" + +#~ msgid "Wanted Pages in this wiki (%d total):" +#~ msgstr "WunschZettelSeiten in diesem Wiki (%d gesamt):" + +#~ msgid "Count" +#~ msgstr "Anzahl" + +#~ msgid "Columns: %s." +#~ msgstr "Spalten: %s." + #~ msgid "LiveSearch" #~ msgstr "LiveSuche" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/es.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -3272,27 +3272,9 @@ msgid "List referenced page names which do not exist yet." msgstr "" -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "" - -msgid "Count" -msgstr "" - -#, php-format -msgid "Columns: %s." -msgstr "Columnas: %s." - msgid "Wanted From" msgstr "" @@ -4274,9 +4256,6 @@ msgid "WabiSabi" msgstr "" -msgid "WantedPagesOld" -msgstr "" - msgid "WatchPage" msgstr "" @@ -5946,6 +5925,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Columns: %s." +#~ msgstr "Columnas: %s." + #~ msgid "Unexpected EOF in ZIP file" #~ msgstr "EOF inesperado en archivo del ZIP" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/fr.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+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." @@ -3318,27 +3318,9 @@ msgid "List referenced page names which do not exist yet." msgstr "Afficher toutes les pages référencées qui n'existent pas." -msgid "PgsrcTranslation" -msgstr "TraductionPgsrc" - msgid "WantedPages" msgstr "PagesRecherchées" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "Pages recherchées pour %s dans ce wiki (%d au total) :" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "Pages recherchées dans ce wiki (%d au total) :" - -msgid "Count" -msgstr "Nombre" - -#, php-format -msgid "Columns: %s." -msgstr "Colonnes : %s." - msgid "Wanted From" msgstr "Recherchées par" @@ -4331,9 +4313,6 @@ msgid "WabiSabi" msgstr "WabiSabi" -msgid "WantedPagesOld" -msgstr "VieillesPagesRecherchées" - msgid "WatchPage" msgstr "Suivre" @@ -6024,6 +6003,21 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "PgsrcTranslation" +#~ msgstr "TraductionPgsrc" + +#~ msgid "Wanted Pages for %s (%d total):" +#~ msgstr "Pages recherchées pour %s dans ce wiki (%d au total) :" + +#~ msgid "Wanted Pages in this wiki (%d total):" +#~ msgstr "Pages recherchées dans ce wiki (%d au total) :" + +#~ msgid "Count" +#~ msgstr "Nombre" + +#~ msgid "Columns: %s." +#~ msgstr "Colonnes : %s." + #~ msgid "LiveSearch" #~ msgstr "RechercheLive" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/it.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+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" @@ -3245,27 +3245,9 @@ msgid "List referenced page names which do not exist yet." msgstr "" -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "" - -msgid "Count" -msgstr "" - -#, php-format -msgid "Columns: %s." -msgstr "Caratteri: %s." - msgid "Wanted From" msgstr "" @@ -4239,9 +4221,6 @@ msgid "WabiSabi" msgstr "" -msgid "WantedPagesOld" -msgstr "" - msgid "WatchPage" msgstr "" @@ -5887,6 +5866,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Columns: %s." +#~ msgstr "Caratteri: %s." + #~ msgid "LiveSearch" #~ msgstr "RicercaLive" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/ja.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+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" @@ -3288,27 +3288,9 @@ msgid "List referenced page names which do not exist yet." msgstr "" -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "" - -msgid "Count" -msgstr "カウント" - -#, php-format -msgid "Columns: %s." -msgstr "" - #, fuzzy msgid "Wanted From" msgstr "データフォーマット" @@ -4361,9 +4343,6 @@ msgid "WabiSabi" msgstr "" -msgid "WantedPagesOld" -msgstr "" - #, fuzzy msgid "WatchPage" msgstr "幅" @@ -6083,6 +6062,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Count" +#~ msgstr "カウント" + #, fuzzy #~ msgid "LiveSearch" #~ msgstr "タイトル検索" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/nl.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+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" @@ -3237,27 +3237,9 @@ msgid "List referenced page names which do not exist yet." msgstr "" -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "De %d meestbezochte pagina's van deze Wiki:" - -msgid "Count" -msgstr "" - -#, php-format -msgid "Columns: %s." -msgstr "" - msgid "Wanted From" msgstr "" @@ -4231,9 +4213,6 @@ msgid "WabiSabi" msgstr "WabiSabi" -msgid "WantedPagesOld" -msgstr "" - msgid "WatchPage" msgstr "" @@ -5877,6 +5856,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Wanted Pages in this wiki (%d total):" +#~ msgstr "De %d meestbezochte pagina's van deze Wiki:" + #~ msgid "LiveSearch" #~ msgstr "LiveZoek" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/phpwiki.pot 2015-03-06 17:21:47 UTC (rev 9619) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+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" @@ -3229,27 +3229,9 @@ msgid "List referenced page names which do not exist yet." msgstr "" -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "" - -msgid "Count" -msgstr "" - -#, php-format -msgid "Columns: %s." -msgstr "" - msgid "Wanted From" msgstr "" @@ -4223,9 +4205,6 @@ msgid "WabiSabi" msgstr "" -msgid "WantedPagesOld" -msgstr "" - msgid "WatchPage" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/sv.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -3230,27 +3230,9 @@ msgid "List referenced page names which do not exist yet." msgstr "" -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "" - -msgid "Count" -msgstr "" - -#, php-format -msgid "Columns: %s." -msgstr "" - msgid "Wanted From" msgstr "" @@ -4224,9 +4206,6 @@ msgid "WabiSabi" msgstr "" -msgid "WantedPagesOld" -msgstr "" - msgid "WatchPage" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/locale/po/zh.po 2015-03-06 17:21:47 UTC (rev 9619) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-04 14:26+0100\n" +"POT-Creation-Date: 2015-03-06 18:19+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -3366,27 +3366,9 @@ msgid "List referenced page names which do not exist yet." msgstr "列出還未存在的頁面名稱." -msgid "PgsrcTranslation" -msgstr "" - msgid "WantedPages" msgstr "" -#, php-format -msgid "Wanted Pages for %s (%d total):" -msgstr "%s 所需要的頁面 (共 %d):" - -#, php-format -msgid "Wanted Pages in this wiki (%d total):" -msgstr "在此 wiki 所需要的頁面 (共 %d):" - -msgid "Count" -msgstr "計數" - -#, php-format -msgid "Columns: %s." -msgstr "行: %s." - #, fuzzy msgid "Wanted From" msgstr "日期格式" @@ -4438,10 +4420,6 @@ msgstr "" #, fuzzy -msgid "WantedPagesOld" -msgstr "%s 所需要的頁面 (共 %d):" - -#, fuzzy msgid "WatchPage" msgstr "寬度" @@ -6188,6 +6166,18 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Wanted Pages for %s (%d total):" +#~ msgstr "%s 所需要的頁面 (共 %d):" + +#~ msgid "Wanted Pages in this wiki (%d total):" +#~ msgstr "在此 wiki 所需要的頁面 (共 %d):" + +#~ msgid "Count" +#~ msgstr "計數" + +#~ msgid "Columns: %s." +#~ msgstr "行: %s." + #, fuzzy #~ msgid "LiveSearch" #~ 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%2FWantedPagesOldPlugin =================================================================== --- trunk/pgsrc/Help%2FWantedPagesOldPlugin 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/pgsrc/Help%2FWantedPagesOldPlugin 2015-03-06 17:21:47 UTC (rev 9619) @@ -1,68 +0,0 @@ -Date: Wed, 4 Mar 2015 14:20:06 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) -Content-Type: application/x-phpwiki; - pagename=Help%2FWantedPagesOldPlugin; - flags=PAGE_LOCKED%2CEXTERNAL_PAGE; - charset=UTF-8 -Content-Transfer-Encoding: binary - -The **~WantedPagesOld** [[Help:WikiPlugin|plugin]] returns a list of referenced pages which do not exist yet. - -All empty pages which are linked from any page - with an ending question mark, or for just a single page, when the page argument is present. - -== Usage == - -{{{ -<<WantedPagesOld arguments>> -}}} - -== Arguments == - -{| class="bordered" -|- -! Argument -! Description -! Default value -|- -| **page** -| just for a single page -| pagename -|- -| **noheader** -| do not display header -| false -|- -| **exclude** -| pages to exclude -| PgsrcTranslation -|- -| **limit** -| maximum number of wanted pages to display -| 50 -|- -| **paging** -| -| auto -|- -| **sortby** -| -| -|} - -== Example == - -{{{ -<<WantedPagesOld>> -}}} - -<<WantedPagesOld>> - -== Author == -* [[Help:Reini Urban|Reini Urban]] - -== See Also == - -<noinclude> ----- -[[PhpWikiDocumentation]] [[CategoryWikiPlugin]] -</noinclude> Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-03-06 17:16:43 UTC (rev 9618) +++ trunk/pgsrc/ReleaseNotes 2015-03-06 17:21:47 UTC (rev 9619) @@ -1,4 +1,4 @@ -Date: Fri, 6 Mar 2015 14:11:21 +0000 +Date: Fri, 6 Mar 2015 18:20:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -11,6 +11,7 @@ == 1.5.4 2015-03-XX Marc-Etienne Vargenau == * Fix ~WantedPages for Fusionforge +* Remove ~WantedPagesOld (use ~WantedPages instead) == 1.5.3 2015-03-04 Marc-Etienne Vargenau == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-03-09 14:08:05
|
Revision: 9623 http://sourceforge.net/p/phpwiki/code/9623 Author: vargenau Date: 2015-03-09 14:08:02 +0000 (Mon, 09 Mar 2015) Log Message: ----------- Remove MSIE Modified Paths: -------------- trunk/configurator.php trunk/themes/Portland/templates/navbar.tmpl Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2015-03-09 13:56:40 UTC (rev 9622) +++ trunk/configurator.php 2015-03-09 14:08:02 UTC (rev 9623) @@ -223,7 +223,6 @@ function update(accepted, error, value, output) { var msg = document.getElementById(output); if (accepted) { - /* MSIE 5.0 fails here */ if (msg && msg.innerHTML) { msg.innerHTML = "<span color=\"green\">Input accepted.</span>"; } Modified: trunk/themes/Portland/templates/navbar.tmpl =================================================================== --- trunk/themes/Portland/templates/navbar.tmpl 2015-03-09 13:56:40 UTC (rev 9622) +++ trunk/themes/Portland/templates/navbar.tmpl 2015-03-09 14:08:02 UTC (rev 9623) @@ -9,11 +9,6 @@ <?php echo $SEP?><?php echo Button('remove') ?> <?php } ?> <hr /> -<!-- I would like not to have to use these tables, and managed to - get this stuff to work more or less correctly using - CSSs float:left; and float:right;. However float:right; seems - to cause MSIE4.01/NT to hang. - So, we use tables... --> <table class="toolbar fullwidth" id="actionbar"> <tr class="baseline"> <td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-03-11 15:02:47
|
Revision: 9626 http://sourceforge.net/p/phpwiki/code/9626 Author: vargenau Date: 2015-03-11 15:02:44 +0000 (Wed, 11 Mar 2015) Log Message: ----------- Translate message Modified Paths: -------------- trunk/lib/plugin/UpLoad.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/UpLoad.php =================================================================== --- trunk/lib/plugin/UpLoad.php 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/lib/plugin/UpLoad.php 2015-03-11 15:02:44 UTC (rev 9626) @@ -197,7 +197,7 @@ $message->pushContent(HTML::div(array('class' => 'feedback'), HTML::p(_("File successfully uploaded.")), HTML::p($link), - HTML::p("Note: some forbidded characters in filename have been replaced by dash."))); + HTML::p(_("Note: some forbidden characters in filename have been replaced by dash.")))); } else { $message->pushContent(HTML::div(array('class' => 'feedback'), HTML::p(_("File successfully uploaded.")), 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 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/de.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+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." @@ -3262,6 +3262,9 @@ msgid "File successfully uploaded." msgstr "Datei erfolgreich hochgeladen." +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "%s wurde hochgeladen" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/es.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+0100\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -3169,6 +3169,9 @@ msgid "File successfully uploaded." msgstr "" +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/fr.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+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." @@ -3217,6 +3217,11 @@ msgid "File successfully uploaded." msgstr "Fichier téléchargé avec succès." +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" +"Note : certains caractères interdits dans les noms de fichier ont été " +"remplacés par des tirets." + #, php-format msgid "uploaded %s" msgstr "Téléchargé %s" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/it.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+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" @@ -3142,6 +3142,9 @@ msgid "File successfully uploaded." msgstr "" +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/ja.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+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" @@ -3183,6 +3183,9 @@ msgid "File successfully uploaded." msgstr "" +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, fuzzy, php-format msgid "uploaded %s" msgstr "%s をアップロード中です" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/nl.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+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" @@ -3134,6 +3134,9 @@ msgid "File successfully uploaded." msgstr "" +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/phpwiki.pot 2015-03-11 15:02:44 UTC (rev 9626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+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" @@ -3126,6 +3126,9 @@ msgid "File successfully uploaded." msgstr "" +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/sv.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+0100\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -3127,6 +3127,9 @@ msgid "File successfully uploaded." msgstr "" +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-03-09 16:24:38 UTC (rev 9625) +++ trunk/locale/po/zh.po 2015-03-11 15:02:44 UTC (rev 9626) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-09 17:23+0100\n" +"POT-Creation-Date: 2015-03-11 16:01+0100\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -3256,6 +3256,9 @@ msgid "File successfully uploaded." msgstr "檔案已經成功地上傳." +msgid "Note: some forbidden characters in filename have been replaced by dash." +msgstr "" + #, php-format msgid "uploaded %s" msgstr "已上傳 %s" 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...> - 2015-03-25 11:32:03
|
Revision: 9629 http://sourceforge.net/p/phpwiki/code/9629 Author: vargenau Date: 2015-03-25 11:32:00 +0000 (Wed, 25 Mar 2015) Log Message: ----------- Improve Video plugin Modified Paths: -------------- trunk/lib/BlockParser.php trunk/lib/InlineParser.php trunk/lib/plugin/Video.php trunk/lib/stdlib.php trunk/pgsrc/Help%2FVideoPlugin Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2015-03-18 14:19:38 UTC (rev 9628) +++ trunk/lib/BlockParser.php 2015-03-25 11:32:00 UTC (rev 9629) @@ -1193,7 +1193,12 @@ // It's a video if (is_video($imagename)) { - $pi = '<' . '?plugin Video file="' . $pi . '" ?>'; + if ((strpos($imagename, 'http://') === 0) + || (strpos($imagename, 'https://') === 0)) { + $pi = '<' . '?plugin Video url="' . $pi . '" ?>'; + } else { + $pi = '<' . '?plugin Video file="' . $pi . '" ?>'; + } $this->_element = new Cached_PluginInvocation($pi); return true; } Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2015-03-18 14:19:38 UTC (rev 9628) +++ trunk/lib/InlineParser.php 2015-03-25 11:32:00 UTC (rev 9629) @@ -1106,7 +1106,12 @@ // It's a video if (is_video($imagename)) { - $s = '<' . '?plugin Video file="' . $imagename . '" ?' . '>'; + if ((strpos($imagename, 'http://') === 0) + || (strpos($imagename, 'https://') === 0)) { + $s = '<' . '?plugin Video url="' . $imagename . '" ?' . '>'; + } else { + $s = '<' . '?plugin Video file="' . $imagename . '" ?' . '>'; + } return new Cached_PluginInvocation($s); } Modified: trunk/lib/plugin/Video.php =================================================================== --- trunk/lib/plugin/Video.php 2015-03-18 14:19:38 UTC (rev 9628) +++ trunk/lib/plugin/Video.php 2015-03-25 11:32:00 UTC (rev 9629) @@ -72,7 +72,11 @@ global $WikiTheme; $args = $this->getArgs($argstr, $request); - extract($args); + $url = $args['url']; + $file = $args['file']; + $width = $args['width']; + $height = $args['height']; + $autoplay = $args['autoplay']; if (!$url && !$file) { return $this->error(_("Both 'url' or 'file' parameters missing.")); @@ -83,9 +87,18 @@ $url = getUploadDataPath() . '/' . $file; } - if (string_ends_with($url, ".ogg")) { - return HTML::video(array('autoplay' => 'true', 'controls' => 'true', 'src' => $url), + if (string_ends_with($url, ".ogg") + || string_ends_with($url, ".mp4") + || string_ends_with($url, ".webm")) { + $video = HTML::video(array('controls' => 'controls', + 'width' => $width, + 'height' => $height, + 'src' => $url), _("Your browser does not understand the HTML 5 video tag.")); + if ($autoplay == 'true') { + $video->setAttr('autoplay', 'autoplay'); + } + return $video; } $html = HTML(); Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2015-03-18 14:19:38 UTC (rev 9628) +++ trunk/lib/stdlib.php 2015-03-25 11:32:00 UTC (rev 9629) @@ -2089,13 +2089,15 @@ /** * Returns true if the filename ends with an video suffix. - * Currently only FLV and OGG + * Currently FLV, OGG, MP4 and WebM. */ function is_video($filename) { return string_ends_with(strtolower($filename), ".flv") - or string_ends_with(strtolower($filename), ".ogg"); + or string_ends_with(strtolower($filename), ".ogg") + or string_ends_with(strtolower($filename), ".mp4") + or string_ends_with(strtolower($filename), ".webm"); } /** Modified: trunk/pgsrc/Help%2FVideoPlugin =================================================================== --- trunk/pgsrc/Help%2FVideoPlugin 2015-03-18 14:19:38 UTC (rev 9628) +++ trunk/pgsrc/Help%2FVideoPlugin 2015-03-25 11:32:00 UTC (rev 9629) @@ -1,4 +1,4 @@ -Date: Wed, 18 Mar 2015 15:14:44 +0000 +Date: Wed, 25 Mar 2015 12:24:09 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=Help%2FVideoPlugin; @@ -8,9 +8,9 @@ The **~Video** [[Help:WikiPlugin|plugin]] allows to include video in a wiki page. Video file must be encoded in FLV format ([[WikiPedia:Flash Video|Flash Video]]) or in an HTML 5 format: -* [[WikiPedia:Ogg|Ogg]], -* [[WikiPedia:MP4|MP4]], -* [[WikiPedia:WebM|WebM]]. +* [[WikiPedia:Ogg|Ogg]] (##.ogg## suffix), +* [[WikiPedia:MP4|MP4]] (##.mp4## suffix), +* [[WikiPedia:WebM|WebM]] (##.webm## suffix). The Video plugin can also be called with the ~{~{video.flv~}~} syntax. @@ -41,11 +41,11 @@ | 320 |- | **autoplay** -| Auto play the video when page is displayed. +| Auto play the video when page is displayed (boolean). | false |} -== Example == +== Examples == A video: {{{ @@ -62,6 +62,13 @@ {{another_video.flv}} }}} +=== Big Buck Bunny === + +{{{ +{{http://video.webmfiles.org/big-buck-bunny_trailer.webm}} +}}} +{{http://video.webmfiles.org/big-buck-bunny_trailer.webm}} + == Authors == * Roger Guignard, Alcatel-Lucent This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-04-01 13:31:32
|
Revision: 9635 http://sourceforge.net/p/phpwiki/code/9635 Author: vargenau Date: 2015-04-01 13:31:30 +0000 (Wed, 01 Apr 2015) Log Message: ----------- No parameter for calendarInit Modified Paths: -------------- trunk/lib/WikiTheme.php trunk/themes/Sidebar/themeinfo.php trunk/themes/blog/themeinfo.php Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-04-01 08:04:48 UTC (rev 9634) +++ trunk/lib/WikiTheme.php 2015-04-01 13:31:30 UTC (rev 9635) @@ -1629,7 +1629,7 @@ return $UserCalPageTitle; } - function calendarInit($force = false) + function calendarInit() { /** * @var WikiRequest $request @@ -1638,7 +1638,7 @@ $dbi = $request->getDbh(); // display flat calender dhtml in the sidebar - if ($force or $dbi->isWikiPage($this->calendarBase())) { + if ($dbi->isWikiPage($this->calendarBase())) { $jslang = @$GLOBALS['LANG']; $this->addMoreHeaders ( Modified: trunk/themes/Sidebar/themeinfo.php =================================================================== --- trunk/themes/Sidebar/themeinfo.php 2015-04-01 08:04:48 UTC (rev 9634) +++ trunk/themes/Sidebar/themeinfo.php 2015-04-01 13:31:30 UTC (rev 9635) @@ -11,7 +11,6 @@ * which can be used as parent class for all sidebar themes. See MonoBook and blog. * It is now an extension of the MonoBook theme. * - * This uses the dynamic jscalendar, which doesn't need extra requests per month/year change. * This is a complete rewrite and not related to the old Sidebar theme. * It is derived from MonoBook, includes the calendar and can derive from wikilens. * Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2015-04-01 08:04:48 UTC (rev 9634) +++ trunk/themes/blog/themeinfo.php 2015-04-01 13:31:30 UTC (rev 9635) @@ -39,7 +39,7 @@ function __construct($theme_name = 'blog') { $this->WikiTheme($theme_name); - $this->calendarInit(true); + $this->calendarInit(); } /* overload to load from Sidebar */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-04-10 09:42:25
|
Revision: 9648 http://sourceforge.net/p/phpwiki/code/9648 Author: vargenau Date: 2015-04-10 09:42:17 +0000 (Fri, 10 Apr 2015) Log Message: ----------- Remove Width and Height preferences modification in Edit Toolbar Modified Paths: -------------- trunk/pgsrc/ReleaseNotes 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/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-04-09 09:16:25 UTC (rev 9647) +++ trunk/pgsrc/ReleaseNotes 2015-04-10 09:42:17 UTC (rev 9648) @@ -1,4 +1,4 @@ -Date: Wed, 1 Apr 2015 18:29:22 +0000 +Date: Wed, 10 Apr 2015 11:29:22 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -14,6 +14,7 @@ * Remove ~WantedPagesOld (use ~WantedPages instead) * Add WebM format in Video plugin * Update jscalendar to 1.0 +* Remove Width and Height preferences modification in Edit Toolbar == 1.5.3 2015-03-04 Marc-Etienne Vargenau == Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2015-04-09 09:16:25 UTC (rev 9647) +++ trunk/themes/Crao/templates/editpage.tmpl 2015-04-10 09:42:17 UTC (rev 9648) @@ -20,19 +20,9 @@ accept-charset="UTF-8"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <br class="clear-floats" /> - <table class="fullwidth"> - <tr> - <td> - <?php if (isset($EDIT_TOOLBAR)) { ?> - <?php echo $EDIT_TOOLBAR ?> - <?php } ?> - </td> - <td class="align-right"><div id="editarea-size"> - <?php echo _("Size")._(":") ?> - <label for="pref-editHeight"><b><?php echo _("H")?></b></label> <?php echo $HEIGHT_PREF?> - <label for="pref-editWidth"><b><?php echo _("W")?></b></label> <?php echo $WIDTH_PREF?> - <noscript><?php echo Button("submit:", _("Adjust"), 'wikiaction')?></noscript> - </div></td></tr></table> + <?php if (isset($EDIT_TOOLBAR)) { ?> + <?php echo $EDIT_TOOLBAR ?> + <?php } ?> <fieldset class="editarea"> <legend><?php echo _("Page Content: ")?></legend> <a id="editarea"></a><?php echo $EDIT_TEXTAREA?> Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2015-04-09 09:16:25 UTC (rev 9647) +++ trunk/themes/Portland/templates/editpage.tmpl 2015-04-10 09:42:17 UTC (rev 9648) @@ -29,12 +29,6 @@ <?php echo fmt("I'm just doing minor edits. Please divert the usual logging to %s instead.", WikiLink(_("RecentEdits"))) ?> <br /> -<p> - <?php echo _("Edit Area Size")?>: <b><?php echo _("H")?></b> <?php echo $HEIGHT_PREF?> - <b><?php echo _("W")?></b> <?php echo $WIDTH_PREF?> - <?php echo Button("submit:", _("Adjust"), 'wikiaction')?> -</p> - <?php if (isset($PREVIEW_CONTENT)) { ?> <hr /> <p><strong><?php echo _("Preview only! Changes not saved.")?></strong></p> Modified: trunk/themes/Wordpress/templates/editpage.tmpl =================================================================== --- trunk/themes/Wordpress/templates/editpage.tmpl 2015-04-09 09:16:25 UTC (rev 9647) +++ trunk/themes/Wordpress/templates/editpage.tmpl 2015-04-10 09:42:17 UTC (rev 9648) @@ -21,19 +21,9 @@ </td> </tr> </table> -<table class="fullwidth"> - <tr> - <td> - <?php if (isset($EDIT_TOOLBAR)) { ?> - <?php echo $EDIT_TOOLBAR ?> - <?php } ?> - </td> - <td class="align-right"><div id="editarea-size"> - <?php echo _("Size")._(":") ?> - <label for="pref-editHeight"><b><?php echo _("H")?></b></label> <?php echo $HEIGHT_PREF?> - <label for="pref-editWidth"><b><?php echo _("W")?></b></label> <?php echo $WIDTH_PREF?> - <noscript><?php echo Button("submit:", _("Adjust"), 'wikiaction')?></noscript> - </div></td></tr></table> +<?php if (isset($EDIT_TOOLBAR)) { ?> + <?php echo $EDIT_TOOLBAR ?> +<?php } ?> <a id="editarea"></a><?php echo $EDIT_TEXTAREA?> <br /><small> <?php echo _("Summary")._(":") ?><?php echo $SUMMARY_INPUT ?> Modified: trunk/themes/default/templates/editpage.tmpl =================================================================== --- trunk/themes/default/templates/editpage.tmpl 2015-04-09 09:16:25 UTC (rev 9647) +++ trunk/themes/default/templates/editpage.tmpl 2015-04-10 09:42:17 UTC (rev 9648) @@ -20,19 +20,9 @@ accept-charset="UTF-8"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <br class="clear-floats" /> - <table class="fullwidth"> - <tr> - <td> - <?php if (isset($EDIT_TOOLBAR)) { ?> - <?php echo $EDIT_TOOLBAR ?> - <?php } ?> - </td> - <td class="align-right"><div id="editarea-size"> - <?php echo _("Size")._(":") ?> - <label for="pref-editHeight"><b><?php echo _("H")?></b></label> <?php echo $HEIGHT_PREF?> - <label for="pref-editWidth"><b><?php echo _("W")?></b></label> <?php echo $WIDTH_PREF?> - <noscript><?php echo Button("submit:", _("Adjust"), 'wikiaction')?></noscript> - </div></td></tr></table> + <?php if (isset($EDIT_TOOLBAR)) { ?> + <?php echo $EDIT_TOOLBAR ?> + <?php } ?> <?php if (!empty($WYSIWYG_B)) { ?> <br /><div class="hint"><strong>Warning:</strong> Switching to the Wysiwyg editor will not keep your changes.</div> <?php } ?> Modified: trunk/themes/fusionforge/templates/editpage.tmpl =================================================================== --- trunk/themes/fusionforge/templates/editpage.tmpl 2015-04-09 09:16:25 UTC (rev 9647) +++ trunk/themes/fusionforge/templates/editpage.tmpl 2015-04-10 09:42:17 UTC (rev 9648) @@ -63,19 +63,9 @@ accept-charset="UTF-8"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <br class="clear-floats" /> - <table class="fullwidth"> - <tr> - <td> - <?php if (isset($EDIT_TOOLBAR)) { ?> - <?php echo $EDIT_TOOLBAR ?> - <?php } ?> - </td> - <td class="align-right"><div id="editarea-size"> - <?php echo _("Size")._(":") ?> - <label for="pref-editHeight"><b><?php echo _("H")?></b></label> <?php echo $HEIGHT_PREF?> - <label for="pref-editWidth"><b><?php echo _("W")?></b></label> <?php echo $WIDTH_PREF?> - <noscript><?php echo Button("submit:", _("Adjust"), 'wikiaction')?></noscript> - </div></td></tr></table> + <?php if (isset($EDIT_TOOLBAR)) { ?> + <?php echo $EDIT_TOOLBAR ?> + <?php } ?> <a id="editarea"></a><?php echo $EDIT_TEXTAREA?> <div style="text-align: center;"> <label for="edit-summary"><?php echo _("Summary")._(":") ?></label> <?php echo $SUMMARY_INPUT ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-04-10 13:09:14
|
Revision: 9650 http://sourceforge.net/p/phpwiki/code/9650 Author: vargenau Date: 2015-04-10 13:09:11 +0000 (Fri, 10 Apr 2015) Log Message: ----------- Remove unused icon ed_redo.png Modified Paths: -------------- trunk/lib/EditToolbar.php Removed Paths: ------------- trunk/themes/default/images/ed_redo.png Modified: trunk/lib/EditToolbar.php =================================================================== --- trunk/lib/EditToolbar.php 2015-04-10 13:07:49 UTC (rev 9649) +++ trunk/lib/EditToolbar.php 2015-04-10 13:09:11 UTC (rev 9650) @@ -252,7 +252,6 @@ if (defined('JS_SEARCHREPLACE') and JS_SEARCHREPLACE) { $undo_d_btn = $WikiTheme->getImageURL("ed_undo_d.png"); - //$redo_btn = $WikiTheme->getImageURL("ed_redo.png"); $sr_btn = $WikiTheme->getImageURL("ed_replace.png"); //TODO: generalize the UNDO button and fix it for Search & Replace $sr_html = HTML(HTML::img @@ -261,8 +260,6 @@ 'src' => $undo_d_btn, 'title' => _("Undo Search & Replace"), 'alt' => _("Undo Search & Replace"), - //'disabled'=>"disabled", //non-XHTML conform - //'onfocus' =>"if(this.blur && undo_buffer_index==0) this.blur()", 'onclick' => "do_undo()")), HTML::img (array('class' => "toolbar", Deleted: trunk/themes/default/images/ed_redo.png =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-04-10 14:07:56
|
Revision: 9652 http://sourceforge.net/p/phpwiki/code/9652 Author: vargenau Date: 2015-04-10 14:07:54 +0000 (Fri, 10 Apr 2015) Log Message: ----------- New Edit Toolbar Modified Paths: -------------- trunk/lib/editpage.php trunk/lib/plugin/WikiBlog.php trunk/locale/Makefile Removed Paths: ------------- trunk/lib/EditToolbar.php Deleted: trunk/lib/EditToolbar.php =================================================================== --- trunk/lib/EditToolbar.php 2015-04-10 13:12:21 UTC (rev 9651) +++ trunk/lib/EditToolbar.php 2015-04-10 14:07:54 UTC (rev 9652) @@ -1,509 +0,0 @@ -<?php - -/* Copyright 2004-2010 $ThePhpWikiProgrammingTeam - * Copyright 2008-2009 Marc-Etienne Vargenau, Alcatel-Lucent - * - * 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. - */ - -/** - * EDIT Toolbar Initialization. - * The default/themes/toolbar.js is from Mediawiki, this PHP is written from scratch. - * - * Features: - * - save-preview and formatting buttons from mediawiki - * - Search&Replace from walterzorn.de - * - pageinsert popup by Reini Urban (TODO: should be a pulldown) - */ - -class EditToolbar -{ - function __construct() - { - global $WikiTheme; - /** - * @var WikiRequest $request - */ - global $request; - - $this->tokens = array(); - - //FIXME: enable Undo button for all other buttons also, not only the search/replace button - if (defined('JS_SEARCHREPLACE') and JS_SEARCHREPLACE) { - $this->tokens['JS_SEARCHREPLACE'] = 1; - $undo_btn = $WikiTheme->getImageURL("ed_undo.png"); - $undo_d_btn = $WikiTheme->getImageURL("ed_undo_d.png"); - // JS_SEARCHREPLACE from walterzorn.de - $js = Javascript(" -uri_undo_btn = '" . $undo_btn . "' -msg_undo_alt = '" . _("Undo") . "' -uri_undo_d_btn = '" . $undo_d_btn . "' -msg_undo_d_alt = '" . _("Undo disabled") . "' -msg_do_undo = '" . _("Operation undone") . "' -msg_replfound = '" . _("Substring “\\1” found \\2 times. Replace with “\\3”?") . "' -msg_replnot = '" . _("String “%s” not found.") . "' -msg_repl_title = '" . _("Search & Replace") . "' -msg_repl_search = '" . _("Search for") . "' -msg_repl_replace_with = '" . _("Replace with") . "' -msg_repl_ok = '" . _("OK") . "' -msg_repl_close = '" . _("Close") . "' -"); - if (empty($WikiTheme->_headers_printed)) { - $WikiTheme->addMoreHeaders($js); - $WikiTheme->addMoreAttr('body', "SearchReplace", " onload='define_f()'"); - } else { // from an actionpage: WikiBlog, AddComment, WikiForum - printXML($js); - } - } else { - $WikiTheme->addMoreAttr('body', "editfocus", "document.getElementById('edit-content]').editarea.focus()"); - } - - if (defined('ENABLE_EDIT_TOOLBAR') and ENABLE_EDIT_TOOLBAR) { - $init = JavaScript("var data_path = '" . javascript_quote_string(DATA_PATH) . "';\n"); - $js = JavaScript('', array('src' => $WikiTheme->_findData("toolbar.js"))); - if (empty($WikiTheme->_headers_printed)) { - $WikiTheme->addMoreHeaders($init); - $WikiTheme->addMoreHeaders($js); - } else { // from an actionpage: WikiBlog, AddComment, WikiForum - printXML($init); - printXML($js); - printXML(JavaScript('define_f()')); - } - } - - require_once 'lib/WikiPluginCached.php'; - $cache = WikiPluginCached::newCache(); - $dbi = $request->getDbh(); - // regenerate if number of pages changes (categories, pages, templates, images uploaded) - $key = $dbi->numPages(); - $key .= '+categories+plugin' . (isBrowserSafari() ? '+safari' : ''); - if (defined('TOOLBAR_PAGELINK_PULLDOWN') and TOOLBAR_PAGELINK_PULLDOWN) { - $key .= "+pages"; - } - if (defined('TOOLBAR_TEMPLATE_PULLDOWN') and TOOLBAR_TEMPLATE_PULLDOWN) { - $key .= "+templates_" . $dbi->getTimestamp(); - } - if (defined('TOOLBAR_IMAGE_PULLDOWN') and TOOLBAR_IMAGE_PULLDOWN) { - if (file_exists(getUploadFilePath())) { - $key .= "+images_" . filemtime(getUploadFilePath()); - } - } - $id = $cache->generateId($key); - $content = $cache->get($id, 'toolbarcache'); - - if (!empty($content)) { - $this->tokens['EDIT_TOOLBAR'] =& $content; - } else { - $content = $this->_generate(); - // regenerate buttons every 1 hr/6 hrs - $cache->save($id, $content, DEBUG ? '+3600' : '+21600', 'toolbarcache'); - $this->tokens['EDIT_TOOLBAR'] =& $content; - } - } - - public function getTokens() - { - return $this->tokens; - } - - private function _generate() - { - global $WikiTheme, $request; - - $toolbar = "document.writeln(\"<div class=\\\"edit-toolbar\\\" id=\\\"toolbar\\\">\");\n"; - - if (defined('ENABLE_EDIT_TOOLBAR') and ENABLE_EDIT_TOOLBAR) { - $username = $request->_user->UserName(); - if ((defined('FUSIONFORGE') && FUSIONFORGE) or DISABLE_MARKUP_WIKIWORD or (!isWikiWord($username))) { - $username = '[[' . $username . ']]'; - } - $signature = " ––" . $username . " " . CTime(); - $toolarray = array( - array( - "image" => "ed_format_bold.png", - "open" => "**", - "close" => "**", - "sample" => _("Bold text"), - "title" => _("Bold text [alt-b]")), - array("image" => "ed_format_italic.png", - "open" => "//", - "close" => "//", - "sample" => _("Italic text"), - "title" => _("Italic text [alt-i]")), - array("image" => "ed_format_strike.png", - "open" => "<s>", - "close" => "</s>", - "sample" => _("Strike-through text"), - "title" => _("Strike")), - array("image" => "ed_format_color.png", - "open" => "%color=green% ", - "close" => " %%", - "sample" => _("Color text"), - "title" => _("Color")), - array("image" => "ed_pagelink.png", - "open" => "[[", - "close" => "]]", - "sample" => _("PageName|optional label"), - "title" => _("Link to page")), - array("image" => "ed_link.png", - "open" => "[[", - "close" => "]]", - "sample" => _("http://www.example.com|optional label"), - "title" => _("External link (remember http:// prefix)")), - array("image" => "ed_headline.png", - "open" => "\\n== ", - "close" => " ==\\n", - "sample" => _("Headline text"), - "title" => _("Level 1 headline")), - array("image" => "ed_nowiki.png", - "open" => "\\<verbatim\\>\\n", - "close" => "\\n\\</verbatim\\>", - "sample" => _("Insert non-formatted text here"), - "title" => _("Ignore wiki formatting")), - array("image" => "ed_sig.png", - "open" => $signature, - "close" => "", - "sample" => "", - "title" => _("Your signature")), - array("image" => "ed_hr.png", - "open" => "\\n----\\n", - "close" => "", - "sample" => "", - "title" => _("Horizontal line")), - array("image" => "ed_table.png", - "open" => "\\n{| class=\"bordered\"\\n|+ This is the table caption\\n|-\\n! Header A !! Header B !! Header C\\n|-\\n| Cell A1 || Cell B1 || Cell C1\\n|-\\n| Cell A2 || Cell B2 || Cell C2\\n|-\\n| Cell A3 || Cell B3 || Cell C3\\n|}\\n", - "close" => "", - "sample" => "", - "title" => _("Sample table")), - array("image" => "ed_enumlist.png", - "open" => "\\n# Item 1\\n# Item 2\\n# Item 3\\n", - "close" => "", - "sample" => "", - "title" => _("Enumeration")), - array("image" => "ed_list.png", - "open" => "\\n* Item 1\\n* Item 2\\n* Item 3\\n", - "close" => "", - "sample" => "", - "title" => _("List")), - array("image" => "ed_toc.png", - "open" => "<<CreateToc with_toclink||=1>>\\n", - "close" => "", - "sample" => "", - "title" => _("Table of Contents")), - array("image" => "ed_redirect.png", - "open" => "<<RedirectTo page=\"", - "close" => "\">>", - "sample" => _("Page Name"), - "title" => _("Redirect")), - array("image" => "ed_templateplugin.png", - "open" => "{{", - "close" => "}}", - "sample" => _("Template Name"), - "title" => _("Template")) - ); - $btn = new SubmitImageButton(_("Save"), "edit[save]", 'toolbar', - $WikiTheme->getImageURL("ed_save.png")); - $btn->addTooltip(_("Save")); - $btn->setAccesskey("s"); - $toolbar .= ('document.writeln("' . addslashes($btn->asXml()) . '");' . "\n"); - // preview not supported yet on Wikiblog - if (empty($WikiTheme->_headers_printed)) { - $btn = new SubmitImageButton(_("Preview"), "edit[preview]", 'toolbar', - $WikiTheme->getImageURL("ed_preview.png")); - $btn->addTooltip(_("Preview")); - $btn->setAccesskey("p"); - $toolbar .= ('document.writeln("' . addslashes($btn->asXml()) . '");' . "\n"); - } - - foreach ($toolarray as $tool) { - $image = $WikiTheme->getImageURL($tool["image"]); - $open = $tool["open"]; - $close = $tool["close"]; - $sample = addslashes($tool["sample"]); - // Note that we use the title both for the ALT tag and the TITLE tag of the image. - // Older browsers show a "speedtip" type message only for ALT. - // Ideally these should be different, realistically they - // probably don't need to be. - $tool = $WikiTheme->fixAccesskey($tool); - $title = addslashes($tool["title"]); - $toolbar .= ("addTagButton('$image','$title','$open','$close','$sample');\n"); - } - /* Fails with Chrome */ - if (!isBrowserSafari()) { - $toolbar .= ("addInfobox('" - . addslashes(_("Click a button to get an example text")) - . "');\n"); - } - } - - if (defined('JS_SEARCHREPLACE') and JS_SEARCHREPLACE) { - $undo_d_btn = $WikiTheme->getImageURL("ed_undo_d.png"); - $sr_btn = $WikiTheme->getImageURL("ed_replace.png"); - //TODO: generalize the UNDO button and fix it for Search & Replace - $sr_html = HTML(HTML::img - (array('class' => "toolbar", - 'id' => "sr_undo", - 'src' => $undo_d_btn, - 'title' => _("Undo Search & Replace"), - 'alt' => _("Undo Search & Replace"), - 'onclick' => "do_undo()")), - HTML::img - (array('class' => "toolbar", - 'src' => $sr_btn, - 'alt' => _("Search & Replace"), - 'title' => _("Search & Replace"), - 'onclick' => "replace()"))); - } else { - $sr_html = ''; - } - - //TODO: Delegate this to run-time with showing an hidden input at the right - - // Button to generate categories, display in extra window as popup and insert - $sr_html = HTML($sr_html, $this->categoriesPulldown()); - // Button to generate plugins, display in extra window as popup and insert - $sr_html = HTML($sr_html, $this->pluginPulldown()); - - // Button to generate pagenames, display in extra window as popup and insert - if (defined('TOOLBAR_PAGELINK_PULLDOWN') and TOOLBAR_PAGELINK_PULLDOWN) - $sr_html = HTML($sr_html, $this->pagesPulldown(TOOLBAR_PAGELINK_PULLDOWN)); - // Button to insert from an template, display pagename in extra window as popup and insert - if (defined('TOOLBAR_TEMPLATE_PULLDOWN') and TOOLBAR_TEMPLATE_PULLDOWN) - $sr_html = HTML($sr_html, $this->templatePulldown(TOOLBAR_TEMPLATE_PULLDOWN)); - - // Button to add images, display in extra window as popup and insert - if (defined('TOOLBAR_IMAGE_PULLDOWN') and TOOLBAR_IMAGE_PULLDOWN) - $sr_html = HTML($sr_html, $this->imagePulldown()); - - // don't use document.write for replace, otherwise self.opener is not defined. - $toolbar_end = "document.writeln(\"</div>\");"; - if ($sr_html) - return HTML(Javascript($toolbar), - "\n", $sr_html, "\n", - Javascript($toolbar_end)); - else - return HTML(Javascript($toolbar . $toolbar_end)); - } - - //result is cached - private function categoriesPulldown() - { - /** - * @var WikiRequest $request - */ - global $request; - global $WikiTheme; - - require_once 'lib/TextSearchQuery.php'; - $dbi =& $request->_dbi; - // KEYWORDS formerly known as $KeywordLinkRegexp - $pages = $dbi->titleSearch(new TextSearchQuery(KEYWORDS, true)); - if ($pages) { - $categories = array(); - while ($p = $pages->next()) { - $page = $p->getName(); - if ((defined('FUSIONFORGE') && FUSIONFORGE)) { - $categories[] = "['$page', '%0A----%0A%5B%5B" . $page . "%5D%5D']"; - } elseif (DISABLE_MARKUP_WIKIWORD or (!isWikiWord($page))) { - $categories[] = "['$page', '%0A%5B" . $page . "%5D']"; - } else { - $categories[] = "['$page', '%0A" . $page . "']"; - } - } - if (!$categories) return ''; - // Ensure this to be inserted at the very end. Hence we added the id to the function. - $more_buttons = HTML::img(array('class' => "toolbar", - 'id' => 'tb-categories', - 'src' => $WikiTheme->getImageURL("ed_category.png"), - 'title' => _("Insert Categories"), - 'alt' => "Insert Categories", // to detect this at js - 'onclick' => "showPulldown('" . - _("Insert Categories") - . "',[" . join(",", $categories) . "],'" - . _("Insert") . "','" - . _("Close") . "','tb-categories')")); - return HTML("\n", $more_buttons); - } - return ''; - } - - // result is cached. Esp. the args are expensive - private function pluginPulldown() - { - global $WikiTheme; - global $AllAllowedPlugins; - - $plugin_dir = 'lib/plugin'; - if (defined('PHPWIKI_DIR')) - $plugin_dir = PHPWIKI_DIR . "/$plugin_dir"; - $pd = new fileSet($plugin_dir, '*.php'); - $plugins = $pd->getFiles(); - unset($pd); - sort($plugins); - if (!empty($plugins)) { - $plugin_js = ''; - require_once 'lib/WikiPlugin.php'; - $w = new WikiPluginLoader(); - foreach ($plugins as $plugin) { - $pluginName = str_replace(".php", "", $plugin); - if (in_array($pluginName, $AllAllowedPlugins)) { - $p = $w->getPlugin($pluginName, false); // second arg? - // trap php files which aren't WikiPlugin~s - if (strtolower(substr(get_parent_class($p), 0, 10)) == 'wikiplugin') { - $plugin_args = ''; - $desc = $p->getArgumentsDescription(); - $src = array("\n", '"', "'", '|', '[', ']', '\\'); - $replace = array('%0A', '%22', '%27', '%7C', '%5B', '%5D', '%5C'); - $desc = str_replace("<br />", ' ', $desc->asXML()); - if ($desc) - $plugin_args = ' ' . str_replace($src, $replace, $desc); - $toinsert = "%0A<<" . $pluginName . $plugin_args . ">>"; // args? - $plugin_js .= ",['$pluginName','$toinsert']"; - } - } - } - $plugin_js = substr($plugin_js, 1); - $more_buttons = HTML::img(array('class' => "toolbar", - 'id' => 'tb-plugins', - 'src' => $WikiTheme->getImageURL("ed_plugins.png"), - 'title' => _("Insert Plugin"), - 'alt' => _("Insert Plugin"), - 'onclick' => "showPulldown('" . - _("Insert Plugin") - . "',[" . $plugin_js . "],'" - . _("Insert") . "','" - . _("Close") . "','tb-plugins')")); - return HTML("\n", $more_buttons); - } - return ''; - } - - // result is cached. Esp. the args are expensive - private function pagesPulldown($query, $case_exact = false, $regex = 'auto') - { - /** - * @var WikiRequest $request - */ - global $request; - - require_once 'lib/TextSearchQuery.php'; - $dbi =& $request->_dbi; - $page_iter = $dbi->titleSearch(new TextSearchQuery($query, $case_exact, $regex)); - if ($page_iter->count() > 0) { - global $WikiTheme; - $pages = array(); - while ($p = $page_iter->next()) { - $page = $p->getName(); - if (defined('DISABLE_MARKUP_WIKIWORD') and DISABLE_MARKUP_WIKIWORD or (!isWikiWord($page))) - $pages[] = "['$page', '%5B" . $page . "%5D']"; - else - $pages[] = "['$page', '$page']"; - } - return HTML("\n", HTML::img(array('class' => "toolbar", - 'id' => 'tb-pages', - 'src' => $WikiTheme->getImageURL("ed_pages.png"), - 'title' => _("Insert PageLink"), - 'alt' => _("Insert PageLink"), - 'onclick' => "showPulldown('" . - _("Insert PageLink") - . "',[" . join(",", $pages) . "],'" - . _("Insert") . "','" - . _("Close") . "','tb-pages')"))); - } - return ''; - } - - // result is cached. Esp. the args are expensive - private function imagePulldown() - { - global $WikiTheme, $request; - - $image_dir = getUploadFilePath(); - $pd = new imageOrVideoSet($image_dir, '*'); - $images = $pd->getFiles(); - unset($pd); - if (defined('UPLOAD_USERDIR') and UPLOAD_USERDIR) { - $image_dir .= "/" . $request->_user->_userid; - $pd = new imageOrVideoSet($image_dir, '*'); - $images = array_merge($images, $pd->getFiles()); - unset($pd); - } - sort($images); - if (!empty($images)) { - $image_js = ''; - foreach ($images as $image) { - $image_js .= ",['$image','{{" . $image . "}}']"; - } - $image_js = substr($image_js, 1); - $more_buttons = HTML::img(array('class' => "toolbar", - 'id' => 'tb-images', - 'src' => $WikiTheme->getImageURL("ed_image.png"), - 'title' => _("Insert Image or Video"), - 'alt' => _("Insert Image or Video"), - 'onclick' => "showPulldown('" . - _("Insert Image or Video") - . "',[" . $image_js . "],'" - . _("Insert") . "','" - . _("Close") . "','tb-images')")); - return HTML("\n", $more_buttons); - } - return ''; - } - - // result is cached. Esp. the args are expensive - // FIXME! - private function templatePulldown($query, $case_exact = false, $regex = 'auto') - { - global $request; - require_once 'lib/TextSearchQuery.php'; - $dbi =& $request->_dbi; - $page_iter = $dbi->titleSearch(new TextSearchQuery($query, $case_exact, $regex)); - if ($page_iter->count()) { - global $WikiTheme; - $pages_js = ''; - while ($p = $page_iter->next()) { - $rev = $p->getCurrentRevision(); - $toinsert = str_replace(array("\n", '"'), array('_nl', '_quot'), $rev->_get_content()); - //$toinsert = str_replace("\n",'\n',addslashes($rev->_get_content())); - $pages_js .= ",['" . $p->getName() . "','_nl$toinsert']"; - } - $pages_js = substr($pages_js, 1); - if (!empty($pages_js)) - return HTML("\n", HTML::img - (array('class' => "toolbar", - 'id' => 'tb-templates', - 'src' => $WikiTheme->getImageURL("ed_template.png"), - 'title' => _("Insert Template"), - 'alt' => _("Insert Template"), - 'onclick' => "showPulldown('" . - _("Insert Template") - . "',[" . $pages_js . "],'" - . _("Insert") . "','" - . _("Close") . "','tb-templates')"))); - } - return ''; - } - -} - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2015-04-10 13:12:21 UTC (rev 9651) +++ trunk/lib/editpage.php 2015-04-10 14:07:54 UTC (rev 9652) @@ -16,7 +16,6 @@ public $public; public $external; public $_currentVersion; - /** * @var UserPreferences $_prefs */ @@ -199,14 +198,6 @@ // FIXME: NOT_CURRENT_MESSAGE? $tokens = array_merge($tokens, $this->getFormElements()); - if (ENABLE_EDIT_TOOLBAR and !ENABLE_WYSIWYG) { - require_once 'lib/EditToolbar.php'; - $toolbar = new EditToolbar(); - $tokens = array_merge($tokens, $toolbar->getTokens()); - } else { - $tokens['EDIT_TOOLBAR'] = ''; - } - return $this->output('editpage', _("Edit: %s")); } @@ -610,6 +601,8 @@ private function getTextArea() { + global $WikiTheme; + $request = &$this->request; $readonly = !$this->canEdit(); // || $this->isConcurrentUpdate(); @@ -629,13 +622,357 @@ 'cols' => $request->getPref('editWidth'), 'readonly' => (bool)$readonly), $this->_content); + + if (defined('JS_SEARCHREPLACE') and JS_SEARCHREPLACE) { + $this->tokens['JS_SEARCHREPLACE'] = 1; + $undo_btn = $WikiTheme->getImageURL("ed_undo.png"); + $undo_d_btn = $WikiTheme->getImageURL("ed_undo_d.png"); + // JS_SEARCHREPLACE from walterzorn.de + $js = Javascript(" +uri_undo_btn = '" . $undo_btn . "' +msg_undo_alt = '" . _("Undo") . "' +uri_undo_d_btn = '" . $undo_d_btn . "' +msg_undo_d_alt = '" . _("Undo disabled") . "' +msg_do_undo = '" . _("Operation undone") . "' +msg_replfound = '" . _("Substring “\\1” found \\2 times. Replace with “\\3”?") . "' +msg_replnot = '" . _("String “%s” not found.") . "' +msg_repl_title = '" . _("Search & Replace") . "' +msg_repl_search = '" . _("Search for") . "' +msg_repl_replace_with = '" . _("Replace with") . "' +msg_repl_ok = '" . _("OK") . "' +msg_repl_close = '" . _("Close") . "' +"); + if (empty($WikiTheme->_headers_printed)) { + $WikiTheme->addMoreHeaders($js); + $WikiTheme->addMoreAttr('body', "SearchReplace", " onload='define_f()'"); + } else { // from an actionpage: WikiBlog, AddComment, WikiForum + printXML($js); + } + } else { + $WikiTheme->addMoreAttr('body', "editfocus", "document.getElementById('edit-content]').editarea.focus()"); + } + if (defined('ENABLE_WYSIWYG') and ENABLE_WYSIWYG) { return $this->WysiwygEdit->Textarea($textarea, $this->_wikicontent, $textarea->getAttr('name')); - } else + } elseif (defined('ENABLE_EDIT_TOOLBAR') and ENABLE_EDIT_TOOLBAR) { + $init = JavaScript("var data_path = '" . javascript_quote_string(DATA_PATH) . "';\n"); + $js = JavaScript('', array('src' => $WikiTheme->_findData("toolbar.js"))); + if (empty($WikiTheme->_headers_printed)) { + $WikiTheme->addMoreHeaders($init); + $WikiTheme->addMoreHeaders($js); + } else { // from an actionpage: WikiBlog, AddComment, WikiForum + printXML($init); + printXML($js); + printXML(JavaScript('define_f()')); + } + $toolbar = HTML::div(array('class' => 'edit-toolbar', 'id' => 'toolbar')); + $toolbar->pushContent(HTML::input(array('src' => $WikiTheme->getImageURL("ed_save.png"), + 'alt' => 'Save', + 'name' => 'edit[save]', + 'class' => 'toolbar', + 'title' => 'Save', + 'type' => 'image'))); + $toolbar->pushContent(HTML::input(array('src' => $WikiTheme->getImageURL("ed_preview.png"), + 'alt' => 'Preview', + 'name' => 'edit[preview]', + 'class' => 'toolbar', + 'title' => 'Preview', + 'type' => 'image'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_bold.png"), + 'class' => 'toolbar', + 'alt' => 'Bold text', + 'title' => 'Bold text', + 'onclick' => "insertTags('**','**','Bold text'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_italic.png"), + 'class' => 'toolbar', + 'alt' => 'Italic text', + 'title' => 'Italic text', + 'onclick' => "insertTags('//','//','Italic text'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_strike.png"), + 'class' => 'toolbar', + 'alt' => 'Strike', + 'title' => 'Strike', + 'onclick' => "insertTags('<s>','</s>','Strike-through text'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_color.png"), + 'class' => 'toolbar', + 'alt' => 'Color', + 'title' => 'Color', + 'onclick' => "insertTags('%color=green%','%%','Color text'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_pagelink.png"), + 'class' => 'toolbar', + 'alt' => 'Link to page', + 'title' => 'Link to page', + 'onclick' => "insertTags('[[',']]','PageName|optional label'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_link.png"), + 'class' => 'toolbar', + 'alt' => 'External link (remember http:// prefix)', + 'title' => 'External link (remember http:// prefix)', + 'onclick' => "insertTags('[[',']]','http://www.example.com|optional label'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_headline.png"), + 'class' => 'toolbar', + 'alt' => 'Level 1 headline', + 'title' => 'Level 1 headline', + 'onclick' => 'insertTags("\n==","==\n","Headline text"); return true;'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_nowiki.png"), + 'class' => 'toolbar', + 'alt' => 'Ignore wiki formatting', + 'title' => 'Ignore wiki formatting', + 'onclick' => 'insertTags("<verbatim>\n","\n</verbatim>","Insert non-formatted text here"); return true;'))); + global $request; + $username = $request->_user->UserName(); + $signature = " ––[[" . $username . "]] " . CTime() . '\n'; + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_sig.png"), + 'class' => 'toolbar', + 'alt' => 'Your signature', + 'title' => 'Your signature', + 'onclick' => "insertTags('".$signature."','',''); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_hr.png"), + 'class' => 'toolbar', + 'alt' => 'Horizontal line', + 'title' => 'Horizontal line', + 'onclick' => 'insertTags("\n----\n","",""); return true;'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_table.png"), + 'class' => 'toolbar', + 'alt' => 'Sample table', + 'title' => 'Sample table', + 'onclick' => 'insertTags("\n{| class=\"bordered\"\n|+ This is the table caption\n|-\n! Header A !! Header B !! Header C\n|-\n| Cell A1 || Cell B1 || Cell C1\n|-\n| Cell A2 || Cell B2 || Cell C2\n|-\n| Cell A3 || Cell B3 || Cell C3\n|}\n","",""); return true;'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_enumlist.png"), + 'class' => 'toolbar', + 'alt' => 'Enumeration', + 'title' => 'Enumeration', + 'onclick' => 'insertTags("\n# Item 1\n# Item 2\n# Item 3\n","",""); return true;'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_list.png"), + 'class' => 'toolbar', + 'alt' => 'List', + 'title' => 'List', + 'onclick' => 'insertTags("\n* Item 1\n* Item 2\n* Item 3\n","",""); return true;'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_toc.png"), + 'class' => 'toolbar', + 'alt' => 'Table of Contents', + 'title' => 'Table of Contents', + 'onclick' => 'insertTags("<<CreateToc with_toclink||=1>>\n","",""); return true;'))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_redirect.png"), + 'class' => 'toolbar', + 'alt' => 'Redirect', + 'title' => 'Redirect', + 'onclick' => "insertTags('<<RedirectTo page="','">>','Page Name'); return true;"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_templateplugin.png"), + 'class' => 'toolbar', + 'alt' => 'Template', + 'title' => 'Template', + 'onclick' => "insertTags('{{','}}','Template Name'); return true;"))); + $toolbar->pushContent($this->categoriesPulldown()); + $toolbar->pushContent($this->pluginPulldown()); + if (defined('TOOLBAR_PAGELINK_PULLDOWN') and TOOLBAR_PAGELINK_PULLDOWN) { + $toolbar->pushContent($this->pagesPulldown(TOOLBAR_PAGELINK_PULLDOWN)); + } + if (defined('TOOLBAR_TEMPLATE_PULLDOWN') and TOOLBAR_TEMPLATE_PULLDOWN) { + $toolbar->pushContent($this->templatePulldown(TOOLBAR_TEMPLATE_PULLDOWN)); + } + if (defined('TOOLBAR_IMAGE_PULLDOWN') and TOOLBAR_IMAGE_PULLDOWN) { + $toolbar->pushContent($this->imagePulldown()); + } + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_replace.png"), + 'class' => 'toolbar', + 'alt' => 'Search & Replace', + 'title' => 'Search & Replace', + 'onclick' => "replace();"))); + $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_undo_d.png"), + 'class' => 'toolbar', + 'id' => 'sr_undo', + 'alt' => 'Undo Search & Replace', + 'title' => 'Undo Search & Replace', + 'onclick' => "do_undo();"))); + return HTML($toolbar, $textarea); + } else { return $textarea; + } } + private function categoriesPulldown() + { + /** + * @var WikiRequest $request + */ + global $request; + global $WikiTheme; + + require_once 'lib/TextSearchQuery.php'; + $dbi =& $request->_dbi; + // KEYWORDS formerly known as $KeywordLinkRegexp + $pages = $dbi->titleSearch(new TextSearchQuery(KEYWORDS, true)); + if ($pages) { + $categories = array(); + while ($p = $pages->next()) { + $page = $p->getName(); + $categories[] = "['$page', '%0A----%0A%5B%5B" . $page . "%5D%5D']"; + } + if (!$categories) return ''; + // Ensure this to be inserted at the very end. Hence we added the id to the function. + $more_buttons = HTML::img(array('class' => "toolbar", + 'id' => 'tb-categories', + 'src' => $WikiTheme->getImageURL("ed_category.png"), + 'title' => _("Insert Categories"), + 'alt' => "Insert Categories", // to detect this at js + 'onclick' => "showPulldown('" . + _("Insert Categories") + . "',[" . join(",", $categories) . "],'" + . _("Insert") . "','" + . _("Close") . "','tb-categories')")); + return $more_buttons; + } + return ''; + } + + private function pluginPulldown() + { + global $WikiTheme; + global $AllAllowedPlugins; + + $plugin_dir = 'lib/plugin'; + if (defined('PHPWIKI_DIR')) + $plugin_dir = PHPWIKI_DIR . "/$plugin_dir"; + $pd = new fileSet($plugin_dir, '*.php'); + $plugins = $pd->getFiles(); + unset($pd); + sort($plugins); + if (!empty($plugins)) { + $plugin_js = ''; + require_once 'lib/WikiPlugin.php'; + $w = new WikiPluginLoader(); + foreach ($plugins as $plugin) { + $pluginName = str_replace(".php", "", $plugin); + if (in_array($pluginName, $AllAllowedPlugins)) { + $p = $w->getPlugin($pluginName, false); // second arg? + // trap php files which aren't WikiPlugin~s + if (strtolower(substr(get_parent_class($p), 0, 10)) == 'wikiplugin') { + $plugin_args = ''; + $desc = $p->getArgumentsDescription(); + $src = array("\n", '"', "'", '|', '[', ']', '\\'); + $replace = array('%0A', '%22', '%27', '%7C', '%5B', '%5D', '%5C'); + $desc = str_replace("<br />", ' ', $desc->asXML()); + if ($desc) + $plugin_args = ' ' . str_replace($src, $replace, $desc); + $toinsert = "%0A<<" . $pluginName . $plugin_args . ">>"; // args? + $plugin_js .= ",['$pluginName','$toinsert']"; + } + } + } + $plugin_js = substr($plugin_js, 1); + $more_buttons = HTML::img(array('class' => "toolbar", + 'id' => 'tb-plugins', + 'src' => $WikiTheme->getImageURL("ed_plugins.png"), + 'title' => _("Insert Plugin"), + 'alt' => _("Insert Plugin"), + 'onclick' => "showPulldown('" . + _("Insert Plugin") + . "',[" . $plugin_js . "],'" + . _("Insert") . "','" + . _("Close") . "','tb-plugins')")); + return $more_buttons; + } + return ''; + } + + private function pagesPulldown($query) + { + /** + * @var WikiRequest $request + */ + global $request; + + require_once 'lib/TextSearchQuery.php'; + $dbi =& $request->_dbi; + $page_iter = $dbi->titleSearch(new TextSearchQuery($query, false, 'auto')); + if ($page_iter->count() > 0) { + global $WikiTheme; + $pages = array(); + while ($p = $page_iter->next()) { + $page = $p->getName(); + $pages[] = "['$page', '%5B%5B" . $page . "%5D%5D']"; + } + return HTML::img(array('class' => "toolbar", + 'id' => 'tb-pages', + 'src' => $WikiTheme->getImageURL("ed_pages.png"), + 'title' => _("Insert PageLink"), + 'alt' => _("Insert PageLink"), + 'onclick' => "showPulldown('" . + _("Insert PageLink") + . "',[" . join(",", $pages) . "],'" + . _("Insert") . "','" + . _("Close") . "','tb-pages')")); + } + return ''; + } + + private function templatePulldown($query) + { + global $request; + require_once 'lib/TextSearchQuery.php'; + $dbi =& $request->_dbi; + $page_iter = $dbi->titleSearch(new TextSearchQuery($query, false, 'auto')); + if ($page_iter->count()) { + global $WikiTheme; + $pages_js = ''; + while ($p = $page_iter->next()) { + $rev = $p->getCurrentRevision(); + $toinsert = str_replace(array("\n", '"'), array('_nl', '_quot'), $rev->_get_content()); + $pages_js .= ",['" . $p->getName() . "','_nl$toinsert']"; + } + $pages_js = substr($pages_js, 1); + if (!empty($pages_js)) + return HTML::img + (array('class' => "toolbar", + 'id' => 'tb-templates', + 'src' => $WikiTheme->getImageURL("ed_template.png"), + 'title' => _("Insert Template"), + 'alt' => _("Insert Template"), + 'onclick' => "showPulldown('" . + _("Insert Template") + . "',[" . $pages_js . "],'" + . _("Insert") . "','" + . _("Close") . "','tb-templates')")); + } + return ''; + } + + private function imagePulldown() + { + global $WikiTheme, $request; + + $image_dir = getUploadFilePath(); + $pd = new imageOrVideoSet($image_dir, '*'); + $images = $pd->getFiles(); + unset($pd); + if (defined('UPLOAD_USERDIR') and UPLOAD_USERDIR) { + $image_dir .= "/" . $request->_user->_userid; + $pd = new imageOrVideoSet($image_dir, '*'); + $images = array_merge($images, $pd->getFiles()); + unset($pd); + } + sort($images); + if (!empty($images)) { + $image_js = ''; + foreach ($images as $image) { + $image_js .= ",['$image','{{" . $image . "}}']"; + } + $image_js = substr($image_js, 1); + $more_buttons = HTML::img(array('class' => "toolbar", + 'id' => 'tb-images', + 'src' => $WikiTheme->getImageURL("ed_image.png"), + 'title' => _("Insert Image or Video"), + 'alt' => _("Insert Image or Video"), + 'onclick' => "showPulldown('" . + _("Insert Image or Video") + . "',[" . $image_js . "],'" + . _("Insert") . "','" + . _("Close") . "','tb-images')")); + return $more_buttons; + } + return ''; + } + protected function getFormElements() { global $WikiTheme; @@ -896,12 +1233,6 @@ $tokens['SEP'], $tokens['PREVIEW_B']); } - if (ENABLE_EDIT_TOOLBAR and !ENABLE_WYSIWYG) { - include_once 'lib/EditToolbar.php'; - $toolbar = new EditToolbar(); - $tokens = array_merge($tokens, $toolbar->getTokens()); - } - return $this->output('editpage', _("Merge and Edit: %s")); } Modified: trunk/lib/plugin/WikiBlog.php =================================================================== --- trunk/lib/plugin/WikiBlog.php 2015-04-10 13:12:21 UTC (rev 9651) +++ trunk/lib/plugin/WikiBlog.php 2015-04-10 14:07:54 UTC (rev 9652) @@ -383,11 +383,6 @@ $args = array('PAGENAME' => $args['pagename'], 'HIDDEN_INPUTS' => HiddenInputs($request->getArgs())); - if (ENABLE_EDIT_TOOLBAR and !ENABLE_WYSIWYG and ($template != 'addcomment')) { - include_once 'lib/EditToolbar.php'; - $toolbar = new EditToolbar(); - $args = array_merge($args, $toolbar->getTokens()); - } return new Template($template, $request, $args); } Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2015-04-10 13:12:21 UTC (rev 9651) +++ trunk/locale/Makefile 2015-04-10 14:07:54 UTC (rev 9652) @@ -95,7 +95,6 @@ ${POT_FILE}: .././lib/diff.php ${POT_FILE}: .././lib/display.php ${POT_FILE}: .././lib/editpage.php -${POT_FILE}: .././lib/EditToolbar.php ${POT_FILE}: .././lib/ErrorManager.php ${POT_FILE}: .././lib/ExternalReferrer.php ${POT_FILE}: .././lib/FileFinder.php This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-04-10 14:34:35
|
Revision: 9653 http://sourceforge.net/p/phpwiki/code/9653 Author: vargenau Date: 2015-04-10 14:34:25 +0000 (Fri, 10 Apr 2015) Log Message: ----------- Translate strings 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 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/lib/editpage.php 2015-04-10 14:34:25 UTC (rev 9653) @@ -668,99 +668,99 @@ } $toolbar = HTML::div(array('class' => 'edit-toolbar', 'id' => 'toolbar')); $toolbar->pushContent(HTML::input(array('src' => $WikiTheme->getImageURL("ed_save.png"), - 'alt' => 'Save', 'name' => 'edit[save]', 'class' => 'toolbar', - 'title' => 'Save', + 'alt' => _('Save'), + 'title' => _('Save'), 'type' => 'image'))); $toolbar->pushContent(HTML::input(array('src' => $WikiTheme->getImageURL("ed_preview.png"), - 'alt' => 'Preview', 'name' => 'edit[preview]', 'class' => 'toolbar', - 'title' => 'Preview', + 'alt' => _('Preview'), + 'title' => _('Preview'), 'type' => 'image'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_bold.png"), 'class' => 'toolbar', - 'alt' => 'Bold text', - 'title' => 'Bold text', + 'alt' => _('Bold text'), + 'title' => _('Bold text'), 'onclick' => "insertTags('**','**','Bold text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_italic.png"), 'class' => 'toolbar', - 'alt' => 'Italic text', - 'title' => 'Italic text', + 'alt' => _('Italic text'), + 'title' => _('Italic text'), 'onclick' => "insertTags('//','//','Italic text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_strike.png"), 'class' => 'toolbar', - 'alt' => 'Strike', - 'title' => 'Strike', + 'alt' => _('Strike-through text'), + 'title' => _('Strike-through text'), 'onclick' => "insertTags('<s>','</s>','Strike-through text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_color.png"), 'class' => 'toolbar', - 'alt' => 'Color', - 'title' => 'Color', + 'alt' => _('Color text'), + 'title' => _('Color text'), 'onclick' => "insertTags('%color=green%','%%','Color text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_pagelink.png"), 'class' => 'toolbar', - 'alt' => 'Link to page', - 'title' => 'Link to page', + 'alt' => _('Link to page'), + 'title' => _('Link to page'), 'onclick' => "insertTags('[[',']]','PageName|optional label'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_link.png"), 'class' => 'toolbar', - 'alt' => 'External link (remember http:// prefix)', - 'title' => 'External link (remember http:// prefix)', + 'alt' => _('External link (remember http:// prefix)'), + 'title' => _('External link (remember http:// prefix)'), 'onclick' => "insertTags('[[',']]','http://www.example.com|optional label'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_headline.png"), 'class' => 'toolbar', - 'alt' => 'Level 1 headline', - 'title' => 'Level 1 headline', + 'alt' => _('Level 1 headline'), + 'title' => _('Level 1 headline'), 'onclick' => 'insertTags("\n==","==\n","Headline text"); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_nowiki.png"), 'class' => 'toolbar', - 'alt' => 'Ignore wiki formatting', - 'title' => 'Ignore wiki formatting', + 'alt' => _('Ignore wiki formatting'), + 'title' => _('Ignore wiki formatting'), 'onclick' => 'insertTags("<verbatim>\n","\n</verbatim>","Insert non-formatted text here"); return true;'))); global $request; $username = $request->_user->UserName(); $signature = " ––[[" . $username . "]] " . CTime() . '\n'; $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_sig.png"), 'class' => 'toolbar', - 'alt' => 'Your signature', - 'title' => 'Your signature', + 'alt' => _('Your signature'), + 'title' => _('Your signature'), 'onclick' => "insertTags('".$signature."','',''); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_hr.png"), 'class' => 'toolbar', - 'alt' => 'Horizontal line', - 'title' => 'Horizontal line', + 'alt' => _('Horizontal line'), + 'title' => _('Horizontal line'), 'onclick' => 'insertTags("\n----\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_table.png"), 'class' => 'toolbar', - 'alt' => 'Sample table', - 'title' => 'Sample table', + 'alt' => _('Sample table'), + 'title' => _('Sample table'), 'onclick' => 'insertTags("\n{| class=\"bordered\"\n|+ This is the table caption\n|-\n! Header A !! Header B !! Header C\n|-\n| Cell A1 || Cell B1 || Cell C1\n|-\n| Cell A2 || Cell B2 || Cell C2\n|-\n| Cell A3 || Cell B3 || Cell C3\n|}\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_enumlist.png"), 'class' => 'toolbar', - 'alt' => 'Enumeration', - 'title' => 'Enumeration', + 'alt' => _('Enumeration'), + 'title' => _('Enumeration'), 'onclick' => 'insertTags("\n# Item 1\n# Item 2\n# Item 3\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_list.png"), 'class' => 'toolbar', - 'alt' => 'List', - 'title' => 'List', + 'alt' => _('List'), + 'title' => _('List'), 'onclick' => 'insertTags("\n* Item 1\n* Item 2\n* Item 3\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_toc.png"), 'class' => 'toolbar', - 'alt' => 'Table of Contents', - 'title' => 'Table of Contents', + 'alt' => _('Table of Contents'), + 'title' => _('Table of Contents'), 'onclick' => 'insertTags("<<CreateToc with_toclink||=1>>\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_redirect.png"), 'class' => 'toolbar', - 'alt' => 'Redirect', - 'title' => 'Redirect', + 'alt' => _('Redirect'), + 'title' => _('Redirect'), 'onclick' => "insertTags('<<RedirectTo page="','">>','Page Name'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_templateplugin.png"), 'class' => 'toolbar', - 'alt' => 'Template', - 'title' => 'Template', + 'alt' => _('Template'), + 'title' => _('Template'), 'onclick' => "insertTags('{{','}}','Template Name'); return true;"))); $toolbar->pushContent($this->categoriesPulldown()); $toolbar->pushContent($this->pluginPulldown()); @@ -775,14 +775,14 @@ } $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_replace.png"), 'class' => 'toolbar', - 'alt' => 'Search & Replace', - 'title' => 'Search & Replace', + 'alt' => _('Search & Replace'), + 'title' => _('Search & Replace'), 'onclick' => "replace();"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_undo_d.png"), 'class' => 'toolbar', 'id' => 'sr_undo', - 'alt' => 'Undo Search & Replace', - 'title' => 'Undo Search & Replace', + 'alt' => _('Undo Search & Replace'), + 'title' => _('Undo Search & Replace'), 'onclick' => "do_undo();"))); return HTML($toolbar, $textarea); } else { @@ -814,7 +814,7 @@ 'id' => 'tb-categories', 'src' => $WikiTheme->getImageURL("ed_category.png"), 'title' => _("Insert Categories"), - 'alt' => "Insert Categories", // to detect this at js + 'alt' => _("Insert Categories"), // to detect this at js 'onclick' => "showPulldown('" . _("Insert Categories") . "',[" . join(",", $categories) . "],'" 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 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/de.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\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." @@ -305,52 +305,6 @@ "überschrieben. Deshalb sind Ihre und die Änderungen des anderen Autors " "miteinander kombiniert worden. Das Ergebnis sehen Sie unten." -msgid "Preview" -msgstr "Vorschau" - -msgid "Preview the current content [alt-p]" -msgstr "Die aktuelle Version vorschauen [alt-p]" - -msgid "Save" -msgstr "Speichern" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Änderungen" - -msgid "Preview the current changes as diff [alt-c]" -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." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -# (Wrong Translation; sorry, but the German term for edit is NOT -# editieren, but e d i e r e n). -#, php-format -msgid "Merge and Edit: %s" -msgstr "Zusammenfügen und Bearbeiten: %s" - msgid "Undo" msgstr "Rückgängig" @@ -382,51 +336,33 @@ msgid "Close" msgstr "Schließen" +msgid "Save" +msgstr "Speichern" + +msgid "Preview" +msgstr "Vorschau" + msgid "Bold text" msgstr "Fetter Text" -msgid "Bold text [alt-b]" -msgstr "Fetter Text [alt-f]" - msgid "Italic text" msgstr "Kursiver Text" -msgid "Italic text [alt-i]" -msgstr "Kursiver Text [alt-k]" - msgid "Strike-through text" msgstr "Durchgestrichen" -msgid "Strike" -msgstr "Durchstreichen" - msgid "Color text" msgstr "Farbiger Text" -msgid "Color" -msgstr "Farbe" - -msgid "PageName|optional label" -msgstr "SeitenName|optionaler Name" - msgid "Link to page" msgstr "Link auf Seite" -msgid "http://www.example.com|optional label" -msgstr "http://www.example.com|optionaler Name" - msgid "External link (remember http:// prefix)" msgstr "Externer Link (http:// prefix)" -msgid "Headline text" -msgstr "Überschrift" - msgid "Level 1 headline" msgstr "H1 Überschrift" -msgid "Insert non-formatted text here" -msgstr "Füge unformatierten Text hier ein" - msgid "Ignore wiki formatting" msgstr "Keine Wiki Formatierung" @@ -448,21 +384,12 @@ msgid "Table of Contents" msgstr "Inhaltsverzeichnis" -msgid "Page Name" -msgstr "Seitenname" - msgid "Redirect" msgstr "Weiterleiten" -msgid "Template Name" -msgstr "Vorlagenname" - msgid "Template" msgstr "Vorlage" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "Suchen & Ersetzen rückgängig machen" @@ -478,13 +405,53 @@ msgid "Insert PageLink" msgstr "SeitenLink einfügen" +msgid "Insert Template" +msgstr "Vorlage einfügen" + msgid "Insert Image or Video" msgstr "Bild oder Video einfügen" -msgid "Insert Template" -msgstr "Vorlage einfügen" +msgid "Preview the current content [alt-p]" +msgstr "Die aktuelle Version vorschauen [alt-p]" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Änderungen" + +msgid "Preview the current changes as diff [alt-c]" +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." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +# (Wrong Translation; sorry, but the German term for edit is NOT +# editieren, but e d i e r e n). +#, php-format +msgid "Merge and Edit: %s" +msgstr "Zusammenfügen und Bearbeiten: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s: Fehler während der Fehlerbehandlung von:" @@ -1038,6 +1005,9 @@ msgid "“%s” not found" msgstr "»%s« nicht gefunden" +msgid "Page Name" +msgstr "Seitenname" + #, php-format msgid "page permission inherited from %s" msgstr "Zugriffsrecht geerbt von %s" @@ -6095,6 +6065,33 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Strike" +#~ msgstr "Durchstreichen" + +#~ msgid "Color" +#~ msgstr "Farbe" + +#~ msgid "Bold text [alt-b]" +#~ msgstr "Fetter Text [alt-f]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Kursiver Text [alt-k]" + +#~ msgid "PageName|optional label" +#~ msgstr "SeitenName|optionaler Name" + +#~ msgid "http://www.example.com|optional label" +#~ msgstr "http://www.example.com|optionaler Name" + +#~ msgid "Headline text" +#~ msgstr "Überschrift" + +#~ msgid "Insert non-formatted text here" +#~ msgstr "Füge unformatierten Text hier ein" + +#~ msgid "Template Name" +#~ msgstr "Vorlagenname" + #~ msgid "H" #~ msgstr "H." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/es.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -301,51 +301,6 @@ "sobreescribirían los cambios del otro autor. Así pues, se han combinado sus " "cambios y los del otro autor. El resultado se demuestra abajo." -msgid "Preview" -msgstr "Previsualizar" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "Vea la versión actual" - -msgid "Save" -msgstr "Guardar" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Cambios" - -msgid "Preview the current changes as diff [alt-c]" -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." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "Fusión y Editar: %s" - msgid "Undo" msgstr "Deshaga" @@ -377,51 +332,34 @@ msgid "Close" msgstr "Cierre" +msgid "Save" +msgstr "Guardar" + +msgid "Preview" +msgstr "Previsualizar" + msgid "Bold text" msgstr "Texto en negrilla" -msgid "Bold text [alt-b]" -msgstr "Texto en negrilla [alt-b]" - msgid "Italic text" msgstr "Texto del itálico" -msgid "Italic text [alt-i]" -msgstr "Texto del itálico [alt-i]" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - +#, fuzzy msgid "Color text" -msgstr "" +msgstr "Texto en negrilla" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - msgid "Link to page" msgstr "Acoplamiento a la página" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "Acoplamiento externo (recuerde http:// prefijo)" -msgid "Headline text" -msgstr "Texto del título" - msgid "Level 1 headline" msgstr "Título del nivel 1" -msgid "Insert non-formatted text here" -msgstr "Inserte el texto sin formatear aquí" - msgid "Ignore wiki formatting" msgstr "No haga caso del formato del wiki" @@ -434,30 +372,23 @@ msgid "Sample table" msgstr "" +#, fuzzy msgid "Enumeration" -msgstr "" +msgstr "Relación" +#, fuzzy msgid "List" -msgstr "" +msgstr "ListaPáginas" msgid "Table of Contents" msgstr "Tabla de contenidos" -msgid "Page Name" -msgstr "Nombre de la Página" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "Plantilla" -msgid "Click a button to get an example text" -msgstr "Chasque un botón para conseguir un texto del ejemplo" - msgid "Undo Search & Replace" msgstr "Deshaga La Búsqueda Y Substitúyala" @@ -473,13 +404,52 @@ msgid "Insert PageLink" msgstr "Inserte el AcoplamientoDeLaPágina" +msgid "Insert Template" +msgstr "Inserte la plantilla" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" -msgstr "Inserte la plantilla" +#, fuzzy +msgid "Preview the current content [alt-p]" +msgstr "Vea la versión actual" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Cambios" + +msgid "Preview the current changes as diff [alt-c]" +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." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "Fusión y Editar: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s: error mientras que maneja error:" @@ -1018,6 +988,9 @@ msgid "“%s” not found" msgstr "“%s” no encontrado" +msgid "Page Name" +msgstr "Nombre de la Página" + #, php-format msgid "page permission inherited from %s" msgstr "" @@ -5919,6 +5892,21 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Bold text [alt-b]" +#~ msgstr "Texto en negrilla [alt-b]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Texto del itálico [alt-i]" + +#~ msgid "Headline text" +#~ msgstr "Texto del título" + +#~ msgid "Insert non-formatted text here" +#~ msgstr "Inserte el texto sin formatear aquí" + +#~ msgid "Click a button to get an example text" +#~ msgstr "Chasque un botón para conseguir un texto del ejemplo" + #~ msgid "H" #~ msgstr "Al" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/fr.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\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." @@ -302,50 +302,6 @@ "celles de l'autre utilisateur. Ainsi donc, vos modifications et celles de " "l'autre auteur ont été combinées. Le résultat est affiché ci-dessous." -msgid "Preview" -msgstr "Prévisualiser" - -msgid "Preview the current content [alt-p]" -msgstr "Prévisualiser le contenu actuel [alt-p]" - -msgid "Save" -msgstr "Enregistrer" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "Enregistrer le contenu actuel dans la page wiki [alt-s]" - -msgid "Changes" -msgstr "Modifications" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "Prévisualiser les modifications actuelles en tant que diff [alt-c]" - -msgid "Upload" -msgstr "Télécharger" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -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." - -msgid "Keep old" -msgstr "Garder l'ancien" - -msgid "Overwrite with new" -msgstr "Écraser avec le nouveau" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "Fusionner et modifier : %s" - msgid "Undo" msgstr "Annuler" @@ -379,51 +335,33 @@ msgid "Close" msgstr "Fermer" +msgid "Save" +msgstr "Enregistrer" + +msgid "Preview" +msgstr "Prévisualiser" + msgid "Bold text" msgstr "Gras" -msgid "Bold text [alt-b]" -msgstr "Gras [alt-b]" - msgid "Italic text" msgstr "Italique" -msgid "Italic text [alt-i]" -msgstr "Italique [alt-i]" - msgid "Strike-through text" msgstr "Biffé" -msgid "Strike" -msgstr "Biffé" - msgid "Color text" msgstr "Texte en couleur" -msgid "Color" -msgstr "Couleur" - -msgid "PageName|optional label" -msgstr "Page|label optionnel" - msgid "Link to page" msgstr "Lien vers une page" -msgid "http://www.example.com|optional label" -msgstr "http://www.example.com|label facultatif" - msgid "External link (remember http:// prefix)" msgstr "Lien externe (le préfixe http:// est obligatoire)" -msgid "Headline text" -msgstr "Titre" - msgid "Level 1 headline" msgstr "Titre de niveau 1" -msgid "Insert non-formatted text here" -msgstr "Insérer le texte préformaté ici" - msgid "Ignore wiki formatting" msgstr "Ignorer la syntaxe wiki" @@ -445,21 +383,12 @@ msgid "Table of Contents" msgstr "Table des matières" -msgid "Page Name" -msgstr "Nom de la page" - msgid "Redirect" msgstr "Redirection" -msgid "Template Name" -msgstr "Nom du modèle" - msgid "Template" msgstr "Modèle" -msgid "Click a button to get an example text" -msgstr "Cliquer sur un bouton pour obtenir une exemple de texte" - msgid "Undo Search & Replace" msgstr "Annuler « Rechercher & Remplacer »" @@ -475,13 +404,51 @@ msgid "Insert PageLink" msgstr "Insérer un lien" +msgid "Insert Template" +msgstr "Ajouter un modèle" + msgid "Insert Image or Video" msgstr "Ajouter une image ou une vidéo" -msgid "Insert Template" -msgstr "Ajouter un modèle" +msgid "Preview the current content [alt-p]" +msgstr "Prévisualiser le contenu actuel [alt-p]" +msgid "Save the current content as wikipage [alt-s]" +msgstr "Enregistrer le contenu actuel dans la page wiki [alt-s]" + +msgid "Changes" +msgstr "Modifications" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "Prévisualiser les modifications actuelles en tant que diff [alt-c]" + +msgid "Upload" +msgstr "Télécharger" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +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." + +msgid "Keep old" +msgstr "Garder l'ancien" + +msgid "Overwrite with new" +msgstr "Écraser avec le nouveau" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "Fusionner et modifier : %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s : erreur pendant la gestion de l'erreur :" @@ -1018,6 +985,9 @@ msgid "“%s” not found" msgstr "« %s » non trouvé" +msgid "Page Name" +msgstr "Nom de la page" + #, php-format msgid "page permission inherited from %s" msgstr "permissions héritées de %s" @@ -6007,6 +5977,36 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Strike" +#~ msgstr "Biffé" + +#~ msgid "Color" +#~ msgstr "Couleur" + +#~ msgid "Bold text [alt-b]" +#~ msgstr "Gras [alt-b]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Italique [alt-i]" + +#~ msgid "PageName|optional label" +#~ msgstr "Page|label optionnel" + +#~ msgid "http://www.example.com|optional label" +#~ msgstr "http://www.example.com|label facultatif" + +#~ msgid "Headline text" +#~ msgstr "Titre" + +#~ msgid "Insert non-formatted text here" +#~ msgstr "Insérer le texte préformaté ici" + +#~ msgid "Template Name" +#~ msgstr "Nom du modèle" + +#~ msgid "Click a button to get an example text" +#~ msgstr "Cliquer sur un bouton pour obtenir une exemple de texte" + #~ msgid "H" #~ msgstr "H" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/it.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\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" @@ -291,51 +291,6 @@ "cambiamenti e quelli dell'altro autore sono stati uniti. Il risultato è " "indicato sotto." -msgid "Preview" -msgstr "Anteprima" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "Mostra il versione corrente" - -msgid "Save" -msgstr "Registra" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -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." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "Fondasi e pubblichi: %s" - msgid "Undo" msgstr "" @@ -367,56 +322,40 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "Registra" + +msgid "Preview" +msgstr "Anteprima" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "Pagine Simili" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" +#, fuzzy msgid "Your signature" -msgstr "" +msgstr "La versione corrente" msgid "Horizontal line" msgstr "" @@ -433,21 +372,12 @@ msgid "Table of Contents" msgstr "Indice" -msgid "Page Name" -msgstr "Nome della Pagina" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -463,13 +393,52 @@ msgid "Insert PageLink" msgstr "Inserto Pagina" +msgid "Insert Template" +msgstr "Inserto Mascherina" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" -msgstr "Inserto Mascherina" +#, fuzzy +msgid "Preview the current content [alt-p]" +msgstr "Mostra il versione corrente" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +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." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "Fondasi e pubblichi: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -1002,6 +971,9 @@ msgid "“%s” not found" msgstr "“%s” non trovato" +msgid "Page Name" +msgstr "Nome della Pagina" + #, php-format msgid "page permission inherited from %s" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/ja.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -279,51 +279,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "プレビューする" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "現在のバージョンを表示する" - -msgid "Save" -msgstr "保存する" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -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 "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -355,51 +310,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "保存する" + +msgid "Preview" +msgstr "プレビューする" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "ページロック" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -415,27 +353,19 @@ msgid "Enumeration" msgstr "" +#, fuzzy msgid "List" -msgstr "" +msgstr "サブページ" msgid "Table of Contents" msgstr "" -msgid "Page Name" -msgstr "ページ名" - msgid "Redirect" msgstr "転送" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -451,13 +381,52 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +#, fuzzy +msgid "Preview the current content [alt-p]" +msgstr "現在のバージョンを表示する" + +msgid "Save the current content as wikipage [alt-s]" msgstr "" +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +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 "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -1000,6 +969,9 @@ msgid "“%s” not found" msgstr "" +msgid "Page Name" +msgstr "ページ名" + #, php-format msgid "page permission inherited from %s" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/nl.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -285,50 +285,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "Voorvertonig" - -msgid "Preview the current content [alt-p]" -msgstr "" - -msgid "Save" -msgstr "Bewaar" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Veranderingen" - -msgid "Preview the current changes as diff [alt-c]" -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 "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -360,51 +316,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "Bewaar" + +msgid "Preview" +msgstr "Voorvertonig" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "Zoek Pagina" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -426,23 +365,15 @@ msgid "Table of Contents" msgstr "" -msgid "Page Name" -msgstr "Pagina Naam" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "Template Naam" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - +#, fuzzy msgid "Undo Search & Replace" -msgstr "" +msgstr "Zoek & Vervangt" msgid "Insert Categories" msgstr "" @@ -456,13 +387,51 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +msgid "Preview the current content [alt-p]" msgstr "" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Veranderingen" + +msgid "Preview the current changes as diff [alt-c]" +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 "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -993,6 +962,9 @@ msgid "“%s” not found" msgstr "" +msgid "Page Name" +msgstr "Pagina Naam" + #, php-format msgid "page permission inherited from %s" msgstr "" @@ -5850,6 +5822,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Template Name" +#~ msgstr "Template Naam" + #~ msgid "H" #~ msgstr "H" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/phpwiki.pot 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -279,50 +279,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "" - -msgid "Preview the current content [alt-p]" -msgstr "" - -msgid "Save" -msgstr "" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -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 "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -354,51 +310,33 @@ msgid "Close" msgstr "" -msgid "Bold text" +msgid "Save" msgstr "" -msgid "Bold text [alt-b]" +msgid "Preview" msgstr "" -msgid "Italic text" +msgid "Bold text" msgstr "" -msgid "Italic text [alt-i]" +msgid "Italic text" msgstr "" msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - msgid "Link to page" msgstr "" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -420,21 +358,12 @@ msgid "Table of Contents" msgstr "" -msgid "Page Name" -msgstr "" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -450,13 +379,51 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +msgid "Preview the current content [alt-p]" msgstr "" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +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 "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -987,6 +954,9 @@ msgid "“%s” not found" msgstr "" +msgid "Page Name" +msgstr "" + #, php-format msgid "page permission inherited from %s" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/sv.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -280,50 +280,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "Översikt" - -msgid "Preview the current content [alt-p]" -msgstr "" - -msgid "Save" -msgstr "Spara" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Ändringar" - -msgid "Preview the current changes as diff [alt-c]" -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 "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -355,51 +311,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "Spara" + +msgid "Preview" +msgstr "Översikt" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "Sök Efter Sida" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -421,21 +360,12 @@ msgid "Table of Contents" msgstr "Innehåll" -msgid "Page Name" -msgstr "Namn på Sidan" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "Namn på Template" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -451,13 +381,51 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +msgid "Preview the current content [alt-p]" msgstr "" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Ändringar" + +msgid "Preview the current changes as diff [alt-c]" +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 "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -988,6 +956,9 @@ msgid "“%s” not found" msgstr "“%s” ingen funna" +msgid "Page Name" +msgstr "Namn på Sidan" + #, php-format msgid "page permission inherited from %s" msgstr "" @@ -5843,6 +5814,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Template Name" +#~ msgstr "Namn på Template" + #~ msgid "H" #~ msgstr "H" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/zh.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -291,51 +291,6 @@ "無法儲存你所變更的部份,在你編輯的這段時間,已經有其他作者變更了.所以你所變更的" "部份已經和其他作者變更的部份合併.結果顯示在下面." -msgid "Preview" -msgstr "預覽" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "查看目前版本" - -msgid "Save" -msgstr "儲存" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -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." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "合併並離開: %s" - msgid "Undo" msgstr "" @@ -368,53 +323,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "儲存" + +msgid "Preview" +msgstr "預覽" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -#, fuzzy -msgid "Strike" -msgstr "大小" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - #, fuzzy msgid "Link to page" msgstr "解除鎖定此頁面" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -428,8 +364,9 @@ msgid "Sample table" msgstr "" +#, fuzzy msgid "Enumeration" -msgstr "" +msgstr "相關連結" #, fuzzy msgid "List" @@ -439,23 +376,13 @@ msgid "Table of Contents" msgstr "目錄" -msgid "Page Name" -msgstr "頁面名稱" - msgid "Redirect" msgstr "重導向" #, fuzzy -msgid "Template Name" -msgstr "佈景主題" - -#, fuzzy msgid "Template" msgstr "佈景主題" -msgid "Click a button to get an example text" -msgstr "" - #, fuzzy msgid "Undo Search & Replace" msgstr "搜尋與取代" @@ -473,14 +400,53 @@ msgid "Insert PageLink" msgstr "" +#, fuzzy +msgid "Insert Template" +msgstr "佈景主題" + msgid "Insert Image or Video" msgstr "" #, fuzzy -msgid "Insert Template" -msgstr "佈景主題" +msgid "Preview the current content [alt-p]" +msgstr "查看目前版本" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +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." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "合併並離開: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s: 處理錯誤時發生錯誤:" @@ -1027,6 +993,9 @@ msgid "“%s” not found" msgstr "“%s” 找不到" +msgid "Page Name" +msgstr "頁面名稱" + #, php-format msgid "page permission inherited from %s" msgstr "由 %s 繼承而來的頁面" @@ -6160,6 +6129,14 @@ msgid "Y-m-d H:i" msgstr "" +#, fuzzy +#~ msgid "Strike" +#~ msgstr "大小" + +#, fuzzy +#~ msgid "Template Name" +#~ msgstr "佈景主題" + #~ msgid "H" #~ 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...> - 2015-04-16 16:38:57
|
Revision: 9684 http://sourceforge.net/p/phpwiki/code/9684 Author: vargenau Date: 2015-04-16 16:38:54 +0000 (Thu, 16 Apr 2015) Log Message: ----------- jquery-1.11.1.min.js --> jquery-1.11.2.min.js Modified Paths: -------------- trunk/lib/WikiTheme.php Added Paths: ----------- trunk/themes/default/jquery-1.11.2.min.js Removed Paths: ------------- trunk/themes/default/jquery-1.11.1.min.js Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-04-16 15:24:15 UTC (rev 9683) +++ trunk/lib/WikiTheme.php 2015-04-16 16:38:54 UTC (rev 9684) @@ -259,7 +259,7 @@ $this->addMoreHeaders(JavaScript('', array('src' => $this->_findData("wikicommon.js")))); if (!(defined('FUSIONFORGE') && FUSIONFORGE)) { // FusionForge already loads this - $this->addMoreHeaders(JavaScript('', array('src' => $this->_findData("jquery-1.11.1.min.js")))); + $this->addMoreHeaders(JavaScript('', array('src' => $this->_findData("jquery-1.11.2.min.js")))); $this->addMoreHeaders(JavaScript('', array('src' => $this->_findData("jquery.tablesorter.min.js")))); } // by pixels Deleted: trunk/themes/default/jquery-1.11.1.min.js =================================================================== --- trunk/themes/default/jquery-1.11.1.min.js 2015-04-16 15:24:15 UTC (rev 9683) +++ trunk/themes/default/jquery-1.11.1.min.js 2015-04-16 16:38:54 UTC (rev 9684) @@ -1,4 +0,0 @@ -/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; -if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).mar... [truncated message content] |
From: <var...@us...> - 2015-04-20 16:56:54
|
Revision: 9688 http://sourceforge.net/p/phpwiki/code/9688 Author: vargenau Date: 2015-04-20 16:56:51 +0000 (Mon, 20 Apr 2015) Log Message: ----------- Make static templates in Edit Toolbar work Modified Paths: -------------- trunk/g 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 trunk/pgsrc/ReleaseNotes trunk/themes/default/toolbar.js Modified: trunk/g =================================================================== --- trunk/g 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/g 2015-04-20 16:56:51 UTC (rev 9688) @@ -184,7 +184,7 @@ define('ENABLE_AJAX', false); define('TOOLBAR_PAGELINK_PULLDOWN', false); - define('TOOLBAR_TEMPLATE_PULLDOWN', false); + define('TOOLBAR_TEMPLATE_PULLDOWN', 'Template*'); define('TOOLBAR_IMAGE_PULLDOWN', true); // Enable external pages Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/lib/editpage.php 2015-04-20 16:56:51 UTC (rev 9688) @@ -759,18 +759,17 @@ 'onclick' => "insertTags('<<RedirectTo page="','">>','"._('Page Name')."'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_templateplugin.png"), 'class' => 'toolbar', - 'alt' => _('Template'), - 'title' => _('Template'), + 'alt' => _('Insert Dynamic Template'), + 'title' => _('Insert Dynamic Template'), 'onclick' => "insertTags('{{','}}','"._('Template Name')."'); return true;"))); - + if (defined('TOOLBAR_TEMPLATE_PULLDOWN') and TOOLBAR_TEMPLATE_PULLDOWN) { + $toolbar->pushContent($this->templatePulldown(TOOLBAR_TEMPLATE_PULLDOWN)); + } $toolbar->pushContent($this->categoriesPulldown()); $toolbar->pushContent($this->pluginPulldown()); if (defined('TOOLBAR_PAGELINK_PULLDOWN') and TOOLBAR_PAGELINK_PULLDOWN) { $toolbar->pushContent($this->pagesPulldown(TOOLBAR_PAGELINK_PULLDOWN)); } - if (defined('TOOLBAR_TEMPLATE_PULLDOWN') and TOOLBAR_TEMPLATE_PULLDOWN) { - $toolbar->pushContent($this->templatePulldown(TOOLBAR_TEMPLATE_PULLDOWN)); - } if (defined('TOOLBAR_IMAGE_PULLDOWN') and TOOLBAR_IMAGE_PULLDOWN) { $toolbar->pushContent($this->imagePulldown()); } @@ -920,8 +919,8 @@ $pages_js = ''; while ($p = $page_iter->next()) { $rev = $p->getCurrentRevision(); - $toinsert = str_replace(array("\n", '"'), array('_nl', '_quot'), $rev->_get_content()); - $pages_js .= ",['" . $p->getName() . "','_nl$toinsert']"; + $toinsert = str_replace(array("\n", '"'), array('__nl__', '__quot__'), $rev->_get_content()); + $pages_js .= ",['" . $p->getName() . "','__nl__$toinsert']"; } $pages_js = substr($pages_js, 1); if (!empty($pages_js)) @@ -929,10 +928,10 @@ (array('class' => "toolbar", 'id' => 'tb-templates', 'src' => $WikiTheme->getImageURL("ed_template.png"), - 'title' => _("Insert Template"), - 'alt' => _("Insert Template"), + 'title' => _("Insert Static Template"), + 'alt' => _("Insert Static Template"), 'onclick' => "showPulldown('" . - _("Insert Template") + _("Insert Static Template") . "',[" . $pages_js . "],'" . _("Insert") . "','" . _("Close") . "','tb-templates')")); 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 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/de.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\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." @@ -402,8 +402,8 @@ msgid "Page Name" msgstr "Seitenname" -msgid "Template" -msgstr "Vorlage" +msgid "Insert Dynamic Template" +msgstr "Dynamic Vorlage einfügen" msgid "Template Name" msgstr "Vorlagenname" @@ -423,8 +423,8 @@ msgid "Insert PageLink" msgstr "SeitenLink einfügen" -msgid "Insert Template" -msgstr "Vorlage einfügen" +msgid "Insert Static Template" +msgstr "Static Vorlage einfügen" msgid "Insert Image or Video" msgstr "Bild oder Video einfügen" @@ -2320,6 +2320,9 @@ msgid "CategoryCategory" msgstr "KategorieKategorie" +msgid "Template" +msgstr "Vorlage" + msgid "Category" msgstr "Kategorie" @@ -6080,18 +6083,18 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Bold text [alt-b]" +#~ msgstr "Fetter Text [alt-f]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Kursiver Text [alt-k]" + #~ msgid "Strike" #~ msgstr "Durchstreichen" #~ msgid "Color" #~ msgstr "Farbe" -#~ msgid "Bold text [alt-b]" -#~ msgstr "Fetter Text [alt-f]" - -#~ msgid "Italic text [alt-i]" -#~ msgstr "Kursiver Text [alt-k]" - #~ msgid "H" #~ msgstr "H." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/es.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -347,9 +347,8 @@ msgid "Strike-through text" msgstr "" -#, fuzzy msgid "Color text" -msgstr "Texto en negrilla" +msgstr "" msgid "Link to page" msgstr "Acoplamiento a la página" @@ -384,13 +383,11 @@ msgid "Sample table" msgstr "" -#, fuzzy msgid "Enumeration" -msgstr "Relación" +msgstr "" -#, fuzzy msgid "List" -msgstr "ListaPáginas" +msgstr "" msgid "Table of Contents" msgstr "Tabla de contenidos" @@ -401,12 +398,11 @@ msgid "Page Name" msgstr "Nombre de la Página" -msgid "Template" -msgstr "Plantilla" +msgid "Insert Dynamic Template" +msgstr "Inserte la dynamic plantilla" -#, fuzzy msgid "Template Name" -msgstr "Plantilla" +msgstr "" msgid "Undo Search & Replace" msgstr "Deshaga La Búsqueda Y Substitúyala" @@ -423,8 +419,8 @@ msgid "Insert PageLink" msgstr "Inserte el AcoplamientoDeLaPágina" -msgid "Insert Template" -msgstr "Inserte la plantilla" +msgid "Insert Static Template" +msgstr "Inserte la static plantilla" msgid "Insert Image or Video" msgstr "" @@ -2262,6 +2258,9 @@ msgid "CategoryCategory" msgstr "CategoriaCategoria" +msgid "Template" +msgstr "Plantilla" + msgid "Category" msgstr "Categoría" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/fr.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\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." @@ -401,8 +401,8 @@ msgid "Page Name" msgstr "Nom de la page" -msgid "Template" -msgstr "Modèle" +msgid "Insert Dynamic Template" +msgstr "Ajouter un modèle dynamique" msgid "Template Name" msgstr "Nom du modèle" @@ -422,8 +422,8 @@ msgid "Insert PageLink" msgstr "Insérer un lien" -msgid "Insert Template" -msgstr "Ajouter un modèle" +msgid "Insert Static Template" +msgstr "Ajouter un modèle statique" msgid "Insert Image or Video" msgstr "Ajouter une image ou une vidéo" @@ -2288,6 +2288,9 @@ msgid "CategoryCategory" msgstr "CatégorieCatégorie" +msgid "Template" +msgstr "Modèle" + msgid "Category" msgstr "Catégorie" @@ -5992,18 +5995,18 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Bold text [alt-b]" +#~ msgstr "Gras [alt-b]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Italique [alt-i]" + #~ msgid "Strike" #~ msgstr "Biffé" #~ msgid "Color" #~ msgstr "Couleur" -#~ msgid "Bold text [alt-b]" -#~ msgstr "Gras [alt-b]" - -#~ msgid "Italic text [alt-i]" -#~ msgstr "Italique [alt-i]" - #~ msgid "Click a button to get an example text" #~ msgstr "Cliquer sur un bouton pour obtenir une exemple de texte" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/it.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\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" @@ -340,9 +340,8 @@ msgid "Color text" msgstr "" -#, fuzzy msgid "Link to page" -msgstr "Pagine Simili" +msgstr "" msgid "PageName|optional label" msgstr "" @@ -365,9 +364,8 @@ msgid "Insert non-formatted text here" msgstr "" -#, fuzzy msgid "Your signature" -msgstr "La versione corrente" +msgstr "" msgid "Horizontal line" msgstr "" @@ -390,12 +388,11 @@ msgid "Page Name" msgstr "Nome della Pagina" -msgid "Template" -msgstr "" +msgid "Insert Dynamic Template" +msgstr "Inserto Dynamic Mascherina" -#, fuzzy msgid "Template Name" -msgstr "Nome della Pagina" +msgstr "" msgid "Undo Search & Replace" msgstr "" @@ -412,8 +409,8 @@ msgid "Insert PageLink" msgstr "Inserto Pagina" -msgid "Insert Template" -msgstr "Inserto Mascherina" +msgid "Insert Static Template" +msgstr "Inserto Static Mascherina" msgid "Insert Image or Video" msgstr "" @@ -2239,6 +2236,9 @@ msgid "CategoryCategory" msgstr "" +msgid "Template" +msgstr "Mascherina" + msgid "Category" msgstr "Categoria" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/ja.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -328,9 +328,8 @@ msgid "Color text" msgstr "" -#, fuzzy msgid "Link to page" -msgstr "ページロック" +msgstr "" msgid "PageName|optional label" msgstr "" @@ -365,9 +364,8 @@ msgid "Enumeration" msgstr "" -#, fuzzy msgid "List" -msgstr "サブページ" +msgstr "" msgid "Table of Contents" msgstr "" @@ -378,12 +376,11 @@ msgid "Page Name" msgstr "ページ名" -msgid "Template" +msgid "Insert Dynamic Template" msgstr "" -#, fuzzy msgid "Template Name" -msgstr "ページ名" +msgstr "" msgid "Undo Search & Replace" msgstr "" @@ -400,7 +397,7 @@ msgid "Insert PageLink" msgstr "" -msgid "Insert Template" +msgid "Insert Static Template" msgstr "" msgid "Insert Image or Video" @@ -2262,6 +2259,9 @@ msgid "CategoryCategory" msgstr "" +msgid "Template" +msgstr "" + msgid "Category" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/nl.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -334,9 +334,8 @@ msgid "Color text" msgstr "" -#, fuzzy msgid "Link to page" -msgstr "Zoek Pagina" +msgstr "" msgid "PageName|optional label" msgstr "" @@ -383,15 +382,14 @@ msgid "Page Name" msgstr "Pagina Naam" -msgid "Template" +msgid "Insert Dynamic Template" msgstr "" msgid "Template Name" msgstr "Template Naam" -#, fuzzy msgid "Undo Search & Replace" -msgstr "Zoek & Vervangt" +msgstr "" msgid "Insert Categories" msgstr "" @@ -405,7 +403,7 @@ msgid "Insert PageLink" msgstr "" -msgid "Insert Template" +msgid "Insert Static Template" msgstr "" msgid "Insert Image or Video" @@ -2229,6 +2227,9 @@ msgid "CategoryCategory" msgstr "" +msgid "Template" +msgstr "" + msgid "Category" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/phpwiki.pot 2015-04-20 16:56:51 UTC (rev 9688) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -376,7 +376,7 @@ msgid "Page Name" msgstr "" -msgid "Template" +msgid "Insert Dynamic Template" msgstr "" msgid "Template Name" @@ -397,7 +397,7 @@ msgid "Insert PageLink" msgstr "" -msgid "Insert Template" +msgid "Insert Static Template" msgstr "" msgid "Insert Image or Video" @@ -2221,6 +2221,9 @@ msgid "CategoryCategory" msgstr "" +msgid "Template" +msgstr "" + msgid "Category" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/sv.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -329,9 +329,8 @@ msgid "Color text" msgstr "" -#, fuzzy msgid "Link to page" -msgstr "Sök Efter Sida" +msgstr "" msgid "PageName|optional label" msgstr "" @@ -378,7 +377,7 @@ msgid "Page Name" msgstr "Namn på Sidan" -msgid "Template" +msgid "Insert Dynamic Template" msgstr "" msgid "Template Name" @@ -399,7 +398,7 @@ msgid "Insert PageLink" msgstr "" -msgid "Insert Template" +msgid "Insert Static Template" msgstr "" msgid "Insert Image or Video" @@ -2223,6 +2222,9 @@ msgid "CategoryCategory" msgstr "" +msgid "Template" +msgstr "" + msgid "Category" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/locale/po/zh.po 2015-04-20 16:56:51 UTC (rev 9688) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 17:01+0200\n" +"POT-Creation-Date: 2015-04-20 18:55+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -376,9 +376,8 @@ msgid "Sample table" msgstr "" -#, fuzzy msgid "Enumeration" -msgstr "相關連結" +msgstr "" #, fuzzy msgid "List" @@ -395,7 +394,7 @@ msgstr "頁面名稱" #, fuzzy -msgid "Template" +msgid "Insert Dynamic Template" msgstr "佈景主題" #, fuzzy @@ -420,7 +419,7 @@ msgstr "" #, fuzzy -msgid "Insert Template" +msgid "Insert Static Template" msgstr "佈景主題" msgid "Insert Image or Video" @@ -2314,6 +2313,10 @@ msgid "CategoryCategory" msgstr "" +#, fuzzy +msgid "Template" +msgstr "佈景主題" + msgid "Category" 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/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/pgsrc/ReleaseNotes 2015-04-20 16:56:51 UTC (rev 9688) @@ -1,4 +1,4 @@ -Date: Wed, 10 Apr 2015 11:29:22 +0000 +Date: Mon, 20 Apr 2015 18:43:09 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -15,6 +15,7 @@ * Add WebM format in Video plugin * Update jscalendar to 1.0 * Remove Width and Height preferences modification in Edit Toolbar +* Make static templates in Edit Toolbar work == 1.5.3 2015-03-04 Marc-Etienne Vargenau == Modified: trunk/themes/default/toolbar.js =================================================================== --- trunk/themes/default/toolbar.js 2015-04-17 16:18:31 UTC (rev 9687) +++ trunk/themes/default/toolbar.js 2015-04-20 16:56:51 UTC (rev 9688) @@ -61,6 +61,10 @@ var txtarea = document.getElementById('edit-content'); text = unescapeSpecial(text); txtarea.value += '\n'+text; + } else if (fromid == 'tb-templates') { + text = text.replace(/__nl__/g, '\n'); + text = text.replace(/__quot__/g, '"'); + insertTags(text, '', '\n'); } else { insertTags(text, '', '\n'); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-06-29 10:08:39
|
Revision: 9701 http://sourceforge.net/p/phpwiki/code/9701 Author: vargenau Date: 2015-06-29 10:08:34 +0000 (Mon, 29 Jun 2015) Log Message: ----------- Set PhpWiki version to 1.5.4 Modified Paths: -------------- trunk/INSTALL trunk/Makefile trunk/config/phpwiki.spec trunk/lib/prepend.php 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/DebugGruppenInfo trunk/locale/de/pgsrc/DebugInfo 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%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%2FNeueSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 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/HochLaden trunk/locale/de/pgsrc/InterWikiListe trunk/locale/de/pgsrc/KategorieAktionSeite trunk/locale/de/pgsrc/KategorieKategorie trunk/locale/de/pgsrc/KategorieWikiPlugin trunk/locale/de/pgsrc/LinkSuche trunk/locale/de/pgsrc/ListeRelationen trunk/locale/de/pgsrc/ListeSeiten 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%2FAclSetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 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/SeitenErzeugen 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/UpLoad 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%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/MasPopulares trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/TodasLasPaginas trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/fr/pgsrc/%C3%89diterLesMetaDonn%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%2FIc%C3%B4nesDeLien trunk/locale/fr/pgsrc/Aide%2FInterWiki trunk/locale/fr/pgsrc/Aide%2FLienGoogle trunk/locale/fr/pgsrc/Aide%2FPhpWiki trunk/locale/fr/pgsrc/Aide%2FPlugin%C3%89diterMetaData trunk/locale/fr/pgsrc/Aide%2FPluginAjouterDesCommentaires trunk/locale/fr/pgsrc/Aide%2FPluginAlbumPhotos trunk/locale/fr/pgsrc/Aide%2FPluginBeauTableau trunk/locale/fr/pgsrc/Aide%2FPluginBonjourLeMonde trunk/locale/fr/pgsrc/Aide%2FPluginCalendrier trunk/locale/fr/pgsrc/Aide%2FPluginColorationPhp trunk/locale/fr/pgsrc/Aide%2FPluginCommenter trunk/locale/fr/pgsrc/Aide%2FPluginCr%C3%A9erUnePage trunk/locale/fr/pgsrc/Aide%2FPluginCr%C3%A9erUneTdm trunk/locale/fr/pgsrc/Aide%2FPluginHistoriqueAuteur trunk/locale/fr/pgsrc/Aide%2FPluginHtmlPur trunk/locale/fr/pgsrc/Aide%2FPluginInclureUnePage trunk/locale/fr/pgsrc/Aide%2FPluginInfosSyst%C3%A8me trunk/locale/fr/pgsrc/Aide%2FPluginIns%C3%A9rer trunk/locale/fr/pgsrc/Aide%2FPluginListeDePages trunk/locale/fr/pgsrc/Aide%2FPluginListeDesSousPages trunk/locale/fr/pgsrc/Aide%2FPluginListeDuCalendrier trunk/locale/fr/pgsrc/Aide%2FPluginM%C3%A9t%C3%A9oPhp trunk/locale/fr/pgsrc/Aide%2FPluginRechercheExterne trunk/locale/fr/pgsrc/Aide%2FPluginRedirection trunk/locale/fr/pgsrc/Aide%2FPluginRessourcesRss trunk/locale/fr/pgsrc/Aide%2FPluginTableauAncienStyle trunk/locale/fr/pgsrc/Aide%2FPluginTeX2png trunk/locale/fr/pgsrc/Aide%2FPluginTestDeCache trunk/locale/fr/pgsrc/Aide%2FPluginWiki trunk/locale/fr/pgsrc/Aide%2FPluginWikiBlog 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/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%A9gorieGroupes trunk/locale/fr/pgsrc/Cat%C3%A9goriePageDAction trunk/locale/fr/pgsrc/Cat%C3%A9goriePagesAccueil trunk/locale/fr/pgsrc/Cat%C3%A9goriePluginWiki 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/GestionDesPlugins trunk/locale/fr/pgsrc/HistoriqueDeLaPage 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%A9rencesUtilisateurs 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%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/NoteDiRilascio trunk/locale/it/pgsrc/PaginaDiProva trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/PiuPopolari trunk/locale/it/pgsrc/RicercaDelTesto trunk/locale/it/pgsrc/RicercaSuTutto trunk/locale/it/pgsrc/ScatolaDiSabbia trunk/locale/it/pgsrc/SteveWainstead 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/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%2FRecenteBezoekers 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/MeestBezocht trunk/locale/nl/pgsrc/PhpWikiBeheer trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVervangt trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVerwijder 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/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/pgsrc/Framsida trunk/locale/sv/pgsrc/Hj%C3%A4lp trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FG%C3%A4stboken 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%2FTextformateringsregler trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FWikiWikiWeb 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/DebugInfo 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%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%2FPhpWeatherPlugin trunk/locale/zh/pgsrc/Help%2FPhpWiki 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/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/DebugInfo 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%2FAdobe%20Flash 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%2FCategoryPagePlugin 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%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%2FListPagesPlugin 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%2FPhotoAlbumPlugin%2FSlides trunk/pgsrc/Help%2FPhpHighlightPlugin trunk/pgsrc/Help%2FPhpWeatherPlugin trunk/pgsrc/Help%2FPhpWiki trunk/pgsrc/Help%2FPloticusPlugin trunk/pgsrc/Help%2FPluginManagerPlugin trunk/pgsrc/Help%2FPopUpPlugin trunk/pgsrc/Help%2FPopularNearbyPlugin trunk/pgsrc/Help%2FPredefinedIcons trunk/pgsrc/Help%2FPreferenceAppPlugin trunk/pgsrc/Help%2FPreferencesInfoPlugin trunk/pgsrc/Help%2FPrevNextPlugin trunk/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRateItPlugin trunk/pgsrc/Help%2FRawHtmlPlugin trunk/pgsrc/Help%2FRecentChangesCachedPlugin 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%2FSemanticSearchPlugin trunk/pgsrc/Help%2FSiteMapPlugin 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%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%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%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%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/BlogArchives 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/InterWikiMap 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/INSTALL =================================================================== --- trunk/INSTALL 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/INSTALL 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,6 +1,6 @@ REQUIREMENTS -PhpWiki 1.5.3 requires a web server with at least PHP version 5.3. +PhpWiki 1.5.4 requires a web server with at least PHP version 5.3. All users of PHP are strongly encouraged to upgrade to PHP 5.3.29 or to PHP 5.4 or 5.5. @@ -61,7 +61,7 @@ Unzip this file into the directory where you want it to live. That's it. -bash$ unzip phpwiki-1.5.3.zip +bash$ unzip phpwiki-1.5.4.zip In the config subdirectory copy 'config-dist.ini' to 'config.ini' and edit the settings in 'config.ini' to your liking. Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/Makefile 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,4 +1,4 @@ -VERSION=1.5.3 +VERSION=1.5.4 RPMBUILD=rpmbuild clean: Modified: trunk/config/phpwiki.spec =================================================================== --- trunk/config/phpwiki.spec 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/config/phpwiki.spec 2015-06-29 10:08:34 UTC (rev 9701) @@ -40,7 +40,7 @@ # RPM spec preamble Summary: PHP-based Wiki webapplication Name: phpwiki -Version: 1.5.3 +Version: 1.5.4 Release: 1 BuildArch: noarch License: GPL Modified: trunk/lib/prepend.php =================================================================== --- trunk/lib/prepend.php 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/lib/prepend.php 2015-06-29 10:08:34 UTC (rev 9701) @@ -5,7 +5,7 @@ */ // see lib/stdlib.php: phpwiki_version() -define('PHPWIKI_VERSION', '1.5.3'); +define('PHPWIKI_VERSION', '1.5.4'); // A new php-5.1.x feature: Turn off php-5.1.x auto_globals_jit = On, or use this mess below. if (empty($GLOBALS['HTTP_SERVER_VARS'])) { Modified: trunk/locale/de/pgsrc/%C3%84hnlicheSeiten =================================================================== --- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=%C3%84hnlicheSeiten; flags=""; Modified: trunk/locale/de/pgsrc/AlleBenutzer =================================================================== --- trunk/locale/de/pgsrc/AlleBenutzer 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/AlleBenutzer 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=AlleBenutzer; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeiten =================================================================== --- trunk/locale/de/pgsrc/AlleSeiten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/AlleSeiten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=AlleSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=AlleSeitenEditiertVonMir; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=AlleSeitenErzeugtVonMir; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=AlleSeitenImBesitzVonMir; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BackLinks =================================================================== --- trunk/locale/de/pgsrc/BackLinks 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/BackLinks 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=BackLinks; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BenutzerEinstellungen =================================================================== --- trunk/locale/de/pgsrc/BenutzerEinstellungen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/BenutzerEinstellungen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=BenutzerEinstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugAuthInfo =================================================================== --- trunk/locale/de/pgsrc/DebugAuthInfo 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/DebugAuthInfo 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=DebugAuthInfo; flags=LOCKED; Modified: trunk/locale/de/pgsrc/DebugGruppenInfo =================================================================== --- trunk/locale/de/pgsrc/DebugGruppenInfo 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/DebugGruppenInfo 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=DebugGruppenInfo; flags=LOCKED; Modified: trunk/locale/de/pgsrc/DebugInfo =================================================================== --- trunk/locale/de/pgsrc/DebugInfo 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/DebugInfo 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=DebugInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/EditiereText =================================================================== --- trunk/locale/de/pgsrc/EditiereText 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/EditiereText 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=EditiereText; flags=""; Modified: trunk/locale/de/pgsrc/Einstellungen =================================================================== --- trunk/locale/de/pgsrc/Einstellungen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Einstellungen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Einstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/FuzzySuche =================================================================== --- trunk/locale/de/pgsrc/FuzzySuche 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/FuzzySuche 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) 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 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/G%C3%A4steBuch 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; flags=""; Modified: trunk/locale/de/pgsrc/GaesteBuch =================================================================== --- trunk/locale/de/pgsrc/GaesteBuch 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/GaesteBuch 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) 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 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Geringf%C3%BCgige%C3%84nderungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/GleicheSeiten =================================================================== --- trunk/locale/de/pgsrc/GleicheSeiten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/GleicheSeiten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=GleicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe =================================================================== --- trunk/locale/de/pgsrc/Hilfe 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) 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 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAktionsSeite; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAutorenProtokollPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGraphVizPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FGuterStil =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGuterStil; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHalloWeltPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHochLadenPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FInhaltsVerzeichnisPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeuerKommentarPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin%2FDiashow; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhpWiki =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhpWiki; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextBearbeiten; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextFormatierungsRegeln; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FVorlagePlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWabiSabi =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWabiSabi; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWieManWikiBenutzt; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiTechnik; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiWikiWeb; flags=""; Modified: trunk/locale/de/pgsrc/HochLaden =================================================================== --- trunk/locale/de/pgsrc/HochLaden 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/HochLaden 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=HochLaden; flags=""; Modified: trunk/locale/de/pgsrc/InterWikiListe =================================================================== --- trunk/locale/de/pgsrc/InterWikiListe 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/InterWikiListe 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=InterWikiListe; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/KategorieAktionSeite =================================================================== --- trunk/locale/de/pgsrc/KategorieAktionSeite 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/KategorieAktionSeite 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=KategorieAktionSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/KategorieKategorie =================================================================== --- trunk/locale/de/pgsrc/KategorieKategorie 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/KategorieKategorie 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=KategorieKategorie; flags=""; Modified: trunk/locale/de/pgsrc/KategorieWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/KategorieWikiPlugin 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/KategorieWikiPlugin 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=KategorieWikiPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/LinkSuche =================================================================== --- trunk/locale/de/pgsrc/LinkSuche 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/LinkSuche 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=LinkSuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeRelationen =================================================================== --- trunk/locale/de/pgsrc/ListeRelationen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/ListeRelationen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=ListeRelationen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeSeiten =================================================================== --- trunk/locale/de/pgsrc/ListeSeiten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/ListeSeiten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=ListeSeiten; flags=""; Modified: trunk/locale/de/pgsrc/MeistBesucht =================================================================== --- trunk/locale/de/pgsrc/MeistBesucht 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/MeistBesucht 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=MeistBesucht; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/ModerierteSeite 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=ModerierteSeite; flags="LOCKED"; Modified: trunk/locale/de/pgsrc/NeueSeite =================================================================== --- trunk/locale/de/pgsrc/NeueSeite 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/NeueSeite 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) 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 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Neueste%C3%84nderungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/NeuesteSeiten =================================================================== --- trunk/locale/de/pgsrc/NeuesteSeiten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/NeuesteSeiten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=NeuesteSeiten; flags=""; Modified: trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen =================================================================== --- trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=PasswortZur%C3%BCcksetzen; flags=""; Modified: trunk/locale/de/pgsrc/PhpWikiDokumentation =================================================================== --- trunk/locale/de/pgsrc/PhpWikiDokumentation 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PhpWikiDokumentation 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=PhpWikiDokumentation; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclSetzen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FChown; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.5.3) +Date: Mon, 29 Jun 2015 12:04:27 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FL%C3%B6schen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen 2015-06-29 09:50:07 UTC (rev 9700) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen 2015-06-29 10:08:34 UTC (rev 9701) @@ -1,5 +1,5 @@ -Date: Wed, 4 Mar 2015 14:19:50 +0000 -Mime-Version... [truncated message content] |
From: <var...@us...> - 2015-07-09 15:38:22
|
Revision: 9705 http://sourceforge.net/p/phpwiki/code/9705 Author: vargenau Date: 2015-07-09 15:38:20 +0000 (Thu, 09 Jul 2015) Log Message: ----------- Click to display the TOC Modified Paths: -------------- trunk/lib/plugin/CreateToc.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/default/wikicommon.js Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/lib/plugin/CreateToc.php 2015-07-09 15:38:20 UTC (rev 9705) @@ -493,7 +493,7 @@ HTML::img(array( 'id' => $toctoggleid, 'class' => 'wikiaction', - 'title' => _("Click to display to TOC"), + 'title' => _("Click to display the TOC"), 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "')", 'alt' => 'toctoggle', 'src' => $jshide ? $close : $open))); 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 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/de.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\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." @@ -1524,7 +1524,7 @@ msgid "%s: no such revision %d." msgstr "%s(%d): keine solche Version." -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "Klicken um TOC anzuzeigen" msgid "Display current time and date." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/es.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -1496,7 +1496,7 @@ msgid "%s: no such revision %d." msgstr "%s: ninguna tal revisión %d." -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "" msgid "Display current time and date." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/fr.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\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." @@ -1515,7 +1515,7 @@ msgid "%s: no such revision %d." msgstr "%s (%d) : version inexistante." -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "Cliquez pour afficher la table des matières" msgid "Display current time and date." Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/it.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\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" @@ -1478,7 +1478,7 @@ msgid "%s: no such revision %d." msgstr "" -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "" msgid "Display current time and date." Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/ja.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1493,7 +1493,7 @@ msgid "%s: no such revision %d." msgstr "" -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "" msgid "Display current time and date." Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/nl.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -1469,7 +1469,7 @@ msgid "%s: no such revision %d." msgstr "" -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "" msgid "Display current time and date." Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/phpwiki.pot 2015-07-09 15:38:20 UTC (rev 9705) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -1463,7 +1463,7 @@ msgid "%s: no such revision %d." msgstr "" -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "" msgid "Display current time and date." Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/sv.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -1464,7 +1464,7 @@ msgid "%s: no such revision %d." msgstr "" -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "" msgid "Display current time and date." Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/locale/po/zh.po 2015-07-09 15:38:20 UTC (rev 9705) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-29 12:08+0200\n" +"POT-Creation-Date: 2015-07-09 17:34+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -1522,7 +1522,7 @@ msgstr "%s(%d): 沒有這個修訂." #, fuzzy -msgid "Click to display to TOC" +msgid "Click to display the TOC" msgstr "點擊以顯示" msgid "Display current time and date." 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/default/wikicommon.js =================================================================== --- trunk/themes/default/wikicommon.js 2015-06-29 10:14:44 UTC (rev 9704) +++ trunk/themes/default/wikicommon.js 2015-07-09 15:38:20 UTC (rev 9705) @@ -49,7 +49,7 @@ a.src = open } else { toc.style.display='none'; - a.title='"._("Click to display")."' + a.title='"._("Click to display the TOC")."' a.src = close } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-07-09 15:58:14
|
Revision: 9706 http://sourceforge.net/p/phpwiki/code/9706 Author: vargenau Date: 2015-07-09 15:58:12 +0000 (Thu, 09 Jul 2015) Log Message: ----------- Fix toggletoc message translation Modified Paths: -------------- trunk/lib/plugin/CreateToc.php trunk/themes/default/wikicommon.js Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2015-07-09 15:38:20 UTC (rev 9705) +++ trunk/lib/plugin/CreateToc.php 2015-07-09 15:58:12 UTC (rev 9706) @@ -494,14 +494,14 @@ 'id' => $toctoggleid, 'class' => 'wikiaction', 'title' => _("Click to display the TOC"), - 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "')", + 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "', '" . _('Click to display the TOC') . "', '" . _('Click to hide the TOC') . "')", 'alt' => 'toctoggle', 'src' => $jshide ? $close : $open))); else $toclink = HTML::a(array('id' => 'TOC', 'class' => 'wikiaction', 'title' => _("Click to display"), - 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "')"), + 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "', '" . _('Click to display the TOC') . "', '" . _('Click to hide the TOC') . "')"), _("Table of Contents"), HTML::span(array('style' => 'display:none', 'id' => $toctoggleid), " ")); Modified: trunk/themes/default/wikicommon.js =================================================================== --- trunk/themes/default/wikicommon.js 2015-07-09 15:38:20 UTC (rev 9705) +++ trunk/themes/default/wikicommon.js 2015-07-09 15:58:12 UTC (rev 9706) @@ -41,16 +41,16 @@ } } -function toggletoc(a, open, close, toclist) { +function toggletoc(a, open, close, toclist, titledisplay, titlehide) { var toc=document.getElementById(toclist) if (toc.style.display=='none') { - toc.style.display='block' - a.title='"._("Click to hide the TOC")."' - a.src = open + toc.style.display='block'; + a.title=titlehide; + a.src = open; } else { toc.style.display='none'; - a.title='"._("Click to display the TOC")."' - a.src = close + a.title=titledisplay; + a.src = close; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-07-10 10:05:01
|
Revision: 9708 http://sourceforge.net/p/phpwiki/code/9708 Author: vargenau Date: 2015-07-10 10:04:59 +0000 (Fri, 10 Jul 2015) Log Message: ----------- Help/SearchHighlightPlugin: add default values" pgsrc/Help%2FSearchHighlightPlugin Modified Paths: -------------- trunk/lib/plugin/CreateToc.php trunk/lib/plugin/FullTextSearch.php trunk/pgsrc/Help%2FFullTextSearchPlugin trunk/pgsrc/Help%2FSearchHighlightPlugin trunk/pgsrc/ReleaseNotes Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2015-07-09 16:02:09 UTC (rev 9707) +++ trunk/lib/plugin/CreateToc.php 2015-07-10 10:04:59 UTC (rev 9708) @@ -407,6 +407,9 @@ ) { return $this->error(_("Error: firstlevelstyle must be 'number', 'letter' or 'roman'")); } + if ($extracollapse == 'false') { + $extracollapse = false; + } // Check if page exists. if (!($dbi->isWikiPage($pagename))) { @@ -486,25 +489,20 @@ if ($noheader) { } else { $toctoggleid = GenerateId("toctoggle"); - if ($extracollapse) + if ($extracollapse) { $toclink = HTML(_("Table of Contents"), " ", HTML::a(array('id' => 'TOC')), HTML::img(array( 'id' => $toctoggleid, 'class' => 'wikiaction', - 'title' => _("Click to display the TOC"), + 'title' => ($jshide ? _('Click to display the TOC') : _('Click to hide the TOC')), 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "', '" . _('Click to display the TOC') . "', '" . _('Click to hide the TOC') . "')", 'alt' => 'toctoggle', 'src' => $jshide ? $close : $open))); - else - $toclink = HTML::a(array('id' => 'TOC', - 'class' => 'wikiaction', - 'title' => _("Click to display"), - 'onclick' => "toggletoc(this, '" . $open . "', '" . $close . "', '" . $toclistid . "', '" . _('Click to display the TOC') . "', '" . _('Click to hide the TOC') . "')"), - _("Table of Contents"), - HTML::span(array('style' => 'display:none', - 'id' => $toctoggleid), " ")); + } else { + $toclink = HTML(_("Table of Contents"), HTML::a(array('id' => 'TOC'))); + } $html->pushContent(HTML::p(array('class' => 'toctitle'), $toclink)); } $html->pushContent($list); Modified: trunk/lib/plugin/FullTextSearch.php =================================================================== --- trunk/lib/plugin/FullTextSearch.php 2015-07-09 16:02:09 UTC (rev 9707) +++ trunk/lib/plugin/FullTextSearch.php 2015-07-10 10:04:59 UTC (rev 9708) @@ -75,6 +75,9 @@ _("You must enter a search term.")); } extract($args); + if ($quiet == 'false') { + $quiet = false; + } $query = new TextSearchQuery($s, $case_exact, $regex); $pages = $dbi->fullSearch($query, $sortby, $limit, $exclude); Modified: trunk/pgsrc/Help%2FFullTextSearchPlugin =================================================================== --- trunk/pgsrc/Help%2FFullTextSearchPlugin 2015-07-09 16:02:09 UTC (rev 9707) +++ trunk/pgsrc/Help%2FFullTextSearchPlugin 2015-07-10 10:04:59 UTC (rev 9708) @@ -1,4 +1,4 @@ -Date: Mon, 29 Jun 2015 12:04:28 +0000 +Date: Fri, 10 Jul 2015 10:59:51 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Help%2FFullTextSearchPlugin; @@ -60,10 +60,10 @@ == Example == {{{ -<<FullTextSearch>> +<<FullTextSearch s=boolean>> }}} -<<FullTextSearch>> +<<FullTextSearch s=boolean>> == Author == * [[Help:Reini Urban|Reini Urban]] Modified: trunk/pgsrc/Help%2FSearchHighlightPlugin =================================================================== --- trunk/pgsrc/Help%2FSearchHighlightPlugin 2015-07-09 16:02:09 UTC (rev 9707) +++ trunk/pgsrc/Help%2FSearchHighlightPlugin 2015-07-10 10:04:59 UTC (rev 9708) @@ -1,4 +1,4 @@ -Date: Mon, 29 Jun 2015 12:04:28 +0000 +Date: Fri, 10 Jul 2015 11:26:54 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=Help%2FSearchHighlightPlugin; @@ -11,7 +11,7 @@ When someone is referred from a search engine like Google, Yahoo or our own fulltextsearch, the terms the user searched for are highlighted. -See also http://wordpress.org/about/shots/1.2/plugins.png +See also [[http://wordpress.org/about/shots/1.2/plugins.png]]. == Arguments == @@ -23,15 +23,15 @@ |- | **s** | The search term -| +| //none// |- | **case_exact** | boolean -| +| false |- | **regex** | boolean -| +| false |} <noinclude> Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-07-09 16:02:09 UTC (rev 9707) +++ trunk/pgsrc/ReleaseNotes 2015-07-10 10:04:59 UTC (rev 9708) @@ -1,4 +1,4 @@ -Date: Mon, 29 Jun 2015 12:04:28 +0000 +Date: Fri, 10 Jul 2015 11:05:03 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -8,6 +8,10 @@ <<CreateToc with_toclink||=1 headers||=1,2,3 width=300px position=right>> +== 1.5.5 2015-XX-XX Marc-Etienne Vargenau == + +* Fix tooltip translation in ~CreateToc plugin + == 1.5.4 2015-06-29 Marc-Etienne Vargenau == * Fix ~WantedPages for Fusionforge This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-07-10 14:21:01
|
Revision: 9710 http://sourceforge.net/p/phpwiki/code/9710 Author: vargenau Date: 2015-07-10 14:20:58 +0000 (Fri, 10 Jul 2015) Log Message: ----------- Fix arguments Modified Paths: -------------- trunk/ImageTile.php trunk/lib/DbaDatabase.php trunk/lib/IniConfig.php trunk/lib/WikiTheme.php trunk/lib/WikiUser/OpenID.php trunk/lib/editpage.php trunk/lib/plugin/DebugBackendInfo.php trunk/lib/plugin/SpellCheck.php trunk/lib/plugin/WikiAdminPurge.php trunk/lib/plugin/WikiAdminRemove.php trunk/lib/plugin/WikiBlog.php trunk/lib/upgrade.php trunk/themes/Hawaiian/themeinfo.php trunk/themes/MacOSX/themeinfo.php trunk/themes/MonoBook/themeinfo.php trunk/themes/Portland/themeinfo.php trunk/themes/Sidebar/themeinfo.php trunk/themes/SpaceWiki/themeinfo.php trunk/themes/Wordpress/themeinfo.php trunk/themes/shamino_com/themeinfo.php trunk/themes/wikilens/themeinfo.php Modified: trunk/ImageTile.php =================================================================== --- trunk/ImageTile.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/ImageTile.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -56,49 +56,49 @@ if (function_exists("imagecreatefromjpeg")) $img = @imagecreatefromjpeg($file); else - show_plain($file); + show_plain(); break; case '3': if (function_exists("imagecreatefrompng")) $img = @imagecreatefrompng($file); else - show_plain($file); + show_plain(); break; case '1': if (function_exists("imagecreatefromgif")) $img = @imagecreatefromgif($file); else - show_plain($file); + show_plain(); break; case '15': if (function_exists("imagecreatefromwbmp")) $img = @imagecreatefromwbmp($file); else - show_plain($file); + show_plain(); break; case '16': if (function_exists("imagecreatefromxbm")) $img = @imagecreatefromxbm($file); else - show_plain($file); + show_plain(); break; case 'xpm': if (function_exists("imagecreatefromxpm")) $img = @imagecreatefromxpm($file); else - show_plain($file); + show_plain(); break; case 'gd': if (function_exists("imagecreatefromgd")) $img = @imagecreatefromgd($file); else - show_plain($file); + show_plain(); break; case 'gd2': if (function_exists("imagecreatefromgd2")) $img = @imagecreatefromgd2($file); else - show_plain($file); + show_plain(); break; default: //we are not stupid... Modified: trunk/lib/DbaDatabase.php =================================================================== --- trunk/lib/DbaDatabase.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/DbaDatabase.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -223,7 +223,7 @@ function _dump() { $dbh = &$this->_dbh; - for ($key = $this->firstkey($dbh); $key; $key = $this->nextkey($dbh)) + for ($key = $this->firstkey(); $key; $key = $this->nextkey()) printf("%10s: %s\n", $key, $this->fetch($key)); } Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/IniConfig.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -117,7 +117,7 @@ // Optionally check config/config.php dump for faster startup $dump = substr($file, 0, -3) . "php"; - if (isWindows($dump)) $dump = str_replace("/", "\\", $dump); + if (isWindows()) $dump = str_replace("/", "\\", $dump); if (file_exists($dump) and is_readable($dump) and filesize($dump) > 0 and sort_file_mtime($dump, $file) < 0) { @include($dump) or die("Error including " . $dump); if (function_exists('wiki_configrestore') and (wiki_configrestore() === 'noerr')) { Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/WikiTheme.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -1438,7 +1438,7 @@ // This allows one to manually select "Printer" style (when browsing page) // to see what the printer style looks like. - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Top & bottom toolbars"), 'phpwiki-topbottombars.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); Modified: trunk/lib/WikiUser/OpenID.php =================================================================== --- trunk/lib/WikiUser/OpenID.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/WikiUser/OpenID.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -247,7 +247,7 @@ } // no quotes and shorter than 128 - function isValidName() + function isValidName($userid = false) { if (!$this->_userid) return false; return !preg_match('/[\"\']/', $this->_userid) and strlen($this->_userid) < 128; Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/editpage.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -427,9 +427,7 @@ // This will probably prevent from discussing sex or viagra related topics. So beware. if (ENABLE_SPAMASSASSIN) { require_once 'lib/spam_babycart.php'; - if ($babycart = check_babycart($newtext, $request->get("REMOTE_ADDR"), - $this->user->getId()) - ) { + if ($babycart = check_babycart($newtext, $request->get("REMOTE_ADDR"))) { // TODO: mail the admin if (is_array($babycart)) $this->tokens['PAGE_LOCKED_MESSAGE'] = Modified: trunk/lib/plugin/DebugBackendInfo.php =================================================================== --- trunk/lib/plugin/DebugBackendInfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/plugin/DebugBackendInfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -103,7 +103,7 @@ $linkdata = $backend->get_links($page, false); if ($linkdata->count()) $table->pushContent($this->_showhash("get_links('$page')", $linkdata->asArray())); - $relations = $backend->get_links($page, false, false, false, false, false, true); + $relations = $backend->get_links($page, false, false, false, false, false); if ($relations->count()) { $table->pushContent($this->_showhash("get_relations('$page')", array())); while ($rel = $relations->next()) Modified: trunk/lib/plugin/SpellCheck.php =================================================================== --- trunk/lib/plugin/SpellCheck.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/plugin/SpellCheck.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -86,8 +86,7 @@ $words = preg_split('/[\W]+?/', $text); $misspelled = $return = array(); - $pspell_config = pspell_config_create($lang, "", "", 'UTF-8', - PSPELL_NORMAL | PSPELL_RUN_TOGETHER); + $pspell_config = pspell_config_create($lang, "", "", 'UTF-8'); //pspell_config_runtogether($pspell_config, true); if (PSPELL_PWL) pspell_config_personal($pspell_config, PSPELL_PWL); Modified: trunk/lib/plugin/WikiAdminPurge.php =================================================================== --- trunk/lib/plugin/WikiAdminPurge.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/plugin/WikiAdminPurge.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -37,7 +37,7 @@ /* getDefaultArguments() is inherited from WikiAdminSelect class */ - protected function collectPages(&$list, &$dbi, $sortby, $limit = 0) + protected function collectPages(&$list, &$dbi, $sortby, $limit = 0, $exclude = '') { $allPages = $dbi->getAllPages('include_empty', $sortby, $limit); Modified: trunk/lib/plugin/WikiAdminRemove.php =================================================================== --- trunk/lib/plugin/WikiAdminRemove.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/plugin/WikiAdminRemove.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -68,7 +68,7 @@ )); } - protected function collectPages(&$list, &$dbi, $sortby, $limit = 0) + protected function collectPages(&$list, &$dbi, $sortby, $limit = 0, $exclude = '') { extract($this->_args); Modified: trunk/lib/plugin/WikiBlog.php =================================================================== --- trunk/lib/plugin/WikiBlog.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/plugin/WikiBlog.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -101,7 +101,7 @@ $request->setArg("edit", false); if ($request->isPost() and !empty($blog['save'])) { - $this->add($request, $blog, 'wikiblog', $basepage); // noreturn + $this->add($request, $blog, 'wikiblog'); // noreturn } //TODO: preview Modified: trunk/lib/upgrade.php =================================================================== --- trunk/lib/upgrade.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/lib/upgrade.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -1199,14 +1199,14 @@ StartLoadDump($request, _("Upgrading this PhpWiki")); $upgrade = new Upgrade($request); if (!$request->getArg('nodb')) { - $upgrade->CheckDatabaseUpdate($request); // first check cached_html and friends + $upgrade->CheckDatabaseUpdate(); // first check cached_html and friends } if (!$request->getArg('nopgsrc')) { - $upgrade->CheckPgsrcUpdate($request); - $upgrade->CheckActionPageUpdate($request); + $upgrade->CheckPgsrcUpdate(); + $upgrade->CheckActionPageUpdate(); } if (!$request->getArg('noconfig')) { - $upgrade->CheckConfigUpdate($request); + $upgrade->CheckConfigUpdate(); } EndLoadDump($request); } Modified: trunk/themes/Hawaiian/themeinfo.php =================================================================== --- trunk/themes/Hawaiian/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/Hawaiian/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -32,7 +32,7 @@ // expected to be in the same directory that the base style is in. $this->setDefaultCSS('Hawaiian', 'Hawaiian.css'); - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); $this->addAlternateCSS('PhpWiki', 'phpwiki.css'); Modified: trunk/themes/MacOSX/themeinfo.php =================================================================== --- trunk/themes/MacOSX/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/MacOSX/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -102,7 +102,7 @@ // This allows one to manually select "Printer" style (when browsing page) // to see what the printer style looks like. - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Top & bottom toolbars"), 'MacOSX-topbottombars.css'); /** Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/MonoBook/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -71,7 +71,7 @@ // This allows one to manually select "Printer" style (when browsing page) // to see what the printer style looks like. - $this->addAlternateCSS(_("Printer"), 'commonPrint.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'commonPrint.css'); $this->addAlternateCSS(_("Top & bottom toolbars"), 'phpwiki-topbottombars.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); Modified: trunk/themes/Portland/themeinfo.php =================================================================== --- trunk/themes/Portland/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/Portland/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -61,7 +61,7 @@ // expected to be in the same directory that the base style is in. $this->setDefaultCSS('Portland', 'portland.css'); - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); $this->addAlternateCSS('PhpWiki', 'phpwiki.css'); Modified: trunk/themes/Sidebar/themeinfo.php =================================================================== --- trunk/themes/Sidebar/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/Sidebar/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -120,7 +120,7 @@ $this->setDefaultCSS(_("Sidebar"), array('' => 'sidebar.css', 'print' => 'phpwiki-printer.css')); - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); /** Modified: trunk/themes/SpaceWiki/themeinfo.php =================================================================== --- trunk/themes/SpaceWiki/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/SpaceWiki/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -45,7 +45,7 @@ // expected to be in the same directory that the base style is in. $this->setDefaultCSS('SpaceWiki', 'SpaceWiki.css'); - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); $this->addAlternateCSS('PhpWiki', 'phpwiki.css'); Modified: trunk/themes/Wordpress/themeinfo.php =================================================================== --- trunk/themes/Wordpress/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/Wordpress/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -63,7 +63,7 @@ // expected to be in the same directory that the base style is in. $this->setDefaultCSS('Wordpress', 'Wordpress.css'); - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); $this->addAlternateCSS('PhpWiki', 'phpwiki.css'); Modified: trunk/themes/shamino_com/themeinfo.php =================================================================== --- trunk/themes/shamino_com/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/shamino_com/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -57,7 +57,7 @@ // This allows one to manually select "Printer" style (when browsing page) // to see what the printer style looks like. - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Top & bottom toolbars"), 'phpwiki-topbottombars.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); Modified: trunk/themes/wikilens/themeinfo.php =================================================================== --- trunk/themes/wikilens/themeinfo.php 2015-07-10 10:55:26 UTC (rev 9709) +++ trunk/themes/wikilens/themeinfo.php 2015-07-10 14:20:58 UTC (rev 9710) @@ -29,7 +29,7 @@ // This allows one to manually select "Printer" style (when browsing page) // to see what the printer style looks like. - $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); + $this->addAlternateCSS(_("Printer"), 'phpwiki-printer.css'); $this->addAlternateCSS(_("Top & bottom toolbars"), 'phpwiki-topbottombars.css'); $this->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-08-17 15:08:09
|
Revision: 9715 http://sourceforge.net/p/phpwiki/code/9715 Author: vargenau Date: 2015-08-17 15:08:05 +0000 (Mon, 17 Aug 2015) Log Message: ----------- Remove Local Variables comments Modified Paths: -------------- trunk/ImageTile.php trunk/RPC2.php trunk/SOAP.php trunk/index.php trunk/lib/ArchiveCleaner.php trunk/lib/BlockParser.php trunk/lib/CachedMarkup.php trunk/lib/Captcha.php trunk/lib/DbSession/ADODB.php trunk/lib/DbSession/PDO.php trunk/lib/DbSession/SQL.php trunk/lib/DbSession/dba.php trunk/lib/DbSession.php trunk/lib/DbaDatabase.php trunk/lib/DbaListSet.php trunk/lib/DbaPartition.php trunk/lib/ErrorManager.php trunk/lib/ExternalReferrer.php trunk/lib/FileFinder.php trunk/lib/Google.php trunk/lib/HtmlElement.php trunk/lib/HtmlParser.php trunk/lib/HttpClient.php trunk/lib/IniConfig.php trunk/lib/InlineParser.php trunk/lib/MailNotify.php trunk/lib/PageList.php trunk/lib/PagePerm.php trunk/lib/PageType.php trunk/lib/RSSWriter091.php trunk/lib/Request.php trunk/lib/RssParser.php trunk/lib/RssWriter.php trunk/lib/RssWriter2.php trunk/lib/SemanticWeb.php trunk/lib/SpamBlocklist.php trunk/lib/Template.php trunk/lib/TextSearchQuery.php trunk/lib/WikiCallback.php trunk/lib/WikiDB/ADODB.php trunk/lib/WikiDB/PDO.php trunk/lib/WikiDB/SQL.php trunk/lib/WikiDB/backend/ADODB.php trunk/lib/WikiDB/backend/ADODB_mssql.php trunk/lib/WikiDB/backend/ADODB_mssqlnative.php trunk/lib/WikiDB/backend/ADODB_mysql.php trunk/lib/WikiDB/backend/ADODB_oci8po.php trunk/lib/WikiDB/backend/ADODB_postgres7.php trunk/lib/WikiDB/backend/ADODB_sqlite.php trunk/lib/WikiDB/backend/PDO.php trunk/lib/WikiDB/backend/PDO_mysql.php trunk/lib/WikiDB/backend/PDO_oci8.php trunk/lib/WikiDB/backend/PDO_pgsql.php trunk/lib/WikiDB/backend/PearDB.php trunk/lib/WikiDB/backend/PearDB_ffpgsql.php trunk/lib/WikiDB/backend/PearDB_mysql.php trunk/lib/WikiDB/backend/PearDB_oci8.php trunk/lib/WikiDB/backend/PearDB_pgsql.php trunk/lib/WikiDB/backend/PearDB_sqlite.php trunk/lib/WikiDB/backend/dba.php trunk/lib/WikiDB/backend/dbaBase.php trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php trunk/lib/WikiDB/backend/dumb/BackLinkIter.php trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php trunk/lib/WikiDB/backend/dumb/MostPopularIter.php trunk/lib/WikiDB/backend/dumb/MostRecentIter.php trunk/lib/WikiDB/backend/dumb/TextSearchIter.php trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php trunk/lib/WikiDB/backend/file.php trunk/lib/WikiDB/backend/flatfile.php trunk/lib/WikiDB/backend.php trunk/lib/WikiDB/dba.php trunk/lib/WikiDB/file.php trunk/lib/WikiDB/flatfile.php trunk/lib/WikiDB.php trunk/lib/WikiGroup.php trunk/lib/WikiPlugin.php trunk/lib/WikiPluginCached.php trunk/lib/WikiTheme.php trunk/lib/WikiUser/AdoDb.php trunk/lib/WikiUser/BogoLogin.php trunk/lib/WikiUser/Db.php trunk/lib/WikiUser/Facebook.php trunk/lib/WikiUser/File.php trunk/lib/WikiUser/Forbidden.php trunk/lib/WikiUser/FusionForge.php trunk/lib/WikiUser/HttpAuth.php trunk/lib/WikiUser/HttpAuthUpper.php trunk/lib/WikiUser/IMAP.php trunk/lib/WikiUser/LDAP.php trunk/lib/WikiUser/LdapUpper.php trunk/lib/WikiUser/OpenID.php trunk/lib/WikiUser/POP3.php trunk/lib/WikiUser/PdoDb.php trunk/lib/WikiUser/PearDb.php trunk/lib/WikiUser/PersonalPage.php trunk/lib/WikiUser/Session.php trunk/lib/WikiUser.php trunk/lib/WysiwygEdit/CKeditor.php trunk/lib/WysiwygEdit/Wikiwyg.php trunk/lib/WysiwygEdit/htmlarea2.php trunk/lib/WysiwygEdit/htmlarea3.php trunk/lib/WysiwygEdit/spaw.php trunk/lib/WysiwygEdit/tinymce.php trunk/lib/WysiwygEdit.php trunk/lib/XmlElement.php trunk/lib/XmlParser.php trunk/lib/XmlRpcClient.php trunk/lib/XmlRpcServer.php trunk/lib/config.php trunk/lib/diff.php trunk/lib/diff3.php trunk/lib/difflib.php trunk/lib/display.php trunk/lib/editpage.php trunk/lib/imagecache.php trunk/lib/install.php trunk/lib/loadsave.php trunk/lib/main.php trunk/lib/mimelib.php trunk/lib/pdf.php trunk/lib/pear/File_Passwd.php trunk/lib/plugin/AddComment.php trunk/lib/plugin/AllPages.php trunk/lib/plugin/AllUsers.php trunk/lib/plugin/AnalyseAccessLogSql.php trunk/lib/plugin/AppendText.php trunk/lib/plugin/AsciiMath.php trunk/lib/plugin/AsciiSVG.php trunk/lib/plugin/AuthorHistory.php trunk/lib/plugin/BackLinks.php trunk/lib/plugin/BlogArchives.php trunk/lib/plugin/BlogJournal.php trunk/lib/plugin/BoxRight.php trunk/lib/plugin/CacheTest.php trunk/lib/plugin/Calendar.php trunk/lib/plugin/CalendarList.php trunk/lib/plugin/CategoryPage.php trunk/lib/plugin/Chart.php trunk/lib/plugin/Comment.php trunk/lib/plugin/CreateBib.php trunk/lib/plugin/CreatePage.php trunk/lib/plugin/CreateToc.php trunk/lib/plugin/CurrentTime.php trunk/lib/plugin/DeadEndPages.php trunk/lib/plugin/DebugAuthInfo.php trunk/lib/plugin/DebugBackendInfo.php trunk/lib/plugin/DebugRetransform.php trunk/lib/plugin/Diff.php trunk/lib/plugin/DynamicIncludePage.php trunk/lib/plugin/EditMetaData.php trunk/lib/plugin/ExternalSearch.php trunk/lib/plugin/FacebookLike.php trunk/lib/plugin/FileInfo.php trunk/lib/plugin/FoafViewer.php trunk/lib/plugin/FullTextSearch.php trunk/lib/plugin/FuzzyPages.php trunk/lib/plugin/GoTo.php trunk/lib/plugin/GoogleMaps.php trunk/lib/plugin/GooglePlugin.php trunk/lib/plugin/GraphViz.php trunk/lib/plugin/HelloWorld.php trunk/lib/plugin/IncludePage.php trunk/lib/plugin/IncludePages.php trunk/lib/plugin/IncludeSiteMap.php trunk/lib/plugin/IncludeTree.php trunk/lib/plugin/InterWikiSearch.php trunk/lib/plugin/JabberPresence.php trunk/lib/plugin/LdapSearch.php trunk/lib/plugin/LikePages.php trunk/lib/plugin/LinkDatabase.php trunk/lib/plugin/LinkSearch.php trunk/lib/plugin/ListPages.php trunk/lib/plugin/ListRelations.php trunk/lib/plugin/ListSubpages.php trunk/lib/plugin/MediawikiTable.php trunk/lib/plugin/ModeratedPage.php trunk/lib/plugin/MostPopular.php trunk/lib/plugin/NewPagesPerUser.php trunk/lib/plugin/NoCache.php trunk/lib/plugin/OldStyleTable.php trunk/lib/plugin/OrphanedPages.php trunk/lib/plugin/PageDump.php trunk/lib/plugin/PageGroup.php trunk/lib/plugin/PageHistory.php trunk/lib/plugin/PageInfo.php trunk/lib/plugin/PageTrail.php trunk/lib/plugin/PasswordReset.php trunk/lib/plugin/PhotoAlbum.php trunk/lib/plugin/PhpHighlight.php trunk/lib/plugin/PhpWeather.php trunk/lib/plugin/Ploticus.php trunk/lib/plugin/PluginManager.php trunk/lib/plugin/PopUp.php trunk/lib/plugin/PopularNearby.php trunk/lib/plugin/PopularTags.php trunk/lib/plugin/PreferenceApp.php trunk/lib/plugin/PreferencesInfo.php trunk/lib/plugin/PrevNext.php trunk/lib/plugin/Processing.php trunk/lib/plugin/RandomPage.php trunk/lib/plugin/RateIt.php trunk/lib/plugin/RawHtml.php trunk/lib/plugin/RecentChanges.php trunk/lib/plugin/RecentChangesCached.php trunk/lib/plugin/RecentComments.php trunk/lib/plugin/RecentEdits.php trunk/lib/plugin/RecentReferrers.php trunk/lib/plugin/RedirectTo.php trunk/lib/plugin/RelatedChanges.php trunk/lib/plugin/RichTable.php trunk/lib/plugin/RssFeed.php trunk/lib/plugin/SearchHighlight.php trunk/lib/plugin/SemanticRelations.php trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SemanticSearchAdvanced.php trunk/lib/plugin/SiteMap.php trunk/lib/plugin/SpellCheck.php trunk/lib/plugin/SqlResult.php trunk/lib/plugin/SyncWiki.php trunk/lib/plugin/SyntaxHighlighter.php trunk/lib/plugin/SystemInfo.php trunk/lib/plugin/TeX2png.php trunk/lib/plugin/Template.php trunk/lib/plugin/TexToPng.php trunk/lib/plugin/TitleSearch.php trunk/lib/plugin/Transclude.php trunk/lib/plugin/TranslateText.php trunk/lib/plugin/UnfoldSubpages.php trunk/lib/plugin/UpLoad.php trunk/lib/plugin/UriResolver.php trunk/lib/plugin/UserPreferences.php trunk/lib/plugin/UserRatings.php trunk/lib/plugin/Video.php trunk/lib/plugin/VisualWiki.php trunk/lib/plugin/WantedPages.php trunk/lib/plugin/WatchPage.php trunk/lib/plugin/WhoIsOnline.php trunk/lib/plugin/WikiAdminChown.php trunk/lib/plugin/WikiAdminDeleteAcl.php trunk/lib/plugin/WikiAdminPurge.php trunk/lib/plugin/WikiAdminRemove.php trunk/lib/plugin/WikiAdminRename.php trunk/lib/plugin/WikiAdminSearchReplace.php trunk/lib/plugin/WikiAdminSelect.php trunk/lib/plugin/WikiAdminSetAcl.php trunk/lib/plugin/WikiAdminSetAclSimple.php trunk/lib/plugin/WikiAdminSetExternal.php trunk/lib/plugin/WikiAdminUtils.php trunk/lib/plugin/WikiBlog.php trunk/lib/plugin/WikiForm.php trunk/lib/plugin/WikiFormRich.php trunk/lib/plugin/WikiForum.php trunk/lib/plugin/WikiPoll.php trunk/lib/plugin/WikiTranslation.php trunk/lib/plugin/WikicreoleTable.php trunk/lib/plugin/YouTube.php trunk/lib/plugin/text2png.php trunk/lib/prepend.php trunk/lib/purgepage.php trunk/lib/removepage.php trunk/lib/stdlib.php trunk/lib/upgrade.php trunk/lib/wikilens/Buddy.php trunk/lib/wikilens/CustomPrefs.php trunk/lib/wikilens/PageListColumns.php trunk/lib/wikilens/RatingsDb.php trunk/lib/wikilens/RatingsUser.php trunk/lib/wikilens/Utils.php trunk/tests/CompatInfo.php trunk/tests/unit/lib/HtmlParserTest.php trunk/tests/unit/lib/InlineParserTest.php trunk/tests/unit/lib/XmlRpcTest.php trunk/tests/unit/test.php trunk/themes/Crao/themeinfo.php trunk/themes/Hawaiian/lib/random.php trunk/themes/Hawaiian/themeinfo.php trunk/themes/MacOSX/lib/RecentChanges.php trunk/themes/MacOSX/themeinfo.php trunk/themes/MonoBook/themeinfo.php trunk/themes/Portland/lib/RecentChanges.php trunk/themes/Portland/themeinfo.php trunk/themes/Sidebar/themeinfo.php trunk/themes/SpaceWiki/lib/RecentChanges.php trunk/themes/SpaceWiki/themeinfo.php trunk/themes/Wordpress/lib/RecentChanges.php trunk/themes/Wordpress/themeinfo.php trunk/themes/blog/lib/RecentChanges.php trunk/themes/blog/themeinfo.php trunk/themes/default/themeinfo.php trunk/themes/fusionforge/themeinfo.php trunk/themes/shamino_com/themeinfo.php trunk/themes/smaller/themeinfo.php trunk/themes/wikilens/themeinfo.php trunk/view.php Modified: trunk/ImageTile.php =================================================================== --- trunk/ImageTile.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/ImageTile.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -141,11 +141,3 @@ readfile($_REQUEST['url']); exit(); } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/RPC2.php =================================================================== --- trunk/RPC2.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/RPC2.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -27,11 +27,3 @@ $server = new XmlRpcServer; $server->service(); - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/SOAP.php =================================================================== --- trunk/SOAP.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/SOAP.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -375,11 +375,3 @@ echo "HTTP/1.0 500 Internal Server Error"; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/index.php =================================================================== --- trunk/index.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/index.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -55,11 +55,3 @@ // Without the dir check it might fail for index.php via DirectoryIndex if (@is_dir(SCRIPT_FILENAME) or realpath(SCRIPT_FILENAME) == realpath(__FILE__)) include(dirname(__FILE__) . "/lib/main.php"); - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/ArchiveCleaner.php =================================================================== --- trunk/lib/ArchiveCleaner.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/ArchiveCleaner.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -180,11 +180,3 @@ return $age <= $this->max_age && $count <= $this->keep; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/BlockParser.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1439,11 +1439,3 @@ } return new XmlContent($output->getContent()); } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/CachedMarkup.php =================================================================== --- trunk/lib/CachedMarkup.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/CachedMarkup.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -878,11 +878,3 @@ return $loader; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/Captcha.php =================================================================== --- trunk/lib/Captcha.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/Captcha.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -198,11 +198,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbSession/ADODB.php =================================================================== --- trunk/lib/DbSession/ADODB.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbSession/ADODB.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -268,11 +268,3 @@ return $sessions; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbSession/PDO.php =================================================================== --- trunk/lib/DbSession/PDO.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbSession/PDO.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -276,11 +276,3 @@ return $sessions; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbSession/SQL.php =================================================================== --- trunk/lib/DbSession/SQL.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbSession/SQL.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -268,11 +268,3 @@ return $sessions; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbSession/dba.php =================================================================== --- trunk/lib/DbSession/dba.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbSession/dba.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -220,11 +220,3 @@ return $sessions; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbSession.php =================================================================== --- trunk/lib/DbSession.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbSession.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -58,11 +58,3 @@ return $string; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbaDatabase.php =================================================================== --- trunk/lib/DbaDatabase.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbaDatabase.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -233,11 +233,3 @@ return true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbaListSet.php =================================================================== --- trunk/lib/DbaListSet.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbaListSet.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -153,11 +153,3 @@ return $old_next; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/DbaPartition.php =================================================================== --- trunk/lib/DbaPartition.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/DbaPartition.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -87,11 +87,3 @@ return $this->_h->optimize(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/ErrorManager.php =================================================================== --- trunk/lib/ErrorManager.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/ErrorManager.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -649,11 +649,3 @@ if (!isset($GLOBALS['ErrorManager'])) { $GLOBALS['ErrorManager'] = new ErrorManager; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/ExternalReferrer.php =================================================================== --- trunk/lib/ExternalReferrer.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/ExternalReferrer.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -116,11 +116,3 @@ return $ref; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/FileFinder.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -572,11 +572,3 @@ $winnt = false; // FIXME: punt. return $winnt; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/Google.php =================================================================== --- trunk/lib/Google.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/Google.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -283,11 +283,3 @@ $phrase); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/HtmlElement.php =================================================================== --- trunk/lib/HtmlElement.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/HtmlElement.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -701,11 +701,3 @@ } return HTML($html); } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/HtmlParser.php =================================================================== --- trunk/lib/HtmlParser.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/HtmlParser.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -483,11 +483,3 @@ return "[ $file $attr_str ]"; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/HttpClient.php =================================================================== --- trunk/lib/HttpClient.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/HttpClient.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -439,11 +439,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/IniConfig.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1061,11 +1061,3 @@ { return $text; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/InlineParser.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1417,11 +1417,3 @@ } return $trfm->parse($text); } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/MailNotify.php =================================================================== --- trunk/lib/MailNotify.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/MailNotify.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -398,11 +398,3 @@ return "=?UTF-8?Q?" . str_replace("\r\n", "\n", quoted_printable_encode($subject)) . "?="; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/PageList.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1947,11 +1947,3 @@ $this->_selected[$pagename] = 1; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/PagePerm.php =================================================================== --- trunk/lib/PagePerm.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/PagePerm.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -789,11 +789,3 @@ return $s; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/PageType.php =================================================================== --- trunk/lib/PageType.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/PageType.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -546,11 +546,3 @@ $this->_transform($text)); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/RSSWriter091.php =================================================================== --- trunk/lib/RSSWriter091.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/RSSWriter091.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -132,11 +132,3 @@ ); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/Request.php =================================================================== --- trunk/lib/Request.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/Request.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1423,11 +1423,3 @@ return _HTTP_VAL_PASS; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/RssParser.php =================================================================== --- trunk/lib/RssParser.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/RssParser.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -182,11 +182,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/RssWriter.php =================================================================== --- trunk/lib/RssWriter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/RssWriter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -288,11 +288,3 @@ $this->_finished = true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/RssWriter2.php =================================================================== --- trunk/lib/RssWriter2.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/RssWriter2.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -75,11 +75,3 @@ $this->printXML(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/SemanticWeb.php =================================================================== --- trunk/lib/SemanticWeb.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/SemanticWeb.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -417,11 +417,3 @@ class ReasonerBackend_KM extends ReasonerBackend { } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/SpamBlocklist.php =================================================================== --- trunk/lib/SpamBlocklist.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/SpamBlocklist.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -105,11 +105,3 @@ } return 0; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/Template.php =================================================================== --- trunk/lib/Template.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/Template.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -300,11 +300,3 @@ //$WikiTheme->DUMP_MODE = false; return $html; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/TextSearchQuery.php =================================================================== --- trunk/lib/TextSearchQuery.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/TextSearchQuery.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1276,11 +1276,3 @@ return $val; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiCallback.php =================================================================== --- trunk/lib/WikiCallback.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiCallback.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -123,11 +123,3 @@ E_USER_ERROR); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/ADODB.php =================================================================== --- trunk/lib/WikiDB/ADODB.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/ADODB.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -113,11 +113,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/PDO.php =================================================================== --- trunk/lib/WikiDB/PDO.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/PDO.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -119,11 +119,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/SQL.php =================================================================== --- trunk/lib/WikiDB/SQL.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/SQL.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -104,11 +104,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1591,11 +1591,3 @@ return $parsed; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB_mssql.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_mssql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB_mssql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -109,11 +109,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB_mssqlnative.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_mssqlnative.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB_mssqlnative.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -241,11 +241,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_mysql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB_mysql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -226,11 +226,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB_oci8po.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_oci8po.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB_oci8po.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -168,11 +168,3 @@ : "LOWER(pagename) LIKE '$page' OR DBMS_LOB.INSTR(content, '$exactword') > 0"); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB_postgres7.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_postgres7.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB_postgres7.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -163,11 +163,3 @@ // TODO: use tsearch2 //function _fulltext_match_clause($node) } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/ADODB_sqlite.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_sqlite.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/ADODB_sqlite.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -53,11 +53,3 @@ return $id; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PDO.php =================================================================== --- trunk/lib/WikiDB/backend/PDO.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PDO.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1560,11 +1560,3 @@ return $parsed; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PDO_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_mysql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PDO_mysql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -145,11 +145,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PDO_oci8.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_oci8.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PDO_oci8.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -89,11 +89,3 @@ $sth->execute(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PDO_pgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_pgsql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PDO_pgsql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -50,11 +50,3 @@ return 'pgsql'; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PearDB.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PearDB.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1299,11 +1299,3 @@ { // no surrounding quotes because we know it's a string } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PearDB_ffpgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -762,11 +762,3 @@ return $word; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PearDB_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_mysql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PearDB_mysql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -226,11 +226,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PearDB_oci8.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_oci8.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PearDB_oci8.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -120,11 +120,3 @@ : "LOWER(pagename) LIKE '$page' OR DBMS_LOB.INSTR(content, '$exactword') > 0"); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PearDB_pgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_pgsql.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PearDB_pgsql.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -221,11 +221,3 @@ // return $this->_pagename_match_clause($node) . " OR idxFTI @@ to_tsquery('$word')"; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/PearDB_sqlite.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_sqlite.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/PearDB_sqlite.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -97,11 +97,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dba.php =================================================================== --- trunk/lib/WikiDB/backend/dba.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dba.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -43,11 +43,3 @@ { } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dbaBase.php =================================================================== --- trunk/lib/WikiDB/backend/dbaBase.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dbaBase.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -960,11 +960,3 @@ $this->_db->set($key, false); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -64,11 +64,3 @@ return $rev; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/BackLinkIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/BackLinkIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/BackLinkIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -37,11 +37,3 @@ $this->_pages->free(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -168,11 +168,3 @@ $this->_pages->free(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/MostPopularIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/MostPopularIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/MostPopularIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -66,11 +66,3 @@ $bhits = (int)$b['pagedata']['hits']; return $ahits - $bhits; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/MostRecentIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/MostRecentIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/MostRecentIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -81,11 +81,3 @@ $bcreated = $b['versiondata']['mtime']; return $acreated - $bcreated; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/TextSearchIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/TextSearchIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/TextSearchIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -85,11 +85,3 @@ $this->_pages->free(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -65,11 +65,3 @@ unset($this->_backend); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/file.php =================================================================== --- trunk/lib/WikiDB/backend/file.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/file.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -776,11 +776,3 @@ $this->_result = array(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend/flatfile.php =================================================================== --- trunk/lib/WikiDB/backend/flatfile.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend/flatfile.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -195,11 +195,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/backend.php =================================================================== --- trunk/lib/WikiDB/backend.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/backend.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -866,11 +866,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/dba.php =================================================================== --- trunk/lib/WikiDB/dba.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/dba.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -17,11 +17,3 @@ "DBA", "/tmp"), E_USER_WARNING); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/file.php =================================================================== --- trunk/lib/WikiDB/file.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/file.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -43,11 +43,3 @@ "Page", "/tmp"), E_USER_WARNING); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB/flatfile.php =================================================================== --- trunk/lib/WikiDB/flatfile.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB/flatfile.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -43,11 +43,3 @@ "Page", "/tmp"), E_USER_WARNING); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiDB.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -2373,11 +2373,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiGroup.php =================================================================== --- trunk/lib/WikiGroup.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiGroup.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1099,11 +1099,3 @@ return $members; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiPlugin.php =================================================================== --- trunk/lib/WikiPlugin.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiPlugin.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -590,11 +590,3 @@ return false; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiPluginCached.php =================================================================== --- trunk/lib/WikiPluginCached.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiPluginCached.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -1105,11 +1105,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiTheme.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -2035,11 +2035,3 @@ natcasesort($available_languages); return $available_languages; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/AdoDb.php =================================================================== --- trunk/lib/WikiUser/AdoDb.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/AdoDb.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -319,11 +319,3 @@ return $rs; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/BogoLogin.php =================================================================== --- trunk/lib/WikiUser/BogoLogin.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/BogoLogin.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -76,11 +76,3 @@ return $this->_level; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/Db.php =================================================================== --- trunk/lib/WikiUser/Db.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/Db.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -100,11 +100,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/Facebook.php =================================================================== --- trunk/lib/WikiUser/Facebook.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/Facebook.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -90,11 +90,3 @@ return true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/File.php =================================================================== --- trunk/lib/WikiUser/File.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/File.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -110,11 +110,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/Forbidden.php =================================================================== --- trunk/lib/WikiUser/Forbidden.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/Forbidden.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -32,11 +32,3 @@ return; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/FusionForge.php =================================================================== --- trunk/lib/WikiUser/FusionForge.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/FusionForge.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -102,11 +102,3 @@ return false; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/HttpAuth.php =================================================================== --- trunk/lib/WikiUser/HttpAuth.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/HttpAuth.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -156,11 +156,3 @@ return false; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/HttpAuthUpper.php =================================================================== --- trunk/lib/WikiUser/HttpAuthUpper.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/HttpAuthUpper.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -168,11 +168,3 @@ return false; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/IMAP.php =================================================================== --- trunk/lib/WikiUser/IMAP.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/IMAP.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -80,11 +80,3 @@ return false; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/LDAP.php =================================================================== --- trunk/lib/WikiUser/LDAP.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/LDAP.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -256,11 +256,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/LdapUpper.php =================================================================== --- trunk/lib/WikiUser/LdapUpper.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/LdapUpper.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -54,11 +54,3 @@ return parent::userExists(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/OpenID.php =================================================================== --- trunk/lib/WikiUser/OpenID.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/OpenID.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -253,11 +253,3 @@ return !preg_match('/[\"\']/', $this->_userid) and strlen($this->_userid) < 128; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/POP3.php =================================================================== --- trunk/lib/WikiUser/POP3.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/POP3.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -95,11 +95,3 @@ return true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/PdoDb.php =================================================================== --- trunk/lib/WikiUser/PdoDb.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/PdoDb.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -305,11 +305,3 @@ return true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/PearDb.php =================================================================== --- trunk/lib/WikiUser/PearDb.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/PearDb.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -282,11 +282,3 @@ return true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/PersonalPage.php =================================================================== --- trunk/lib/WikiUser/PersonalPage.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/PersonalPage.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -81,11 +81,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser/Session.php =================================================================== --- trunk/lib/WikiUser/Session.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser/Session.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -77,11 +77,3 @@ return false; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WikiUser.php =================================================================== --- trunk/lib/WikiUser.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WikiUser.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -2307,11 +2307,3 @@ return wikihash($this->_prefs); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit/CKeditor.php =================================================================== --- trunk/lib/WysiwygEdit/CKeditor.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit/CKeditor.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -110,11 +110,3 @@ } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit/Wikiwyg.php =================================================================== --- trunk/lib/WysiwygEdit/Wikiwyg.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit/Wikiwyg.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -318,11 +318,3 @@ return $xmlcontent->AsXML(); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit/htmlarea2.php =================================================================== --- trunk/lib/WysiwygEdit/htmlarea2.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit/htmlarea2.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -46,11 +46,3 @@ return $out; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit/htmlarea3.php =================================================================== --- trunk/lib/WysiwygEdit/htmlarea3.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit/htmlarea3.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -109,11 +109,3 @@ return $out; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit/spaw.php =================================================================== --- trunk/lib/WysiwygEdit/spaw.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit/spaw.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -47,11 +47,3 @@ return $out; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit/tinymce.php =================================================================== --- trunk/lib/WysiwygEdit/tinymce.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit/tinymce.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -66,11 +66,3 @@ return $out; } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/WysiwygEdit.php =================================================================== --- trunk/lib/WysiwygEdit.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/WysiwygEdit.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -159,11 +159,3 @@ parent::__construct($tags); } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/XmlElement.php =================================================================== --- trunk/lib/XmlElement.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/XmlElement.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -670,11 +670,3 @@ $s->_init($args); return $s; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/XmlParser.php =================================================================== --- trunk/lib/XmlParser.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/XmlParser.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -178,11 +178,3 @@ } } } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/XmlRpcClient.php =================================================================== --- trunk/lib/XmlRpcClient.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/XmlRpcClient.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -116,11 +116,3 @@ $result = xu_rpc_http_concise($params); return $result; } - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/lib/XmlRpcServer.php =================================================================== --- trunk/lib/XmlRpcServer.php 2015-07-15 12:51:49 UTC (rev 9714) +++ trunk/lib/XmlRpcServer.php 2015-08-17 15:08:05 UTC (rev 9715) @@ -966,11 +966,3 @@ return true; } } - -// Local Variables: -// mode: php -// tab-width: 8 -//... [truncated message content] |
From: <var...@us...> - 2015-08-20 16:28:58
|
Revision: 9717 http://sourceforge.net/p/phpwiki/code/9717 Author: vargenau Date: 2015-08-20 16:28:55 +0000 (Thu, 20 Aug 2015) Log Message: ----------- Remove accesskeys Modified Paths: -------------- trunk/lib/HtmlElement.php trunk/lib/WikiTheme.php 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 trunk/passencrypt.php trunk/pgsrc/ReleaseNotes trunk/themes/MonoBook/templates/actionbar.tmpl trunk/themes/MonoBook/templates/navbar.tmpl trunk/themes/MonoBook/themeinfo.php trunk/themes/Sidebar/templates/logo.tmpl trunk/themes/Sidebar/templates/navbar.tmpl trunk/themes/Sidebar/templates/search.tmpl trunk/themes/default/templates/search.tmpl Modified: trunk/lib/HtmlElement.php =================================================================== --- trunk/lib/HtmlElement.php 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/lib/HtmlElement.php 2015-08-20 16:28:55 UTC (rev 9717) @@ -70,12 +70,10 @@ /** Add a "tooltip" to an element. * * @param string $tooltip_text The tooltip text. - * @param string $accesskey. */ - function addTooltip($tooltip_text, $accesskey = '') + function addTooltip($tooltip_text) { $this->setAttr('title', $tooltip_text); - if ($accesskey) $this->setAccesskey($accesskey); // FIXME: this should be initialized from title by an onLoad() function. // (though, that may not be possible.) @@ -85,28 +83,6 @@ $this->setAttr('onmouseout', "window.status='';return true;"); } - function setAccesskey($key) - { - global $WikiTheme; - if (strlen($key) != 1) return; - $this->setAttr("accesskey", $key); - - if (!empty($this->_attr['title'])) { - if (preg_match("/\[(alt-)?(.)\]$/", $this->_attr['title'], $m)) { - $this->_attr['title'] = preg_replace - ("/\[(alt-)?(.)\]$/", - "[" . $WikiTheme->tooltipAccessKeyPrefix() . "-\\2]", - $this->_attr['title']); - } else { - $this->_attr['title'] .= - " [" . $WikiTheme->tooltipAccessKeyPrefix() . "-$key]"; - } - } else { - $this->_attr['title'] = - "[" . $WikiTheme->tooltipAccessKeyPrefix() . "-$key]"; - } - } - function emptyTag() { if (($this->_properties & HTMLTAG_EMPTY) == 0) Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/lib/WikiTheme.php 2015-08-20 16:28:55 UTC (rev 9717) @@ -1030,41 +1030,9 @@ if ($action == 'browse') unset($attr['action']); - $options = $this->fixAccesskey($options); - return $this->makeButton($label, WikiURL($pagename, $attr), $class, $options); } - function tooltipAccessKeyPrefix() - { - static $tooltipAccessKeyPrefix = null; - if ($tooltipAccessKeyPrefix) return $tooltipAccessKeyPrefix; - - $tooltipAccessKeyPrefix = 'alt'; - if (isBrowserOpera()) $tooltipAccessKeyPrefix = 'shift-esc'; - elseif (isBrowserSafari() or browserDetect("Mac") or isBrowserKonqueror()) - $tooltipAccessKeyPrefix = 'ctrl'; // ff2 win and x11 only - elseif ((browserDetect("firefox/2") or browserDetect("minefield/3") or browserDetect("SeaMonkey/1.1")) - and ((browserDetect("windows") or browserDetect("x11"))) - ) - $tooltipAccessKeyPrefix = 'alt-shift'; - return $tooltipAccessKeyPrefix; - } - - /* - * Define the access key in the title only, with ending [p] or [alt-p]. - * This fixes the prefix in the title and sets the access key. - */ - function fixAccesskey($attrs) - { - if (!empty($attrs['title']) and preg_match("/\[(alt-)?(.)\]$/", $attrs['title'], $m)) { - if (empty($attrs['accesskey'])) $attrs['accesskey'] = $m[2]; - // firefox 'alt-shift', MSIE: 'alt', ... see wikibits.js - $attrs['title'] = preg_replace("/\[(alt-)?(.)\]$/", "[" . $this->tooltipAccessKeyPrefix() . "-\\2]", $attrs['title']); - } - return $attrs; - } - /** * Make a "button" which links to a wiki-page. * Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/lib/editpage.php 2015-08-20 16:28:55 UTC (rev 9717) @@ -1032,16 +1032,13 @@ } $el['PREVIEW_B'] = Button('submit:edit[preview]', _("Preview"), 'wikiaction', - array('accesskey' => 'p', - 'title' => _('Preview the current content [alt-p]'))); + array('title' => _('Preview the current content'))); $el['SAVE_B'] = Button('submit:edit[save]', _("Save"), 'wikiaction', - array('accesskey' => 's', - 'title' => _('Save the current content as wikipage [alt-s]'))); + array('title' => _('Save the current content as wikipage'))); $el['CHANGES_B'] = Button('submit:edit[diff]', _("Changes"), 'wikiaction', - array('accesskey' => 'c', - 'title' => _('Preview the current changes as diff [alt-c]'))); + 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'))); 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 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/de.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\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." @@ -429,17 +429,19 @@ msgid "Insert Image or Video" msgstr "Bild oder Video einfügen" -msgid "Preview the current content [alt-p]" -msgstr "Die aktuelle Version vorschauen [alt-p]" +msgid "Preview the current content" +msgstr "Die aktuelle Version vorschauen" -msgid "Save the current content as wikipage [alt-s]" -msgstr "" +#, fuzzy +msgid "Save the current content as wikipage" +msgstr "Die aktuelle Version vorschauen" msgid "Changes" msgstr "Änderungen" -msgid "Preview the current changes as diff [alt-c]" -msgstr "" +#, fuzzy +msgid "Preview the current changes as diff" +msgstr "Die aktuelle Version vorschauen" msgid "Upload" msgstr "Hochladen" @@ -6082,30 +6084,9 @@ msgid "Upgrade" msgstr "Updaten" -#~ msgid "Bold text [alt-b]" -#~ msgstr "Fetter Text [alt-f]" - -#~ msgid "Italic text [alt-i]" -#~ msgstr "Kursiver Text [alt-k]" - -#~ msgid "Strike" -#~ msgstr "Durchstreichen" - -#~ msgid "Color" -#~ msgstr "Farbe" - -#~ msgid "H" -#~ msgstr "H." - -#~ msgid "W" -#~ msgstr "Br." - #~ msgid "Adjust" #~ msgstr "Justieren" -#~ msgid "PgsrcTranslation" -#~ msgstr "PgsrcTranslation" - #~ msgid "Wanted Pages for %s (%d total):" #~ msgstr "WunschZettelSeiten für %s (%d gesamt):" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/es.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -426,17 +426,19 @@ msgstr "" #, fuzzy -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "Vea la versión actual" -msgid "Save the current content as wikipage [alt-s]" -msgstr "" +#, fuzzy +msgid "Save the current content as wikipage" +msgstr "Vea la versión actual" msgid "Changes" msgstr "Cambios" -msgid "Preview the current changes as diff [alt-c]" -msgstr "" +#, fuzzy +msgid "Preview the current changes as diff" +msgstr "Vea la versión actual" msgid "Upload" msgstr "" @@ -5906,21 +5908,9 @@ msgid "Upgrade" msgstr "Mejora" -#~ msgid "Bold text [alt-b]" -#~ msgstr "Texto en negrilla [alt-b]" - -#~ msgid "Italic text [alt-i]" -#~ msgstr "Texto del itálico [alt-i]" - #~ msgid "Click a button to get an example text" #~ msgstr "Chasque un botón para conseguir un texto del ejemplo" -#~ msgid "H" -#~ msgstr "Al" - -#~ msgid "W" -#~ msgstr "An" - #~ msgid "Columns: %s." #~ msgstr "Columnas: %s." Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/fr.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\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." @@ -433,17 +433,17 @@ msgid "Insert Image or Video" msgstr "Ajouter une image ou une vidéo" -msgid "Preview the current content [alt-p]" -msgstr "Prévisualiser le contenu actuel [alt-p]" +msgid "Preview the current content" +msgstr "Prévisualiser le contenu actuel" -msgid "Save the current content as wikipage [alt-s]" -msgstr "Enregistrer le contenu actuel dans la page wiki [alt-s]" +msgid "Save the current content as wikipage" +msgstr "Enregistrer le contenu actuel dans la page wiki" msgid "Changes" msgstr "Modifications" -msgid "Preview the current changes as diff [alt-c]" -msgstr "Prévisualiser les modifications actuelles en tant que diff [alt-c]" +msgid "Preview the current changes as diff" +msgstr "Prévisualiser les modifications actuelles en tant que diff" msgid "Upload" msgstr "Télécharger" @@ -6008,27 +6008,9 @@ msgid "Upgrade" msgstr "Mettre à jour" -#~ msgid "Bold text [alt-b]" -#~ msgstr "Gras [alt-b]" - -#~ msgid "Italic text [alt-i]" -#~ msgstr "Italique [alt-i]" - -#~ msgid "Strike" -#~ msgstr "Biffé" - -#~ msgid "Color" -#~ msgstr "Couleur" - #~ msgid "Click a button to get an example text" #~ msgstr "Cliquer sur un bouton pour obtenir une exemple de texte" -#~ msgid "H" -#~ msgstr "H" - -#~ msgid "W" -#~ msgstr "L" - #~ msgid "Adjust" #~ msgstr "Ajuster" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/it.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\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" @@ -416,17 +416,19 @@ msgstr "" #, fuzzy -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "Mostra il versione corrente" -msgid "Save the current content as wikipage [alt-s]" -msgstr "" +#, fuzzy +msgid "Save the current content as wikipage" +msgstr "Mostra il versione corrente" msgid "Changes" msgstr "" -msgid "Preview the current changes as diff [alt-c]" -msgstr "" +#, fuzzy +msgid "Preview the current changes as diff" +msgstr "Mostra il versione corrente" msgid "Upload" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/ja.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -404,17 +404,19 @@ msgstr "" #, fuzzy -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "現在のバージョンを表示する" -msgid "Save the current content as wikipage [alt-s]" -msgstr "" +#, fuzzy +msgid "Save the current content as wikipage" +msgstr "現在のバージョンを表示する" msgid "Changes" msgstr "" -msgid "Preview the current changes as diff [alt-c]" -msgstr "" +#, fuzzy +msgid "Preview the current changes as diff" +msgstr "現在のバージョンを表示する" msgid "Upload" msgstr "アップロード" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/nl.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -409,16 +409,16 @@ msgid "Insert Image or Video" msgstr "" -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "" -msgid "Save the current content as wikipage [alt-s]" +msgid "Save the current content as wikipage" msgstr "" msgid "Changes" msgstr "Veranderingen" -msgid "Preview the current changes as diff [alt-c]" +msgid "Preview the current changes as diff" msgstr "" msgid "Upload" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/phpwiki.pot 2015-08-20 16:28:55 UTC (rev 9717) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -403,16 +403,16 @@ msgid "Insert Image or Video" msgstr "" -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "" -msgid "Save the current content as wikipage [alt-s]" +msgid "Save the current content as wikipage" msgstr "" msgid "Changes" msgstr "" -msgid "Preview the current changes as diff [alt-c]" +msgid "Preview the current changes as diff" msgstr "" msgid "Upload" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/sv.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -404,16 +404,16 @@ msgid "Insert Image or Video" msgstr "" -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "" -msgid "Save the current content as wikipage [alt-s]" +msgid "Save the current content as wikipage" msgstr "" msgid "Changes" msgstr "Ändringar" -msgid "Preview the current changes as diff [alt-c]" +msgid "Preview the current changes as diff" msgstr "" msgid "Upload" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/locale/po/zh.po 2015-08-20 16:28:55 UTC (rev 9717) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-15 14:50+0200\n" +"POT-Creation-Date: 2015-08-20 18:25+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -426,17 +426,19 @@ msgstr "" #, fuzzy -msgid "Preview the current content [alt-p]" +msgid "Preview the current content" msgstr "查看目前版本" -msgid "Save the current content as wikipage [alt-s]" -msgstr "" +#, fuzzy +msgid "Save the current content as wikipage" +msgstr "查看目前版本" msgid "Changes" msgstr "" -msgid "Preview the current changes as diff [alt-c]" -msgstr "" +#, fuzzy +msgid "Preview the current changes as diff" +msgstr "查看目前版本" msgid "Upload" 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/passencrypt.php =================================================================== --- trunk/passencrypt.php 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/passencrypt.php 2015-08-20 16:28:55 UTC (rev 9717) @@ -111,7 +111,7 @@ <form action="<?php echo $REQUEST_URI ?>" method="post"> <fieldset> - <legend accesskey="P">Encrypt</legend> + <legend>Encrypt</legend> Enter a password twice to encrypt it:<br/> <input type="password" name="password" value=""/><br/> <input type="password" name="password2" value=""/> <input type="submit" value="Encrypt"/> @@ -120,7 +120,7 @@ or:<br/> <br/> <fieldset> - <legend accesskey="C">Generate</legend> + <legend>Generate</legend> Create a new random password: <input type="submit" name="create" value="Create"/> </fieldset> </form> Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/pgsrc/ReleaseNotes 2015-08-20 16:28:55 UTC (rev 9717) @@ -1,4 +1,4 @@ -Date: Fri, 10 Jul 2015 11:05:03 +0000 +Date: Thu, 20 Aug 2015 18:21:22 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -11,6 +11,7 @@ == 1.5.5 2015-XX-XX Marc-Etienne Vargenau == * Fix tooltip translation in ~CreateToc plugin +* Remove access keys == 1.5.4 2015-06-29 Marc-Etienne Vargenau == Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2015-08-20 16:28:55 UTC (rev 9717) @@ -1,5 +1,4 @@ <?php - //$p = $WikiTheme->tooltipAccessKeyPrefix(); $dbh = $request->getDbh(); $isAdmin = $user->isAdmin(); $pagename = $page->getName(); Modified: trunk/themes/MonoBook/templates/navbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/navbar.tmpl 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/MonoBook/templates/navbar.tmpl 2015-08-20 16:28:55 UTC (rev 9717) @@ -1,7 +1,6 @@ <?php // With MonoBook it is similar to Sidebar, named boxes at the left. // actionbuttons, navigation, search, toolbox -$p = $WikiTheme->tooltipAccessKeyPrefix(); ?> <!-- The left navigation/search bar --> <!-- Here you should add favorite Links and Categories --> @@ -10,7 +9,7 @@ <div class="pBody"> <ul> <li id="n-mainpage"><?php echo WikiLink(HOME_PAGE, "",_("Home Page")) ?></li> - <li><?php $link = WikiLink(_("RecentChanges"), "",_("Recent changes")); $link->setAttr("accesskey","r"); $link->addTooltip(_("The list of recent changes in the wiki.")." [$p-r]"); ?><?php echo $link ?></li> + <li><?php $link = WikiLink(_("RecentChanges"), "",_("Recent changes")); $link->addTooltip(_("The list of recent changes in the wiki.")); ?><?php echo $link ?></li> <li id="n-recentcomments"><?php echo WikiLink(_("RecentComments"), "",_("Recent comments")) ?></li> <li id="n-recentnewpages"><?php echo WikiLink(_("RecentNewPages"), "",_("Recent new pages")) ?></li> <li id="n-likepages"><?php echo Button(array('action'=>_("LikePages")),_("Like pages"), $page->getName()) ?></li> @@ -55,7 +54,7 @@ <li><?php echo WikiLink(_("PhpWikiAdministration"), "", _("Administration")) ?></li> <?php } ?> <?php if ($user->isSignedIn()) { ?> - <li><?php $link = WikiLink(_("UpLoad"),"",_("Upload File")); $link->setAttr("accesskey","u"); $link->addTooltip(_("Upload images or media files")." [$p-u]"); ?><?php echo $link ?></li> + <li><?php $link = WikiLink(_("UpLoad"),"",_("Upload File")); $link->addTooltip(_("Upload images or media files")); ?><?php echo $link ?></li> <?php } ?> <?php $PrintableLink = $WikiTheme->makeButton(_("Printable version"), "javascript:PrinterStylesheet();", 'wikiaction'); ?> <script type="text/javascript"><!-- Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/MonoBook/themeinfo.php 2015-08-20 16:28:55 UTC (rev 9717) @@ -49,7 +49,6 @@ if ($action == 'browse') unset($attr['action']); - $options = $this->fixAccesskey($options); return $this->makeButton($label, WikiURL($pagename, $attr), $class, $options); } Modified: trunk/themes/Sidebar/templates/logo.tmpl =================================================================== --- trunk/themes/Sidebar/templates/logo.tmpl 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/Sidebar/templates/logo.tmpl 2015-08-20 16:28:55 UTC (rev 9717) @@ -1,2 +1,2 @@ -<div class="portlet" id="p-logo"><a class="wikilink" href="<?php echo WikiURL(HOME_PAGE)?>" title="Visit the Home Page [<?php echo $WikiTheme->tooltipAccessKeyPrefix() ?>-z]" accesskey="z"><span class="logo"><?php echo WIKI_NAME ?></span></a></div> +<div class="portlet" id="p-logo"><a class="wikilink" href="<?php echo WikiURL(HOME_PAGE)?>" title="Visit the Home Page"><span class="logo"><?php echo WIKI_NAME ?></span></a></div> <img id="img-logo-right" src="<?php echo $WikiTheme->_findData('images/wiki_stamp.png')?>" alt="This is a WIKI! Edit every page" height="86" width="86" /> Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2015-08-20 16:28:55 UTC (rev 9717) @@ -1,7 +1,6 @@ <?php // With MonoBook it is similar to Sidebar, named boxes at the left. // actionbuttons, navigation, search, toolbox -$p = $WikiTheme->tooltipAccessKeyPrefix(); ?> <!-- The left navigation/search bar --> <!-- Here you should add favorite Links and Categories --> @@ -39,13 +38,13 @@ <h2><?php echo _("Toolbox") ?><?php echo $WikiTheme->folderArrow('p-tb', 'Open') ?></h2> <div class="pBody" id="p-tb-body"> <ul> - <li><?php $link = WikiLink(_("RecentChanges"), "",_("RecentChanges")); $link->setAttr("accesskey","r"); $link->addTooltip(_("The list of recent changes in the wiki.")." [$p-r]"); ?><?php echo $link ?> </li> + <li><?php $link = WikiLink(_("RecentChanges"), "",_("RecentChanges")); $link->addTooltip(_("The list of recent changes in the wiki.")); ?><?php echo $link ?> </li> <li><?php echo WikiLink(_("RecentNewPages")) ?></li> <?php if (!empty($revision)) { ?> <li id="t-whatlinkshere"><?php echo Button(array('action'=>_("BackLinks")), _("What links here"), $page->getName()) ?></li> <?php } ?> <?php if (!empty($user) && $user->isSignedIn()) { ?> - <li><?php $link = WikiLink(_("UpLoad"),"",_("Upload File")); $link->setAttr("accesskey","u"); $link->addTooltip(_("Upload images or media files")." [$p-u]"); ?><?php echo $link ?></li> + <li><?php $link = WikiLink(_("UpLoad"),"",_("Upload File")); $link->addTooltip(_("Upload images or media files")); ?><?php echo $link ?></li> <li><?php echo WikiLink(_("UserPreferences"), "",_("Preferences")) ?></li> <?php } ?> <?php $PrintableLink = $WikiTheme->makeButton(_("Printable version"), "javascript:PrinterStylesheet();", 'wikiaction'); ?> Modified: trunk/themes/Sidebar/templates/search.tmpl =================================================================== --- trunk/themes/Sidebar/templates/search.tmpl 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/Sidebar/templates/search.tmpl 2015-08-20 16:28:55 UTC (rev 9717) @@ -3,7 +3,6 @@ method="get" accept-charset="UTF-8" style="display:inline" class="searchform"> <?php $s = $request->getArg('s') ? $request->getArg('s') : _("Search"); -$p = $WikiTheme->tooltipAccessKeyPrefix(); if (! USE_PATH_INFO) { ?> <input type="hidden" name="pagename" value="<?php echo _("TitleSearch")?>" /> <?php } ?> @@ -14,9 +13,8 @@ onfocus="if (this.value == '<?php echo _("Search")?>') {this.value = '';}" onmouseout="window.status=''; return true;" onmouseover="window.status='<?php echo _("Quick Search")?>'; return true;" - accesskey="f" type="text" id="search" - title="<?php echo _("Search term(s)") . " [$p-f]"?>" /> + title="<?php echo _("Search term(s)") ?>" /> <?php echo $SEARCH_AFTER ?> </form> </div> Modified: trunk/themes/default/templates/search.tmpl =================================================================== --- trunk/themes/default/templates/search.tmpl 2015-08-17 15:19:33 UTC (rev 9716) +++ trunk/themes/default/templates/search.tmpl 2015-08-20 16:28:55 UTC (rev 9717) @@ -3,7 +3,6 @@ method="get" accept-charset="UTF-8" style="display:inline" class="searchform"> <?php $s = $request->getArg('s') ? $request->getArg('s') : _("Search"); -$p = $WikiTheme->tooltipAccessKeyPrefix(); if (! USE_PATH_INFO) { ?> <input type="hidden" name="pagename" value="<?php echo _("TitleSearch")?>" /> <?php } ?> @@ -14,9 +13,8 @@ onfocus="if (this.value == '<?php echo _("Search")?>') {this.value = '';}" onmouseout="window.status=''; return true;" onmouseover="window.status='<?php echo _("Quick Search")?>'; return true;" - accesskey="f" type="text" id="search" - title="<?php echo _("TitleSearch") . " [$p-f]"?>" /> + title="<?php echo _("TitleSearch") ?>" /> <?php echo empty($SEARCH_AFTER) ? '' : $SEARCH_AFTER ?> </form> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2015-09-07 09:29:28
|
Revision: 9719 http://sourceforge.net/p/phpwiki/code/9719 Author: vargenau Date: 2015-09-07 09:29:25 +0000 (Mon, 07 Sep 2015) Log Message: ----------- Check MAX_PAGENAME_LENGTH in CreatePage Modified Paths: -------------- trunk/lib/InlineParser.php trunk/lib/plugin/CreatePage.php trunk/pgsrc/ReleaseNotes Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2015-08-26 16:10:37 UTC (rev 9718) +++ trunk/lib/InlineParser.php 2015-09-07 09:29:25 UTC (rev 9719) @@ -332,7 +332,7 @@ $rawlink = preg_replace("/%2F(%20)+\./i", "%2F.", $rawlink); } } else { - // Check page name lenght + // Check page name length if (!string_starts_with($rawlink, "Upload:")) { if (strlen($rawlink) > MAX_PAGENAME_LENGTH) { return HTML::span(array('class' => 'error'), Modified: trunk/lib/plugin/CreatePage.php =================================================================== --- trunk/lib/plugin/CreatePage.php 2015-08-26 16:10:37 UTC (rev 9718) +++ trunk/lib/plugin/CreatePage.php 2015-09-07 09:29:25 UTC (rev 9719) @@ -71,6 +71,9 @@ if (!$s) { return $this->error(_("Cannot create page with empty name!")); } + if (strlen($s) > MAX_PAGENAME_LENGTH) { + return $this->error(_("Page name too long")); + } // TODO: javascript warning if "/" in s if ($verify) { $head = _("CreatePage failed"); Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2015-08-26 16:10:37 UTC (rev 9718) +++ trunk/pgsrc/ReleaseNotes 2015-09-07 09:29:25 UTC (rev 9719) @@ -1,4 +1,4 @@ -Date: Thu, 20 Aug 2015 18:21:22 +0000 +Date: Mon, 7 Sep 2015 11:28:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.4) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -12,6 +12,7 @@ * Fix tooltip translation in ~CreateToc plugin * Remove access keys +* Check MAX_PAGENAME_LENGTH in CreatePage == 1.5.4 2015-06-29 Marc-Etienne Vargenau == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |