From: <var...@us...> - 2010-08-31 14:55:36
|
Revision: 7659 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7659&view=rev Author: vargenau Date: 2010-08-31 14:55:29 +0000 (Tue, 31 Aug 2010) Log Message: ----------- GFORGE --> FUSIONFORGE Modified Paths: -------------- trunk/g trunk/lib/EditToolbar.php trunk/lib/IniConfig.php trunk/lib/MailNotify.php trunk/lib/PageList.php trunk/lib/PagePerm.php trunk/lib/WikiTheme.php trunk/lib/WikiUserNew.php trunk/lib/loadsave.php trunk/lib/main.php trunk/lib/plugin/PluginManager.php trunk/lib/plugin/UpLoad.php trunk/lib/plugin/UserPreferences.php trunk/lib/plugin/WatchPage.php trunk/lib/wikilens/RatingsUser.php Modified: trunk/g =================================================================== --- trunk/g 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/g 2010-08-31 14:55:29 UTC (rev 7659) @@ -76,7 +76,7 @@ define('WIKI_PGSRC', 'themes/gforge/pgsrc'); } - define('GFORGE', true); + define('FUSIONFORGE', true); define('PATH_INFO_PREFIX', '/'.$group_name . '/'); define('USE_PATH_INFO', true); Modified: trunk/lib/EditToolbar.php =================================================================== --- trunk/lib/EditToolbar.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/EditToolbar.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -114,7 +114,7 @@ if (ENABLE_EDIT_TOOLBAR) { $username = $request->_user->UserName(); - if (GFORGE or DISABLE_MARKUP_WIKIWORD or (!isWikiWord($username))) { + if (FUSIONFORGE or DISABLE_MARKUP_WIKIWORD or (!isWikiWord($username))) { $username = '[['.$username.']]'; } $signature = " ––".$username." ".CTime(); @@ -302,7 +302,7 @@ $categories = array(); while ($p = $pages->next()) { $page = $p->getName(); - if (GFORGE) { + if (FUSIONFORGE) { $categories[] = "['$page', '%0A----%0A%5B%5B".$page."%5D%5D']"; } else if (DISABLE_MARKUP_WIKIWORD or (!isWikiWord($page))) { $categories[] = "['$page', '%0A%5B".$page."%5D']"; Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/IniConfig.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -194,7 +194,7 @@ 'DISABLE_HTTP_REDIRECT', 'PLUGIN_CACHED_USECACHE', 'PLUGIN_CACHED_FORCE_SYNCMAP', 'BLOG_DEFAULT_EMPTY_PREFIX', 'DATABASE_PERSISTENT', - 'GFORGE', + 'FUSIONFORGE', 'ENABLE_DISCUSSION_LINK', 'ENABLE_CAPTCHA', 'ENABLE_WYSIWYG', 'WYSIWYG_DEFAULT_PAGETYPE_HTML', 'DISABLE_MARKUP_WIKIWORD', 'ENABLE_MARKUP_COLOR', 'ENABLE_MARKUP_TEMPLATE', @@ -620,8 +620,8 @@ .'UserRatings:' // UserRatings works only in wikilens derived themes .'WantedPages:WatchPage:WhoIsOnline:WikiAdminSelect'); - // The GFORGE theme omits them - if (!GFORGE) { + // The FUSIONFORGE theme omits them + if (!FUSIONFORGE) { // Add some some action pages depending on configuration if (DEBUG) { $ActionPages[] = 'DebugInfo'; @@ -708,8 +708,8 @@ $AllAllowedPlugins[] = 'WikiPoll'; $AllAllowedPlugins[] = 'YouTube'; - // The GFORGE theme omits them - if (!GFORGE) { + // The FUSIONFORGE theme omits them + if (!FUSIONFORGE) { $AllAllowedPlugins[] = 'AddComment'; $AllAllowedPlugins[] = 'AnalyseAccessLogSql'; $AllAllowedPlugins[] = 'AsciiMath'; @@ -773,8 +773,8 @@ $AllActionPages[] = 'SetGlobalAccessRightsSimple'; $AllActionPages[] = 'UserContribs'; - // The GFORGE theme omits them - if (!GFORGE) { + // The FUSIONFORGE theme omits them + if (!FUSIONFORGE) { // Add some some action pages depending on configuration if (DEBUG) { $AllActionPages[] = 'PhpWikiAdministration/Chmod'; @@ -782,7 +782,7 @@ $AllActionPages[] = 'PhpWikiAdministration/Markup'; } - if (GFORGE) { + if (FUSIONFORGE) { if (ENABLE_EXTERNAL_PAGES) { $AllAllowedPlugins[] = 'WikiAdminSetExternal'; $AllActionPages[] = 'ExternalPages'; @@ -919,7 +919,7 @@ define('DEFAULT_LANGUAGE', ''); // detect from client // Gforge hack - if (!GFORGE) { + if (!FUSIONFORGE) { // Disable update_locale because Zend Debugger crash if(! extension_loaded('Zend Debugger')) { update_locale(isset($LANG) ? $LANG : DEFAULT_LANGUAGE); Modified: trunk/lib/MailNotify.php =================================================================== --- trunk/lib/MailNotify.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/MailNotify.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -61,7 +61,7 @@ function fromId() { global $request; - if (GFORGE) { + if (FUSIONFORGE) { return $request->_user->getId(); } else { return $request->_user->getId() . '@' . $request->get('REMOTE_HOST'); @@ -72,7 +72,7 @@ global $request; // Disable verification of emails for corporate env. - if (GFORGE) { + if (FUSIONFORGE) { $doverify = false; } @@ -188,7 +188,7 @@ $emails = $this->emails; $from = $this->from; // Do not send if modification is from Gforge admin - if (GFORGE and $from == ADMIN_USER) { + if (FUSIONFORGE and $from == ADMIN_USER) { return; } if (!$notice) $notice = _("PageChange Notification of %s"); Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/PageList.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -1282,7 +1282,7 @@ trigger_error(sprintf("%s: Bad column", $column), E_USER_NOTICE); return false; } - if (!GFORGE) { + if (!FUSIONFORGE) { // FIXME: anon users might rate and see ratings also. // Defer this logic to the plugin. if ($column == 'rating' and !$GLOBALS['request']->_user->isSignedIn()) { Modified: trunk/lib/PagePerm.php =================================================================== --- trunk/lib/PagePerm.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/PagePerm.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -236,7 +236,7 @@ $page = $request->getPage($pagename); // Exceptions: - if (GFORGE) { + if (FUSIONFORGE) { if ($pagename != '.' && isset($request->_user->_is_external) && $request->_user->_is_external && ! $page->get('external')) { $permcache[$pagename][$access] = 0; return 0; Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/WikiTheme.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -223,7 +223,7 @@ return; } $this->addMoreHeaders(JavaScript('',array('src' => $this->_findData("wikicommon.js")))); - if (!GFORGE) { + if (!FUSIONFORGE) { // Gforge already loads this $this->addMoreHeaders(JavaScript('',array('src' => $this->_findData("sortable.js")))); } Modified: trunk/lib/WikiUserNew.php =================================================================== --- trunk/lib/WikiUserNew.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/WikiUserNew.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -563,7 +563,7 @@ function isValidName ($userid = false) { if (!$userid) $userid = $this->_userid; if (!$userid) return false; - if (GFORGE) { + if (FUSIONFORGE) { return true; } return preg_match("/^[\-\w\.@ ]+$/U", $userid) and strlen($userid) < 32; @@ -1776,7 +1776,7 @@ { function get($name) { // get email address from Gforge - if (GFORGE && session_loggedin()) { + if (FUSIONFORGE && session_loggedin()) { $user = session_get_user(); return $user->getEmail(); } else { @@ -1786,7 +1786,7 @@ function sanify($value) { // email address is already checked by Gforge - if (GFORGE) return $value; + if (FUSIONFORGE) return $value; // check for valid email address if ($this->get('email') == $value and $this->getraw('emailVerified')) return $value; @@ -1808,7 +1808,7 @@ */ function update($value) { // email address is already checked by Gforge - if (GFORGE) return $value; + if (FUSIONFORGE) return $value; if (!empty($this->_init)) return; $verified = $this->getraw('emailVerified'); // hack! @@ -1982,8 +1982,8 @@ ); // This should be probably be done with $customUserPreferenceColumns - // For now, we use GFORGE define - if (GFORGE) { + // For now, we use FUSIONFORGE define + if (FUSIONFORGE) { $gforgeprefs = array( 'pageTrail' => new _UserPreference_bool(), 'diffMenuItem' => new _UserPreference_bool(), @@ -2161,7 +2161,7 @@ } } - if (GFORGE) { + if (FUSIONFORGE) { // Merge current notifyPages with notifyPagesAll // notifyPages are pages to notify in the current project // while $notifyPagesAll is used to store all the monitored pages. @@ -2210,7 +2210,7 @@ } } - if (GFORGE) { + if (FUSIONFORGE) { // Restore notifyPages from notifyPagesAll // notifyPages are pages to notify in the current project // while $notifyPagesAll is used to store all the monitored pages. Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/loadsave.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -1527,7 +1527,7 @@ // Ensure that all mandatory pages are loaded $finder = new FileFinder; - if (!GFORGE) { + if (!FUSIONFORGE) { $mandatory = explode(':','SandBox:Template/Category:Template/Talk:SpecialPages:CategoryCategory:CategoryActionPage:Help/OldTextFormattingRules:Help/TextFormattingRules:PhpWikiAdministration'); } else if (WIKI_NAME == "help") { $mandatory = explode(':','SandBox:Template/Category:Template/Talk:SpecialPages:CategoryCategory:CategoryActionPage:Help/TextFormattingRules:PhpWikiAdministration'); Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/main.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -954,7 +954,7 @@ // Switched auth between sessions. // Note: There's no way to demandload a missing class-definition // afterwards! Stupid php. - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { if (empty($HTTP_SERVER_VARS['PHP_AUTH_USER'])) { return false; } @@ -1413,7 +1413,7 @@ $request->finish(); } -if ((!GFORGE) || (forge_get_config('installation_environment') != 'production')) { +if ((!FUSIONFORGE) || (forge_get_config('installation_environment') != 'production')) { if (defined('E_STRICT') and (E_ALL & E_STRICT)) // strict php5? error_reporting(E_ALL & ~E_STRICT); // exclude E_STRICT else Modified: trunk/lib/plugin/PluginManager.php =================================================================== --- trunk/lib/plugin/PluginManager.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/plugin/PluginManager.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -120,7 +120,7 @@ // make a link if an actionpage exists $pluginNamelink = $pluginName; $pluginDocPageName = _("Help")."/" . $pluginName . "Plugin"; - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { $pluginDocPageName = _("Help").":" . $pluginName . "Plugin"; } @@ -148,7 +148,7 @@ $pluginDocPageNamelink = WikiLink($pluginDocPageName,'if_known'); } - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { $pluginDocPageNamelink = WikiLink($pluginDocPageName, 'known'); } Modified: trunk/lib/plugin/UpLoad.php =================================================================== --- trunk/lib/plugin/UpLoad.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/plugin/UpLoad.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -174,7 +174,7 @@ // Make sure that the user is logged in. $user = $request->getUser(); if (!$user->isAuthenticated()) { - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { $message->pushContent(HTML::div(array('class' => 'error'), HTML::p(_("You cannot upload files.")), HTML::ul( Modified: trunk/lib/plugin/UserPreferences.php =================================================================== --- trunk/lib/plugin/UserPreferences.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/plugin/UserPreferences.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -68,7 +68,7 @@ $user->_request = $request; if (isa($request,'MockRequest')) return ''; - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { if (!($user->isAuthenticated())) { return HTML::div(array('class' => 'errors'), _("Error: You are not logged in, cannot display UserPreferences.")); Modified: trunk/lib/plugin/WatchPage.php =================================================================== --- trunk/lib/plugin/WatchPage.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/plugin/WatchPage.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -104,7 +104,7 @@ $page = $args['page']; if (!$user->isAuthenticated() or empty($userid)) { // wrong or unauthenticated user - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { // No login banner for Gforge return HTML::div(array('class' => 'error'), HTML::p(_("You must sign in to watch pages."))); @@ -113,7 +113,7 @@ } else { $pref = &$request->_prefs; $messages = ""; - if (!defined('GFORGE') or !GFORGE) { + if (!defined('FUSIONFORGE') or !FUSIONFORGE) { $email = $pref->get("email"); if (empty($email)) { return HTML::div( Modified: trunk/lib/wikilens/RatingsUser.php =================================================================== --- trunk/lib/wikilens/RatingsUser.php 2010-08-31 13:42:28 UTC (rev 7658) +++ trunk/lib/wikilens/RatingsUser.php 2010-08-31 14:55:29 UTC (rev 7659) @@ -363,7 +363,7 @@ while($rating = $rating_iter->next()) { - if (defined('GFORGE') and GFORGE) { + if (defined('FUSIONFORGE') and FUSIONFORGE) { $rating['pagename'] = preg_replace('/^'.PAGE_PREFIX.'/', '', $rating['pagename']); } $this->_num_ratings++; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-08-31 15:43:06
|
Revision: 7664 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7664&view=rev Author: vargenau Date: 2010-08-31 15:42:34 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Rename from gforge to fusionforge Modified Paths: -------------- trunk/TODO trunk/config/config-dist.ini trunk/configurator.php trunk/doc/CREDITS trunk/g trunk/lib/CachedMarkup.php trunk/lib/WikiUserNew.php trunk/lib/loadsave.php trunk/lib/main.php trunk/lib/plugin/RecentChanges.php trunk/lib/upgrade.php trunk/pgsrc/ReleaseNotes trunk/themes/Makefile trunk/themes/Makefile.global trunk/themes/fusionforge/wikilens-min.js trunk/themes/fusionforge/wikilens.js Modified: trunk/TODO =================================================================== --- trunk/TODO 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/TODO 2010-08-31 15:42:34 UTC (rev 7664) @@ -11,7 +11,6 @@ ** in MonoBook, IEFixes.js cannot be minimized, yuicompressor-2.4.2 gives syntax errors * plugin Video does not work - short-term TODO: * rename should check existing subpages and rename these also. * Sidebar: merge AVL theme (internal MonoBook derivate with customizable @@ -161,7 +160,7 @@ * change remove_page in WikiDb API, so that RecentChanges displays it. (just purge all revisions?) - * rename global $Theme to $WikiTheme (gforge nameclash) (100%) + * rename global $Theme to $WikiTheme (Gforge nameclash) (100%) 1.4.0 Goals: Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/config/config-dist.ini 2010-08-31 15:42:34 UTC (rev 7664) @@ -626,7 +626,8 @@ ; LDAP: Authenticate against LDAP_AUTH_HOST with LDAP_BASE_DN ; IMAP: Authenticate against IMAP_AUTH_HOST (email account) ; POP3: Authenticate against POP3_AUTH_HOST (email account) -; Session: Get username and level from a PHP session variable. (e.g. for gforge) +; Session: Get username and level from a PHP session variable +; (e.g. for FusionForge) ; File: Store username:crypted-passwords in .htaccess like files. ; Use Apache's htpasswd to manage this file. ; HttpAuth: Use the protection by the webserver (.htaccess/.htpasswd) Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/configurator.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -889,7 +889,7 @@ <dt>POP3</dt> <dd>Authenticate against POP3_AUTH_HOST (email account)</dd> <dt>Session</dt> - <dd>Get username and level from a PHP session variable. (e.g. for gforge)</dd> + <dd>Get username and level from a PHP session variable. (e.g. for FusionForge)</dd> <dt>File</dt> <dd>Store username:crypted-passwords in .htaccess like files. Use Apache's htpasswd to manage this file.</dd> Modified: trunk/doc/CREDITS =================================================================== --- trunk/doc/CREDITS 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/doc/CREDITS 2010-08-31 15:42:34 UTC (rev 7664) @@ -23,8 +23,8 @@ ! Developers ;[ Marc-Etienne Vargenau | mailto:var...@us... ] : -;: Chief of gforge integration, WikiCreole integration, -;: html conformity, documentation, ... +;: Chief of FusionForge integration, WikiCreole integration, +;: HTML conformity, documentation, ... ;Sabri Labbenes ;: Wikiwyg @@ -217,7 +217,7 @@ Michael Heilemann (Kubrick css) Gabriel Wicke (MonoBook layout, CSS and js) Chris Snyder (RawHtml safe mode) -Martin Langhoff <ma...@ca...> (gforge integration) +Martin Langhoff <ma...@ca...> (Gforge integration) Ry4an Brase (IRC gateway) Sara von Mosch (Word to wiki converter) </pre> Modified: trunk/g =================================================================== --- trunk/g 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/g 2010-08-31 15:42:34 UTC (rev 7664) @@ -66,14 +66,14 @@ define('VIRTUAL_PATH', '/wiki/g/'.$group_name); define('PAGE_PREFIX', '_g'.$group_id.'_'); - define('THEME', 'gforge'); + define('THEME', 'fusionforge'); // For Gforge, we create some specific pages, located in the theme // except for project "help" if ($group_name == "help") { define('WIKI_PGSRC', 'pgsrc'); } else { - define('WIKI_PGSRC', 'themes/gforge/pgsrc'); + define('WIKI_PGSRC', 'themes/fusionforge/pgsrc'); } define('FUSIONFORGE', true); @@ -102,7 +102,7 @@ // Get the maximum upload filesize from PHP config define('MAX_UPLOAD_SIZE', octets(ini_get('upload_max_filesize'))); - // Disable access log (already in apache & gforge). + // Disable access log (already in Apache & FusionForge). define('ACCESS_LOG_SQL', 0); define('DEBUG', ($sys_install_type != 'production')); @@ -171,7 +171,7 @@ $LANG='en'; $LC_ALL='en_US'; // We use a local interwiki map file - define('INTERWIKI_MAP_FILE', 'themes/gforge/interwiki.map'); + define('INTERWIKI_MAP_FILE', 'themes/fusionforge/interwiki.map'); define('DEFAULT_WIKI_PAGES', ""); Modified: trunk/lib/CachedMarkup.php =================================================================== --- trunk/lib/CachedMarkup.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/lib/CachedMarkup.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -37,13 +37,13 @@ function pack() { - // Gforge hack + // FusionForge hack // This causes a strange bug when a comment containing // a single quote is entered in the Summary box: // - the history is wrong (user and comment missing) // - the table of contents plugin no longer works global $WikiTheme; - if (isa($WikiTheme, 'WikiTheme_gforge')) { + if (isa($WikiTheme, 'WikiTheme_fusionforge')) { return serialize($this); } Modified: trunk/lib/WikiUserNew.php =================================================================== --- trunk/lib/WikiUserNew.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/lib/WikiUserNew.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -1984,7 +1984,7 @@ // This should be probably be done with $customUserPreferenceColumns // For now, we use FUSIONFORGE define if (FUSIONFORGE) { - $gforgeprefs = array( + $fusionforgeprefs = array( 'pageTrail' => new _UserPreference_bool(), 'diffMenuItem' => new _UserPreference_bool(), 'pageInfoMenuItem' => new _UserPreference_bool(), @@ -2002,7 +2002,7 @@ 'likePagesMenuItem' => new _UserPreference_bool(), 'specialPagesMenuItem' => new _UserPreference_bool(), ); - $this->_prefs = array_merge($this->_prefs, $gforgeprefs); + $this->_prefs = array_merge($this->_prefs, $fusionforgeprefs); } // add custom theme-specific pref types: Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/lib/loadsave.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -113,7 +113,7 @@ PrintXML(HTML::p(HTML::strong(_("Complete."))), HTML::p(fmt("Return to %s", $pagelink))); // Ugly hack to get valid XHTML code - if (isa($WikiTheme, 'WikiTheme_gforge')) { + if (isa($WikiTheme, 'WikiTheme_fusionforge')) { echo "</div>\n"; echo "</td></tr>\n"; echo "</table>\n"; Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/lib/main.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -115,7 +115,7 @@ if (isset($this->_user) and ( ! isa($this->_user, WikiUserClassname()) or (strtolower(get_class($this->_user)) == '_passuser') - or (strtolower(get_class($this->_user)) == '_gforgepassuser'))) + or (strtolower(get_class($this->_user)) == '_fusionforgepassuser'))) { $this->_user = WikiUser($userid, $this->_user->_prefs); } Modified: trunk/lib/plugin/RecentChanges.php =================================================================== --- trunk/lib/plugin/RecentChanges.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/lib/plugin/RecentChanges.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -494,7 +494,7 @@ $linkorname = $this->pageLink($rev); } - if ((isa($WikiTheme, 'WikiTheme_MonoBook')) or (isa($WikiTheme, 'WikiTheme_gforge'))) { + if ((isa($WikiTheme, 'WikiTheme_MonoBook')) or (isa($WikiTheme, 'WikiTheme_fusionforge'))) { $line->pushContent( $args['historylinks'] ? '' : $this->historyLink($rev), ' . . ', $linkorname, '; ', Modified: trunk/lib/upgrade.php =================================================================== --- trunk/lib/upgrade.php 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/lib/upgrade.php 2010-08-31 15:42:34 UTC (rev 7664) @@ -146,7 +146,7 @@ // see loadsave.php for saving new pages. function CheckPgsrcUpdate() { - // Check some theme specific pgsrc files (blog, wikilens, gforge, custom). + // Check some theme specific pgsrc files (blog, wikilens, fusionforge, custom). // We check theme specific pgsrc first in case the page is present in both // theme specific and global pgsrc global $WikiTheme; Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/pgsrc/ReleaseNotes 2010-08-31 15:42:34 UTC (rev 7664) @@ -25,8 +25,8 @@ Improved dumping, pageset handling for format= with ~ActionPages. e.g. dump pagesets or multi-page pdf's. -The Sidebar theme is now an extension of the Monobook theme (known from wikipedia), -the new gforge theme is to be used together with gforge (the successor of Sourceforge). +The Sidebar theme is now an extension of the Monobook theme (known from Wikipedia), +the new fusionforge theme is to be used together with FusionForge (the successor of Gforge). === Fixes === * fix ~PagePerm for multiple groups: not a member and undecided: check other groups Modified: trunk/themes/Makefile =================================================================== --- trunk/themes/Makefile 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/themes/Makefile 2010-08-31 15:42:34 UTC (rev 7664) @@ -7,7 +7,7 @@ .PHONY: all css js -THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge \ +THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX fusionforge \ Portland shamino_com Crao Wordpress smaller Hawaiian # http://developer.yahoo.com/yui/compressor/ Modified: trunk/themes/Makefile.global =================================================================== --- trunk/themes/Makefile.global 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/themes/Makefile.global 2010-08-31 15:42:34 UTC (rev 7664) @@ -6,7 +6,7 @@ .PHONY: all css js -THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge +THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX fusionforge # http://developer.yahoo.com/yui/compressor/ YUICOMPRESSOR = java -jar ../default/yuicompressor-2.4.2.jar Modified: trunk/themes/fusionforge/wikilens-min.js =================================================================== --- trunk/themes/fusionforge/wikilens-min.js 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/themes/fusionforge/wikilens-min.js 2010-08-31 15:42:34 UTC (rev 7664) @@ -1 +1 @@ -var rating=new Array;var prediction=new Array;var avg=new Array;var numusers=new Array;var canRate=new Array;var msg_rating_votes="Rating: %.1f (%d votes)";var msg_curr_rating="Your current rating: ";var msg_curr_prediction="Your current prediction: ";var msg_to=" to ";var msg_add_rating="Add your rating: ";var msg_thanks="Thanks!";var msg_rating_deleted="Rating deleted!";var rateit_imgsrc="/plugins/wiki/themes/gforge/images/RateIt";var rateit_action="RateIt";var idTop="";function displayRating(a,d,k,b,q){var c=new Array("Not Rated","Awful","Very Poor","Poor","Below Average","Average","Above Average","Good","Very Good","Excellent","Outstanding");var r=a+d+"Cancel";var n=rating[a];var h=prediction[a];var m="";var p=rateit_imgsrc;if(q){m=msg_curr_rating+n+" "+c[n*2];var o=". ";if(b){m=m+" "+msg_curr_prediction+h+" "+c[h*2]}if(canRate[a]){if(n){document[r].style.display="inline"}else{document[r].style.display="none"}}}for(var g=1;g<=10;g++){var l=a+g;if(q){var f=g/2;if(k>0){if(n){document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)}}else{if(h){document[l].onmouseout=function(){displayRating(a,d,h,1,0)}}}if(n!=k&&typeof(msg_chg_rating)!="undefined"){document[l].title=msg_chg_rating+n+" "+c[n*2]+msg_to+f+" "+c[g]}}else{document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)};document[l].title=msg_add_rating+f+" "+c[g]}}var e="N";if(b){if(q){document[l].title=m+o+msg_add_rating+c[g]}e="R"}else{if(g<=(k*2)){e="O"}}document[l].src=p+d+e+((g%2)?"k1":"k0")+".png"}}function displayRating2(a,d,k,b,q){var c=new Array("Not Rated","Awful","Very Poor","Poor","Below Average","Average","Above Average","Good","Very Good","Excellent","Outstanding");var r=a+d+"Cancel";var n=rating[a];var h=prediction[a];var m="";var p=rateit_imgsrc;if(q){m=msg_curr_rating+n+" "+c[n*2];var o=". ";if(b){m=m+" "+msg_curr_prediction+h+" "+c[h*2]}if(n){document[r].style.display="inline"}else{document[r].style.display="none"}}for(var g=1;g<=10;g++){var l=a+g;if(q){var f=g/2;if(k>0){if(n){document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)}}else{if(h){document[l].onmouseout=function(){displayRating(a,d,h,1,0)}}}if(n!=k&&typeof(msg_chg_rating)!="undefined"){document[l].title=msg_chg_rating+n+" "+c[n*2]+msg_to+f+" "+c[g]}}else{document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)};document[l].title=msg_add_rating+f+" "+c[g]}}var e="N";if(b){if(q){document[l].title=m+o+msg_add_rating+c[g]}e="R"}else{if(k<=n){if(g<=(k*2)){e="Rp"}else{if(g<=(n*2)){e="R"}}}else{if(g<=(n*2)){e="Rp"}else{if(g<=(k*2)){e="Rm"}}}}document[l].src=p+d+e+((g%2)?"k1":"k0")+".png"}}function sprintfRating(b,a,c){var d=Math.round(a*10)/10;if(c<2){b=b.replace(/votes/,"vote")}return b.replace(/\%.1f/,d).replace(/\%d/,c)}function clickRating(c,f,i,a,e,g){var h=a+"Action";var j=document.getElementById("rateit-widget-top");var k=numusers[a];var b=rating[a];if(g=="X"){deleteRating(h,f,e);if(j&&k){var d=avg[a]*k;var l;if(b&&b>0){if(k>1){l=(d-b)/(k-1);numusers[a]--}else{l=0;numusers[a]=0}}if(l.toString()!="NaN"&&idTop==a){avg[a]=l;j.childNodes[0].innerHTML=sprintfRating(msg_rating_votes,l,k-1)}}rating[a]=0;displayRating2(a,c,0,0,1)}else{submitRating(h,f,i,e,g);if(j&&k){var d=avg[a]*k;var l;if(b&&(b>0)){l=(d+g-b)/k}else{l=(d+g)/(k+1);numusers[a]++}if(l.toString()!="NaN"&&idTop==a){avg[a]=l;if(g!=rating[a]){j.childNodes[0].innerHTML=sprintfRating(msg_rating_votes,l,numusers[a])}}}else{if(j&&idTop==a){j.childNodes[0].innerHTML=sprintfRating(msg_rating_votes,g,1);avg[a]=g;numusers[a]=1}}rating[a]=g;displayRating2(a,c,g,0,1)}}function submitRating(d,e,a,f,g){var c=Math.round(Math.random()*(1000000));var b=WikiURL(e)+"version="+a+"&action="+rateit_action+"&mode=add&rating="+g+"&dimension="+f+"&nocache=1&nopurge=1&rand="+c;document[d].title=msg_thanks;document[d].src=b}function deleteRating(c,d,e){var b=Math.round(Math.random()*(1000000));var a=WikiURL(d)+"action="+rateit_action+"&mode=delete&dimension="+e+"&nocache=1&nopurge=1&rand="+b;document[c].title=msg_rating_deleted;document[c].src=a}; \ No newline at end of file +var rating=new Array;var prediction=new Array;var avg=new Array;var numusers=new Array;var canRate=new Array;var msg_rating_votes="Rating: %.1f (%d votes)";var msg_curr_rating="Your current rating: ";var msg_curr_prediction="Your current prediction: ";var msg_to=" to ";var msg_add_rating="Add your rating: ";var msg_thanks="Thanks!";var msg_rating_deleted="Rating deleted!";var rateit_imgsrc="/plugins/wiki/themes/fusionforge/images/RateIt";var rateit_action="RateIt";var idTop="";function displayRating(a,d,k,b,q){var c=new Array("Not Rated","Awful","Very Poor","Poor","Below Average","Average","Above Average","Good","Very Good","Excellent","Outstanding");var r=a+d+"Cancel";var n=rating[a];var h=prediction[a];var m="";var p=rateit_imgsrc;if(q){m=msg_curr_rating+n+" "+c[n*2];var o=". ";if(b){m=m+" "+msg_curr_prediction+h+" "+c[h*2]}if(canRate[a]){if(n){document[r].style.display="inline"}else{document[r].style.display="none"}}}for(var g=1;g<=10;g++){var l=a+g;if(q){var f=g/2;if(k>0){if(n){document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)}}else{if(h){document[l].onmouseout=function(){displayRating(a,d,h,1,0)}}}if(n!=k&&typeof(msg_chg_rating)!="undefined"){document[l].title=msg_chg_rating+n+" "+c[n*2]+msg_to+f+" "+c[g]}}else{document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)};document[l].title=msg_add_rating+f+" "+c[g]}}var e="N";if(b){if(q){document[l].title=m+o+msg_add_rating+c[g]}e="R"}else{if(g<=(k*2)){e="O"}}document[l].src=p+d+e+((g%2)?"k1":"k0")+".png"}}function displayRating2(a,d,k,b,q){var c=new Array("Not Rated","Awful","Very Poor","Poor","Below Average","Average","Above Average","Good","Very Good","Excellent","Outstanding");var r=a+d+"Cancel";var n=rating[a];var h=prediction[a];var m="";var p=rateit_imgsrc;if(q){m=msg_curr_rating+n+" "+c[n*2];var o=". ";if(b){m=m+" "+msg_curr_prediction+h+" "+c[h*2]}if(n){document[r].style.display="inline"}else{document[r].style.display="none"}}for(var g=1;g<=10;g++){var l=a+g;if(q){var f=g/2;if(k>0){if(n){document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)}}else{if(h){document[l].onmouseout=function(){displayRating(a,d,h,1,0)}}}if(n!=k&&typeof(msg_chg_rating)!="undefined"){document[l].title=msg_chg_rating+n+" "+c[n*2]+msg_to+f+" "+c[g]}}else{document[l].onmouseout=function(){displayRating(a,d,avg[a],0,0)};document[l].title=msg_add_rating+f+" "+c[g]}}var e="N";if(b){if(q){document[l].title=m+o+msg_add_rating+c[g]}e="R"}else{if(k<=n){if(g<=(k*2)){e="Rp"}else{if(g<=(n*2)){e="R"}}}else{if(g<=(n*2)){e="Rp"}else{if(g<=(k*2)){e="Rm"}}}}document[l].src=p+d+e+((g%2)?"k1":"k0")+".png"}}function sprintfRating(b,a,c){var d=Math.round(a*10)/10;if(c<2){b=b.replace(/votes/,"vote")}return b.replace(/\%.1f/,d).replace(/\%d/,c)}function clickRating(c,f,i,a,e,g){var h=a+"Action";var j=document.getElementById("rateit-widget-top");var k=numusers[a];var b=rating[a];if(g=="X"){deleteRating(h,f,e);if(j&&k){var d=avg[a]*k;var l;if(b&&b>0){if(k>1){l=(d-b)/(k-1);numusers[a]--}else{l=0;numusers[a]=0}}if(l.toString()!="NaN"&&idTop==a){avg[a]=l;j.childNodes[0].innerHTML=sprintfRating(msg_rating_votes,l,k-1)}}rating[a]=0;displayRating2(a,c,0,0,1)}else{submitRating(h,f,i,e,g);if(j&&k){var d=avg[a]*k;var l;if(b&&(b>0)){l=(d+g-b)/k}else{l=(d+g)/(k+1);numusers[a]++}if(l.toString()!="NaN"&&idTop==a){avg[a]=l;if(g!=rating[a]){j.childNodes[0].innerHTML=sprintfRating(msg_rating_votes,l,numusers[a])}}}else{if(j&&idTop==a){j.childNodes[0].innerHTML=sprintfRating(msg_rating_votes,g,1);avg[a]=g;numusers[a]=1}}rating[a]=g;displayRating2(a,c,g,0,1)}}function submitRating(d,e,a,f,g){var c=Math.round(Math.random()*(1000000));var b=WikiURL(e)+"version="+a+"&action="+rateit_action+"&mode=add&rating="+g+"&dimension="+f+"&nocache=1&nopurge=1&rand="+c;document[d].title=msg_thanks;document[d].src=b}function deleteRating(c,d,e){var b=Math.round(Math.random()*(1000000));var a=WikiURL(d)+"action="+rateit_action+"&mode=delete&dimension="+e+"&nocache=1&nopurge=1&rand="+b;document[c].title=msg_rating_deleted;document[c].src=a}; \ No newline at end of file Modified: trunk/themes/fusionforge/wikilens.js =================================================================== --- trunk/themes/fusionforge/wikilens.js 2010-08-31 15:23:17 UTC (rev 7663) +++ trunk/themes/fusionforge/wikilens.js 2010-08-31 15:42:34 UTC (rev 7664) @@ -23,7 +23,7 @@ var msg_rating_deleted = "Rating deleted!"; //var rateit_imgsrc = '/phpwiki-cvs/themes/MonoBook/images/RateIt'; -var rateit_imgsrc = '/plugins/wiki/themes/gforge/images/RateIt'; +var rateit_imgsrc = '/plugins/wiki/themes/fusionforge/images/RateIt'; var rateit_action = 'RateIt'; var idTop = ''; // This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-08-31 15:54:44
|
Revision: 7665 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7665&view=rev Author: vargenau Date: 2010-08-31 15:54:37 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Rename from gforge to fusionforge Modified Paths: -------------- trunk/doc/HISTORY trunk/pgsrc/ReleaseNotes trunk/themes/fusionforge/themeinfo.php Modified: trunk/doc/HISTORY =================================================================== --- trunk/doc/HISTORY 2010-08-31 15:42:34 UTC (rev 7664) +++ trunk/doc/HISTORY 2010-08-31 15:54:37 UTC (rev 7665) @@ -81,7 +81,7 @@ * brought WikiUser (old) uptodate * added owner and acl fields to dumps * import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini -* renamed global $Theme to $WikiTheme (gforge nameclash) +* renamed global $Theme to $WikiTheme (Gforge nameclash) new: * new ENABLE_EDIT_TOOLBAR (from mediawiki), JS_SEARCHREPLACE currently broken. Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2010-08-31 15:42:34 UTC (rev 7664) +++ trunk/pgsrc/ReleaseNotes 2010-08-31 15:54:37 UTC (rev 7665) @@ -535,7 +535,7 @@ * brought ~WikiUser (old) uptodate * added owner and acl fields to dumps * import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini -* renamed global $Theme to $~WikiTheme (gforge nameclash) +* renamed global $Theme to $~WikiTheme (Gforge nameclash) * aggressive WikiDB and cache memory optimization: don't cache %content and _cached_html if not needed. * PageDump added format=backup: dump all revisions. Modified: trunk/themes/fusionforge/themeinfo.php =================================================================== --- trunk/themes/fusionforge/themeinfo.php 2010-08-31 15:42:34 UTC (rev 7664) +++ trunk/themes/fusionforge/themeinfo.php 2010-08-31 15:54:37 UTC (rev 7665) @@ -11,7 +11,7 @@ require_once('lib/WikiTheme.php'); require_once('themes/wikilens/themeinfo.php'); -class WikiTheme_gforge extends WikiTheme_Wikilens { +class WikiTheme_fusionforge extends WikiTheme_Wikilens { function header() { global $HTML, $group_id, $group_public_name, $request, $project; @@ -148,7 +148,7 @@ } } -$WikiTheme = new WikiTheme_gforge('gforge'); +$WikiTheme = new WikiTheme_fusionforge('fusionforge'); // Local Variables: // mode: php This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-08-31 16:02:52
|
Revision: 7666 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7666&view=rev Author: vargenau Date: 2010-08-31 16:02:45 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Rename from gforge to fusionforge Modified Paths: -------------- trunk/g trunk/lib/IniConfig.php trunk/lib/MailNotify.php trunk/lib/WikiTheme.php trunk/lib/WikiUserNew.php trunk/lib/plugin/WatchPage.php trunk/pgsrc/Help%2FRecentChangesPlugin trunk/themes/fusionforge/templates/html.tmpl Modified: trunk/g =================================================================== --- trunk/g 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/g 2010-08-31 16:02:45 UTC (rev 7666) @@ -68,7 +68,7 @@ define('THEME', 'fusionforge'); - // For Gforge, we create some specific pages, located in the theme + // For FusionForge, we create some specific pages, located in the theme // except for project "help" if ($group_name == "help") { define('WIKI_PGSRC', 'pgsrc'); @@ -115,7 +115,7 @@ // Disable VACUUM (they are performed every night) define('DATABASE_OPTIMISE_FREQUENCY', 0); - // TBD: the name should be taken from Gforge + // TBD: the name should be taken from FusionForge // define('ADMIN_USER', 'ACOS Forge Administrator'); define('ADMIN_USER', 'The PhpWiki programming team'); // Dummy value Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/lib/IniConfig.php 2010-08-31 16:02:45 UTC (rev 7666) @@ -44,7 +44,7 @@ * - Old-style index.php => config/config.ini converter. * * - Don't use too much globals for easier integration into other projects - * (namespace pollution). (gforge, phpnuke, postnuke, phpBB2, carolina, ...) + * (namespace pollution). (FusionForge, phpnuke, postnuke, phpBB2, carolina, ...) * Use one global $phpwiki object instead which holds the cfg vars, constants * and all other globals. * (global $FieldSeparator, $charset, $WikiNameRegexp, $KeywordLinkRegexp; @@ -918,7 +918,7 @@ if (!defined('DEFAULT_LANGUAGE')) // not needed anymore define('DEFAULT_LANGUAGE', ''); // detect from client - // Gforge hack + // FusionForge hack if (!FUSIONFORGE) { // Disable update_locale because Zend Debugger crash if(! extension_loaded('Zend Debugger')) { Modified: trunk/lib/MailNotify.php =================================================================== --- trunk/lib/MailNotify.php 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/lib/MailNotify.php 2010-08-31 16:02:45 UTC (rev 7666) @@ -187,7 +187,7 @@ $encoded_subject = $this->subject_encode($subject); $emails = $this->emails; $from = $this->from; - // Do not send if modification is from Gforge admin + // Do not send if modification is from FusionForge admin if (FUSIONFORGE and $from == ADMIN_USER) { return; } Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/lib/WikiTheme.php 2010-08-31 16:02:45 UTC (rev 7666) @@ -224,7 +224,7 @@ } $this->addMoreHeaders(JavaScript('',array('src' => $this->_findData("wikicommon.js")))); if (!FUSIONFORGE) { - // Gforge already loads this + // FusionForge already loads this $this->addMoreHeaders(JavaScript('',array('src' => $this->_findData("sortable.js")))); } // by pixels Modified: trunk/lib/WikiUserNew.php =================================================================== --- trunk/lib/WikiUserNew.php 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/lib/WikiUserNew.php 2010-08-31 16:02:45 UTC (rev 7666) @@ -1775,7 +1775,7 @@ extends _UserPreference { function get($name) { - // get email address from Gforge + // get e-mail address from FusionForge if (FUSIONFORGE && session_loggedin()) { $user = session_get_user(); return $user->getEmail(); @@ -1785,7 +1785,7 @@ } function sanify($value) { - // email address is already checked by Gforge + // e-mail address is already checked by FusionForge if (FUSIONFORGE) return $value; // check for valid email address if ($this->get('email') == $value and $this->getraw('emailVerified')) @@ -1807,7 +1807,7 @@ * For true verification (value = 2), we'd need a mailserver hook. */ function update($value) { - // email address is already checked by Gforge + // e-mail address is already checked by FusionForge if (FUSIONFORGE) return $value; if (!empty($this->_init)) return; $verified = $this->getraw('emailVerified'); Modified: trunk/lib/plugin/WatchPage.php =================================================================== --- trunk/lib/plugin/WatchPage.php 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/lib/plugin/WatchPage.php 2010-08-31 16:02:45 UTC (rev 7666) @@ -105,7 +105,7 @@ if (!$user->isAuthenticated() or empty($userid)) { // wrong or unauthenticated user if (defined('FUSIONFORGE') and FUSIONFORGE) { - // No login banner for Gforge + // No login banner for FusionForge return HTML::div(array('class' => 'error'), HTML::p(_("You must sign in to watch pages."))); } Modified: trunk/pgsrc/Help%2FRecentChangesPlugin =================================================================== --- trunk/pgsrc/Help%2FRecentChangesPlugin 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/pgsrc/Help%2FRecentChangesPlugin 2010-08-31 16:02:45 UTC (rev 7666) @@ -78,7 +78,7 @@ |- | **historylinks** | Show history links -| false (true for Monobook and Gforge) +| false (true for Monobook and FusionForge) |- | **caption** | Custom caption Modified: trunk/themes/fusionforge/templates/html.tmpl =================================================================== --- trunk/themes/fusionforge/templates/html.tmpl 2010-08-31 15:54:37 UTC (rev 7665) +++ trunk/themes/fusionforge/templates/html.tmpl 2010-08-31 16:02:45 UTC (rev 7666) @@ -3,7 +3,7 @@ ?> <?php /* - * No header for Gforge (already provided) + * No header for FusionForge (already provided) */ ?> <?php $WikiTheme->header() ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-08-31 16:08:42
|
Revision: 7663 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7663&view=rev Author: vargenau Date: 2010-08-31 15:23:17 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Rename WikiUser/GForge.php as WikiUser/FusionForge.php Modified Paths: -------------- trunk/g trunk/lib/SemanticWeb.php Added Paths: ----------- trunk/lib/WikiUser/FusionForge.php Removed Paths: ------------- trunk/lib/WikiUser/GForge.php Modified: trunk/g =================================================================== --- trunk/g 2010-08-31 15:12:14 UTC (rev 7662) +++ trunk/g 2010-08-31 15:23:17 UTC (rev 7663) @@ -160,9 +160,9 @@ // Do not allow fake user define('ALLOW_BOGO_LOGIN', false); - // A dedicated auth has been created to get auth from GForge - $USER_AUTH_ORDER = array("GForge"); - define('USER_AUTH_ORDER', 'GForge'); + // A dedicated auth has been created to get auth from FusionForge + $USER_AUTH_ORDER = array("FusionForge"); + define('USER_AUTH_ORDER', 'FusionForge'); define('USER_AUTH_POLICY', 'strict'); define('EXTERNAL_LINK_TARGET', '_top'); Modified: trunk/lib/SemanticWeb.php =================================================================== --- trunk/lib/SemanticWeb.php 2010-08-31 15:12:14 UTC (rev 7662) +++ trunk/lib/SemanticWeb.php 2010-08-31 15:23:17 UTC (rev 7663) @@ -77,7 +77,7 @@ * http://phpwiki.org/SemanticWeb, * http://en.wikipedia.org/wiki/Knowledge_representation * http://www.ontoweb.org/ - * http://www.semwebcentral.org/ (OWL on top of GForge) + * http://www.semwebcentral.org/ (OWL on top of FusionForge) * * * Author: Reini Urban <ru...@x-...> Copied: trunk/lib/WikiUser/FusionForge.php (from rev 7658, trunk/lib/WikiUser/GForge.php) =================================================================== --- trunk/lib/WikiUser/FusionForge.php (rev 0) +++ trunk/lib/WikiUser/FusionForge.php 2010-08-31 15:23:17 UTC (rev 7663) @@ -0,0 +1,108 @@ +<?php //-*-php-*- +// rcs_id('$Id$'); +/* + * Copyright (C) 2006 Alain Peyrat + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/** Call the FusionForge functions to get the username + * + */ +class _FusionForgePassUser extends _PassUser { + + var $_is_external = 0; + + function _FusionForgePassUser($UserName='',$prefs=false) { + if ($prefs) $this->_prefs = $prefs; + if (!isset($this->_prefs->_method)) + _PassUser::_PassUser($UserName); + if ($UserName) $this->_userid = $UserName; + $this->_authmethod = 'FusionForge'; + + // Is this double check really needed? + // It is not expensive so we keep it for now. + if ($this->userExists()) + return $this; + else + return $GLOBALS['ForbiddenUser']; + } + + function userExists() { + global $group_id; + + // Mapping (PhpWiki vs FusionForge) performed is: + // ANON for non logged or non member + // USER for member of the project. + // ADMIN for member having admin rights + if (session_loggedin()){ + + // Get project object (if error => ANON) + $project =& group_get_object($group_id); + + if (!$project || !is_object($project)) { + $this->_level = WIKIAUTH_ANON; + return false; + } elseif ($project->isError()) { + $this->_level = WIKIAUTH_ANON; + return false; + } + + $member = false ; + $user = session_get_user(); + $perm =& $project->getPermission($user); + if (!$perm || !is_object($perm)) { + $this->_level = WIKIAUTH_ANON; + return false; + } elseif (!$perm->isError()) { + $member = $perm->isMember(); + } + + if ($member) { + $this->_userid = $user->getRealName(); + $this->_is_external = $user->getIsExternal(); + if ($perm->isAdmin()) { + $this->_level = WIKIAUTH_ADMIN; + } else { + $this->_level = WIKIAUTH_USER; + } + return $this; + } + } + $this->_level = WIKIAUTH_ANON; + return false; + } + + function checkPass($submitted_password) { + return $this->userExists() + ? ($this->isAdmin() ? WIKIAUTH_ADMIN : WIKIAUTH_USER) + : WIKIAUTH_ANON; + } + + function mayChangePass() { + return false; + } +} + +// 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/WikiUser/GForge.php =================================================================== --- trunk/lib/WikiUser/GForge.php 2010-08-31 15:12:14 UTC (rev 7662) +++ trunk/lib/WikiUser/GForge.php 2010-08-31 15:23:17 UTC (rev 7663) @@ -1,108 +0,0 @@ -<?php //-*-php-*- -// rcs_id('$Id$'); -/* - * Copyright (C) 2006 Alain Peyrat - * - * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -/** Call the gforge functions to get the username - * - */ -class _GForgePassUser extends _PassUser { - - var $_is_external = 0; - - function _GForgePassUser($UserName='',$prefs=false) { - if ($prefs) $this->_prefs = $prefs; - if (!isset($this->_prefs->_method)) - _PassUser::_PassUser($UserName); - if ($UserName) $this->_userid = $UserName; - $this->_authmethod = 'GForge'; - - // Is this double check really needed? - // It is not expensive so we keep it for now. - if ($this->userExists()) - return $this; - else - return $GLOBALS['ForbiddenUser']; - } - - function userExists() { - global $group_id; - - // Mapping (phpWiki vs GForge) performed is: - // ANON for non logged or non member - // USER for member of the project. - // ADMIN for member having admin rights - if (session_loggedin()){ - - // Get project object (if error => ANON) - $project =& group_get_object($group_id); - - if (!$project || !is_object($project)) { - $this->_level = WIKIAUTH_ANON; - return false; - } elseif ($project->isError()) { - $this->_level = WIKIAUTH_ANON; - return false; - } - - $member = false ; - $user = session_get_user(); - $perm =& $project->getPermission($user); - if (!$perm || !is_object($perm)) { - $this->_level = WIKIAUTH_ANON; - return false; - } elseif (!$perm->isError()) { - $member = $perm->isMember(); - } - - if ($member) { - $this->_userid = $user->getRealName(); - $this->_is_external = $user->getIsExternal(); - if ($perm->isAdmin()) { - $this->_level = WIKIAUTH_ADMIN; - } else { - $this->_level = WIKIAUTH_USER; - } - return $this; - } - } - $this->_level = WIKIAUTH_ANON; - return false; - } - - function checkPass($submitted_password) { - return $this->userExists() - ? ($this->isAdmin() ? WIKIAUTH_ADMIN : WIKIAUTH_USER) - : WIKIAUTH_ANON; - } - - function mayChangePass() { - return false; - } -} - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: -?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-08 10:08:22
|
Revision: 7676 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7676&view=rev Author: vargenau Date: 2010-09-08 10:08:16 +0000 (Wed, 08 Sep 2010) Log Message: ----------- plugin Video code reverted to r7204 to make it work again; upgrade Flowplayer to 3.2.4 Modified Paths: -------------- trunk/TODO trunk/lib/plugin/Video.php Added Paths: ----------- trunk/themes/default/flowplayer-3.2.4.swf trunk/themes/default/flowplayer.controls-3.2.2.swf Removed Paths: ------------- trunk/themes/default/flowplayer-3.1.4.swf trunk/themes/default/flowplayer.controls-3.1.4.swf Modified: trunk/TODO =================================================================== --- trunk/TODO 2010-09-03 13:08:03 UTC (rev 7675) +++ trunk/TODO 2010-09-08 10:08:16 UTC (rev 7676) @@ -9,8 +9,10 @@ ** no "make clean" in themes ** "make clean" does not work in themes with no Javascript ** in MonoBook, IEFixes.js cannot be minimized, yuicompressor-2.4.2 gives syntax errors -* plugin Video does not work +* plugin Video does not work (code reverted to r7204 to make it work again) +---- + short-term TODO: * rename should check existing subpages and rename these also. * Sidebar: merge AVL theme (internal MonoBook derivate with customizable Modified: trunk/lib/plugin/Video.php =================================================================== --- trunk/lib/plugin/Video.php 2010-09-03 13:08:03 UTC (rev 7675) +++ trunk/lib/plugin/Video.php 2010-09-08 10:08:16 UTC (rev 7676) @@ -2,7 +2,6 @@ // rcs_id('$Id$'); /* * Copyright 2009 Roger Guignard and Marc-Etienne Vargenau, Alcatel-Lucent - * Copyright 2009 Reini Urban * * This file is part of PhpWiki. * @@ -55,12 +54,11 @@ } function getDefaultArguments() { - return array('width' => 460, - 'height' => 320, - 'url' => '', - 'file' => '', - 'autoplay' => 'false', - 'image' => '' + return array('width' => 460, + 'height' => 320, + 'url' => '', + 'file' => '', + 'autoplay' => 'false' ); } @@ -75,33 +73,72 @@ } elseif ($url && $file) { return $this->error(_("Choose only one of 'url' or 'file' parameters.")); } elseif ($file) { - $url = getUploadDataPath() . $file; + // $url = SERVER_URL . getUploadDataPath() . '/' . $file; + $url = getUploadDataPath() . '/' . $file; } - // TODO: Check HTML5 browser capabilities if (string_ends_with($url, ".ogg")) { return HTML::video(array('autoplay' => 'true', 'controls' => 'true', 'src' => $url), _("Your browser does not understand the HTML 5 video tag.")); } - if (!$image) $image = $url; - if ($autoplay != 'true' and $autoplay != 'false') - return $this->error(fmt("Invalid argument %s", "autoplay")); - if (!is_numeric($width)) - return $this->error(fmt("Invalid argument %s", "width")); - if (!is_numeric($height)) - return $this->error(fmt("Invalid argument %s", "height")); - if (preg_match("/'/", $url)) - return $this->error(fmt("Invalid argument %s", "url")); - $params = array("data" => SERVER_URL . $WikiTheme->_findData('flowplayer-3.1.4.swf'), - "type" => "application/x-shockwave-flash", - "width" => $width, - "height" => $height, - "allowfullscreen" => "true", - "allowscriptaccess" => "false", - "flashvars"=> - "config={'clip':{'url':'" . $url . "','autoPlay':" . $autoplay . "}}'"); - return ImgObject(HTML::img(array('src' => $image)), $params); + $html = HTML(); + + if (isBrowserIE()) { + $object = HTML::object(array('id' => 'flowplayer', + 'classid' => 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000', + 'width' => $width, + 'height' => $height)); + + $param = HTML::param(array('name' => 'movie', + 'value' => SERVER_URL . $WikiTheme->_findData('flowplayer-3.2.4.swf'))); + $object->pushContent($param); + + $param = HTML::param(array('name' => "allowfullscreen", + 'value' => "true")); + $object->pushContent($param); + + $param = HTML::param(array('name' => "allowscriptaccess", + 'value' => "false")); + $object->pushContent($param); + + $flashvars = "config={'clip':{'url':'" . $url . "','autoPlay':" . $autoplay . "}}"; + + $param = HTML::param(array('name' => 'flashvars', + 'value' => $flashvars)); + $object->pushContent($param); + + $embed = HTML::embed(array('type' => 'application/x-shockwave-flash', + 'width' => $width, + 'height' => $height, + 'src' => SERVER_URL . $WikiTheme->_findData('flowplayer-3.2.4.swf'), + 'flashvars' => $flashvars)); + $object->pushContent($embed); + + $html->pushContent($object); + + } else { + $object = HTML::object(array('data' => SERVER_URL . $WikiTheme->_findData('flowplayer-3.2.4.swf'), + 'type' => "application/x-shockwave-flash", + 'width' => $width, + 'height' => $height)); + + $param = HTML::param(array('name' => "allowfullscreen", + 'value' => "true")); + $object->pushContent($param); + + $param = HTML::param(array('name' => "allowscriptaccess", + 'value' => "false")); + $object->pushContent($param); + + $value = "config={'clip':{'url':'" . $url . "','autoPlay':" . $autoplay . "}}"; + $param = HTML::param(array('name' => "flashvars", + 'value' => $value)); + $object->pushContent($param); + + $html->pushContent($object); + } + return $html; } }; Deleted: trunk/themes/default/flowplayer-3.1.4.swf =================================================================== (Binary files differ) Copied: trunk/themes/default/flowplayer-3.2.4.swf (from rev 7675, trunk/themes/default/flowplayer-3.1.4.swf) =================================================================== (Binary files differ) Deleted: trunk/themes/default/flowplayer.controls-3.1.4.swf =================================================================== (Binary files differ) Copied: trunk/themes/default/flowplayer.controls-3.2.2.swf (from rev 7675, trunk/themes/default/flowplayer.controls-3.1.4.swf) =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-08 10:19:36
|
Revision: 7677 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7677&view=rev Author: vargenau Date: 2010-09-08 10:19:29 +0000 (Wed, 08 Sep 2010) Log Message: ----------- Add a nice box Modified Paths: -------------- trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/pgsrc/SetGlobalAccessRightsSimple trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple Modified: trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple =================================================================== --- trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple 2010-09-08 10:08:16 UTC (rev 7676) +++ trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple 2010-09-08 10:19:29 UTC (rev 7677) @@ -1,4 +1,4 @@ -Date: Tue, 31 Aug 2010 11:36:04 +0000 +Date: Wed, 8 Sep 2010 12:16:55 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,21 +8,17 @@ charset=UTF-8 Content-Transfer-Encoding: binary +{| style="width: 100%; background-color: #e9fbff; border-style: solid; border-color: blue; border-width: 2px;" +|- +| {{(on)}} **//Liberal Access Rights//** means **//Everyone can edit//**. +|- +| {{(on)}} **//Restrictive Access Rights//** means **//Only logged users can see the page//**. +|} + For more complex Access Rights modifications, see **[[phpwiki:?action=setacl|SetAcl]]**. ---- -//Liberal Access Rights// means //Everyone can edit//. - -view:_EVERY; edit:_EVERY; create:_EVERY; list:_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER' - - -//Restrictive Access Rights// means //Only logged users can see the page//. - -view:_AUTHENTICATED,-_EVERY; edit:_AUTHENTICATED,-_EVERY; create:_AUTHENTICATED,-_EVERY; list:_AUTHENTICATED,-_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER - ----- - <<WikiAdminSetAclSimple>> ---- Modified: trunk/pgsrc/SetGlobalAccessRightsSimple =================================================================== --- trunk/pgsrc/SetGlobalAccessRightsSimple 2010-09-08 10:08:16 UTC (rev 7676) +++ trunk/pgsrc/SetGlobalAccessRightsSimple 2010-09-08 10:19:29 UTC (rev 7677) @@ -1,4 +1,4 @@ -Date: Tue, 31 Aug 2010 11:36:04 +0000 +Date: Wed, 8 Sep 2010 12:16:55 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -11,17 +11,15 @@ This action page will allow you to set the default access rights for wiki pages. Pages without individual access rights will use these default access rights. +{| style="width: 100%; background-color: #e9fbff; border-style: solid; border-color: blue; border-width: 2px;" +|- +| {{(on)}} **//Liberal Access Rights//** means **//Everyone can edit//**. +|- +| {{(on)}} **//Restrictive Access Rights//** means **//Only logged users can see the page//**. +|} + ---- -//Liberal Access Rights// means //Everyone can edit//. - -view:_EVERY; edit:_EVERY; create:_EVERY; list:_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER' - - -//Restrictive Access Rights// means //Only logged users can see the page//. - -view:_AUTHENTICATED,-_EVERY; edit:_AUTHENTICATED,-_EVERY; create:_AUTHENTICATED,-_EVERY; list:_AUTHENTICATED,-_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER - <<WikiAdminSetAclSimple s=. info=pagename>> ---- Modified: trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple =================================================================== --- trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple 2010-09-08 10:08:16 UTC (rev 7676) +++ trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple 2010-09-08 10:19:29 UTC (rev 7677) @@ -1,4 +1,4 @@ -Date: Tue, 31 Aug 2010 11:36:17 +0000 +Date: Wed, 8 Sep 2010 12:17:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -8,21 +8,17 @@ charset=UTF-8 Content-Transfer-Encoding: binary +{| style="width: 100%; background-color: #e9fbff; border-style: solid; border-color: blue; border-width: 2px;" +|- +| {{(on)}} **//Liberal Access Rights//** means **//Everyone can edit//**, even if not member of the project. +|- +| {{(on)}} **//Restrictive Access Rights//** means **//Only project members can see the page//**. +|} + For more complex Access Rights modifications, see **[[phpwiki:?action=setacl|SetAcl]]**. ---- -//Liberal Access Rights// means //Everyone can edit//, even if not member of the project. - -view:_EVERY; edit:_EVERY; create:_EVERY; list:_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER' - - -//Restrictive Access Rights// means //Only project members can see the page//. - -view:_AUTHENTICATED,-_EVERY; edit:_AUTHENTICATED,-_EVERY; create:_AUTHENTICATED,-_EVERY; list:_AUTHENTICATED,-_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER - ----- - <<WikiAdminSetAclSimple>> ---- Modified: trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple =================================================================== --- trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple 2010-09-08 10:08:16 UTC (rev 7676) +++ trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple 2010-09-08 10:19:29 UTC (rev 7677) @@ -1,4 +1,4 @@ -Date: Tue, 31 Aug 2010 11:36:04 +0000 +Date: Wed, 8 Sep 2010 12:17:19 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -11,17 +11,15 @@ This action page will allow you to set the default access rights for wiki pages. Pages without individual access rights will use these default access rights. +{| style="width: 100%; background-color: #e9fbff; border-style: solid; border-color: blue; border-width: 2px;" +|- +| {{(on)}} **//Liberal Access Rights//** means **//Everyone can edit//**, even if not member of the project. +|- +| {{(on)}} **//Restrictive Access Rights//** means **//Only project members can see the page//**. +|} + ---- -//Liberal Access Rights// means //Everyone can edit//, even if not member of the project. - -view:_EVERY; edit:_EVERY; create:_EVERY; list:_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER' - - -//Restrictive Access Rights// means //Only project members can see the page//. - -view:_AUTHENTICATED,-_EVERY; edit:_AUTHENTICATED,-_EVERY; create:_AUTHENTICATED,-_EVERY; list:_AUTHENTICATED,-_EVERY; remove:_ADMIN,_OWNER; purge:_ADMIN,_OWNER; dump:_ADMIN,_OWNER; change:_ADMIN,_OWNER - <<WikiAdminSetAclSimple s=. info=pagename>> ---- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-10 11:28:04
|
Revision: 7680 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7680&view=rev Author: vargenau Date: 2010-09-10 11:27:57 +0000 (Fri, 10 Sep 2010) Log Message: ----------- Partial revert to get saving UserPreferences work again Modified Paths: -------------- trunk/TODO trunk/lib/WikiUserNew.php Modified: trunk/TODO =================================================================== --- trunk/TODO 2010-09-09 13:25:20 UTC (rev 7679) +++ trunk/TODO 2010-09-10 11:27:57 UTC (rev 7680) @@ -1,5 +1,6 @@ == Blockers == * can no longer save UserPreferences: Warning: "Attempt to assign property of non-object" + (partial revert to get in work again) * AllPages give too many pages * WantedPages give too many pages (from interwiki map) (to be tested in both Pear and ADODB) Modified: trunk/lib/WikiUserNew.php =================================================================== --- trunk/lib/WikiUserNew.php 2010-09-09 13:25:20 UTC (rev 7679) +++ trunk/lib/WikiUserNew.php 2010-09-10 11:27:57 UTC (rev 7680) @@ -222,8 +222,7 @@ $class = $_PassUser->nextClass(); else $class = get_class($_PassUser); - if ($user = new $class($UserName, $_PassUser->_prefs) - and $user->_userid) { + if ($user = new $class($UserName, $_PassUser->_prefs)) { return $user; } else { return $_PassUser; @@ -1180,33 +1179,15 @@ // FIXME: strange why this should be needed... include_once("lib/WikiUser/Db.php"); include_once("lib/WikiUser/AdoDb.php"); - if (check_php_version(5)) { - $user = new _AdoDbPassUser($this->_userid, $this->_prefs); - return $user->getPreferences(); - } else { - _AdoDbPassUser::_AdoDbPassUser($this->_userid, $this->_prefs); - return _AdoDbPassUser::getPreferences(); - } + return _AdoDbPassUser::getPreferences(); } elseif ($this->_prefs->_method == 'SQL') { include_once("lib/WikiUser/Db.php"); include_once("lib/WikiUser/PearDb.php"); - if (check_php_version(5)) { - $user = new _PearDbPassUser($this->_userid, $this->_prefs); - return $user->getPreferences(); - } else { - _PearDbPassUser::_PearDbPassUser($this->_userid, $this->_prefs); - return _PearDbPassUser::getPreferences(); - } + return _PearDbPassUser::getPreferences(); } elseif ($this->_prefs->_method == 'PDO') { include_once("lib/WikiUser/Db.php"); include_once("lib/WikiUser/PdoDb.php"); - if (check_php_version(5)) { - $user = new _PdoDbPassUser($this->_userid, $this->_prefs); - return $user->getPreferences(); - } else { - _PdoDbPassUser::_PdoDbPassUser($this->_userid, $this->_prefs); - return _PdoDbPassUser::getPreferences(); - } + return _PdoDbPassUser::getPreferences(); } } @@ -1233,35 +1214,17 @@ // FIXME: strange why this should be needed... include_once("lib/WikiUser/Db.php"); include_once("lib/WikiUser/AdoDb.php"); - if (check_php_version(5)) { - $user = new _AdoDbPassUser($this->_userid, $prefs); - return $user->setPreferences($prefs, $id_only); - } else { - _AdoDbPassUser::_AdoDbPassUser($this->_userid, $prefs); - return _AdoDbPassUser::setPreferences($prefs, $id_only); - } + return _AdoDbPassUser::setPreferences($prefs, $id_only); } elseif ($this->_prefs->_method == 'SQL') { include_once("lib/WikiUser/Db.php"); include_once("lib/WikiUser/PearDb.php"); - if (check_php_version(5)) { - $user = new _PearDbPassUser($this->_userid, $prefs); - return $user->setPreferences($prefs, $id_only); - } else { - _PearDbPassUser::_PearDbPassUser($this->_userid, $prefs); - return _PearDbPassUser::setPreferences($prefs, $id_only); - } + return _PearDbPassUser::setPreferences($prefs, $id_only); } elseif ($this->_prefs->_method == 'PDO') { include_once("lib/WikiUser/Db.php"); include_once("lib/WikiUser/PdoDb.php"); - if (check_php_version(5)) { - $user = new _PdoDbPassUser($this->_userid, $prefs); - return $user->setPreferences($prefs, $id_only); - } else { - _PdoDbPassUser::_PdoDbPassUser($this->_userid, $prefs); - return _PdoDbPassUser::setPreferences($prefs, $id_only); - } + return _PdoDbPassUser::setPreferences($prefs, $id_only); } } if ($updated = _AnonUser::setPreferences($prefs, $id_only)) { @@ -1294,19 +1257,19 @@ } else { $user = $this; } - $UserName = $this->_userid; /* new user => false does not return false, but the _userid is empty then */ - if ($user and $user->_userid) { + while ($user and $user->_userid) { if (!check_php_version(5)) eval("\$this = \$user;"); $user = UpgradeUser($this, $user); - if ($user->userExists()) + if ($user->userExists()) { + $user = UpgradeUser($this, $user); return true; - } - while (!$this->_tryNextUser($UserName)) { + } // prevent endless loop. does this work on all PHP's? // it just has to set the classname, what it correctly does. - if ($this->nextClass() == "_ForbiddenPassUser") + $class = $user->nextClass(); + if ($class == "_ForbiddenPassUser") return false; } return false; @@ -1430,7 +1393,7 @@ } if (USER_AUTH_POLICY === 'strict') { $class = $this->nextClass(); - if ($user = new $class($this->_userid, $this->_prefs)) { + if ($user = new $class($this->_userid,$this->_prefs)) { if ($user->userExists()) { return $user->checkPass($submitted_password); } @@ -1438,29 +1401,27 @@ } if (USER_AUTH_POLICY === 'stacked' or USER_AUTH_POLICY === 'old') { $class = $this->nextClass(); - if ($user = new $class($this->_userid, $this->_prefs)) + if ($user = new $class($this->_userid,$this->_prefs)) return $user->checkPass($submitted_password); } return $this->_level; } - function _tryNextUser($username = false) { + function _tryNextUser() { if (DEBUG & _DEBUG_LOGIN) { $class = strtolower(get_class($this)); if (substr($class,-10) == "dbpassuser") $class = "_dbpassuser"; $GLOBALS['USER_AUTH_ERROR'][$class] = 'nosuchuser'; } - if (!$username) $username = $this->_userid; if (USER_AUTH_POLICY === 'strict' - or USER_AUTH_POLICY === 'stacked') - { + or USER_AUTH_POLICY === 'stacked') { $class = $this->nextClass(); - while ($user = new $class($username, $this->_prefs)) { + while ($user = new $class($this->_userid, $this->_prefs)) { if (!check_php_version(5)) eval("\$this = \$user;"); $user = UpgradeUser($this, $user); if ($user->userExists()) { - //$user = UpgradeUser($this, $user); + $user = UpgradeUser($this, $user); return true; } if ($class == "_ForbiddenPassUser") return false; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-10 11:31:43
|
Revision: 7681 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7681&view=rev Author: vargenau Date: 2010-09-10 11:31:37 +0000 (Fri, 10 Sep 2010) Log Message: ----------- revert of Patch 3024787 by S?\195?\169bastien Le Callonnec (caused an SQL syntax error) Modified Paths: -------------- trunk/TODO trunk/lib/plugin/AllPages.php Modified: trunk/TODO =================================================================== --- trunk/TODO 2010-09-10 11:27:57 UTC (rev 7680) +++ trunk/TODO 2010-09-10 11:31:37 UTC (rev 7681) @@ -4,6 +4,7 @@ * AllPages give too many pages * WantedPages give too many pages (from interwiki map) (to be tested in both Pear and ADODB) +* revert of Patch 3024787 by Sébastien Le Callonnec (caused an SQL syntax error) == Others== * Minimizer for JS/CSS Modified: trunk/lib/plugin/AllPages.php =================================================================== --- trunk/lib/plugin/AllPages.php 2010-09-10 11:27:57 UTC (rev 7680) +++ trunk/lib/plugin/AllPages.php 2010-09-10 11:31:37 UTC (rev 7681) @@ -67,18 +67,17 @@ $timer = new DebugTimer; } $caption = _("All pages in this wiki (%d total):"); - $exclude_empty_pagename = array(''); if ( !empty($args['userpages']) ) { $pages = PageList::allUserPages($args['include_empty'], - $args['sortby'], '', - $exclude_empty_pagename); + $args['sortby'], '' + ); $caption = _("List of user-created pages (%d total):"); $args['count'] = $request->getArg('count'); } elseif ( !empty($args['owner']) ) { $pages = PageList::allPagesByOwner($args['owner'], $args['include_empty'], - $args['sortby'], '', - $exclude_empty_pagename); + $args['sortby'], '' + ); $args['count'] = $request->getArg('count'); if (!$args['count']) $args['count'] = $dbi->numPages($args['include_empty'], $args['exclude']); @@ -90,8 +89,8 @@ $pages->_options['count'] = $args['count']; } elseif ( !empty($args['author']) ) { $pages = PageList::allPagesByAuthor($args['author'], $args['include_empty'], - $args['sortby'], '', - $exclude_empty_pagename); + $args['sortby'], '' + ); $args['count'] = $request->getArg('count'); if (!$args['count']) $args['count'] = $dbi->numPages($args['include_empty'], $args['exclude']); @@ -103,8 +102,7 @@ $pages->_options['count'] = $args['count']; } elseif ( !empty($args['creator']) ) { $pages = PageList::allPagesByCreator($args['creator'], $args['include_empty'], - $args['sortby'], '', - $exclude_empty_pagename + $args['sortby'], '' ); $args['count'] = $request->getArg('count'); if (!$args['count']) @@ -115,6 +113,8 @@ : $args['creator'], 'if_known'), $args['count']); $pages->_options['count'] = $args['count']; + //} elseif ($pages) { + // $args['count'] = count($pages); } else { if (! $request->getArg('count')) $args['count'] = $dbi->numPages($args['include_empty'], $args['exclude']); @@ -126,17 +126,15 @@ $pagelist = new PageList($args['info'], $args['exclude'], $args); if (!$args['noheader']) $pagelist->setCaption($caption); - if ($pages !== false) { + // deleted pages show up as version 0. + //if ($args['include_empty']) + // $pagelist->_addColumn('version'); + + if ($pages !== false) $pagelist->addPageList($pages); - } - else { - // Clear count as previous value was for non-empty pages. - $pagelist->clearArg('count'); - $pagelist->addPages($dbi->getAllPages($args['include_empty'], - $args['sortby'], - $args['limit'], - $exclude_empty_pagename)); - } + else + $pagelist->addPages( $dbi->getAllPages($args['include_empty'], $args['sortby'], + $args['limit']) ); if (DEBUG && $args['debug']) { return HTML($pagelist, HTML::p(fmt("Elapsed time: %s s", $timer->getStats()))); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-10 12:03:49
|
Revision: 7682 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7682&view=rev Author: vargenau Date: 2010-09-10 12:03:36 +0000 (Fri, 10 Sep 2010) Log Message: ----------- Update pgsrc to 1.4.0RC1 Modified Paths: -------------- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten trunk/locale/de/pgsrc/AlleBenutzer trunk/locale/de/pgsrc/AlleSeiten trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir trunk/locale/de/pgsrc/AlteTextFormatierungsRegeln trunk/locale/de/pgsrc/BackLinks trunk/locale/de/pgsrc/BenutzerEinstellungen trunk/locale/de/pgsrc/BeobachteSeite 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/GuterStil 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%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%2FVorlagePlugin trunk/locale/de/pgsrc/Hilfe%2FWikiPlugin trunk/locale/de/pgsrc/HochLaden trunk/locale/de/pgsrc/InterWikiListe 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/PhpWiki trunk/locale/de/pgsrc/PhpWikiDokumentation trunk/locale/de/pgsrc/PhpWikiSystemverwalten trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChmod 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/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/TextBearbeiten trunk/locale/de/pgsrc/TextFormatierungsRegeln 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/WabiSabi trunk/locale/de/pgsrc/WerIstOnline trunk/locale/de/pgsrc/WieManWikiBenutzt trunk/locale/de/pgsrc/WikiAdminAuswahl trunk/locale/de/pgsrc/WikiTechnik trunk/locale/de/pgsrc/WikiWikiWeb trunk/locale/de/pgsrc/WunschZettelSeiten trunk/locale/de/pgsrc/ZufallsSeite trunk/locale/es/pgsrc/AgregarPaginas trunk/locale/es/pgsrc/BuenEstilo trunk/locale/es/pgsrc/BuscarP%C3%A1gina trunk/locale/es/pgsrc/CajaDeArena trunk/locale/es/pgsrc/CambiosRecientes trunk/locale/es/pgsrc/ComoUsarWiki trunk/locale/es/pgsrc/EditarElTexto trunk/locale/es/pgsrc/KBrown trunk/locale/es/pgsrc/MasAcercadeLaMecanica trunk/locale/es/pgsrc/MasPopulares trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/PhpWiki trunk/locale/es/pgsrc/ReglasDeFormatoDeTexto trunk/locale/es/pgsrc/TodasLasPaginas trunk/locale/es/pgsrc/ViejoReglasDeFormatoDeTexto trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/es/pgsrc/WabiSabi trunk/locale/es/pgsrc/WikiWikiWeb trunk/locale/fr/pgsrc/%C3%89diterLeContenu 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%2FDroits trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRechercherRemplacer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRenommer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimer trunk/locale/fr/pgsrc/Aide trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages trunk/locale/fr/pgsrc/Aide%2FAnciennesR%C3%A8glesDeFormatage trunk/locale/fr/pgsrc/Aide%2FCommentUtiliserUnWiki trunk/locale/fr/pgsrc/Aide%2FPhpWiki trunk/locale/fr/pgsrc/Aide%2FPlugin%C3%89diterMetaData 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%2FPluginInclureUnCadre 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%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%2FPluginWiki trunk/locale/fr/pgsrc/Aide%2FPluginWikiBlog trunk/locale/fr/pgsrc/Aide%2FR%C3%A8glesDeFormatageDesTextes 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/AjouterDesCommentaires 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%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%A9poserUnFichier trunk/locale/fr/pgsrc/D%C3%A9tailsTechniques trunk/locale/fr/pgsrc/Derni%C3%A8resModifs trunk/locale/fr/pgsrc/Derni%C3%A8resModifsCompl%C3%A8tes trunk/locale/fr/pgsrc/DerniersVisiteurs trunk/locale/fr/pgsrc/DocumentationDePhpWiki trunk/locale/fr/pgsrc/GestionDesPlugins trunk/locale/fr/pgsrc/HistoriqueDeLaPage trunk/locale/fr/pgsrc/Ic%C3%B4nesDeLien trunk/locale/fr/pgsrc/InfosAuthentification trunk/locale/fr/pgsrc/InfosDeD%C3%A9bogage trunk/locale/fr/pgsrc/InfosSurLaPage trunk/locale/fr/pgsrc/InterWiki trunk/locale/fr/pgsrc/LesPlusVisit%C3%A9es trunk/locale/fr/pgsrc/LienGoogle trunk/locale/fr/pgsrc/ListeDePages 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/SteveWainstead trunk/locale/fr/pgsrc/TestDeCache 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/AggiungerePagine trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki%2FRimuovi trunk/locale/it/pgsrc/BuonStile trunk/locale/it/pgsrc/CambiamentiRecenti trunk/locale/it/pgsrc/ComeUsareWiki trunk/locale/it/pgsrc/FuzzyPages trunk/locale/it/pgsrc/MagicPhpWikiURLs trunk/locale/it/pgsrc/ModificaIlTesto trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/it/pgsrc/PaginaDiProva trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/PhpWiki trunk/locale/it/pgsrc/PiuPopolari trunk/locale/it/pgsrc/RegoleFormattazioneTesto 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/UserPreferences trunk/locale/it/pgsrc/VarieSulFunzionamento trunk/locale/it/pgsrc/VisitatoriRecenti trunk/locale/it/pgsrc/WabiSabi trunk/locale/it/pgsrc/WikiWikiWeb 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/GebruikersVoorkeuren trunk/locale/nl/pgsrc/GoedeStijl trunk/locale/nl/pgsrc/HoeWikiTeGebruiken trunk/locale/nl/pgsrc/JanNieuwenhuizen trunk/locale/nl/pgsrc/MeerOverTechnieken trunk/locale/nl/pgsrc/MeestBezocht trunk/locale/nl/pgsrc/OudTekstFormatteringsRegels trunk/locale/nl/pgsrc/PaginasToevoegen trunk/locale/nl/pgsrc/PhpWiki trunk/locale/nl/pgsrc/PhpWikiBeheer trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVervangt trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVerwijder trunk/locale/nl/pgsrc/RecenteBezoekers trunk/locale/nl/pgsrc/RecenteVeranderingen trunk/locale/nl/pgsrc/TekstFormatteringsRegels trunk/locale/nl/pgsrc/ThuisPagina trunk/locale/nl/pgsrc/ToverPhpWikiURLs trunk/locale/nl/pgsrc/UitgaveNoten trunk/locale/nl/pgsrc/VeranderTekst trunk/locale/nl/pgsrc/WabiSabi trunk/locale/nl/pgsrc/WikiWikiWeb trunk/locale/nl/pgsrc/ZandBak trunk/locale/nl/pgsrc/ZoekPagina trunk/locale/sv/pgsrc/BraStil trunk/locale/sv/pgsrc/Framsida trunk/locale/sv/pgsrc/G%C3%A4stboken trunk/locale/sv/pgsrc/HurManAnv%C3%A4nderWiki trunk/locale/sv/pgsrc/L%C3%A4ggaTillSidor trunk/locale/sv/pgsrc/MerOmMekanismerna trunk/locale/sv/pgsrc/MestPopul%C3%A4r trunk/locale/sv/pgsrc/PhpWiki trunk/locale/sv/pgsrc/PhpWikiAdministration trunk/locale/sv/pgsrc/RedigeraText trunk/locale/sv/pgsrc/S%C3%B6kEfterSida trunk/locale/sv/pgsrc/Sandl%C3%A5dan trunk/locale/sv/pgsrc/Senaste%C3%84ndringar trunk/locale/sv/pgsrc/Textformateringsregler trunk/locale/sv/pgsrc/WabiSabi trunk/locale/sv/pgsrc/WikiWikiWeb trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 trunk/locale/zh/pgsrc/AddingPages trunk/locale/zh/pgsrc/AllPages trunk/locale/zh/pgsrc/AllUsers trunk/locale/zh/pgsrc/BackLinks trunk/locale/zh/pgsrc/CalendarPlugin trunk/locale/zh/pgsrc/CommentPlugin trunk/locale/zh/pgsrc/DebugInfo trunk/locale/zh/pgsrc/EditText trunk/locale/zh/pgsrc/ExternalSearchPlugin trunk/locale/zh/pgsrc/FindPage trunk/locale/zh/pgsrc/FullRecentChanges trunk/locale/zh/pgsrc/FullTextSearch trunk/locale/zh/pgsrc/FuzzyPages trunk/locale/zh/pgsrc/HelloWorldPlugin trunk/locale/zh/pgsrc/HomePage trunk/locale/zh/pgsrc/HomePageAlias trunk/locale/zh/pgsrc/HowToUseWiki trunk/locale/zh/pgsrc/InterWiki trunk/locale/zh/pgsrc/InterWikiMap trunk/locale/zh/pgsrc/InterWikiSearch trunk/locale/zh/pgsrc/LikePages trunk/locale/zh/pgsrc/LinkIcons trunk/locale/zh/pgsrc/MagicPhpWikiURLs trunk/locale/zh/pgsrc/MoreAboutMechanics trunk/locale/zh/pgsrc/OldStyleTablePlugin trunk/locale/zh/pgsrc/OrphanedPages trunk/locale/zh/pgsrc/PageDump trunk/locale/zh/pgsrc/PhotoAlbumPlugin trunk/locale/zh/pgsrc/PhpHighlightPlugin trunk/locale/zh/pgsrc/PhpWeatherPlugin trunk/locale/zh/pgsrc/PhpWiki 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/RedirectToPlugin trunk/locale/zh/pgsrc/SandBox trunk/locale/zh/pgsrc/SystemInfoPlugin trunk/locale/zh/pgsrc/TitleSearch trunk/locale/zh/pgsrc/TranscludePlugin trunk/locale/zh/pgsrc/UpLoad trunk/locale/zh/pgsrc/UserPreferences trunk/locale/zh/pgsrc/WantedPages trunk/locale/zh/pgsrc/WikiPlugin trunk/locale/zh/pgsrc/WikiWikiWeb 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/CreatePage trunk/pgsrc/DebugAuthInfo trunk/pgsrc/DebugGroupInfo trunk/pgsrc/DebugInfo trunk/pgsrc/EditMetaData trunk/pgsrc/FindPage trunk/pgsrc/FullRecentChanges trunk/pgsrc/FullTextSearch trunk/pgsrc/FuzzyPages trunk/pgsrc/Help trunk/pgsrc/Help%2FActionPage trunk/pgsrc/Help%2FAddCommentPlugin trunk/pgsrc/Help%2FAddingPages trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users trunk/pgsrc/Help%2FAllPagesPlugin trunk/pgsrc/Help%2FAllUsersPlugin trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin trunk/pgsrc/Help%2FAppendTextPlugin trunk/pgsrc/Help%2FAsciiMathPlugin trunk/pgsrc/Help%2FAsciiSVGPlugin trunk/pgsrc/Help%2FAtomFeedPlugin trunk/pgsrc/Help%2FAuthorHistoryPlugin trunk/pgsrc/Help%2FBackLinksPlugin trunk/pgsrc/Help%2FBlogArchivesPlugin trunk/pgsrc/Help%2FBlogJournalPlugin trunk/pgsrc/Help%2FBoxRightPlugin trunk/pgsrc/Help%2FCacheTestPlugin trunk/pgsrc/Help%2FCalendarListPlugin trunk/pgsrc/Help%2FCalendarPlugin trunk/pgsrc/Help%2FCategories trunk/pgsrc/Help%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%2FDiffPlugin trunk/pgsrc/Help%2FDynamicIncludePagePlugin trunk/pgsrc/Help%2FEditMetaDataPlugin trunk/pgsrc/Help%2FEditText trunk/pgsrc/Help%2FExternalSearchPlugin trunk/pgsrc/Help%2FFileInfoPlugin trunk/pgsrc/Help%2FFoafViewerPlugin trunk/pgsrc/Help%2FFrameIncludePlugin 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%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%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%2FOldTextFormattingRules 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%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%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%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%2FWikiAdminChmodPlugin trunk/pgsrc/Help%2FWikiAdminChownPlugin trunk/pgsrc/Help%2FWikiAdminMarkupPlugin 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%2FWikiWikiWeb trunk/pgsrc/Help%2FWikicreole trunk/pgsrc/Help%2FYouTubePlugin trunk/pgsrc/Help%2F_AuthInfoPlugin trunk/pgsrc/Help%2F_BackendInfoPlugin trunk/pgsrc/Help%2F_GroupInfoPlugin trunk/pgsrc/Help%2F_PreferencesInfoPlugin trunk/pgsrc/Help%2F_WikiTranslationPlugin 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%2FChmod trunk/pgsrc/PhpWikiAdministration%2FChown trunk/pgsrc/PhpWikiAdministration%2FMarkup 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/SteveWainstead 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/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/HomePage trunk/themes/fusionforge/pgsrc/InterWikiMap trunk/themes/fusionforge/pgsrc/PhpWikiAdministration trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple trunk/themes/fusionforge/pgsrc/SpecialPages trunk/themes/fusionforge/pgsrc/TextFormattingRules trunk/themes/fusionforge/pgsrc/UpLoad trunk/themes/fusionforge/pgsrc/colorbox trunk/themes/fusionforge/pgsrc/titlebar trunk/themes/wikilens/pgsrc/LeftbarContent Modified: trunk/locale/de/pgsrc/%C3%84hnlicheSeiten =================================================================== --- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=%C3%84hnlicheSeiten; Modified: trunk/locale/de/pgsrc/AlleBenutzer =================================================================== --- trunk/locale/de/pgsrc/AlleBenutzer 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/AlleBenutzer 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=AlleBenutzer; Modified: trunk/locale/de/pgsrc/AlleSeiten =================================================================== --- trunk/locale/de/pgsrc/AlleSeiten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/AlleSeiten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=AlleSeiten; Modified: trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=AlleSeitenEditiertVonMir; Modified: trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=AlleSeitenErzeugtVonMir; Modified: trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=AlleSeitenImBesitzVonMir; Modified: trunk/locale/de/pgsrc/AlteTextFormatierungsRegeln =================================================================== --- trunk/locale/de/pgsrc/AlteTextFormatierungsRegeln 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/AlteTextFormatierungsRegeln 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=AlteTextFormatierungsRegeln; Modified: trunk/locale/de/pgsrc/BackLinks =================================================================== --- trunk/locale/de/pgsrc/BackLinks 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/BackLinks 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=BackLinks; Modified: trunk/locale/de/pgsrc/BenutzerEinstellungen =================================================================== --- trunk/locale/de/pgsrc/BenutzerEinstellungen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/BenutzerEinstellungen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=BenutzerEinstellungen; Modified: trunk/locale/de/pgsrc/BeobachteSeite =================================================================== --- trunk/locale/de/pgsrc/BeobachteSeite 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/BeobachteSeite 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=BeobachteSeite; Modified: trunk/locale/de/pgsrc/DebugAuthInfo =================================================================== --- trunk/locale/de/pgsrc/DebugAuthInfo 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/DebugAuthInfo 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=DebugAuthInfo; Modified: trunk/locale/de/pgsrc/DebugGruppenInfo =================================================================== --- trunk/locale/de/pgsrc/DebugGruppenInfo 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/DebugGruppenInfo 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=DebugGruppenInfo; Modified: trunk/locale/de/pgsrc/DebugInfo =================================================================== --- trunk/locale/de/pgsrc/DebugInfo 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/DebugInfo 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=DebugInfo; Modified: trunk/locale/de/pgsrc/EditiereText =================================================================== --- trunk/locale/de/pgsrc/EditiereText 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/EditiereText 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=EditiereText; Modified: trunk/locale/de/pgsrc/Einstellungen =================================================================== --- trunk/locale/de/pgsrc/Einstellungen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Einstellungen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Einstellungen; Modified: trunk/locale/de/pgsrc/FuzzySuche =================================================================== --- trunk/locale/de/pgsrc/FuzzySuche 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/FuzzySuche 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=FuzzySuche; Modified: trunk/locale/de/pgsrc/G%C3%A4steBuch =================================================================== --- trunk/locale/de/pgsrc/G%C3%A4steBuch 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/G%C3%A4steBuch 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; Modified: trunk/locale/de/pgsrc/GaesteBuch =================================================================== --- trunk/locale/de/pgsrc/GaesteBuch 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/GaesteBuch 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=GaesteBuch; Modified: trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Geringf%C3%BCgige%C3%84nderungen; Modified: trunk/locale/de/pgsrc/GleicheSeiten =================================================================== --- trunk/locale/de/pgsrc/GleicheSeiten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/GleicheSeiten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=GleicheSeiten; Modified: trunk/locale/de/pgsrc/GuterStil =================================================================== --- trunk/locale/de/pgsrc/GuterStil 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/GuterStil 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=GuterStil; Modified: trunk/locale/de/pgsrc/Hilfe =================================================================== --- trunk/locale/de/pgsrc/Hilfe 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 12:03:22 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe; Modified: trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FAktionsSeite; Modified: trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FAutorenProtokollPlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FGraphVizPlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FHalloWeltPlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FHochLadenPlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FInhaltsVerzeichnisPlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeuerKommentarPlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin%2FDiashow 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin%2FDiashow; Modified: trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:57:14 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FVorlagePlugin; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiPlugin; Modified: trunk/locale/de/pgsrc/HochLaden =================================================================== --- trunk/locale/de/pgsrc/HochLaden 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/HochLaden 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=HochLaden; Modified: trunk/locale/de/pgsrc/InterWikiListe =================================================================== --- trunk/locale/de/pgsrc/InterWikiListe 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/InterWikiListe 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=InterWikiListe; Modified: trunk/locale/de/pgsrc/KategorieKategorie =================================================================== --- trunk/locale/de/pgsrc/KategorieKategorie 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/KategorieKategorie 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=KategorieKategorie; Modified: trunk/locale/de/pgsrc/KategorieWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/KategorieWikiPlugin 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/KategorieWikiPlugin 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:46:47 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=KategorieWikiPlugin; Modified: trunk/locale/de/pgsrc/LinkSuche =================================================================== --- trunk/locale/de/pgsrc/LinkSuche 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/LinkSuche 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=LinkSuche; Modified: trunk/locale/de/pgsrc/ListeRelationen =================================================================== --- trunk/locale/de/pgsrc/ListeRelationen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/ListeRelationen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=ListeRelationen; Modified: trunk/locale/de/pgsrc/ListeSeiten =================================================================== --- trunk/locale/de/pgsrc/ListeSeiten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/ListeSeiten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=ListeSeiten; Modified: trunk/locale/de/pgsrc/MeistBesucht =================================================================== --- trunk/locale/de/pgsrc/MeistBesucht 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/MeistBesucht 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=MeistBesucht; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/ModerierteSeite 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=ModerierteSeite; Modified: trunk/locale/de/pgsrc/NeueSeite =================================================================== --- trunk/locale/de/pgsrc/NeueSeite 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/NeueSeite 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=NeueSeite; Modified: trunk/locale/de/pgsrc/Neueste%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=Neueste%C3%84nderungen; Modified: trunk/locale/de/pgsrc/NeuesteSeiten =================================================================== --- trunk/locale/de/pgsrc/NeuesteSeiten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/NeuesteSeiten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=NeuesteSeiten; Modified: trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen =================================================================== --- trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PasswortZur%C3%BCcksetzen; Modified: trunk/locale/de/pgsrc/PhpWiki =================================================================== --- trunk/locale/de/pgsrc/PhpWiki 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWiki 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWiki; Modified: trunk/locale/de/pgsrc/PhpWikiDokumentation =================================================================== --- trunk/locale/de/pgsrc/PhpWikiDokumentation 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiDokumentation 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiDokumentation; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FAclSetzen; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChmod =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChmod 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChmod 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FChmod; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FChown; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) 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 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FSuchenErsetzen; Modified: trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FUmbenennen =================================================================== --- trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FUmbenennen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FUmbenennen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=PhpWikiSystemverwalten%2FUmbenennen; Modified: trunk/locale/de/pgsrc/PhpWikiUmfrage =================================================================== --- trunk/locale/de/pgsrc/PhpWikiUmfrage 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/PhpWikiUmfrage 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) Content-Type: application/x-phpwiki; pagename=PhpWikiUmfrage; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/SandKasten =================================================================== --- trunk/locale/de/pgsrc/SandKasten 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/SandKasten 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=SandKasten; Modified: trunk/locale/de/pgsrc/SandKiste =================================================================== --- trunk/locale/de/pgsrc/SandKiste 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/SandKiste 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=SandKiste; Modified: trunk/locale/de/pgsrc/SeiteFinden =================================================================== --- trunk/locale/de/pgsrc/SeiteFinden 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/SeiteFinden 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=SeiteFinden; Modified: trunk/locale/de/pgsrc/SeiteSpeichern =================================================================== --- trunk/locale/de/pgsrc/SeiteSpeichern 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/SeiteSpeichern 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Apr 2010 16:34:41 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=SeiteSpeichern; Modified: trunk/locale/de/pgsrc/SeitenErzeugen =================================================================== --- trunk/locale/de/pgsrc/SeitenErzeugen 2010-09-10 11:31:37 UTC (rev 7681) +++ trunk/locale/de/pgsrc/SeitenErzeugen 2010-09-10 12:03:36 UTC (rev 7682) @@ -1,5 +1,5 @@ -Date: Thu, 15 Jul 2010 11:38:28 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415) +Date: Fri, 10 Sep 2010 13:48:42 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; pagename=SeitenErzeugen; Modified: trunk/locale/de/pgsrc/SeitenInfo =================================================================== --- trunk/locale/de/pgsrc/SeitenIn... [truncated message content] |
From: <var...@us...> - 2010-09-10 12:13:57
|
Revision: 7684 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7684&view=rev Author: vargenau Date: 2010-09-10 12:13:48 +0000 (Fri, 10 Sep 2010) Log Message: ----------- Set PHPWIKI_VERSION to 1.4.0RC1 Modified Paths: -------------- trunk/lib/prepend.php trunk/pgsrc/RecentVisitors trunk/pgsrc/ReleaseNotes Modified: trunk/lib/prepend.php =================================================================== --- trunk/lib/prepend.php 2010-09-10 12:07:14 UTC (rev 7683) +++ trunk/lib/prepend.php 2010-09-10 12:13:48 UTC (rev 7684) @@ -6,7 +6,7 @@ // rcs_id('$Id$'); // see lib/stdlib.php: phpwiki_version() -define('PHPWIKI_VERSION', '1.4.0RC-20100607'); +define('PHPWIKI_VERSION', '1.4.0RC1'); /** * Returns true if current php version is at mimimum a.b.c Modified: trunk/pgsrc/RecentVisitors =================================================================== --- trunk/pgsrc/RecentVisitors 2010-09-10 12:07:14 UTC (rev 7683) +++ trunk/pgsrc/RecentVisitors 2010-09-10 12:13:48 UTC (rev 7684) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Fri, 10 Sep 2010 14:12:16 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -11,7 +11,7 @@ Sign and date your name below! Arno Hollosi, Aredridel Stauck, Jeff Dairiki, Steve Wainstead, Carsten Klapp, -Reini Urban, the [PhpWiki authors|PhpWiki:ThePhpWikiProgrammingTeam]. +Reini Urban, Marc-Etienne Vargenau, the [[PhpWiki:ThePhpWikiProgrammingTeam|PhpWiki authors]]. ---- [[PhpWikiDocumentation]] Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2010-09-10 12:07:14 UTC (rev 7683) +++ trunk/pgsrc/ReleaseNotes 2010-09-10 12:13:48 UTC (rev 7684) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Fri, 10 Sep 2010 14:12:16 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -10,7 +10,7 @@ <<CreateToc with_toclink||=1 headers||=1,2,3>> -== 1.4.0 ?? 2010 Reini Urban, Marc-Etienne Vargenau, Sabri Labbenes, Sébastien Le Callonnec == +== 1.4.0RC1 2010-09-10 Reini Urban, Marc-Etienne Vargenau, Sabri Labbenes, Sébastien Le Callonnec == An important modification in this release is the implementation of full Wikicreole 1.0 syntax, including additions. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-17 08:46:26
|
Revision: 7690 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7690&view=rev Author: vargenau Date: 2010-09-17 08:46:20 +0000 (Fri, 17 Sep 2010) Log Message: ----------- Update themes documentation Modified Paths: -------------- trunk/doc/THEMES trunk/themes/Crao/themeinfo.php trunk/themes/MonoBook/themeinfo.php trunk/themes/README trunk/themes/blog/themeinfo.php Modified: trunk/doc/THEMES =================================================================== --- trunk/doc/THEMES 2010-09-17 08:41:10 UTC (rev 7689) +++ trunk/doc/THEMES 2010-09-17 08:46:20 UTC (rev 7690) @@ -1,4 +1,4 @@ -! Brief Example of Creating Your Own WikiTheme +== Brief Example of Creating Your Own WikiTheme == To create or modify one of the existing themes: * Make a copy of one of the themes. @@ -23,7 +23,7 @@ of your theme to index.php. define('THEME','NewName'); -! Template Structure +== Template Structure == Templates currently must use the .tmpl extension (simple PHP parsed files). Other file extensions are reserved for future use (i.e. .tpl for Smarty or @@ -58,4 +58,4 @@ to produce validating XHTML, by using custom templates not. ---- -PhpWikiDocumentation +[[PhpWikiDocumentation]] Modified: trunk/themes/Crao/themeinfo.php =================================================================== --- trunk/themes/Crao/themeinfo.php 2010-09-17 08:41:10 UTC (rev 7689) +++ trunk/themes/Crao/themeinfo.php 2010-09-17 08:46:20 UTC (rev 7690) @@ -9,7 +9,7 @@ // rcs_id('$Id$'); /* - * This file defines the default appearance ("theme") of PhpWiki. + * This file defines the Crao theme of PhpWiki. */ require_once('lib/WikiTheme.php'); Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2010-09-17 08:41:10 UTC (rev 7689) +++ trunk/themes/MonoBook/themeinfo.php 2010-09-17 08:46:20 UTC (rev 7690) @@ -49,9 +49,7 @@ $WikiTheme->makeActionButton($action, $label, $page_or_rev, $options)); } -class WikiTheme_MonoBook -/* extends WikiTheme */ -extends WikiTheme_Wikilens +class WikiTheme_MonoBook extends WikiTheme_Wikilens { /* this adds selected to the class */ Modified: trunk/themes/README =================================================================== --- trunk/themes/README 2010-09-17 08:41:10 UTC (rev 7689) +++ trunk/themes/README 2010-09-17 08:46:20 UTC (rev 7690) @@ -1,24 +1,30 @@ Some files may be removed from this directory to save space, if -needed: - -17k Portland -16k smaller -175k Hawaiian -235k MacOSX -151 Sidebar -115k SpaceWiki -21k wikilens -27k Wordpress - +needed. *The default theme must always be present,* even when using another theme! Wherever a theme has no specific variant (override) of a template or button or image, PhpWiki will look for one in the default theme. Same with the language: Language and theme specific specific buttons will be search in sub-directories like <theme>/buttons/en, and if none will be found, -the default buttons, which might be language-indepedent, in default/buttons +the default buttons, which might be language-independent, in default/buttons will be used. +List of current themes: +* default +* blog +* Crao +* fusionforge (extends wikilens, can be used only with Fusionforge) +* Hawaiian +* MacOSX +* MonoBook (extends wikilens) +* Portland +* shamino_com +* Sidebar (extends MonoBook) +* smaller +* SpaceWiki +* wikilens +* Wordpress + See doc/THEMES for more info on PhpWiki themes. TODO: Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2010-09-17 08:41:10 UTC (rev 7689) +++ trunk/themes/blog/themeinfo.php 2010-09-17 08:46:20 UTC (rev 7690) @@ -44,7 +44,6 @@ */ require_once('lib/WikiTheme.php'); -//require_once('themes/Sidebar/themeinfo.php'); class WikiTheme_blog extends WikiTheme { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-20 13:28:52
|
Revision: 7698 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7698&view=rev Author: vargenau Date: 2010-09-20 13:28:46 +0000 (Mon, 20 Sep 2010) Log Message: ----------- Add "version" as synonym of "rev" Modified Paths: -------------- trunk/lib/plugin/Template.php trunk/pgsrc/Help%2FTemplatePlugin Modified: trunk/lib/plugin/Template.php =================================================================== --- trunk/lib/plugin/Template.php 2010-09-20 13:04:55 UTC (rev 7697) +++ trunk/lib/plugin/Template.php 2010-09-20 13:28:46 UTC (rev 7698) @@ -70,6 +70,7 @@ 'page' => false, // the page to include 'vars' => false, // TODO: get rid of this, all remaining args should be vars 'rev' => false, // the revision (defaults to most recent) + 'version' => false, // same as "rev" 'section' => false, // just include a named section 'sectionhead' => false // when including a named section show the heading ); @@ -94,17 +95,24 @@ } function run($dbi, $argstr, &$request, $basepage) { - $this->vars = array(); + $this->vars = array(); $args = $this->getArgs($argstr, $request); $vars = $args['vars'] ? $args['vars'] : $this->vars; $page = $args['page']; + + if ($args['version'] && $args['rev']) { + return $this->error(_("Choose only one of 'version' or 'rev' parameters.")); + } elseif ($args['version']) { + $args['rev'] = $args['version']; + } + if ($page) { // Expand relative page names. $page = new WikiPageName($page, $basepage); $page = $page->name; } if (!$page) { - return $this->error(_("no page specified")); + return $this->error(_("No page specified.")); } // If "Template:$page" exists, use it @@ -125,12 +133,12 @@ // Check if page exists if (!($dbi->isWikiPage($page))) { - return $this->error(sprintf(_("Page '%s' does not exist"), $page)); + return $this->error(sprintf(_("Page '%s' does not exist."), $page)); } // Check if user is allowed to get the Page. if (!mayAccessPage ('view', $page)) { - return $this->error(sprintf(_("Illegal inclusion of page %s: no read access"), + return $this->error(sprintf(_("Illegal inclusion of page %s: no read access."), $page)); } @@ -138,7 +146,7 @@ if ($args['rev']) { $r = $p->getRevision($args['rev']); if (!$r) { - return $this->error(sprintf(_("%s(%d): no such revision"), + return $this->error(sprintf(_("%s(%d): no such revision."), $page, $args['rev'])); } } else { Modified: trunk/pgsrc/Help%2FTemplatePlugin =================================================================== --- trunk/pgsrc/Help%2FTemplatePlugin 2010-09-20 13:04:55 UTC (rev 7697) +++ trunk/pgsrc/Help%2FTemplatePlugin 2010-09-20 13:28:46 UTC (rev 7698) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Fri, 20 Sep 2010 13:46:13 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -73,6 +73,10 @@ | page revision | most recent revision |- +| **version** +| page revision (same as ##rev##) +| most recent revision +|- | **section** | just include a named section | (empty) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-20 14:45:37
|
Revision: 7699 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7699&view=rev Author: vargenau Date: 2010-09-20 14:45:28 +0000 (Mon, 20 Sep 2010) Log Message: ----------- Add "version" as synonym of "rev" Modified Paths: -------------- trunk/lib/plugin/IncludePage.php trunk/pgsrc/Help%2FIncludePagePlugin Modified: trunk/lib/plugin/IncludePage.php =================================================================== --- trunk/lib/plugin/IncludePage.php 2010-09-20 13:28:46 UTC (rev 7698) +++ trunk/lib/plugin/IncludePage.php 2010-09-20 14:45:28 UTC (rev 7699) @@ -41,6 +41,7 @@ function getDefaultArguments() { return array( 'page' => false, // the page to include 'rev' => false, // the revision (defaults to most recent) + 'version' => false, // same as "rev" 'quiet' => false, // if set, inclusion appears as normal content 'bytes' => false, // maximum number of bytes to include 'words' => false, // maximum number of words to include @@ -68,6 +69,13 @@ function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); extract($args); + + if ($version && $rev) { + return $this->error(_("Choose only one of 'version' or 'rev' parameters.")); + } elseif ($version) { + $rev = $version; + } + if ($page) { // Expand relative page names. $page = new WikiPageName($page, $basepage); Modified: trunk/pgsrc/Help%2FIncludePagePlugin =================================================================== --- trunk/pgsrc/Help%2FIncludePagePlugin 2010-09-20 13:28:46 UTC (rev 7698) +++ trunk/pgsrc/Help%2FIncludePagePlugin 2010-09-20 14:45:28 UTC (rev 7699) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Mon, 20 Sep 2010 16:44:13 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -31,8 +31,12 @@ |- | **rev** | the revision -| defaults to most recent +| most recent revision |- +| **version** +| page revision (same as ##rev##) +| most recent revision +|- | **quiet** | if set, inclusion appears as normal content | false This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-20 16:09:13
|
Revision: 7701 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7701&view=rev Author: vargenau Date: 2010-09-20 16:09:07 +0000 (Mon, 20 Sep 2010) Log Message: ----------- Display correct TOC in history Modified Paths: -------------- trunk/lib/plugin/CreateToc.php trunk/pgsrc/Help%2FCreateTocPlugin Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2010-09-20 16:03:26 UTC (rev 7700) +++ trunk/lib/plugin/CreateToc.php 2010-09-20 16:09:07 UTC (rev 7701) @@ -67,6 +67,7 @@ 'width' => '200px', 'with_counter' => 0, 'with_toclink' => 0, // link back to TOC + 'version' => false, ); } // Initialisation of toc counter @@ -168,13 +169,13 @@ $level, &$hstart, &$hend, $basepage=false) { $hstart = 0; $hend = 0; - $h = $this->_getHeader($level); + $h = $this->_getHeader($level); $qheading = $this->_quote($heading); - for ($j=$start_index; $j < count($content); $j++) { + for ($j=$start_index; $j < count($content); $j++) { if (is_string($content[$j])) { - if (preg_match("/<$h>$qheading<\/$h>/", + if (preg_match("/<$h>$qheading<\/$h>/", $content[$j])) - return $j; + return $j; } elseif (isa($content[$j], 'cached_link')) { @@ -213,10 +214,10 @@ } } } - } } - trigger_error("Heading <$h> $heading </$h> not found\n", E_USER_NOTICE); - return 0; + } + trigger_error("Heading <$h> $heading </$h> not found\n", E_USER_NOTICE); + return 0; } /** prevent from duplicate anchors, @@ -371,7 +372,7 @@ $pagename = $page->name; } if (!$pagename) { - return $this->error(_("no page specified")); + return $this->error(_("No page specified.")); } if (isBrowserIE() and browserDetect("Mac")) { $jshide = 0; @@ -380,22 +381,39 @@ $with_counter = 1; } - // Check if user is allowed to get the Page. + // Check if page exists. + if (!($dbi->isWikiPage($pagename))) { + return $this->error(sprintf(_("Page '%s' does not exist."), $pagename)); + } + + // Check if user is allowed to get the page. if (!mayAccessPage ('view', $pagename)) { return $this->error(sprintf(_("Illegal access to page %s: no read access"), $pagename)); } $page = $dbi->getPage($pagename); + + if ($version) { + $r = $page->getRevision($version); + if ((!$r) || ($r->hasDefaultContents())) { + return $this->error(sprintf(_("%s: no such revision %d."), + $pagename, $version)); + } + } else { + $r = $page->getCurrentRevision(); + } + $current = $page->getCurrentRevision(); //FIXME: I suspect this only to crash with Apache2 if (!$current->get('markup') or $current->get('markup') < 2) { if (in_array(php_sapi_name(),array('apache2handler','apache2filter'))) { - trigger_error(_("CreateToc disabled for old markup"), E_USER_WARNING); - return ''; + return $this->error(_("CreateToc disabled for old markup.")); } } - $content = $current->getContent(); + + $content = $r->getContent(); + $html = HTML::div(array('class' => 'toc', 'id'=> GenerateId("toc"))); if ($notoc) { $html->setAttr('style','display:none;'); Modified: trunk/pgsrc/Help%2FCreateTocPlugin =================================================================== --- trunk/pgsrc/Help%2FCreateTocPlugin 2010-09-20 16:03:26 UTC (rev 7700) +++ trunk/pgsrc/Help%2FCreateTocPlugin 2010-09-20 16:09:07 UTC (rev 7701) @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Mon, 20 Sep 2010 18:07:40 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -63,6 +63,10 @@ | Table of Contents of which page? | current pagename |- +| **version** +| page version +| most recent version +|- | **position** | Where to display the Table of Contents: full, left or right. | full This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-22 18:19:13
|
Revision: 7708 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7708&view=rev Author: vargenau Date: 2010-09-22 18:19:06 +0000 (Wed, 22 Sep 2010) Log Message: ----------- Update from Fusionforge Modified Paths: -------------- trunk/g trunk/wikiadmin.php Modified: trunk/g =================================================================== --- trunk/g 2010-09-22 14:57:42 UTC (rev 7707) +++ trunk/g 2010-09-22 18:19:06 UTC (rev 7708) @@ -52,9 +52,9 @@ require_once $gfplugins.'wiki/common/wikiconfig.class.php'; if (!$group_id || !$project) { - exit_no_group(); + exit_no_group(); } else if (!($project->usesPlugin("wiki"))) { - exit_error("Wiki plugin not activated in project", $project->getPublicName()); + exit_disabled('home'); } else { $group_name = $project->getUnixName(); Modified: trunk/wikiadmin.php =================================================================== --- trunk/wikiadmin.php 2010-09-22 14:57:42 UTC (rev 7707) +++ trunk/wikiadmin.php 2010-09-22 18:19:06 UTC (rev 7708) @@ -60,8 +60,12 @@ $user = session_get_user(); // get the session user -if (!$user || !is_object($user) || $user->isError() || !$user->isActive()) { - exit_error("Invalid User", "Cannot Process your request for this user."); +if (!$user || !is_object($user)) { + exit_error(_('Invalid User'),'home'); +} else if ( $user->isError()) { + exit_error($user->getErrorMessage(),'home'); +} else if ( !$user->isActive()) { + exit_error(_('User not active'),'home'); } $type = getStringFromRequest('type'); @@ -70,21 +74,21 @@ $config = getArrayFromRequest('config'); if (!$type) { - exit_error("Cannot Process your request","No TYPE specified"); + exit_missing_params($_SERVER['HTTP_REFERER'],array(_('No TYPE specified')),'home'); } elseif (!$id) { - exit_error("Cannot Process your request","No ID specified"); + exit_missing_params($_SERVER['HTTP_REFERER'],array(_('No ID specified')),'home'); } else { if ($type == 'admin_post') { $group = group_get_object($id); if ( !$group) { - exit_error(_('Invalid Project'), _('Inexistent Project')); + exit_no_group(); } if (!($group->usesPlugin($pluginname))) { //check if the group has the wiki plugin active - exit_error("Error", "First activate the $pluginname plugin through the Project's Admin Interface"); + exit_error(sprintf(_('First activate the %s plugin through the Project\'s Admin Interface'),$pluginname),'home'); } $userperm = $group->getPermission($user); //we'll check if the user belongs to the group if ( !$userperm->IsMember()) { - exit_error(_('Access Denied'), _('You are not a member of this project')); + exit_permission_denied(_('You are not a member of this project'),'home'); } //only project admin can access here if ( $userperm->isAdmin() ) { @@ -105,20 +109,20 @@ $type = 'admin'; $feedback = _('Configuration saved.'); } else { - exit_error(_('Access Denied'), _('You are not a project Admin')); + exit_permission_denied(_('You are not a project Admin'),'home'); } } if ($type == 'admin') { $group = group_get_object($id); if ( !$group) { - exit_error(_('Invalid Project'), _('Inexistent Project')); + exit_no_group(); } if ( ! ($group->usesPlugin ($pluginname)) ) {//check if the group has the plugin active - exit_error("Error", "First activate the $pluginname plugin through the Project's Admin Interface"); + exit_error(sprintf(_('First activate the %s plugin through the Project\'s Admin Interface'),$pluginname),'home'); } $userperm = $group->getPermission($user); //we'll check if the user belongs to the group if ( !$userperm->IsMember()) { - exit_error(_('Access Denied'), _('You are not a member of this project')); + exit_permission_denied(_('You are not a member of this project'),'home'); } //only project admin can access here if ( $userperm->isAdmin() ) { @@ -166,7 +170,7 @@ print "</tr>\n"; print "</table>\n"; } else { - exit_error(_('Access Denied'), _('You are not a project Admin')); + exit_permission_denied(_('You are not a project Admin'),'home'); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-10-22 09:30:53
|
Revision: 7719 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7719&view=rev Author: vargenau Date: 2010-10-22 09:30:47 +0000 (Fri, 22 Oct 2010) Log Message: ----------- Allow swf Modified Paths: -------------- trunk/g trunk/lib/plugin/UpLoad.php Modified: trunk/g =================================================================== --- trunk/g 2010-10-22 08:26:31 UTC (rev 7718) +++ trunk/g 2010-10-22 09:30:47 UTC (rev 7719) @@ -121,8 +121,8 @@ // Dummy value define('ADMIN_PASSWD', 'xxx'); - // Allow ".svg" as extension - define('INLINE_IMAGES', 'png|jpg|jpeg|gif|svg'); + // Allow ".svg" and ".swf" as extensions + define('INLINE_IMAGES', 'png|jpg|jpeg|gif|svg|swf'); // Allow <div> and <span> in wiki code define('ENABLE_MARKUP_DIVSPAN', true); Modified: trunk/lib/plugin/UpLoad.php =================================================================== --- trunk/lib/plugin/UpLoad.php 2010-10-22 08:26:31 UTC (rev 7718) +++ trunk/lib/plugin/UpLoad.php 2010-10-22 09:30:47 UTC (rev 7719) @@ -132,7 +132,6 @@ reg sc[frt] sh[bsm]? -swf url vb[esx]? vxd This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-11-02 20:45:18
|
Revision: 7722 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7722&view=rev Author: vargenau Date: 2010-11-02 20:45:12 +0000 (Tue, 02 Nov 2010) Log Message: ----------- Check getIsExternal exists Modified Paths: -------------- trunk/g trunk/themes/fusionforge/themeinfo.php Modified: trunk/g =================================================================== --- trunk/g 2010-11-02 17:04:15 UTC (rev 7721) +++ trunk/g 2010-11-02 20:45:12 UTC (rev 7722) @@ -59,8 +59,9 @@ $group_name = $project->getUnixName(); $group_public_name = $project->getPublicName(); - $is_external = $project->getIsExternal(); + $is_external = method_exists($project, 'getIsExternal') && $project->getIsExternal(); + $wc = new WikiConfig($group_id); define('VIRTUAL_PATH', '/wiki/g/'.$group_name); Modified: trunk/themes/fusionforge/themeinfo.php =================================================================== --- trunk/themes/fusionforge/themeinfo.php 2010-11-02 17:04:15 UTC (rev 7721) +++ trunk/themes/fusionforge/themeinfo.php 2010-11-02 20:45:12 UTC (rev 7722) @@ -41,7 +41,7 @@ // Display a warning banner for internal users when the wiki is opened // to external users. - if ($project->getIsExternal()) { + if (method_exists($project, 'getIsExternal') && $project->getIsExternal()) { $external_user = false; if (session_loggedin()) { $user = session_get_user(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ru...@us...> - 2010-11-10 08:47:41
|
Revision: 7737 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7737&view=rev Author: rurban Date: 2010-11-10 08:47:34 +0000 (Wed, 10 Nov 2010) Log Message: ----------- support php-4.3.9, Red Hat Enterprise Linux ES release 4. We use that. Modified Paths: -------------- trunk/INSTALL trunk/lib/main.php Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2010-11-09 15:14:11 UTC (rev 7736) +++ trunk/INSTALL 2010-11-10 08:47:34 UTC (rev 7737) @@ -1,7 +1,8 @@ REQUIREMENTS -PhpWiki requires a web server with at least PHP version 4.3.10. -PhpWiki was tested with 4.4.7 (centos4), 4.3.10, 4.4.9, 5.0.3, +PhpWiki requires a web server with at least PHP version 4.3.9 +(Red Hat Enterprise Linux ES release 4). +PhpWiki was tested with 4.4.7 (centos4), 4.3.9, 4.3.10, 4.4.9, 5.0.3, 5.1.6 (centos5), 5.2.10, 5.3.2, 5.3.3. All users of PHP are strongly encouraged to upgrade to PHP 5.2.14 Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2010-11-09 15:14:11 UTC (rev 7736) +++ trunk/lib/main.php 2010-11-10 08:47:34 UTC (rev 7737) @@ -1327,8 +1327,9 @@ function main () { - if (version_compare(PHP_VERSION, '4.3.10', '<')) { - exit(_("Your PHP version is too old. You must have at least PHP 4.3.10")); + // latest supported: Red Hat Enterprise Linux ES release 4 + if (version_compare(PHP_VERSION, '4.3.9', '<')) { + exit(_("Your PHP version is too old. You must have at least PHP 4.3.9")); } if ( !USE_DB_SESSION ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-13 15:38:14
|
Revision: 7834 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7834&view=rev Author: vargenau Date: 2011-01-13 15:38:07 +0000 (Thu, 13 Jan 2011) Log Message: ----------- Include open graph only if needed (to get valid XHTML code) Modified Paths: -------------- trunk/config/config-default.ini trunk/config/config-dist.ini trunk/configurator.php trunk/themes/Crao/templates/head.tmpl trunk/themes/default/templates/head.tmpl trunk/themes/wikilens/templates/head.tmpl Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2011-01-13 15:06:45 UTC (rev 7833) +++ trunk/config/config-default.ini 2011-01-13 15:38:07 UTC (rev 7834) @@ -9,6 +9,7 @@ JS_SEARCHREPLACE = true ENABLE_DOUBLECLICKEDIT = false ENABLE_XHTML_XML = false +ENABLE_OPEN_GRAPH = false USECACHE = true READONLY = false Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2011-01-13 15:06:45 UTC (rev 7833) +++ trunk/config/config-dist.ini 2011-01-13 15:38:07 UTC (rev 7834) @@ -86,6 +86,9 @@ ; See http://hixie.ch/advocacy/xhtml ;ENABLE_XHTML_XML = true +; Needed for FacebookLike plugin +;ENABLE_OPEN_GRAPH = true + ; Needs babycart installed. See http://phpwiki.org/SpamAssassinIntegration ; Optionally define BABYCART_PATH. Default: /usr/local/bin/babycart ;ENABLE_SPAMASSASSIN = true Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2011-01-13 15:06:45 UTC (rev 7833) +++ trunk/configurator.php 2011-01-13 15:38:07 UTC (rev 7834) @@ -393,6 +393,9 @@ $properties["ENABLE_XHTML_XML"] = new boolean_define_commented_optional('ENABLE_XHTML_XML'); +$properties["ENABLE_OPEN_GRAPH"] = +new boolean_define_commented_optional('ENABLE_OPEN_GRAPH'); + $properties["ENABLE_SPAMASSASSIN"] = new boolean_define_commented_optional('ENABLE_SPAMASSASSIN'); Modified: trunk/themes/Crao/templates/head.tmpl =================================================================== --- trunk/themes/Crao/templates/head.tmpl 2011-01-13 15:06:45 UTC (rev 7833) +++ trunk/themes/Crao/templates/head.tmpl 2011-01-13 15:38:07 UTC (rev 7834) @@ -103,7 +103,9 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?php echo WIKI_NAME.$pagetitle?></title> +<?php if (ENABLE_OPEN_GRAPH) { ?> <meta property="og:title" content="<?php echo strip_tags($TITLE) ?>"/> <meta property="og:site_name" content="<?php echo WIKI_NAME ?>"/> +<?php } ?> <?php echo $WikiTheme->getMoreHeaders() ?> </head> Modified: trunk/themes/default/templates/head.tmpl =================================================================== --- trunk/themes/default/templates/head.tmpl 2011-01-13 15:06:45 UTC (rev 7833) +++ trunk/themes/default/templates/head.tmpl 2011-01-13 15:38:07 UTC (rev 7834) @@ -110,7 +110,9 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?php echo WIKI_NAME.$pagetitle ?></title> +<?php if (ENABLE_OPEN_GRAPH) { ?> <meta property="og:title" content="<?php echo strip_tags($TITLE) ?>"/> <meta property="og:site_name" content="<?php echo WIKI_NAME ?>"/> +<?php } ?> <?php echo $WikiTheme->getMoreHeaders() ?> </head> Modified: trunk/themes/wikilens/templates/head.tmpl =================================================================== --- trunk/themes/wikilens/templates/head.tmpl 2011-01-13 15:06:45 UTC (rev 7833) +++ trunk/themes/wikilens/templates/head.tmpl 2011-01-13 15:38:07 UTC (rev 7834) @@ -103,8 +103,10 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?php echo WIKI_NAME.$pagetitle ?></title> +<?php if (ENABLE_OPEN_GRAPH) { ?> <meta property="og:title" content="<?php echo strip_tags($TITLE) ?>"/> <meta property="og:site_name" content="<?php echo WIKI_NAME ?>"/> +<?php } ?> <?php require_once("lib/plugin/RateIt.php"); $plugin = new WikiPlugin_RateIt; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-17 16:16:22
|
Revision: 7839 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7839&view=rev Author: vargenau Date: 2011-01-17 16:16:15 +0000 (Mon, 17 Jan 2011) Log Message: ----------- Revert r7698 and r7699; when displaying an old version of a page, the version got transferred to included pages Modified Paths: -------------- trunk/lib/plugin/IncludePage.php trunk/lib/plugin/Template.php trunk/pgsrc/Help%2FIncludePagePlugin trunk/pgsrc/Help%2FTemplatePlugin Modified: trunk/lib/plugin/IncludePage.php =================================================================== --- trunk/lib/plugin/IncludePage.php 2011-01-17 14:47:32 UTC (rev 7838) +++ trunk/lib/plugin/IncludePage.php 2011-01-17 16:16:15 UTC (rev 7839) @@ -41,7 +41,6 @@ function getDefaultArguments() { return array( 'page' => false, // the page to include 'rev' => false, // the revision (defaults to most recent) - 'version' => false, // same as "rev" 'quiet' => false, // if set, inclusion appears as normal content 'bytes' => false, // maximum number of bytes to include 'words' => false, // maximum number of words to include @@ -70,12 +69,6 @@ $args = $this->getArgs($argstr, $request); extract($args); - if ($version && $rev) { - return $this->error(_("Choose only one of 'version' or 'rev' parameters.")); - } elseif ($version) { - $rev = $version; - } - if ($page) { // Expand relative page names. $page = new WikiPageName($page, $basepage); Modified: trunk/lib/plugin/Template.php =================================================================== --- trunk/lib/plugin/Template.php 2011-01-17 14:47:32 UTC (rev 7838) +++ trunk/lib/plugin/Template.php 2011-01-17 16:16:15 UTC (rev 7839) @@ -70,7 +70,6 @@ 'page' => false, // the page to include 'vars' => false, // TODO: get rid of this, all remaining args should be vars 'rev' => false, // the revision (defaults to most recent) - 'version' => false, // same as "rev" 'section' => false, // just include a named section 'sectionhead' => false // when including a named section show the heading ); @@ -100,12 +99,6 @@ $vars = $args['vars'] ? $args['vars'] : $this->vars; $page = $args['page']; - if ($args['version'] && $args['rev']) { - return $this->error(_("Choose only one of 'version' or 'rev' parameters.")); - } elseif ($args['version']) { - $args['rev'] = $args['version']; - } - if ($page) { // Expand relative page names. $page = new WikiPageName($page, $basepage); Modified: trunk/pgsrc/Help%2FIncludePagePlugin =================================================================== --- trunk/pgsrc/Help%2FIncludePagePlugin 2011-01-17 14:47:32 UTC (rev 7838) +++ trunk/pgsrc/Help%2FIncludePagePlugin 2011-01-17 16:16:15 UTC (rev 7839) @@ -1,4 +1,4 @@ -Date: Mon, 20 Sep 2010 16:44:13 +0000 +Date: Mon, 17 Jan 2011 17:13:41 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -33,10 +33,6 @@ | the revision | most recent revision |- -| **version** -| page revision (same as ##rev##) -| most recent revision -|- | **quiet** | if set, inclusion appears as normal content | false Modified: trunk/pgsrc/Help%2FTemplatePlugin =================================================================== --- trunk/pgsrc/Help%2FTemplatePlugin 2011-01-17 14:47:32 UTC (rev 7838) +++ trunk/pgsrc/Help%2FTemplatePlugin 2011-01-17 16:16:15 UTC (rev 7839) @@ -1,4 +1,4 @@ -Date: Fri, 20 Sep 2010 13:46:13 +0000 +Date: Mon, 17 Jan 2011 17:13:41 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -73,10 +73,6 @@ | page revision | most recent revision |- -| **version** -| page revision (same as ##rev##) -| most recent revision -|- | **section** | just include a named section | (empty) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-20 13:20:04
|
Revision: 7848 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7848&view=rev Author: vargenau Date: 2011-01-20 13:19:57 +0000 (Thu, 20 Jan 2011) Log Message: ----------- Kibibytes Modified Paths: -------------- trunk/lib/plugin/SystemInfo.php trunk/lib/stdlib.php trunk/themes/MonoBook/templates/info.tmpl Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2011-01-20 13:02:53 UTC (rev 7847) +++ trunk/lib/plugin/SystemInfo.php 2011-01-20 13:19:57 UTC (rev 7848) @@ -397,9 +397,9 @@ $pagesize = $content['pagesize']; } - $s = sprintf(_("Application size: %d Kb"), $appsize); + $s = sprintf(_("Application size: %d KiB"), $appsize); if ($pagesize) - $s .= ", " . sprintf(_("Pagedata size: %d Kb", $pagesize)); + $s .= ", " . sprintf(_("Pagedata size: %d KiB", $pagesize)); return $s; } Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2011-01-20 13:02:53 UTC (rev 7847) +++ trunk/lib/stdlib.php 2011-01-20 13:19:57 UTC (rev 7848) @@ -1406,7 +1406,7 @@ /** - * Format number as kilobytes or bytes. + * Format number as kibibytes or bytes. * Short format is used for PageList * Long format is used in PageInfo * @@ -1419,16 +1419,16 @@ return fmt("-???"); if ($bytes < 1024) { if (! $longformat) - $size = fmt("%s b", $bytes); + $size = fmt("%s B", $bytes); else $size = fmt("%s bytes", $bytes); } else { $kb = round($bytes / 1024, 1); if (! $longformat) - $size = fmt("%s k", $kb); + $size = fmt("%s KiB", $kb); else - $size = fmt("%s Kb (%s bytes)", $kb, $bytes); + $size = fmt("%s KiB (%s bytes)", $kb, $bytes); } return $size; } Modified: trunk/themes/MonoBook/templates/info.tmpl =================================================================== --- trunk/themes/MonoBook/templates/info.tmpl 2011-01-20 13:02:53 UTC (rev 7847) +++ trunk/themes/MonoBook/templates/info.tmpl 2011-01-20 13:19:57 UTC (rev 7848) @@ -30,7 +30,7 @@ $size = fmt("%s bytes", $bytes); else { $kb = round($bytes / 1024, 1); - $size = fmt("%s Kb (%s bytes)", $kb, $bytes); + $size = fmt("%s KiB (%s bytes)", $kb, $bytes); } // Count words preg_match_all('/\\w+\\W*/', $revision->_data['%content'], $whitespacematches); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-21 09:41:12
|
Revision: 7850 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7850&view=rev Author: vargenau Date: 2011-01-21 09:41:05 +0000 (Fri, 21 Jan 2011) Log Message: ----------- Translate ": " so that a space can be added in French Modified Paths: -------------- trunk/lib/InlineParser.php trunk/lib/plugin/ModeratedPage.php trunk/lib/plugin/SemanticSearch.php trunk/lib/plugin/SpellCheck.php trunk/lib/plugin/WikiAdminRename.php trunk/lib/plugin/WikiAdminSearchReplace.php trunk/lib/plugin/WikiAdminSetAcl.php trunk/lib/upgrade.php trunk/themes/blog/templates/blogform.tmpl trunk/themes/default/templates/blogform.tmpl trunk/themes/fusionforge/templates/blogform.tmpl trunk/themes/fusionforge/themeinfo.php Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/InlineParser.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -341,7 +341,7 @@ str_replace("\n", " ", $bracketlink), $matches); if (count($matches) < 4) { // "[ personal\ninformation manager | PhpWiki:PersonalWiki ]" - trigger_error(_("Invalid [] syntax ignored").": ".$bracketlink, E_USER_WARNING); + trigger_error(_("Invalid [] syntax ignored")._(": ").$bracketlink, E_USER_WARNING); return new Cached_Link; } list (, $hash, $label, $bar, $rawlink) = $matches; Modified: trunk/lib/plugin/ModeratedPage.php =================================================================== --- trunk/lib/plugin/ModeratedPage.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/plugin/ModeratedPage.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -253,10 +253,10 @@ require_once("lib/MailNotify.php"); $pagename = $page->getName(); $mailer = new MailNotify($pagename); - $subject = "[".WIKI_NAME.'] '.$action.': '._("ModeratedPage").' '.$pagename; + $subject = "[".WIKI_NAME.'] '.$action._(": ")._("ModeratedPage").' '.$pagename; $content = "You are approved as Moderator of the ".WIKI_NAME. " wiki.\n". "Someone wanted to edit a moderated page, which you have to approve or reject.\n\n". - $action.': '._("ModeratedPage").' '.$pagename."\n" + $action._(": ")._("ModeratedPage").' '.$pagename."\n" //. serialize($moderated['data'][$id]) ."\n<".WikiURL($pagename, array('action' => _("ModeratedPage"), 'id' => $id, 'pass' => 'approve'), 1).">" @@ -348,7 +348,7 @@ $status = $this->getSiteStatus($request, $action_page); require_once("lib/MailNotify.php"); $mailer = new MailNotify($pagename); - $subject = "[".WIKI_NAME."] $pass $action "._("ModeratedPage").': '.$pagename; + $subject = "[".WIKI_NAME."] $pass $action "._("ModeratedPage")._(": ").$pagename; $mailer->from = $request->_user->UserFrom(); $content = sprintf(_("%s approved your wiki action from %s"), $mailer->from,CTime($moderation['timestamp'])) Modified: trunk/lib/plugin/SemanticSearch.php =================================================================== --- trunk/lib/plugin/SemanticSearch.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/plugin/SemanticSearch.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -154,7 +154,7 @@ )), HTML::tbody (HTML::tr( - HTML::td($pagefilter, ": "), + HTML::td($pagefilter, _(": ")), HTML::td($relation), HTML::td(HTML::strong(HTML::tt(' :: '))), HTML::td($queryrel), @@ -237,7 +237,7 @@ )), HTML::tbody (HTML::tr( - HTML::td($pagefilter, ": "), + HTML::td($pagefilter, _(": ")), HTML::td($attribute), HTML::td($attr_op), HTML::td($queryatt), Modified: trunk/lib/plugin/SpellCheck.php =================================================================== --- trunk/lib/plugin/SpellCheck.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/plugin/SpellCheck.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -175,7 +175,7 @@ 'href' => "javascript:do_replace('$word','$s')"), $s),", "); } - $list->pushContent(HTML::li($w, ": ", $r)); + $list->pushContent(HTML::li($w, _(": "), $r)); } $html->pushContent($list); return $html; Modified: trunk/lib/plugin/WikiAdminRename.php =================================================================== --- trunk/lib/plugin/WikiAdminRename.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/plugin/WikiAdminRename.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -263,11 +263,11 @@ function renameForm(&$header, $post_args, $singlepage) { $table = HTML::table(); - $this->_tablePush($table, _("Rename"). " ". _("from").': ', + $this->_tablePush($table, _("Rename"). " ". _("from")._(": "), HTML::input(array('name' => 'admin_rename[from]', 'size' => 90, 'value' => $post_args['from']))); - $this->_tablePush($table, _("to").': ', + $this->_tablePush($table, _("to")._(": "), HTML::input(array('name' => 'admin_rename[to]', 'size' => 90, 'value' => $post_args['to']))); Modified: trunk/lib/plugin/WikiAdminSearchReplace.php =================================================================== --- trunk/lib/plugin/WikiAdminSearchReplace.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/plugin/WikiAdminSearchReplace.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -227,11 +227,11 @@ _("Replace all occurences of the given string in the content of all pages.")), HTML::br()); $table = HTML::table(); - $this->_tablePush($table, _("Replace").": ", + $this->_tablePush($table, _("Replace")._(": "), HTML::input(array('name' => 'admin_replace[from]', 'size' => 90, 'value' => $post_args['from']))); - $this->_tablePush($table, _("by").': ', + $this->_tablePush($table, _("by")._(": "), HTML::input(array('name' => 'admin_replace[to]', 'size' => 90, 'value' => $post_args['to']))); Modified: trunk/lib/plugin/WikiAdminSetAcl.php =================================================================== --- trunk/lib/plugin/WikiAdminSetAcl.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/plugin/WikiAdminSetAcl.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -241,10 +241,10 @@ $type = _("individual page permission"); elseif ($type == 'default') $type = _("default page permission"); - $header->pushContent(HTML::strong(_("Type").': '), HTML::tt($type),HTML::br()); - $header->pushContent(HTML::strong(_("ACL").': '), HTML::tt($perm->asAclLines()),HTML::br()); + $header->pushContent(HTML::strong(_("Type")._(": ")), HTML::tt($type),HTML::br()); + $header->pushContent(HTML::strong(_("ACL")._(": ")), HTML::tt($perm->asAclLines()),HTML::br()); - $header->pushContent(HTML::p(HTML::strong(_("Description").': '), + $header->pushContent(HTML::p(HTML::strong(_("Description")._(": ")), _("Selected Grant checkboxes allow access, unselected checkboxes deny access."), _("To ignore delete the line."), _("To add check 'Add' near the dropdown list.") Modified: trunk/lib/upgrade.php =================================================================== --- trunk/lib/upgrade.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/lib/upgrade.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -1101,7 +1101,7 @@ $this->parent->dbi->set($this->_db_key, $this->upgrade); echo "<b>",_("FIXED"),"</b>"; if (isset($this->reason)) - echo ": ", $this->reason; + echo _(": "), $this->reason; echo "<br />\n"; flush(); return true; @@ -1109,7 +1109,7 @@ function fail() { echo " <b><font color=\"red\">", _("FAILED"), "</font></b>"; if (isset($this->reason)) - echo ": ", $this->reason; + echo _(": "), $this->reason; echo "<br />\n"; flush(); return false; Modified: trunk/themes/blog/templates/blogform.tmpl =================================================================== --- trunk/themes/blog/templates/blogform.tmpl 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/themes/blog/templates/blogform.tmpl 2011-01-21 09:41:05 UTC (rev 7850) @@ -1,5 +1,5 @@ <?php // -*- php -*- -// rcs_id('$Id$'); +// $Id$ ?> <div class="wikiblog wikiblog-form"> <form action="<?php echo $request->getPostURL()?>" method="post" name="editpage" @@ -7,7 +7,7 @@ <input type="hidden" name="edit[pagename]" value="<?php echo $PAGENAME?>" /> <input type="hidden" name="mode" value="add" /> <div class="wikiblog-form"> - <?php echo _("Headline").': ' ?><br /> + <?php echo _("Headline")._(": ") ?><br /> <input id="wikiblog-summary" class="wikitext" type="text" style="width:540px" size="60" maxlength="256" name="edit[summary]" value="" /> <?php echo $EDIT_TOOLBAR ?> Modified: trunk/themes/default/templates/blogform.tmpl =================================================================== --- trunk/themes/default/templates/blogform.tmpl 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/themes/default/templates/blogform.tmpl 2011-01-21 09:41:05 UTC (rev 7850) @@ -1,5 +1,5 @@ <?php // -*- php -*- -// rcs_id('$Id$'); +// $Id$ ?> <div class="wikiblog wikiblog-form"> <form action="<?php echo $request->getPostURL()?>" method="post" name="editpage" @@ -7,7 +7,7 @@ <input type="hidden" name="edit[pagename]" value="<?php echo $PAGENAME?>" /> <input type="hidden" name="mode" value="add" /> <div class="wikiblog-form"> - <?php echo _("Headline").': ' ?><br /> + <?php echo _("Headline")._(": ") ?><br /> <input id="wikiblog-summary" class="wikitext" type="text" style="width:540px" size="60" maxlength="256" name="edit[summary]" value="" /> <?php echo $EDIT_TOOLBAR ?> Modified: trunk/themes/fusionforge/templates/blogform.tmpl =================================================================== --- trunk/themes/fusionforge/templates/blogform.tmpl 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/themes/fusionforge/templates/blogform.tmpl 2011-01-21 09:41:05 UTC (rev 7850) @@ -7,7 +7,7 @@ <input type="hidden" name="edit[pagename]" value="<?php echo $PAGENAME?>" /> <input type="hidden" name="mode" value="add" /> <div class="wikiblog-form"> - <?php echo _("Headline").': ' ?><br /> + <?php echo _("Headline")._(": ") ?><br /> <input id="wikiblog-summary" class="wikitext" type="text" style="width:540px" size="60" maxlength="256" name="edit[summary]" value="" /> <?php echo $EDIT_TOOLBAR ?> Modified: trunk/themes/fusionforge/themeinfo.php =================================================================== --- trunk/themes/fusionforge/themeinfo.php 2011-01-21 08:57:55 UTC (rev 7849) +++ trunk/themes/fusionforge/themeinfo.php 2011-01-21 09:41:05 UTC (rev 7850) @@ -32,7 +32,7 @@ session_require_global_perm ('forge_admin'); } - $HTML->header(array('title'=> $group_public_name.': '.htmlspecialchars($pagename), + $HTML->header(array('title'=> $group_public_name._(": ").htmlspecialchars($pagename), 'group' => $group_id, 'toptab' => 'wiki', 'submenu' => $submenu->asXML() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-27 16:08:02
|
Revision: 7918 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7918&view=rev Author: vargenau Date: 2011-01-27 16:07:56 +0000 (Thu, 27 Jan 2011) Log Message: ----------- END OF DOCUMENT Modified Paths: -------------- trunk/locale/fr/pgsrc/ManuelPhpWiki trunk/pgsrc/PhpWikiManual Modified: trunk/locale/fr/pgsrc/ManuelPhpWiki =================================================================== --- trunk/locale/fr/pgsrc/ManuelPhpWiki 2011-01-27 13:10:45 UTC (rev 7917) +++ trunk/locale/fr/pgsrc/ManuelPhpWiki 2011-01-27 16:07:56 UTC (rev 7918) @@ -1,4 +1,4 @@ -Date: Tue, 25 Jan 2011 21:26:14 +0000 +Date: Thu, 27 Jan 2011 17:06:09 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -24,3 +24,8 @@ <<IncludePage page="Aide/DétailsTechniques">> <<IncludePage page="Aide/RèglesDeFormatageDesTextes">> <<IncludePages pages=<!plugin-list BackLinks page=CatégoriePluginWiki sortby=pagename exclude="Template/*" !> >> + +{| width="100%" +|- align="center" +| **FIN DU DOCUMENT** +|} Modified: trunk/pgsrc/PhpWikiManual =================================================================== --- trunk/pgsrc/PhpWikiManual 2011-01-27 13:10:45 UTC (rev 7917) +++ trunk/pgsrc/PhpWikiManual 2011-01-27 16:07:56 UTC (rev 7918) @@ -1,4 +1,4 @@ -Date: Tue, 25 Jan 2011 17:28:51 +0000 +Date: Thu, 27 Jan 2011 17:05:57 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -35,3 +35,8 @@ <<IncludePage page="Help/PageList">> <<IncludePage page="Help/Advice for Mediawiki users">> <<IncludePages pages=<!plugin-list BackLinks page=CategoryWikiPlugin sortby=pagename exclude="Template/*" !> >> + +{| width="100%" +|- align="center" +| **END OF DOCUMENT** +|} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-03-03 17:08:43
|
Revision: 7956 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7956&view=rev Author: vargenau Date: 2011-03-03 17:08:31 +0000 (Thu, 03 Mar 2011) Log Message: ----------- Remove rcs_id Modified Paths: -------------- trunk/lib/DbSession/ADODB.php trunk/lib/DbSession/PDO.php trunk/lib/DbSession/SQL.php trunk/lib/DbSession/dba.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/cvs.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/cvs.php trunk/lib/WikiDB/dba.php trunk/lib/WikiDB/file.php trunk/lib/WikiDB/flatfile.php trunk/lib/WikiUser/AdoDb.php trunk/lib/WikiUser/BogoLogin.php trunk/lib/WikiUser/Db.php trunk/lib/WikiUser/EMailConfirm.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/WysiwygEdit/FCKeditor.php trunk/lib/WysiwygEdit/Wikiwyg.php trunk/lib/WysiwygEdit/htmlarea2.php trunk/lib/WysiwygEdit/htmlarea3.php trunk/lib/WysiwygEdit/tinymce.php trunk/lib/fpdf/chinese.php trunk/lib/fpdf/japanese.php trunk/lib/pear/DB/Pager.php trunk/lib/pear/DB/ldap.php trunk/lib/pear/PEAR.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/unit/lib/HtmlParserTest.php trunk/tests/unit/lib/InlineParserTest.php trunk/tests/unit/lib/XmlRpcTest.php trunk/themes/Crao/templates/actionbar.tmpl trunk/themes/Crao/templates/body.tmpl trunk/themes/Crao/templates/bottom.tmpl trunk/themes/Crao/templates/browse.tmpl trunk/themes/Crao/templates/editpage.tmpl trunk/themes/Crao/templates/head.tmpl trunk/themes/Crao/templates/htmldump.tmpl trunk/themes/Crao/templates/navbar.tmpl trunk/themes/Crao/templates/signin.tmpl trunk/themes/Crao/templates/top.tmpl trunk/themes/Crao/templates/wikiblog.tmpl 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/templates/actionbar.tmpl trunk/themes/MonoBook/templates/body.tmpl trunk/themes/MonoBook/templates/browse-footer.tmpl trunk/themes/MonoBook/templates/browse.tmpl trunk/themes/MonoBook/templates/editpage.tmpl trunk/themes/MonoBook/templates/info.tmpl trunk/themes/MonoBook/templates/logo.tmpl trunk/themes/MonoBook/templates/navbar.tmpl trunk/themes/MonoBook/templates/tags.tmpl trunk/themes/MonoBook/templates/top.tmpl trunk/themes/MonoBook/templates/viewsource.tmpl trunk/themes/MonoBook/themeinfo.php trunk/themes/Portland/lib/RecentChanges.php trunk/themes/Portland/templates/actionbar.tmpl trunk/themes/Portland/templates/body.tmpl trunk/themes/Portland/templates/browse.tmpl trunk/themes/Portland/templates/debug.tmpl trunk/themes/Portland/templates/editpage.tmpl trunk/themes/Portland/templates/navbar.tmpl trunk/themes/Portland/templates/viewsource.tmpl trunk/themes/Portland/themeinfo.php trunk/themes/Sidebar/clock.php trunk/themes/Sidebar/hyperapplet.php trunk/themes/Sidebar/hyperwiki.php trunk/themes/Sidebar/templates/actionbar.tmpl trunk/themes/Sidebar/templates/body.tmpl trunk/themes/Sidebar/templates/calendar.tmpl trunk/themes/Sidebar/templates/content.tmpl trunk/themes/Sidebar/templates/debug.tmpl trunk/themes/Sidebar/templates/dump-footer.tmpl trunk/themes/Sidebar/templates/frame-left.tmpl trunk/themes/Sidebar/templates/frameset.tmpl trunk/themes/Sidebar/templates/htmldump.tmpl trunk/themes/Sidebar/templates/logo.tmpl trunk/themes/Sidebar/templates/navbar.tmpl trunk/themes/Sidebar/templates/ratings.tmpl trunk/themes/Sidebar/templates/rc.tmpl trunk/themes/Sidebar/templates/search.tmpl trunk/themes/Sidebar/templates/signin.tmpl trunk/themes/Sidebar/templates/tags.tmpl trunk/themes/Sidebar/templates/top.tmpl 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/templates/actionbar.tmpl trunk/themes/Wordpress/templates/body.tmpl trunk/themes/Wordpress/templates/browse.tmpl trunk/themes/Wordpress/templates/editpage.tmpl trunk/themes/Wordpress/templates/navbar.tmpl trunk/themes/Wordpress/templates/signin.tmpl trunk/themes/Wordpress/templates/viewsource.tmpl trunk/themes/Wordpress/themeinfo.php trunk/themes/blog/lib/RecentChanges.php trunk/themes/blog/templates/actionbar.tmpl trunk/themes/blog/templates/body.tmpl trunk/themes/blog/templates/bottom.tmpl trunk/themes/blog/templates/browse-footer.tmpl trunk/themes/blog/templates/browse.tmpl trunk/themes/blog/templates/debug.tmpl trunk/themes/blog/templates/info.tmpl trunk/themes/blog/templates/navbar.tmpl trunk/themes/blog/templates/sidebar.tmpl trunk/themes/blog/templates/top.tmpl trunk/themes/blog/templates/viewsource.tmpl trunk/themes/blog/templates/wikiblog.tmpl trunk/themes/blog/themeinfo.php trunk/themes/default/templates/actionbar.tmpl trunk/themes/default/templates/addcomment.tmpl trunk/themes/default/templates/body.tmpl trunk/themes/default/templates/bottom.tmpl trunk/themes/default/templates/browse-footer.tmpl trunk/themes/default/templates/browse.tmpl trunk/themes/default/templates/categorypage.tmpl trunk/themes/default/templates/comment.tmpl trunk/themes/default/templates/content.tmpl trunk/themes/default/templates/debug.tmpl trunk/themes/default/templates/dialog.tmpl trunk/themes/default/templates/editpage.tmpl trunk/themes/default/templates/forumadd.tmpl trunk/themes/default/templates/frameset.tmpl trunk/themes/default/templates/head.tmpl trunk/themes/default/templates/homepage.tmpl trunk/themes/default/templates/htmldump.tmpl trunk/themes/default/templates/info.tmpl trunk/themes/default/templates/login.tmpl trunk/themes/default/templates/navbar.tmpl trunk/themes/default/templates/nochanges.tmpl trunk/themes/default/templates/online.tmpl trunk/themes/default/templates/pagelink.tmpl trunk/themes/default/templates/savepage.tmpl trunk/themes/default/templates/signin.tmpl trunk/themes/default/templates/top.tmpl trunk/themes/default/templates/userprefs.tmpl trunk/themes/default/templates/viewsource.tmpl trunk/themes/default/templates/wikiblog.tmpl trunk/themes/default/templates/wikiforum.tmpl trunk/themes/default/themeinfo.php trunk/themes/shamino_com/templates/actionbar.tmpl trunk/themes/shamino_com/templates/browse-footer.tmpl trunk/themes/shamino_com/templates/debug.tmpl trunk/themes/shamino_com/templates/info.tmpl trunk/themes/shamino_com/templates/signin.tmpl trunk/themes/shamino_com/templates/top.tmpl trunk/themes/shamino_com/themeinfo.php trunk/themes/smaller/templates/actionbar.tmpl trunk/themes/smaller/templates/info.tmpl trunk/themes/smaller/templates/navbar.tmpl trunk/themes/smaller/templates/signin.tmpl trunk/themes/smaller/themeinfo.php trunk/themes/wikilens/templates/body.tmpl trunk/themes/wikilens/templates/categorypage.tmpl trunk/themes/wikilens/templates/head.tmpl trunk/themes/wikilens/templates/navbar.tmpl trunk/themes/wikilens/templates/newuserwelcomepage.tmpl trunk/themes/wikilens/templates/ratings.tmpl trunk/themes/wikilens/templates/top.tmpl trunk/themes/wikilens/themeinfo.php Modified: trunk/lib/DbSession/ADODB.php =================================================================== --- trunk/lib/DbSession/ADODB.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/DbSession/ADODB.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /* * Copyright 2005 $ThePhpWikiProgrammingTeam * Modified: trunk/lib/DbSession/PDO.php =================================================================== --- trunk/lib/DbSession/PDO.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/DbSession/PDO.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /** * Db sessions for PDO, based on pear DB Sessions. Modified: trunk/lib/DbSession/SQL.php =================================================================== --- trunk/lib/DbSession/SQL.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/DbSession/SQL.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /** * DB sessions for pear DB Modified: trunk/lib/DbSession/dba.php =================================================================== --- trunk/lib/DbSession/dba.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/DbSession/dba.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /** DBA Sessions * session: Modified: trunk/lib/WikiDB/ADODB.php =================================================================== --- trunk/lib/WikiDB/ADODB.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/ADODB.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB.php'); Modified: trunk/lib/WikiDB/PDO.php =================================================================== --- trunk/lib/WikiDB/PDO.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/PDO.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB.php'); Modified: trunk/lib/WikiDB/SQL.php =================================================================== --- trunk/lib/WikiDB/SQL.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/SQL.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ require_once('lib/WikiDB.php'); //require_once('lib/WikiDB/backend/PearDB.php'); Modified: trunk/lib/WikiDB/backend/ADODB.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2002,2004,2005,2006 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/ADODB_mssql.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_mssql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB_mssql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * MS SQL extensions for the ADODB DB backend. Modified: trunk/lib/WikiDB/backend/ADODB_mssqlnative.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_mssqlnative.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB_mssqlnative.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * MS SQL extensions for the ADODB DB backend. Modified: trunk/lib/WikiDB/backend/ADODB_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_mysql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB_mysql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend/ADODB.php'); Modified: trunk/lib/WikiDB/backend/ADODB_oci8po.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_oci8po.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB_oci8po.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * Oracle extensions for the ADODB DB backend. Modified: trunk/lib/WikiDB/backend/ADODB_postgres7.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_postgres7.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB_postgres7.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend/ADODB.php'); Modified: trunk/lib/WikiDB/backend/ADODB_sqlite.php =================================================================== --- trunk/lib/WikiDB/backend/ADODB_sqlite.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/ADODB_sqlite.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend/ADODB.php'); Modified: trunk/lib/WikiDB/backend/PDO.php =================================================================== --- trunk/lib/WikiDB/backend/PDO.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PDO.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2005 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/PDO_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_mysql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PDO_mysql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2005 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/PDO_oci8.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_oci8.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PDO_oci8.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2007 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/PDO_pgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_pgsql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PDO_pgsql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2005 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/PearDB.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PearDB.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend.php'); //require_once('lib/FileFinder.php'); Modified: trunk/lib/WikiDB/backend/PearDB_ffpgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PearDB_ffpgsql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2001-2009 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/PearDB_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_mysql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PearDB_mysql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend/PearDB.php'); Modified: trunk/lib/WikiDB/backend/PearDB_oci8.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_oci8.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PearDB_oci8.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * Oracle extensions for the Pear DB backend. Modified: trunk/lib/WikiDB/backend/PearDB_pgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_pgsql.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PearDB_pgsql.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/ErrorManager.php'); require_once('lib/WikiDB/backend/PearDB.php'); Modified: trunk/lib/WikiDB/backend/PearDB_sqlite.php =================================================================== --- trunk/lib/WikiDB/backend/PearDB_sqlite.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/PearDB_sqlite.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -8,7 +8,7 @@ * sqlite -init /tmp/phpwiki-sqlite.db * sqlite /tmp/phpwiki-sqlite.db < schemas/sqlite.sql */ -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend/PearDB.php'); Modified: trunk/lib/WikiDB/backend/cvs.php =================================================================== --- trunk/lib/WikiDB/backend/cvs.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/cvs.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /** * Backend for handling CVS repository. * Modified: trunk/lib/WikiDB/backend/dba.php =================================================================== --- trunk/lib/WikiDB/backend/dba.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dba.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ require_once('lib/WikiDB/backend/dbaBase.php'); require_once('lib/DbaDatabase.php'); Modified: trunk/lib/WikiDB/backend/dbaBase.php =================================================================== --- trunk/lib/WikiDB/backend/dbaBase.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dbaBase.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend.php'); Modified: trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/AllRevisionsIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * An iterator which returns all revisions of page. Modified: trunk/lib/WikiDB/backend/dumb/BackLinkIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/BackLinkIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/BackLinkIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend.php'); Modified: trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/LinkSearchIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2007 Reini Urban * Modified: trunk/lib/WikiDB/backend/dumb/MostPopularIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/MostPopularIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/MostPopularIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend.php'); Modified: trunk/lib/WikiDB/backend/dumb/MostRecentIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/MostRecentIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/MostRecentIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ require_once('lib/WikiDB/backend.php'); Modified: trunk/lib/WikiDB/backend/dumb/TextSearchIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/TextSearchIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/TextSearchIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ class WikiDB_backend_dumb_TextSearchIter extends WikiDB_backend_iterator Modified: trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php =================================================================== --- trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/dumb/WantedPagesIter.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ //require_once('lib/WikiDB/backend.php'); Modified: trunk/lib/WikiDB/backend/file.php =================================================================== --- trunk/lib/WikiDB/backend/file.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/file.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * Copyright 1999, 2000, 2001, 2002, 2003 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/backend/flatfile.php =================================================================== --- trunk/lib/WikiDB/backend/flatfile.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/backend/flatfile.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * Copyright 1999,2005,2006 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/cvs.php =================================================================== --- trunk/lib/WikiDB/cvs.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/cvs.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,6 +1,6 @@ <?php -// rcs_id( '$Id$' ); +// $Id$ require_once( 'lib/WikiDB.php' ); require_once( 'lib/WikiDB/backend/cvs.php' ); Modified: trunk/lib/WikiDB/dba.php =================================================================== --- trunk/lib/WikiDB/dba.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/dba.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ require_once('lib/WikiDB.php'); require_once('lib/WikiDB/backend/dba.php'); Modified: trunk/lib/WikiDB/file.php =================================================================== --- trunk/lib/WikiDB/file.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/file.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,6 +1,6 @@ <?php -// rcs_id( '$Id$' ); +// $Id$ /** * Copyright 1999, 2000, 2001, 2002, 2003 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiDB/flatfile.php =================================================================== --- trunk/lib/WikiDB/flatfile.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiDB/flatfile.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id( '$Id$' ); +// $Id$ /** * Copyright 1999, 2005 $ThePhpWikiProgrammingTeam Modified: trunk/lib/WikiUser/AdoDb.php =================================================================== --- trunk/lib/WikiUser/AdoDb.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/AdoDb.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/BogoLogin.php =================================================================== --- trunk/lib/WikiUser/BogoLogin.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/BogoLogin.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/Db.php =================================================================== --- trunk/lib/WikiUser/Db.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/Db.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/EMailConfirm.php =================================================================== --- trunk/lib/WikiUser/EMailConfirm.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/EMailConfirm.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2006 ReiniUrban * Modified: trunk/lib/WikiUser/Facebook.php =================================================================== --- trunk/lib/WikiUser/Facebook.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/Facebook.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2009 Reini Urban * Modified: trunk/lib/WikiUser/File.php =================================================================== --- trunk/lib/WikiUser/File.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/File.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/Forbidden.php =================================================================== --- trunk/lib/WikiUser/Forbidden.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/Forbidden.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/FusionForge.php =================================================================== --- trunk/lib/WikiUser/FusionForge.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/FusionForge.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2006 Alain Peyrat * Modified: trunk/lib/WikiUser/HttpAuth.php =================================================================== --- trunk/lib/WikiUser/HttpAuth.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/HttpAuth.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/HttpAuthUpper.php =================================================================== --- trunk/lib/WikiUser/HttpAuthUpper.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/HttpAuthUpper.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004,2007 ReiniUrban * Modified: trunk/lib/WikiUser/IMAP.php =================================================================== --- trunk/lib/WikiUser/IMAP.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/IMAP.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 $ThePhpWikiProgrammingTeam * Modified: trunk/lib/WikiUser/LDAP.php =================================================================== --- trunk/lib/WikiUser/LDAP.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/LDAP.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004,2007 $ThePhpWikiProgrammingTeam * Modified: trunk/lib/WikiUser/LdapUpper.php =================================================================== --- trunk/lib/WikiUser/LdapUpper.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/LdapUpper.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2007,2009 Reini Urban * Modified: trunk/lib/WikiUser/OpenID.php =================================================================== --- trunk/lib/WikiUser/OpenID.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/OpenID.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2010 ReiniUrban * Zend_OpenId_Consumer parts from Zend licensed under Modified: trunk/lib/WikiUser/POP3.php =================================================================== --- trunk/lib/WikiUser/POP3.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/POP3.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 $ThePhpWikiProgrammingTeam * Modified: trunk/lib/WikiUser/PdoDb.php =================================================================== --- trunk/lib/WikiUser/PdoDb.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/PdoDb.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004, 2005 ReiniUrban * Modified: trunk/lib/WikiUser/PearDb.php =================================================================== --- trunk/lib/WikiUser/PearDb.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/PearDb.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/PersonalPage.php =================================================================== --- trunk/lib/WikiUser/PersonalPage.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/PersonalPage.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WikiUser/Session.php =================================================================== --- trunk/lib/WikiUser/Session.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WikiUser/Session.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright (C) 2004 ReiniUrban * Modified: trunk/lib/WysiwygEdit/FCKeditor.php =================================================================== --- trunk/lib/WysiwygEdit/FCKeditor.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WysiwygEdit/FCKeditor.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /** * FCKeditor is compatible with most internet browsers which * include: IE 5.5+ (Windows), Firefox 1.0+, Mozilla 1.3+ Modified: trunk/lib/WysiwygEdit/Wikiwyg.php =================================================================== --- trunk/lib/WysiwygEdit/Wikiwyg.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WysiwygEdit/Wikiwyg.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /** * Wikiwyg is compatible with most internet browsers which * include: IE 5.5+ (Windows), Firefox 1.0+, Mozilla 1.3+ Modified: trunk/lib/WysiwygEdit/htmlarea2.php =================================================================== --- trunk/lib/WysiwygEdit/htmlarea2.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WysiwygEdit/htmlarea2.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /** * requires installation into themes/default/htmlarea2/ * Output the javascript function to check for MS Internet Explorer >= 5.5 on Windows Modified: trunk/lib/WysiwygEdit/htmlarea3.php =================================================================== --- trunk/lib/WysiwygEdit/htmlarea3.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WysiwygEdit/htmlarea3.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /** * requires installation into themes/default/htmlarea3/ * MSIE => 5.5, Mozilla >= 1.3 Modified: trunk/lib/WysiwygEdit/tinymce.php =================================================================== --- trunk/lib/WysiwygEdit/tinymce.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/WysiwygEdit/tinymce.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /** * Multiple browser support, currently Mozilla (PC, Mac and Linux), * MSIE (PC) and FireFox (PC, Mac and Linux) and some limited Safari support. Modified: trunk/lib/fpdf/chinese.php =================================================================== --- trunk/lib/fpdf/chinese.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/fpdf/chinese.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ // PDF functions taken from FPDF http://www.fpdf.org Modified: trunk/lib/fpdf/japanese.php =================================================================== --- trunk/lib/fpdf/japanese.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/fpdf/japanese.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ // PDF functions taken from FPDF http://www.fpdf.org Modified: trunk/lib/pear/DB/Pager.php =================================================================== --- trunk/lib/pear/DB/Pager.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/pear/DB/Pager.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -25,8 +25,7 @@ // Based on DB_Pager 0.7 from the pear.php.net repository. // The only modifications made have been modification of the include paths. // -// rcs_id('$Id$'); -// rcs_id('From Pear CVS: Id: Pager.php,v 1.3 2002/05/12 13:59:40 cox Exp'); +// From Pear CVS: Id: Pager.php,v 1.3 2002/05/12 13:59:40 cox Exp require_once 'PEAR.php'; require_once 'DB.php'; Modified: trunk/lib/pear/DB/ldap.php =================================================================== --- trunk/lib/pear/DB/ldap.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/pear/DB/ldap.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -28,8 +28,7 @@ // Based on DB 1.3 from the pear.php.net repository. // The only modifications made have been modification of the include paths. // -// rcs_id('$Id$'); -// rcs_id('From Pear CVS: Id: ldap.php,v 1.9 2002/02/11 12:59:37 mj Exp'); +// From Pear CVS: Id: ldap.php,v 1.9 2002/02/11 12:59:37 mj Exp require_once 'DB/common.php'; define("DB_ERROR_BIND_FAILED", -26); Modified: trunk/lib/pear/PEAR.php =================================================================== --- trunk/lib/pear/PEAR.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/pear/PEAR.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -18,8 +18,8 @@ // | Tomas V.V.Cox <co...@id...> | // +----------------------------------------------------------------------+ // -// rcs_id('$Id$'); -// rcs_id('From Pear CVS: Id: PEAR.php,v 1.59 2003/04/03 23:10:10 ssb Exp'); +// $Id$ +// From Pear CVS: Id: PEAR.php,v 1.59 2003/04/03 23:10:10 ssb Exp // define('PEAR_ERROR_RETURN', 1); Modified: trunk/lib/wikilens/Buddy.php =================================================================== --- trunk/lib/wikilens/Buddy.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/wikilens/Buddy.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ // It is anticipated that when userid support is added to phpwiki, // this object will hold much more information (e-mail, Modified: trunk/lib/wikilens/CustomPrefs.php =================================================================== --- trunk/lib/wikilens/CustomPrefs.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/wikilens/CustomPrefs.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * Custom UserPreferences: Modified: trunk/lib/wikilens/PageListColumns.php =================================================================== --- trunk/lib/wikilens/PageListColumns.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/wikilens/PageListColumns.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2004 Mike Cassano Modified: trunk/lib/wikilens/RatingsDb.php =================================================================== --- trunk/lib/wikilens/RatingsDb.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/wikilens/RatingsDb.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * @author: Dan Frankowski (wikilens group manager), Reini Urban (as plugin) Modified: trunk/lib/wikilens/RatingsUser.php =================================================================== --- trunk/lib/wikilens/RatingsUser.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/wikilens/RatingsUser.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php //-*-php-*- -// rcs_id('$Id$'); +// $Id$ /* Copyright (C) 2004 Dan Frankowski * Copyright (C) 2010 Roger Guignard, Alcatel-Lucent * Modified: trunk/lib/wikilens/Utils.php =================================================================== --- trunk/lib/wikilens/Utils.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/lib/wikilens/Utils.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2004 Mike Cassano * Modified: trunk/tests/unit/lib/HtmlParserTest.php =================================================================== --- trunk/tests/unit/lib/HtmlParserTest.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/tests/unit/lib/HtmlParserTest.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /* Copyright (C) 2004, Reini Urban <ru...@x-...> */ Modified: trunk/tests/unit/lib/InlineParserTest.php =================================================================== --- trunk/tests/unit/lib/InlineParserTest.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/tests/unit/lib/InlineParserTest.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /* Copyright (C) 2004 Dan Frankowski <dfr...@cs...> * (C) 2006, 2007 Reini Urban <ru...@x-...> Modified: trunk/tests/unit/lib/XmlRpcTest.php =================================================================== --- trunk/tests/unit/lib/XmlRpcTest.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/tests/unit/lib/XmlRpcTest.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php -// rcs_id('$Id$'); +// $Id$ /* Copyright (C) 2007 Reini Urban */ Modified: trunk/themes/Crao/templates/actionbar.tmpl =================================================================== --- trunk/themes/Crao/templates/actionbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/actionbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ if (!$page->get('locked') || $user->isAdmin() and $revision) $EditB = Button("edit", $revision->isCurrent() ? _("Edit") : _("Edit Old Revision")); Modified: trunk/themes/Crao/templates/body.tmpl =================================================================== --- trunk/themes/Crao/templates/body.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/body.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <body<?php echo $WikiTheme->getMoreAttr('body') ?>> <div id="header"><?php // for top toolbars style sheet ?> Modified: trunk/themes/Crao/templates/bottom.tmpl =================================================================== --- trunk/themes/Crao/templates/bottom.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/bottom.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <!-- Add your Disclaimer here --> Modified: trunk/themes/Crao/templates/browse.tmpl =================================================================== --- trunk/themes/Crao/templates/browse.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/browse.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if ($revision and !$revision->isCurrent()) { ?> Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/editpage.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if (isset($PREVIEW_CONTENT)) { ?> <p><strong><?php echo _("Preview only! Changes not saved.")?></strong> Modified: trunk/themes/Crao/templates/head.tmpl =================================================================== --- trunk/themes/Crao/templates/head.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/head.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET?>" /> Modified: trunk/themes/Crao/templates/htmldump.tmpl =================================================================== --- trunk/themes/Crao/templates/htmldump.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/htmldump.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * This template is used only for html file dumps, and is responsible * mainly for the outer level <html> stuff and the and <head>. Modified: trunk/themes/Crao/templates/navbar.tmpl =================================================================== --- trunk/themes/Crao/templates/navbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/navbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <!-- The top navigation/search bar --> <form action="<?php echo WikiURL(_("TitleSearch"))?>" Modified: trunk/themes/Crao/templates/signin.tmpl =================================================================== --- trunk/themes/Crao/templates/signin.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/signin.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ if (empty($FORMNAME)) $FORMNAME = 'signin'; Modified: trunk/themes/Crao/templates/top.tmpl =================================================================== --- trunk/themes/Crao/templates/top.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/top.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ global $HIDE_TOOLBARS; if (!$HIDE_TOOLBARS) { Modified: trunk/themes/Crao/templates/wikiblog.tmpl =================================================================== --- trunk/themes/Crao/templates/wikiblog.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/templates/wikiblog.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php $CDATE = $WikiTheme->formatDateTime($BLOG_CTIME); Modified: trunk/themes/Crao/themeinfo.php =================================================================== --- trunk/themes/Crao/themeinfo.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Crao/themeinfo.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -6,7 +6,7 @@ exit; } -// rcs_id('$Id$'); +// $Id$ /* * This file defines the Crao theme of PhpWiki. Modified: trunk/themes/Hawaiian/lib/random.php =================================================================== --- trunk/themes/Hawaiian/lib/random.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Hawaiian/lib/random.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /** */ class randomImage { Modified: trunk/themes/Hawaiian/themeinfo.php =================================================================== --- trunk/themes/Hawaiian/themeinfo.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Hawaiian/themeinfo.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -6,7 +6,7 @@ exit; } -// rcs_id('$Id$'); +// $Id$ /** * WikiWiki Hawaiian theme for PhpWiki. Modified: trunk/themes/MacOSX/lib/RecentChanges.php =================================================================== --- trunk/themes/MacOSX/lib/RecentChanges.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MacOSX/lib/RecentChanges.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /* * Extensions/modifications to the stock RecentChanges (and PageHistory) format. */ Modified: trunk/themes/MacOSX/themeinfo.php =================================================================== --- trunk/themes/MacOSX/themeinfo.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MacOSX/themeinfo.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -6,7 +6,7 @@ exit; } -// rcs_id('$Id$'); +// $Id$ /** * A PhpWiki theme inspired by the Aqua appearance of Mac OS X. Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php //$p = $WikiTheme->tooltipAccessKeyPrefix(); Modified: trunk/themes/MonoBook/templates/body.tmpl =================================================================== --- trunk/themes/MonoBook/templates/body.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/body.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ // Todo: set the body attr dynamically. here class="ns-2" for mozilla ?> <body <?php echo $WikiTheme->getMoreAttr('body') ?>> Modified: trunk/themes/MonoBook/templates/browse-footer.tmpl =================================================================== --- trunk/themes/MonoBook/templates/browse-footer.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/browse-footer.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php // <hr class="printer" noshade="noshade" /> ?> <div class="visualClear"></div> Modified: trunk/themes/MonoBook/templates/browse.tmpl =================================================================== --- trunk/themes/MonoBook/templates/browse.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/browse.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if ($revision and !$revision->isCurrent()) { ?> Modified: trunk/themes/MonoBook/templates/editpage.tmpl =================================================================== --- trunk/themes/MonoBook/templates/editpage.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/editpage.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <div id="contentSub"></div> <?php echo Template("default/editpage") ?> Modified: trunk/themes/MonoBook/templates/info.tmpl =================================================================== --- trunk/themes/MonoBook/templates/info.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/info.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if (empty($revision)) $revision = $page->getCurrentRevision(false); Modified: trunk/themes/MonoBook/templates/logo.tmpl =================================================================== --- trunk/themes/MonoBook/templates/logo.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/logo.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <div class="portlet" id="p-logo"><a class="wikilink" href="<?php echo WikiURL(HOME_PAGE)?>"><img src="<?php echo $WikiTheme->getImageURL('logo') ?>" id="logo-img" alt="<?php echo fmt(_("%s: %s"), WIKI_NAME, HOME_PAGE) ?>" /></a></div> Modified: trunk/themes/MonoBook/templates/navbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/navbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/navbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php // With MonoBook it is similar to Sidebar, named boxes at the left. Modified: trunk/themes/MonoBook/templates/tags.tmpl =================================================================== --- trunk/themes/MonoBook/templates/tags.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/tags.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <!-- list of most popular categories --> <div class="portlet" id="p-tags"> Modified: trunk/themes/MonoBook/templates/top.tmpl =================================================================== --- trunk/themes/MonoBook/templates/top.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/top.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <!-- Page title --> <a id="top"></a> Modified: trunk/themes/MonoBook/templates/viewsource.tmpl =================================================================== --- trunk/themes/MonoBook/templates/viewsource.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/templates/viewsource.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p class="warning_msg"><strong><?php echo _("Note:")?></strong> Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/MonoBook/themeinfo.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -6,7 +6,7 @@ exit; } -// rcs_id('$Id$'); +// $Id$ /** * The new mediawiki (Wikipedia.org) default style. * Mediawiki 'monobook' style sheet for CSS2-capable browsers. Modified: trunk/themes/Portland/lib/RecentChanges.php =================================================================== --- trunk/themes/Portland/lib/RecentChanges.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/lib/RecentChanges.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,4 +1,4 @@ -<?php // rcs_id('$Id$'); +<?php // $Id$ /* * Extensions/modifications to the stock RecentChanges (and PageHistory) format. */ Modified: trunk/themes/Portland/templates/actionbar.tmpl =================================================================== --- trunk/themes/Portland/templates/actionbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/actionbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if ($revision and (!$page->get('locked') || $user->isAdmin())) Modified: trunk/themes/Portland/templates/body.tmpl =================================================================== --- trunk/themes/Portland/templates/body.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/body.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <body<?php echo $WikiTheme->getMoreAttr('body') ?>> <!-- Page title and logo --> Modified: trunk/themes/Portland/templates/browse.tmpl =================================================================== --- trunk/themes/Portland/templates/browse.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/browse.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <br class="clear-floats" /> Modified: trunk/themes/Portland/templates/debug.tmpl =================================================================== --- trunk/themes/Portland/templates/debug.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/debug.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php global $RUNTIMER; ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/editpage.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php /* * FIXME: Hack! Modified: trunk/themes/Portland/templates/navbar.tmpl =================================================================== --- trunk/themes/Portland/templates/navbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/navbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <!-- The bottom navigation/search bar --> Modified: trunk/themes/Portland/templates/viewsource.tmpl =================================================================== --- trunk/themes/Portland/templates/viewsource.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/templates/viewsource.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p class="warning_msg"><strong><?php echo _("Note:")?></strong> Modified: trunk/themes/Portland/themeinfo.php =================================================================== --- trunk/themes/Portland/themeinfo.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Portland/themeinfo.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -6,7 +6,7 @@ exit; } -// rcs_id('$Id$'); +// $Id$ /* * This file defines an appearance ("theme") of PhpWiki similar to the Portland Pattern Repository. Modified: trunk/themes/Sidebar/clock.php =================================================================== --- trunk/themes/Sidebar/clock.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/clock.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php - // rcs_id('$Id$'); + // $Id$ $ora = isset($GLOBALS['WikiTheme']) ? DATA_PATH . '/' . $GLOBALS['WikiTheme']->_findFile("ora.swf") : "ora.swf"; ?> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="160" height="160" align="middle"> Modified: trunk/themes/Sidebar/hyperapplet.php =================================================================== --- trunk/themes/Sidebar/hyperapplet.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/hyperapplet.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php - // rcs_id('$Id$'); + // $Id$ /* Download hyperapplet.jar (or hyperwiki.jar) and GraphXML.dtd from * http://hypergraph.sourceforge.net/download.html * and place it into your theme directory. Modified: trunk/themes/Sidebar/hyperwiki.php =================================================================== --- trunk/themes/Sidebar/hyperwiki.php 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/hyperwiki.php 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php - // rcs_id('$Id$'); + // $Id$ /* Download hyperwiki.jar and GraphXML.dtd from * http://hypergraph.sourceforge.net/download.html * and place it into your theme directory. Modified: trunk/themes/Sidebar/templates/actionbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/actionbar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/templates/actionbar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ $dbh = $request->getDbh(); $isAdmin = $user->isAdmin(); $pagename = $page->getName(); Modified: trunk/themes/Sidebar/templates/body.tmpl =================================================================== --- trunk/themes/Sidebar/templates/body.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/templates/body.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ // Set the body attr dynamically. here class="ns-2" for Mozilla ?> <body <?php echo $WikiTheme->getMoreAttr('body') ?>> Modified: trunk/themes/Sidebar/templates/calendar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/calendar.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/templates/calendar.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <div id="calendar"></div> <?php echo JavaScript(' Modified: trunk/themes/Sidebar/templates/content.tmpl =================================================================== --- trunk/themes/Sidebar/templates/content.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/templates/content.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php echo $CONTENT ?> </body> Modified: trunk/themes/Sidebar/templates/debug.tmpl =================================================================== --- trunk/themes/Sidebar/templates/debug.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/templates/debug.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ ?> <?php global $RUNTIMER; ?> <table width="%100" border="0" cellpadding="0" cellspacing="0"> Modified: trunk/themes/Sidebar/templates/dump-footer.tmpl =================================================================== --- trunk/themes/Sidebar/templates/dump-footer.tmpl 2011-03-03 16:41:35 UTC (rev 7955) +++ trunk/themes/Sidebar/templates/dump-footer.tmpl 2011-03-03 17:08:31 UTC (rev 7956) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ if (empty($revision)) $revision = $page->getCurrentRevision(); ?> <hr ... [truncated message content] |