From: <car...@us...> - 2025-02-15 05:50:42
|
Revision: 11110 http://sourceforge.net/p/phpwiki/code/11110 Author: carstenklapp Date: 2025-02-15 05:50:41 +0000 (Sat, 15 Feb 2025) Log Message: ----------- fix usemod url Modified Paths: -------------- trunk/lib/RssWriter2.php trunk/pgsrc/WikiAdminSelect Modified: trunk/lib/RssWriter2.php =================================================================== --- trunk/lib/RssWriter2.php 2025-02-15 05:18:08 UTC (rev 11109) +++ trunk/lib/RssWriter2.php 2025-02-15 05:50:41 UTC (rev 11110) @@ -34,7 +34,7 @@ * A class for writing RSS 2.0 with xml-rpc notifier * * @see http://blogs.law.harvard.edu/tech/rss, - * http://www.usemod.com/cgi-bin/mb.pl?ModWiki + * http://www.usemod.org/cgi-bin/mb.pl?ModWiki * no namespace! * http://sourceforge.net/mailarchive/forum.php?thread_id=4872845&forum_id=37467 */ Modified: trunk/pgsrc/WikiAdminSelect =================================================================== --- trunk/pgsrc/WikiAdminSelect 2025-02-15 05:18:08 UTC (rev 11109) +++ trunk/pgsrc/WikiAdminSelect 2025-02-15 05:50:41 UTC (rev 11110) @@ -1,8 +1,9 @@ -Date: Fri, 16 Dec 2022 15:26:20 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Sat, 15 Feb 2025 03:11:50 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=WikiAdminSelect; flags=PAGE_LOCKED; + author=The%20PhpWiki%20Team; acl="view:_AUTHENTICATED,-_EVERY; list:_AUTHENTICATED,-_EVERY"; charset=UTF-8 Content-Transfer-Encoding: binary This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-15 21:01:00
|
Revision: 11111 http://sourceforge.net/p/phpwiki/code/11111 Author: carstenklapp Date: 2025-02-15 21:00:58 +0000 (Sat, 15 Feb 2025) Log Message: ----------- configurator.php is now in a semi-unbroken state. Useable but needs more work. Modified Paths: -------------- trunk/config/config-default.ini trunk/configurator.php trunk/pgsrc/ReleaseNotes Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2025-02-15 05:50:41 UTC (rev 11110) +++ trunk/config/config-default.ini 2025-02-15 21:00:58 UTC (rev 11111) @@ -113,3 +113,5 @@ PLUGIN_CACHED_USECACHE = true PLUGIN_CACHED_FORCE_SYNCMAP = true PLUGIN_CACHED_IMGTYPES = "png|gif|gd|gd2|jpeg|wbmp|xbm|xpm" +ADMIN_USER = "AdminUser" +ADMIN_PASSWD = "password" Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2025-02-15 05:50:41 UTC (rev 11110) +++ trunk/configurator.php 2025-02-15 21:00:58 UTC (rev 11111) @@ -143,7 +143,7 @@ unset($_SERVER['PHP_AUTH_USER']); unset($_SERVER['PHP_AUTH_PW']); - trigger_error("Permission denied. Require ADMIN_USER.", E_USER_ERROR); + trigger_error("Permission denied. Existing ADMIN_USER credentials required. Alteranely rename config.ini to generate a new one.", E_USER_ERROR); exit(); } } @@ -172,8 +172,15 @@ } // check password if (ENCRYPTED_PASSWD) { - if (crypt($admin_pw, ADMIN_PASSWD) != ADMIN_PASSWD) { - _http_logout(); + if (!function_exists('DEBUGpassword_hash')) { + if (crypt($admin_pw, ADMIN_PASSWD) != ADMIN_PASSWD) { + _http_logout(); + } + } else { + $verified=password_verify($admin_pw, ADMIN_PASSWD); + if (!$verified) { + _http_logout(); + } } } elseif ($admin_pw != ADMIN_PASSWD) { _http_logout(); @@ -354,8 +361,19 @@ <h1>Configuration for PhpWiki <?php echo $config_file ?></h1> <div class="hint"> - Using this configurator.php is experimental!<br/> - On any configuration problems, please edit the resulting config.ini manually. + <p>Using this configurator.php is experimental!</p> + <p>On any configuration problems, please edit the resulting config.ini + manually. If one is not created, copy config-dist.ini to config.ini and + edit that.</p> + <p>This file currently has problems with:</p> + <ul> + <li>Handling Windows pathnames (use forward slashes /)</li> + <li>Editing existing config.ini file is currently not possible. Rename it + to generate a new one, or edit it manually.</li> + <li>Php crypt() function fails sometimes and returns *0 or *1 as the + password. In that case run passencrypt.php to generate a new password + and manually paste it into config.ini.</li> + </ul> </div> <?php @@ -1450,8 +1468,19 @@ $properties["Data Path"] = new _define_commented_optional('DATA_PATH', dirname($scriptname)); + + if (defined('PHPWIKI_DIR')) { + $phpwiki_dir = PHPWIKI_DIR; + } else { + if (substr(PHP_OS, 0, 3) == 'WIN') { + $phpwiki_dir = dirname(__FILE__); + $phpwiki_dir = strtr($phpwiki_dir, '\\', '/'); + } else { + $phpwiki_dir = dirname(__FILE__); + } + } $properties["PhpWiki Install Directory"] = - new _define_commented_optional('PHPWIKI_DIR', dirname(__FILE__)); + new _define_commented_optional('PHPWIKI_DIR', $phpwiki_dir); $properties["Use PATH_INFO"] = new _define_selection_optional_commented( @@ -1506,7 +1535,11 @@ $upload_data_path = defined('UPLOAD_DATA_PATH') ? UPLOAD_DATA_PATH : getUploadDataPath(); new _define_optional('UPLOAD_DATA_PATH', $temp); -$temp = !empty($_ENV['TEMP']) ? $_ENV['TEMP'] : "/tmp"; +$temp = !empty($_ENV['TEMP']) ? $_ENV['TEMP'] : "/tmp";//fixme: check for existing TEMP_DIR constant + +if (substr(PHP_OS, 0, 3) == 'WIN') { + $temp = strtr($temp, '\\', '/'); +} $properties["TEMP_DIR"] = new _define_optional('TEMP_DIR', $temp); @@ -1514,7 +1547,7 @@ new _define_commented_optional( 'ALLOWED_LOAD', '/tmp', - 'List of directories from which it is allowed to load pages. Directories are separated with ":"' + ';List of directories from which it is allowed to load pages. Directories are separated with ":"' ); /////////////////// @@ -2060,6 +2093,15 @@ $p .= "\n;ENCRYPTED_PASSWD = true"; return $p; } else { + // generate an encrypted password + $crypt_pass = $this->__makeencrypted($posted_value); + $p = "$n" . $this->_config_format($crypt_pass); + return $p . "\nENCRYPTED_PASSWD = true"; + } + } + private function __makeencrypted($password) + { + if (!function_exists('DEBUGpassword_hash')) { $salt_length = max( CRYPT_SALT_LENGTH, 2 * CRYPT_STD_DES, @@ -2068,11 +2110,14 @@ 16 * CRYPT_BLOWFISH ); // generate an encrypted password - $crypt_pass = crypt($posted_value, rand_ascii($salt_length)); - $p = "$n" . $this->_config_format($crypt_pass); - return $p . "\nENCRYPTED_PASSWD = true"; + $crypt_pass = crypt($password, rand_ascii($salt_length)); + return $crypt_pass; + } else { + $crypt_pass = password_hash($password, PASSWORD_DEFAULT); + return $crypt_pass; } } + } class _define_password_optional extends _define_password @@ -2526,19 +2571,17 @@ $config .= $end; - if (is_writable($fs_config_file)) { - // We first check if the config-file exists. - if (file_exists($fs_config_file)) { - // We make a backup copy of the file - $new_filename = preg_replace('/\.ini$/', '-' . time() . '.ini', $fs_config_file); - if (@copy($fs_config_file, $new_filename)) { - $fp = @fopen($fs_config_file, 'w'); - } - } else { - $fp = @fopen($fs_config_file, 'w'); + $new_filename=''; + // We first check if the config-file exists. + if (file_exists($fs_config_file)) { + // We make a backup copy of the file + $new_filename = preg_replace('/\.ini$/', '-' . time() . '.ini', $fs_config_file); + if (copy($fs_config_file, $new_filename)) { + $fp = fopen($fs_config_file, 'w'); } } else { - $fp = false; + $fp = fopen($fs_config_file, 'w'); + } if ($fp) { @@ -2550,7 +2593,7 @@ } } else { echo "<p>The configuration file could <b>not</b> be written.<br />\n", - "You should copy the above configuration to a file, ", + "You should copy the below configuration to a file, ", "and manually save it as <code><b>config/config.ini</b></code>.</p>\n"; } Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-15 05:50:41 UTC (rev 11110) +++ trunk/pgsrc/ReleaseNotes 2025-02-15 21:00:58 UTC (rev 11111) @@ -1,4 +1,4 @@ -Date: Sat, 15 Feb 2025 04:58:20 +0000 +Date: Sat, 15 Feb 2025 20:52:36 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -49,6 +49,7 @@ - Added dumpsvn action, mainly for developers and translators of pgsrc files. - Fixed filenames sometimes not being urlencoded properly. - Improved filtering of unknown page metadata being loaded into database. +* configurator.php is now in a less-unbroken state. Useable but needs more work. == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-16 00:36:22
|
Revision: 11113 http://sourceforge.net/p/phpwiki/code/11113 Author: carstenklapp Date: 2025-02-16 00:36:19 +0000 (Sun, 16 Feb 2025) Log Message: ----------- use unix line endings for pagedumps Modified Paths: -------------- trunk/lib/loadsave.php trunk/lib/mimelib.php trunk/pgsrc/ReleaseNotes Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2025-02-15 21:03:33 UTC (rev 11112) +++ trunk/lib/loadsave.php 2025-02-16 00:36:19 UTC (rev 11113) @@ -135,34 +135,35 @@ { $current = $page->getCurrentRevision(false); $head = ''; + $LE = "\n"; // "\r\n" if (defined('STRICT_MAILABLE_PAGEDUMPS') and STRICT_MAILABLE_PAGEDUMPS) { $from = defined('SERVER_ADMIN') ? SERVER_ADMIN : 'foo@bar'; //This is for unix mailbox format: (not RFC (2)822) - // $head .= "From $from " . CTime(time()) . "\r\n"; - $head .= "Subject: " . rawurlencode($page->getName()) . "\r\n"; - $head .= "From: $from (PhpWiki)\r\n"; + // $head .= "From $from " . CTime(time()) . $LE; + $head .= "Subject: " . rawurlencode($page->getName()) . $LE; + $head .= "From: $from (PhpWiki)" . $LE; // RFC 2822 requires only a Date: and originator (From:) // field, however the obsolete standard RFC 822 also // requires a destination field. - $head .= "To: $from (PhpWiki)\r\n"; + $head .= "To: $from (PhpWiki)" . $LE; } if (!$forsvn) { // normal dumps use date modified - $head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . "\r\n"; + $head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . $LE; } else { $use_page_creationdate_instead = 0; if ($use_page_creationdate_instead) { - $head .= "Date: " . Rfc2822DateTime($page->get('date')) . "\r\n"; + $head .= "Date: " . Rfc2822DateTime($page->get('date')) . $LE; // for special pagedumps where you don't want to change the date // in dumped pgsrc, use creation date } else { // normal dumps use date modified - $head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . "\r\n"; + $head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . $LE; } } $head .= sprintf( - "Mime-Version: 1.0 (Produced by PhpWiki %s)\r\n", + "Mime-Version: 1.0 (Produced by PhpWiki %s)" . $LE, PHPWIKI_VERSION ); Modified: trunk/lib/mimelib.php =================================================================== --- trunk/lib/mimelib.php 2025-02-15 21:03:33 UTC (rev 11112) +++ trunk/lib/mimelib.php 2025-02-16 00:36:19 UTC (rev 11113) @@ -36,6 +36,7 @@ */ function QuotedPrintableEncode($string) { + $LE = "\n"; // "\r\n" // Quote special characters in line. $quoted = ""; while ($string) { @@ -50,10 +51,10 @@ // Split line. // This splits the line (preferably after white-space) into lines // which are no longer than 76 chars (after adding trailing '=' for - // soft line break, but before adding \r\n.) + // soft line break, but before adding $LE.) return preg_replace( '/(?=.{77})(.{10,74}[ \t]|.{71,73}[^=][^=])/s', - "\\1=\r\n", + "\\1=" . $LE, $quoted ); } @@ -74,6 +75,7 @@ function MimeContentTypeHeader($type, $subtype, $params) { + $LE = "\n"; // "\r\n" $header = "Content-Type: $type/$subtype"; reset($params); foreach ($params as $key => $val) { @@ -81,13 +83,14 @@ if (!preg_match('/^' . MIME_TOKEN_REGEXP . '$/', $val)) { $val = '"' . addslashes($val) . '"'; } - $header .= ";\r\n $key=$val"; + $header .= ";$LE $key=$val"; } - return "$header\r\n"; + return "$header" . $LE; } function MimeMultipart($parts) { + $LE = "\n"; // "\r\n" global $mime_multipart_count; // The string "=_" cannot occur in quoted-printable encoded data. @@ -99,9 +102,9 @@ array('boundary' => $boundary) ); - $sep = "\r\n--$boundary\r\n"; + $sep = $LE . "--$boundary" . $LE; - return $head . $sep . implode($sep, $parts) . "\r\n--{$boundary}--\r\n"; + return $head . $sep . implode($sep, $parts) . $LE . "--{$boundary}--" . $LE; } /** @@ -135,6 +138,7 @@ function MimeifyPageRevision(&$page, &$revision, $forsvn) { + $LE = "\n"; // "\r\n" // $wikidb =& $revision->_wikidb; // $page = $wikidb->getPage($revision->getName()); // FIXME: add 'hits' to $params @@ -221,11 +225,11 @@ $out = MimeContentTypeHeader('application', 'x-phpwiki', $params); $out .= sprintf( - "Content-Transfer-Encoding: %s\r\n", + "Content-Transfer-Encoding: %s" . $LE, STRICT_MAILABLE_PAGEDUMPS ? 'quoted-printable' : 'binary' ); - $out .= "\r\n"; + $out .= $LE; foreach ($revision->getContent() as $line) { // This is a dirty hack to allow saving binary text files. See above. @@ -233,7 +237,7 @@ if (STRICT_MAILABLE_PAGEDUMPS) { $line = QuotedPrintableEncode(rtrim($line)); } - $out .= "$line\r\n"; + $out .= "$line" . $LE; } return $out; } Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-15 21:03:33 UTC (rev 11112) +++ trunk/pgsrc/ReleaseNotes 2025-02-16 00:36:19 UTC (rev 11113) @@ -1,1223 +1,1225 @@ -Date: Sat, 15 Feb 2025 20:52:36 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) -Content-Type: application/x-phpwiki; - pagename=ReleaseNotes; - flags=PAGE_LOCKED; - author=The%20PhpWiki%20Team; - charset=UTF-8 -Content-Transfer-Encoding: binary - -<<CreateToc with_toclink||=1 headers||=1,2,3 width=300px position=right>> - -== 1.6.5 2025-XX-XX Marc-Etienne Vargenau, Carsten Klapp == - -* Upgrade PEAR to release 1.10.16, PEAR DB to release 1.12.2 -* Readme for basic Windows 11 install instructions. -* Complete rewrite of ~SpaceWiki theme using modern css. -* passencrypt.php: Improved password encryption and random pw generation. - Added copy to clipboard buttons. -* Updated ##.htaccess## files to work with Apache 2.4. Will still work with - older versions but requires mod_version module which is available in - Apache 2.0.56 and later. -* Minor updates to Hawaiian theme and Portland theme. -* Fixed MacOSX theme buttons not loading, other visual improvements and - RecentChanges uses a table now. -* Improved formatting output for debugging, adjusted code for themes - which depend on default theme. Added signature template. This can be - disabled by adding this line to themeinfo.php: - ##$this->addImageAlias('signature', false);## -* Added 404 error to ~HttpClient.php which is displayed now in - ~PhotoAlbumPlugin. Removed url of defunct example website that broke - PhpWikiManual. -* **Important bugfix for PHP8.3 and newer:** Fixed garbled display of pages - due to depreciated errors. Also try harder to suppress depreciated errors on - all PHP versions. Set ##DEBUG=2## in ##config.ini## to view depreciated - errors, and ##DEBUG=1## for basic errors. Added hooks for css formatting of - depreciated errors. -* Improvements and bugfixes to loading and saving pages to filedumps: - - fixed download of individual dump files stalling in chrome (must always - click resume). - - fixed page lock status not always loading, especially for virgin wiki. - - Security: Prevented unlocking existing page when loading dumped file - without lock flag. - - Security: Page hits and acl are only loaded when page doesn't exist in - database. To do a complete restore of a page, delete it first. - - Fixed page metadata changes incorrectly being applied to database when - attempting to load a file and it was skipped. - - When a file is loaded the status now reports the loaded page lock status. - - Removed invalid http headers. - - Added dumpsvn action, mainly for developers and translators of pgsrc files. - - Fixed filenames sometimes not being urlencoded properly. - - Improved filtering of unknown page metadata being loaded into database. -* configurator.php is now in a less-broken state. Useable but needs more work. - -== 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == - -* Upgrade PEAR to relase 1.10.14, PEAR DB to release 1.12.1 -* Check for "shell_exec" before using it (Christof Meerwald) -* Improve RSS (Christof Meerwald) -* Add support for SQLite in PDO, add support for SQLite3 in PEAR (Christof Meerwald) - -== 1.6.3 2023-11-15 Marc-Etienne Vargenau == - -This is a bug-fix release. - -It fixes a bug in ~ExternalReferrer with PHP 8.2. -Reported by Thom Jeera. - -== 1.6.2 2023-07-13 Marc-Etienne Vargenau == - -PhpWiki 1.6.2 is the last release compatible with PHP 5. -It should work for all PHP releases from 5.3.3 to 8.2.x. -PhpWiki 1.7.0 will require at least PHP 7.4. - -=== Fixes === -* Make renaming of pages work for DATABASE_TYPE = PDO and file. -* Make WantedPages work for DATABASE_TYPE = dba and file -* Back links now work when the link is inside a table, in a template or in an included page. - -=== Misc === -* Add SourceForge Open Source Excellence badge to footer - -== 1.6.1 2022-01-24 Marc-Etienne Vargenau == - -This release makes ~PhpWiki compatible with PHP 8.1. -##READONLY## is renamed as ##ISREADONLY##, since ##readonly## is now a keyword in PHP 8.1. - -=== Fixes === -* Make list of pages work with PDO (~AllPages, ~MostPopular...). -* Better handling of theme change in ~UserPreferences. -* In DATABASE_TYPE = file, do not update metadata if page does not exist (reported by Harold Hallikainen). -* Make the toolbar image button work when ##UPLOAD_USERDIR## is set. -* blog theme improved. - -=== Changes === -* Warn user that leaving the page will lose modifications. -* Add button to create the page if it does not exist. -* TOOLBAR_IMAGE_PULLDOWN is true by default. -* Remove ADODB DATABASE_TYPE. Use SQL (Pear) or PDO. -* Add “Rename” tab in Sidebar theme. -* Page locking and unlocking is now saved in page history (in Edit mode). -* Add sample images for ~PhotoAlbum in blog theme. -* Remove EDITING_POLICY -* Remove ENABLE_XHTML_XML -* Remove USECACHE, always true -* More translations - -=== Plugins === -* Chart plugin: new argument “legend” -* UpLoad plugin: allow more filenames (e.g. with Chinese characters) -* ~PreferencesInfo plugin removed -* ~CategoryPage plugin removed, categories are better created with the button in the toolbar -* ~RecentChangesCached plugin removed, ~RecentChanges plugin is fast enough - -== 1.6.0 2021-08-12 Marc-Etienne Vargenau == - -Major release: -* PHP 7 and 8 compatible (works from PHP 5.3.3 to PHP 8.0) -* Full HTML 5: Add HTML 5 <main> <header> <footer> <nav> in all themes. Add ARIA roles. -* Flash is dead -* Internet Explorer is dead - -=== Fixes === -* Make function IsSafeURL more strict -* Make XHTML ZIP Snapshot work again (broken since ~PhpWiki 1.5.3) -* It was possible to rename a page to a name with illegal characters, like ~[~] -* Better handling of page names with slash -* Remove wrong calls to setTightness in ##lib/~InlineParser.php## (bug reported by Harold Hallikainen) -* Importing a ZIP from an old wiki in Latin 1 (ISO 8859-1) failed. Reported by Frank Michael. -* Better check arguments for ~GoogleMaps plugin -* Revert Subversion commit 9111, bad side effects; re-opening Bug#607 BackLinks do not work inside a ~RichTable -* Security fixes - -=== Changes === -* All revisions are kept. -* Add new button in Edit Toolbar: convert Tab Separated Values to Wikicreole table -* Update jQuery to 2.2.4 -* Pear: use ##mysqli## instead of ##mysql## -* Update PEAR.php to release 1.10.12 -* Update Pear DB library to 1.10.0 -* Update Pear Cache library to 1.5.6 -* Update Adodb to version 5.20.19 -* Update ASCIIMathPHP to version 2.1 (from Zefling/ASCIIMathPHP on github.com) -* Update highlight.js to version 9.15.6 -* Allow Wikicreole syntax for plugins in theme templates -* Valid HTML5 and CSS3 logos (in debug mode) -* Better is_localhost() function (allow IPv6, allow Windows IIS). Patch by Thierry Nabeth. -* Remove Fusionforge-specific files (g view.php wikiadmin.php wikilist.php) -* Remove USE_SAFE_DBSESSION (always true), DISABLE_HTTP_REDIRECT -* PDO patch by Sébastien Le Callonnec -* Updated pgsrc pages in all languages -* Adding SPDX-License-Identifier in PHP source files - -=== Plugins === -* ~UpLoad plugin: put date and author in history -* ~UpLoad plugin: don't inline images -* ~PhpWeather removed, uses deprecated mysql functions -* ~HtmlConverter plugin: check file is encoded in UTF-8; ~HtmlConverter plugin allowed in Fusionforge -* Use jquery.autoheight.js plugin for Transclude plugin -* Repair [[Help:PhotoAlbumPlugin|PhotoAlbumPlugin]] -* Rename action page ~DebugInfo as ~DebugBackendInfo (to be consistent with plugin name) -* Better check boolean arguments in plugins - -== 1.5.5 2015-12-11 Marc-Etienne Vargenau == - -* Fix tooltip translation in ~CreateToc plugin -* Remove access keys -* Check MAX_PAGENAME_LENGTH in CreatePage -* Fix fatal database error with multiple comma-delimited sortby args -* Remove forbidden characters: ~<~>~[~]~{~}~"~|~# from pagename -* New property: ALLOWED_LOAD giving list of directories from which it is allowed to load pages. -* Upload~: replace multiple spaces by single space -* Make functions merged and is_conflict public in lib/diff3.php (support request #162) - -== 1.5.4 2015-06-29 Marc-Etienne Vargenau == - -* Fix ~WantedPages for Fusionforge -* Remove ~WantedPagesOld (use ~WantedPages instead) -* Add WebM format in Video plugin -* Update jscalendar to 1.0 -* Remove Width and Height preferences modification in Edit Toolbar -* New icons in Edit Toolbar -* Make static templates in Edit Toolbar work -* Fix memory_limit for WIKI_SOAP -* Remove ~MockRequest -* Update jquery to 1.11.3 - -== 1.5.3 2015-03-04 Marc-Etienne Vargenau == - -* Fix Bug#648 Call to protected method -* easier file upload: forbidden characters in filename are replaced by dashes (instead of rejecting upload) -* improve handling of image insertion icon in edit toolbar (icon did not always appear after image uploading) -* bigger wikipaging font -* test again for function 'posix_times', it does not exist on Windows (reported by jdebert) -* remove FPDF, lib/gif.php, lib/font (were not used) -* rename plugin _Retransform to ~DebugRetransform -* use PHP ZIP class instead of home-made functions. ziplib renamed to mimelib -* add SOAP scripts -* rename FCKeditor to CKeditor -* load theme pgsrc, if it exists -* SUBPAGE_SEPARATOR removed, it must be '/' -* RateIt plugin for Fusionforge -* remove acdropdown and livesearch -* remove CVS backend - -== 1.5.2 2014-10-10 Marc-Etienne Vargenau == - -This is a security fix release. -* Fix CVE-2014-5519: vulnerability in Ploticus plugin. [[http://www.cvedetails.com/cve/CVE-2014-5519/]] - -This vulnerability is present in ~PhpWiki 1.5.0 and 1.5.1. All users are advised to upgrade to ~PhpWiki 1.5.2. - -== 1.5.1 2014-10-02 Marc-Etienne Vargenau == - -* fix Bug#456 'Optimizing Database' message sometimes printed on page -* remove ~FrameInclude plugin (frames are not supported in HTML 5) -* sort tables with [[http://tablesorter.com|tablesorter jQuery plugin]] instead of sortable.js -* fix Bug#636 Recursive include is not trapped -* fix Bug#647 undefined method {{{WikiDB_backend_dba::WikiDB_backend_dbaBase}}} -* correct total number of pages for AllPagesCreatedByMe, AllPagesOwnedByMe, AllPagesLastEditedByMe -* fix Bug#607 BackLinks do not work inside a [[Help:RichTablePlugin|RichTable]] -* fix Bug#646 Wrong number of links in BackLinks -* make <includeonly> work -* remove old ~WikiUser code (ENABLE_USER_NEW) -* admin always has rights to see and modify pages, regardless of ACLs, to avoid locking himself out -* add missing images in Sidebar theme - -== 1.5.0 2014-07-29 Marc-Etienne Vargenau == - -=== Main Changes === -* ~PhpWiki 1.5.0 needs at least PHP 5.3. It is compatible with PHP 5.3, 5.4 and 5.5. -* One single wiki markup, based on Wikicreole and compatible with classic phpWiki markup. -* Full HTML 5 and CSS 3. A modern browser is needed. -* Full UTF-8. - -=== Other Changes === -* Fix bad display in Toolbox menu (Sidebar and Monobook themes) reported by Harold Hallikainen -* Fix Captcha problem reported by Harold Hallikainen -* Merge ~OldTextFormattingRules into ~TextFormattingRules -* ~SyntaxHighlighter plugin is now implemented with [[http://highlightjs.org/]] instead of [[http://www.andre-simon.de]]. -* Chmod action is removed. -* New action: ~DeleteAcl -* Updated documentation pages in pgsrc. -* Updated translations. - -== 1.4.0 2014-07-25 Reini Urban, Marc-Etienne Vargenau, Sabri Labbenes, Sébastien Le Callonnec == - -~PhpWiki 1.4.0 is the same as ~PhpWiki 1.4.0RC1. It is the last release compatible with PHP 4. - -== 1.4.0RC1 2010-09-17 Reini Urban, Marc-Etienne Vargenau, Sabri Labbenes, Sébastien Le Callonnec == - -This is a new major release, where everything changed from 1.2, and lots of changes since 1.3.14. - -An important modification in this release is the implementation -of full Wikicreole 1.0 syntax, including additions. - -The "classic" Phpwiki syntax is still supported. - -The documentation pages found in pgsrc have been mostly converted to UTF-8 and -Wikicreole syntax (with the addition of tables in Mediawiki syntax, since Wikicreole 1.0 -does not support "complex" tables with block elements in cells, like lists or -paragraphs). - -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 fusionforge theme is to be used together with [[http://fusionforge.org|FusionForge]] (the successor of Gforge). - -=== Fixes === -* fix ~PagePerm for multiple groups: not a member and undecided: check other groups -* fix rss button actions for special RecentChanges actions (UserContribs, PageHistory, ...) -* fix Bug#1749950 accesslog SQL duration float with "," -* fix template inclusion with a recursion cycle leading to crashes in blog PageInfo -* removed dynamic features from htmldump pages for more static pleasure -* ignore fatals and access-denied stowstoppers on multi-page dumps -* link only to existing pages on multi-page dumps (pagesets) -* fix Bug#1795420 by Sven Ginka: Use /U in preg_match -* ensure ending uploads slash even on user provided UPLOAD constants. Fixes plugin/~UpLoad -* stabilize Comment. substring search for basepages, do not tokenize. -* fix Bug#1792170 Handle " ( " or "(test" without closing ")" as plain word. Allow single string token "0" -* fix Bug#1752172 undefined method {{{TextSearchQuery_node_or::_sql_quote()}}} -* dba: fix sorting for empty mtime field -* ~LdapSearch: fix layout and logic -* ~FileInfo: fix ##Upload~:## links -* XHTML validation corrections (vargenau) -* avoid recursive modification when renaming a page like '~PageFoo to '~PageFooTwo' (vargenau) -* fix Bug#1808002 Table of contents plugin does not nest numbering (vargenau) -* fix Bug#1903815 Cannot put "0" in ~RichTable cell, cell becomes empty (vargenau) -* fix Bug#1904088 Some brackets links with \n cause the parser to crash -* fixed incorrect numbering in Table of Contents numbering (vargenau) -* fix Bug#1967147 ~FileInfoPlugin does not allow display=owner -* fix Bug#1992172 Interwiki link does not work in ~RichTable (vargenau) -* fix Bug#2010748 Missing image -* fix Bug#1831881 Fatal database error when sorting columns (vargenau) -* fix ~PageList prev/next links on multi-columns lists, improve handling of ordered lists - fixed slicing with list-based backends (dba, file). -* allow single "0" as not-empty page content -* fix action=rename, support new optional argument to=newpagename -* fix multiple USER_AUTH_METHOD where the first method did not succeed. - -=== Changes === -- changed ~SemanticSearch query semantics: all regex=auto terms with no regex chars (.+*?^$") - will be searched exact, and not with regex=auto. This means no word splitting, no substrings. -* ranked search for title and fulltext for non-SQL backends. Simple score function. -* allow comments in ~WikiGroup lists after username -* aesthetic request: remove ?action=edit after edit -* create interim pages as minor not see them in RecentChanges -* default theme: use standard search template (~LiveSearch) -* [[Help:CalendarPlugin]] changed default start_wday from 0 to 1 (Monday) -* [[Help:CalendarListPlugin]] pages now in parallel with Calendar: year + month args as start base. - The behaviour before 2007 with last/next_n_days was to start now. -* removed fpdf support. only use external converters -* change rename action from access perm change to edit: allow the signed-in user to rename. -* htmldump copies locally uploaded images also -* improve SemanticRelations layout: direct links, support attributes and relations filters -* ~LdapSearch: use default basedn -* WhoIsOnline cleans stale sessions -* remove Upload button from edit -* changed Wikiwyg editor workflow (labbenes) -* allow <s> to strike; update Help for <s> and <strike> (vargenau) -* ~RichTable plugin: enrich syntax for attributes (vargenau) -* more icons for toolbar (vargenau) -* UserPreferences: specific message when only one preference is updated (vargenau) -* renamed class Theme to ~WikiTheme to avoid Gforge name clash (vargenau) -* numeric cells in tables are now right-aligned by default (vargenau) -* <noinclude> and </noinclude> should not appear even when not included (vargenau) -* split PhpWikiAdministration in two pages: PhpWikiAdministration and PhpWikiDebug (vargenau) -* Improve handling of color text (especially in case of errors). More color names are allowed. (vargenau) -* ~SetAcl, Chown, Markup and Rename are marked as minor edits. (vargenau) -* Display "minor edit" for minor edits in ~RecentChanges (like in ~PageHistory). (vargenau) -* In WikiAdminSelect, put buttons in alphabetic order like in page ~PhpWikiAdministration. (vargenau) -* In ~PhpWikiAdministration, all pages are shown instead of first 50. No paging is done. (vargenau) -* In ~WikiAdminSearchReplace, only pages where a replacement was done are shown as feedback. (vargenau) -* In ~WikiAdminSearchReplace, show pages where replacement will be done. (vargenau) -* For file upload, use black list of extensions instead of white list. (vargenau) -* It is now possible to insert predefined icons in wiki text. See [[Help:PredefinedIcons]]. (vargenau) -* Allow "{{{#[[}}}" syntax for anchors. (vargenau) -* Handle redirections in Template plugin. (vargenau) -* Allow Wikicreole syntax for redirections in ~IncludePage plugin. (vargenau) -* New preference to avoid e-mail notifications for minor edits on Wiki (vargenau) -* No decoration for abbreviations when printing (vargenau) -* Add CSS3 code for page headers and footers (works for PDF generation with Prince XML) (vargenau) -* Remove superfluous scrollbar from printable pre's - -=== New === -* ~PageList supports listtype=ul,ol,dl. dl used by FullTextSearch -* pageable textsearch results -* external search button by using Search: and searchtype=external -* added ~UniversalWikiEditButton to ~MonoBook, default, blog. More themes later. -* add INSECURE_ACTIONS_LOCALHOST_ONLY for advanced security actions -* enable "^A or ^B" pages argument for ~PageLists: e.g. splitted actions for large htmldump's -* dba: add args to check and rebuild (full or links only) -* RecentChanges: add category, pagematch arguments -* add UriResolver needed for external rdf access -* AppendText: support pages argument: append to multiple pages -* new readonly database detection for dba, and optional config READONLY for maintenance -* new pages: SpecialPages, LockedPages (vargenau) -* implemented Mediawiki-like syntax for tables (vargenau) -* enable ~RecentChangesCached as box, improve performance. -* implemented Wikicreole 1.0 syntax, including additions (vargenau) -* implemented simple [[Help:Spreadsheet|spreadsheet]] functions for Wikicreole tables (vargenau) -* new plugin: [[Help:CurrentTimePlugin|CurrentTime]] (vargenau) -* new plugin: [[Help:ChartPlugin|Chart]] (vargenau) -* new mssqlnative backend (MS SQL Server 2005+) (chrisdpucci) - -== 1.3.14 July, 1 2007, Reini Urban == - -=== Fixes === -* Fix the broken LDAP fix from 1.3.13p1 -* fixed sortby with multiple pagelists - -=== Changes === -* changes all themeinfo.php files, moved global to method load() to be - easier derived from custom theme classes, main now calls $~WikiTheme->load -* ~MailNotify is now silent unless DEBUG - -=== New === -* added experimental ATOM support -* added Changes and Upload button to edit - -== 1.3.13p1 June, 9 2007, Reini Urban == - -An immediate security fix for 1.3.13, plus some minor fixes. - -=== Fixes === -* LDAP Auth: Disallow empty passwords! Certain ldap implementations return true - on empty passwords with ldap_bind(). -* LDAP Auth: fix password quoting -* fix action=upgrade for dba, rename nosql to nodb -* fixes ~SpamBlockList config file locations (config/two-level-tlds, config/whitelist) -* enable $~MailNotify->onChangePage -* fix display of pagenames containing ":" in certain lists -* fixed backend asArray access to iterators (~DebugInfo with SQL) -* fix wrong ~PhpWikiCvs InterWikiMap entry -* fix syntax error in pgsrc/Help%2FActionPage -* fix case in pgsrc/Help%2FAsciiSVGPlugin -* fix links in pgsrc/Help%2FSemanticRelations -* fix pgsrc/Help%2FWikiPlugin - -=== Changes === -* allow \n and single letter pages in ~{~{ ~}~} template syntax. - patch #1732793 by ~AlJeux and ~ReiniUrban -* with ENABLE_SPAMBLOCKLIST check only new external links: - max 5, allow interwiki links, and improve failed output. - -== 1.3.13 June, 2 2007, Reini Urban == - -This is major feature release which will be the base for the stable -1.4.0. The highlights are ~SemanticWeb support, basic support for -various WYSIWYG editors (not yet stable), a stable ~MonoBook (wikipedia) -and Blog theme, enabled acdropdown support (~LiveSearch), postgresql and -oracle enhancements, moving Help pages into Help/, support different -charsets in pgsrc and Windows NTLM auth support via ~HttpAuth, a lot -more plugins and enhancements. UTF-8 should work. - -=== Fixes === -* fix ~UpLoad to disallow all php extensions -* DB: use ANSI SQL statements (oracle by Bob Peele & Christopher Jones, - postgresql by Reini Urban) -* fixed blog, ~MonoBook, sidebar and wikilens theme layout -* fix Template and ~CreatePage variable expansion -* xhtml dump for subpages into subdirectories, fixed filenames and subdir names -* fixed loading pages into foreign charsets (such as utf-8) -* ~ErrorManager: patch #1438439 by Matt Brown: - Only set no-cache headers when error output is generated -* ~ImageLinks: patch #1348996 by Robert Litwiniec -* fix bug #1327912 numeric pagenames can break plugins (Joachim Lous) -* improve pdf output via external converter -* force integer constants to be set as integer -* partially fix CRC overflow in ziplib (Bob Apthorpe) -* testsuite: force C locale and EN $LANG -* fixed display of edited InterWikiMap. static var issue -* fixed display of "Merge and Edit: pagename" header in merge edit (hack!) -* ~WikiFormRich: fix name=value parsing. fix limit with plugin-list invocations -* plugin/Diff: fix lib/diff loading conflicts by removing duplicate classes -* plugin/Ploticus: support PLOTICUS_PREFABS config.ini setting (documented but never worked) -* fix edit:locked label selection: typo, was edit:lock -* fixed moacdropdown integration -* fixed fortune error handling -* fixed limit handling with multiple pagelists: don't overwrite request arg -* change PageDump Content-Type header for download to application/octet-stream to avoid - pesty .txt suffixes on Windows clients -* fixed wikilens with dba and RATING_STORAGE=SQL. RATING_STORAGE=WIKIPAGE not yet fixed. -* fixed action=diff error with external links - -=== Changes === -* add ~UpLoad policy DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS, default: false -* ~SemanticWeb: add linkrelation support, getPageLinks returns now an array of hashes. - optimize get_links for relations. -* add new linksyntax "~[:pagename~]" inside square brackets only, not to store backlinks. - ~[:~DontStoreLink~] (experimental) -* moved default help pages to Help/ subpages. Partially for "de" also. -* generalized ENABLE_HTMLAREA3 to ENABLE_WYSIWYG -* support more ~WikiFormRich method arguments: url, dynurl, xmlrpc, dynxmlrpc, plugin, - the autocomplete option for pulldown~[~] and editbox~[~] and the new combobox~[~] widget. - Improve ~WikiFormRich layout. -* DB: foreign key support in schemas, simplify methods -* remove user table: upgrade from SQL db. -* updated locale for it, de and es (google translation) -* improve loading multiple version archives such as full zipdumps. force temp. overwrite. - support loadfile for multipart archives (full dumps) automatically -* omit actionbar from pdf output -* support charsets in pagedumps for loadfile and virgin setup -* _~BackendInfoPlugin prints linkinfo also. -* ~ExternalSearchPlugin displays the button at the right. Change it with - EXTERNALSEARCH_DEFAULT_BUTTON_POSITION = left, or the argument button_position=left or none. -* disabled postgresql optimize() in favor of autovacuum, - enable it in the backend method if the web user is the table owner (security risk) -* print "Ignored stoplist words" on FullTextSearch, - add FULLTEXTSEARCH_STOPLIST constant, - make ~TextSearchQuery->_stoplist localizable -* fix arg order in WikiDB_backend_search() -* protected tests. only allow localhost -* optimize ~ArchiveCleaner for the new default case (since 1.3.11): Keep all revisions. -* changed the default DB backend from gdbm to dba db4 -* changed action=upgrade to check and store a db version -* don't loadfile *.orig files (this might be a limitation. sorry) -* rename _~AuthFile to ~DebugAuthFile in upgrade -* updated most template files for harmonisation -* changed default ~LiveSearch method in search.tmpl from url to xmlrpc. faster and less hackish. -* fixed all templates with missing revision check. can be false. -* rewrote and redefined {{{WikiDB::listRelations}}}. list only all relations as array. -* changed Semantic attribute syntax from ":-" to ":=" (relevant to cvs users only) -* change ~TextSearchQuery handling of regex=pcre: plain string, no parsing at all, - detect and apply modifiers. -* enhance text2png arguments and features. See [[Help:text2pngPlugin]] -* Template plugin: allow passing arbitrary args, not just in vars. -* added old gd support to ~PhotoAlbum thumbs (~ImageTile) -* Improve ~LdapSearch plugin and add action page. -* Improved wikilens theme. -* Changed all default Template vars to expanded to uppercase: PAGENAME, USERID, ... -* CSS: no ~MonoBook css hacks/requests, check special browser versions in php - -=== New === -* add ~SemanticRelations syntax, db structure and attribute units. - Sample: pagename=~SanDiego is_a :: city => ~SanDiego relation = is_a, linkto = city - population := 1,305,736 (numeric units) - Store unified attribute in pagedata. -* new experimental WYSIWYG edit library framework: - ~WikiWyg, tinymce, FCKeditor, htmlarea3, htmlarea2, spaw -* new wysiwyg_editor feature by Jean-Nicolas GEREONE and Sabri LABBENE (experimental) -* added postgresql tsearch2 support -* new experimental flatfile backend: readable page source files (experimental) -* added new xmlrpc and SOAP methods: ~listPlugins, ~getPluginSynopsis, ~mailPasswordToUser, - ~getUploadedFileInfo, ~listRelations, ~callPlugin, ~linkSearch -* new plugins: ~SemanticSearch, ~SemanticRelations, ~LinkSearch, ~ListRelations, - ~FileInfo, ~BoxRight, ~PasswordReset, ~WatchPage, ~SpellCheck, ~SearchHighlight, - AsciiSVG -* add <nowiki></nowiki> tag: Transform only html markup and entities -* new option DISABLE_MARKUP_WIKIWORD to force [ ] for links -* new option ENABLE_MARKUP_DIVSPAN (experimental) -* new option PLUGIN_MARKUP_MAP for xml-style plugin syntax (experimental) -* support Windows NTLM Auth via ~HttpAuth: mod_ntlm (apache1+2. also on linux) - and mod_auth_sspi (apache2. better, but windows only) -* new stable option ENABLE_SEARCHHIGHLIGHT with actionpage and plugin SearchHighlight. - In CVS for some time called USE_SEARCHHIGHLIGHT. -* patch #1377011 by Matt Brown: add DATABASE_OPTIMISE_FREQUENCY -* new options db-check and db-rebuild for ~WikiAdminPlugin. - You can now retransform all pages at once. -* new ~MailNotify class, simplified WikiDB.php -* added "Printable version" js to monobook theme. See License in - http://www.howtocreate.co.uk/jslibs/termsOfUse.html -* new ~ActionButton function for ~MonoBook with selected state. (tab state) -* added ~SyncWiki plugin to sync pages and uploads with a master wiki. - (foreign auth not yet solved) -* added boolean UPLOAD_USERDIR to upload into user-specific directory. -* added support for multiple page arguments in BackLinks. Logical AND. -* added wikidb->backend->rebuild() -* added "Keep old" and "Overwrite with new" buttons and actions for loadfile merge edit. -* added lib/~XmlRpcClient, xmlrpc methods to lib/~HttpClient and acdropdown.js. JSON not yet. -* created Help/~*Plugin stubs for *ALL* plugins in pgsrc -* added a new _DEBUG_REMOTE flag to debug into remote sessions (xmlrpc, ajax, ...) -* added {{{WikiDB::linkSearch}}} and backend/dumb/~LinkSearchIter.php. Mainly for ~SemanticSearch, - and LinkSearch, but can be used for ~SemanticSearchAdvanced (combined queries as <ask>) and - BackLinks et al also. -* added Calendar display_weeknum argument -* added new ~AsciiSVG plugin -* added new ~YouTube plugin -* added ~XmlRpcTest tests -* Added nopage argument to ~PageList and all its plugins. Unique rows only not yet. -* Added author, owner argument to RecentChanges and added action pages: - MyRecentChanges, MyRecentEdits, UserContribs -* added RecentChanges format=contribs for ~MonoBook theme: => UserContribs -* added ~MonoBook accesskeys - -== 1.3.12p3 Jun, 18 2006, Reini Urban == - -* fix ~[/Subpage~] links -* fix pref storing of already crypted passwords. bug #1327470 (Tom Harding) -* fix cache headers on errors (@ob_end_flush issue). (matt brown) -* fix ~BogoLogin when ENABLE_PAGEPERM=false. patch #1438392 by Matt Brown -* unique WIKI_ID cookies per WIKI_NAME. patch #1333957 by Matt Brown -* added DATABASE_OPTIMISE_FREQUENCY feature. patch #1377011 by Matt Brown -* don't check lock_table priv on action=upgrade -* fix _accesslog->logtable and _is_buffering_output warnings (uckelman) -* do not print wrong length header on url-rewriting. bug #1376007 -* fix pref->set: Error generated when login out. bug #1355533 (Thierry Nabeth) -* fix default preferences for editheight maxrows, by Manuel Vacelet. -* fix DBAUTH arguments to be position independent, bug #1358973 -* add ~PdoDbPassUser user -* fix output of Homepage prefs update -* update config-dist.ini format from CVS -* update configurator.php from CVS -* print optimize wikidb only when DEBUG -* simplify messages for translators -* added ~ImageTile.php -* added tsearch2 to doc/INSTALL.pgsql -* added basepage to {{{Cached_WikiLink::asXML}}} for subpages within ~CreateTOC -* print filename on dba access error -* use bind_textdomain_codeset. bug #1480077 (Kai Krakow) -* make ~TextSearchQuery->_stoplist localizable and overridable within config.ini -* fixes for mysql 5.x wantedpages join -* add rel=nofollow to more actions. patch by Matt Brown -* add verify to ~RevertPage, display reverted page as template -* update plugin/~CalendarList: patches by mpullen and banjo -* update plugin/~GraphViz -* added plugin/~PasswordReset -* fixed hash() in plugin/~RateIt -* plugin/_~AuthInfo: protect File passwords -* added Captcha to Crao edit template -* added MacOSX Pdf button -* fixed Portland and Wordpress editpage template -* removed Wordpress buttons, transparent default buttons should be used. -* disabled RelatedChanges button - -== 1.3.12p2 Mar, 7 2006, Reini Urban == - -* fix change prefs for File ~WikiUser -* fix ~HomepagePrefs update message -* remove plugin/Imdb -* apply ~PluginToolbarButton fix from cvs - -== 1.3.12p1 Mar, 4 2006, Reini Urban == - -* fix "Call-time pass-by-reference" in ~CreateBib -* fix parse error in ~SiteMap.php - -== 1.3.12 Mar, 4 2006, Reini Urban == - -Rename function hash() and method final() for php-5.1 compatibility. -Add various backports from cvs: - -=== Fixes === -* fix ~ZipReader -* Fix "Call-time pass-by-reference has been deprecated" errors, - allow_call_time_pass_reference = Off -* fix broken locale update for php-5.1.1 -* default locale fix by Thomas Harding -* fix Bug #1381464 "Duplicate functions" with php-5.1.1 -* InterWikiMap: allow spaces in paths, even implicitly. fixes bug #1218733 -* fix 'VOID' in ~TextSearchQuery -* remove LIMIT 1 in ADODB -* fix SQL WantedPages -* fixed fulltext search and stoplist handling -* fix bug #1327912 numeric pagenames can break plugins (Joachim Lous) -* fix xmlrpc and tests/unit for !register_long_arrays -* ensure absolute uploads path -* fix ~GoogleMaps syntax error -* fix ~ListPages for non-SQL backends. Add top3recs as default only if - ratings are available -* plugin/~PageTrail improved empty cookie -* plugin/_~WikiTranslation: protect against 2x define -* remove mysql specific ISNULL() -* fix signout pref error -* don't log on ACCESS_LOG_SQL < 2 - -=== Changes === -* cache ~EditToolbar popup content -* beautify SCRIPT lines -* added cfg-able markups only for default ~TextTransformation, not - for links and others -* add a proper Content-Encoding: gzip if compressed, and omit Content-Length then. - Trick to send the correct gzipped Content-Length -* set dsn after SQL/ADODB switches in WikiDB backends for easier unit testing -* e-mail notifications: better From: header -* add DBAUTH_PREF_INSERT: self-creating users. by John Stevens -* improved ~WikiUser/Ldap error description -* cache SystemInfo methods -* ~VisualWiki: remove INCLUDED from EXCLUDED, includes override excludes. -* improve postgresql schemas (tsearch2 and stored procedures not yet) - -=== New === -* added NUM_SPAM_LINKS as config.ini option -* new ENABLE_SPAMBLOCKLIST, lib/~SpamBlocklist.php: - check external links against surbl.org and bl.spamcop.net -* added Captcha class and better spiral -* added get_captcha_random_word() contributed by Dan Frankowski -* dumphtml when not at admin page: dump the current or given page -* added plugin ~FileInfo -* major ~PhotoAlbum feature enhancements by Thomas Harding: - slides mode, real thumbnails -* add more backends to the testsuite (PearDB_pgsql, ...) - -== 1.3.11p1 Sep, 18 2005, Reini Urban == - -=== Fixes === -* added missing pgsrc/~OldStyleTablesPlugin -* fixed ~OldStyleTables plugin with args -* protect against Content-Length if headers_sent() -* fixed ENABLE_MARKUP_TEMPLATE warning if undefined -* fixed writing unwanted accesslog sql entries -* fixed WikiAdminSelect preselection -* fixed passencrypt.php for PHP5 !register_long_arrays -* fixed configurator for DATABASE_DSN, USER_AUTH_ORDER - -=== Changes === -* optimized explodePageList to use SQL when available - (titleSearch instead of getAllPages) -* added optimization for a new ALL textsearch token - (* => pcre: .*, sql: %) -* configurator takes default description from config-dist.ini -* added some missing configurator constants - -== 1.3.11 Sep, 11 2005, Reini Urban, Joel Uckelman == - -Lots of bugfixes, and some feature and performance enhancements. - -A new EDIT_TOOLBAR from Mediawiki, more page permission enhancements, -reduced memory usage for pagelists which need no page content, -related improvement for ~OldMarkup crashes because of PCRE memory exhaustion. - -New <!plugin-list !> syntax and ~PhpWiki:~PageListLibrary args. - -Because of SQL changes you'd need to ?action=upgrade to update for SQL. - -=== Fixes === -* fixed crash after login, by eliminating endless recursion in - group isAdmin() checks -* fixed syntax errors in signin.tmpl -* fixed missing DEBUG warnings (Support #954260) -* ~PhpWiki is now allow_call_time_pass_reference = Off safe (php.ini) - Some external libraries are not (Pear_DB odbc, adodb oracle) -* fixed sql statements for pagedata where it is not needed, fixing the - typical ~PageList memory exhaustion on simple page lists. - cached_html is handled complete separate now. -* fixed and improved WikiDB pageid caching. -* fixed some ~WikiGroup errors for WIKIPAGE and DB -* fixed JS_SEARCHREPLACE -* fixed rename with dba -* fixed Today link in all templates if USE_PATH_INFO = false -* fixed PluginManager fatal error line 222 -* utf-8 pagenames fixed (typed foreign names from IE) -* CGI: no PATH_INFO fix -* fix some too loose PhpWiki:PagePermissions for signed, but not authenticated users - (admin, owner, creator), and edit and view for Bogo and Password users -* security fix for create ACL: action=edit is now checked for create -* fixed important WikiDB bug with DEBUG > 0: wrong assertion - around line 172 (#954648) -* fixed flatfile ~ArchiveCleaner assertion -* ~RssFeedPlugin stability fix for empty feeds or broken connections -* fixed Sidebar theme CSS, added existing dates to jscalendar -* fixed PhpWiki:ImageLinks, broken since 1.3.10 (Bug #956068) -* fixed lib/pear/File_Passwd loading -* ~TranslateText: verbatim needed a pagebreak -* fixed duplicate session_id warning with adodb -* fixed adodb ~DbPassUser login -* fixed external ~DbPassUser login -* fixed adodb action=upgrade -* fixed ~FilePassUser locking problems and session handling -* fixed a lot of LDAP auth and group issues -* fixed LDAP options handling (by John Cole) -* fixed possible security problems: allowing only posixly strict usernames, - and an actual LDAP Injection problem, detected by Steve Christey, MITRE. -* honor s=wildcard arguments for ~WikiAdmin plugins -* fixed flatfile assertion (#963268) - check existing previous version -* fixed all msg references from index.php to config/config.ini -* fixed immediate LANG and THEME in-session updates if not stored in prefs -* fixed USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides ~HttpAuth) - and removed LDAP, POP3, IMAP default configs. -* RelatedChanges: fixed days links -* fix Rename: Change pagename in all linked pages -* fixed PhpWiki:~PageChangeNotification for not-current users -* fixed ~UpLoadPlugin for filenames with space (Bug #969532) -* fixed label support for ~CreateTocPlugin (Bug #969495) -* fixed Apache2 crashing with old markup and the ~CreateTocPlugin. -* catch fatals and request->args changes on dumping -* fixed unneeded UserPreferences plugin login screen on dumphtml -* catch SOAP fatal on ~GooglePlugin without GOOGLE_LICENSE_KEY -* silently ignore jshide argument on MacIE for ~AddCommentPlugin and ~CreateTocPlugin -* fixed xmlrpc to be able to use the native xmlrpc extension. -* fixed xmlrpc wiki.listLinks method: "name" => "page" param -* fixed xmlrpc security not using eval on usercode anymore -* fixed ~WikiAdminUtils behaviour on POST -* fixed strict login on "Db" (by Mikhail Vladimirov) -* more /tmp warnings on flatfile (by Joel Uckelman) - -=== Changes === -* ~WikiAdminSetAcl functional -* enabled PhpWiki:PagePermissions for all admin plugins (no admin required): - Remove, Rename, Replace, ~SetAcl, Chown -* renamed DB_Session.php to ~DbSession.php and moved libs to a subdir -* new Error-style with collapsed output of repeated messages -* whitespace trim pagenames to avoid abuse -* no double login page header, better login msg. -* improved ~FileFinder include_path logic (~normalizeLocalFileName, ...) -** init global ~FileFinder to add proper include paths at startup - adds PHPWIKI_DIR to the front if started from another dir, lib/pear to the end. -** fix slashify for Windows -* check more config-default and predefined constants -* ~AutoSplit pagenames at subpage separators, esp for Sidebar theme -* improve Pagelist layout by equal pagename width for limited lists -* added CPAN, ~OsFaq2, ~WikiLens to interwiki.map -* ~ExternalSearchPlugin useimage arg (RFE #952323) -* simplified some strings for easier translation -* added hash and object support for ~SessionPassUser userid session variable -* auth page=>DB ~PassUser upgrade: delete existing Page prefs, if Db prefs are saved. -* vastly improved french locale support, which is now complete (by Pierrick Meignen). - english, german and french are now completely translated. The others partially. -* improved ~SetupWiki (virgin setup) loading all required action pages in english, - if no foreign translation found (by Pierrick Meignen) -* show RelatedChanges only if minimum two links on the current page. -* PageDump: ~ViewSource link, better actionpage usage, MessageID TZ -* 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) -* aggressive WikiDB and cache memory optimization: don't cache %content - and _cached_html if not needed. -* PageDump added format=backup: dump all revisions. -* force mysql to use auto_increment page.id for performance reasons. - call ?action=upgrade -* extended all plugins which take "pages" and "exclude" params to accept - <!plugin-list !> pagelists -* enabled limit, exclude and sortby ~PageList options for almost all db backends natively -* improved ~SqlResult: templates and variable expansion. - automatic paging not yet. -* use latest Pear DB features, which will break on older PearDB libs. - (escapeSimple). Use INCLUDE_PATH to override. -* INCLUDE_PATH is now prepended, not appended. PHPWIKI_DIR is forced to be first. -* rewrote ~OldTextFormattingRules, ~Anciennes~R%E8gles~DeFormatage - for proper importing (PCRE+memory related crashes on older php's) -* added extra page.cached_html column. ?action=upgrade or PhpWikiAdministration - "Convert cached_html" is needed to convert your old pagedata "_cached_html". -* page deletion is now undoable and being seen in RecentChanges. Purge pages - by new admin button. -* zipdump and dumphtml contains now images, buttons and css -* improved _~WikiTranslation performance with gettext extension -* moved ~DbSession methods to extra files as with ~WikiUser files. -* changed config.ini options: - KEYWORDS: "Category:Topic" => "Category* OR Topic*", - KEYWORD_LINK_REGEXP removed, -* action=dumphtml dumps only the current page unless done from PhpWikiAdministration - -=== New === -* new ENABLE_EDIT_TOOLBAR (from mediawiki), JS_SEARCHREPLACE, - ~AddCategory, ~AddPlugin buttons -* new other config options: -** ENABLE_PAGEPERM to turn off ACL (no owner at the statusline if off) -** FORTUNE_DIR to enable random quotes for new pages -** GOOGLE_LINKS_NOFOLLOW, ACCESS_LOG_SQL, BABYCART_PATH, BLOG_DEFAULT_EMPTY_PREFIX, - CATEGORY_GROUP_PAGE, DATABASE_PERSISTENT, DBADMIN_PASSWD, DBADMIN_USER, - DEFAULT_DUMP_DIR, DISABLE_GETIMAGESIZE, ENABLE_DOUBLECLICKEDIT, - ENABLE_LIVESEARCH, ENABLE_MODERATEDPAGE_ALL, ENABLE_RAW_HTML_LOCKEDONLY, - ENABLE_RAW_HTML_SAFE, ENABLE_SPAMASSASSIN, ENABLE_XHTML_XML, - GOOGLE_LICENSE_KEY, HTML_DUMP_DIR, LDAP_OU_GROUP, LDAP_OU_USERS - PLUGIN_CACHED_CACHE_DIR, PLUGIN_CACHED_DATABASE, PLUGIN_CACHED_FILENAME_PREFIX, - PLUGIN_CACHED_FORCE_SYNCMAP, PLUGIN_CACHED_HIGHWATER, - PLUGIN_CACHED_IMGTYPES, PLUGIN_CACHED_LOWWATER, PLUGIN_CACHED_MAXARGLEN, - PLUGIN_CACHED_MAXLIFETIME, PLUGIN_CACHED_USECACHE, TEMP_DIR, USECACHE, - USE_EXTERNAL_HTML2PDF, ENABLE_MARKUP_COLOR, ENABLE_MARKUP_TEMPLATE -* implemented WikiDB page creator and ownership -* added paging support for simple one-column pagelists -* added new ~PageList options: cols, azhead, comma, commasep, ordered and enabled the new args on most plugins. -* new pagename utf8 detection logic (from mediawiki) -* added action revert, with button from action=diff -* added new <!plugin-list ~PluginName args!> syntax within plugin args -* new plugin ~IncludePages, esp. for <!plugin-list !> -* added template variable expansion support to the ~CreatePagePlugin -* ~WikiSpam prevention: -** On GOOGLE_LINKS_NOFOLLOW add rel=nowfollow to all external links, unless the author was authenticated. -** max 20 new links hardcoded -** new babycart module interfacing ~SpamAssassin -* added ~WikiPluginCached support for image maps, static cache in uploads/ and SVG -* added case-sensitive/insensitive and regex searching, replace also -* added action=pdf: only page formatter missing, use USE_EXTERNAL_HTML2PDF instead -* new ~XmlParser, ~HtmlParser: new libs for HTML->wiki import and htmlarea3 support -* new action=chown|setacl|rename|dump action shortcuts pointing to the plugin -* new ~SyntaxHighlighter plugin (based on work by alecthomas), - needs highlight from http://www.andre-simon.de/ -* new ~PloticusPlugin. Full application/xhtml+xml support not yet - (javascript document.write() not supported with ENABLE_XHTML_XML) -* new ~ListPages plugin (by Dan Frankowski) -* new ~TeX2pngPlugin (by Pierrick Meignen) -* added support for ?force_unlock=1 parameter for stale File_Passwd locks - (should not be needed anymore, we lock only when we actually change the passwd) -* added mysql-4.1 fix at action=upgrade, - added CACHE_CONTROL NONE => NO_CACHE config.ini fix to action=upgrade -* author, owner, creator support for ~WikiAdmin* and AllPages plugins: -** AllPagesCreatedByMe, AllPagesLastEditedByMe, AllPagesOwnedByMe -* added option regex to ~WikiAdminSearchReplace and ~WikiAdminRename -* added oracle PearDB backend (by Philippe Vanhaesendonck) -* added experimental SearchHighlight feature (not for HTML yet) -* added experimental ~LiveSearch feature -* added ~[~OverWrite All] button to loadfile action on the first page. -* added ~[Load & ~OverWrite] button to PhpWikiAdministration -* performance: use cached static config/config.php, if it's writable by - the webserver. (experimental) -* added ACCESS_LOG_SQL &1: read, &2 write. new accesslog sql table. - for various log analysis: abuse prevention, recent referrers. -* added more ~PageChangeNotification on other actions: rename, remove. - changed subject on create. Collapse mult. emails to one. -* added new PhpWiki:~WikiFormRich plugin -* added new ~AppendTextPlugin (by Pascal Giard) -* added RSS2 link (format=rss2) in RecentChanges. (no cloud channel yet) -* added PhpWikiAdministration WikiDB buttons: - ~[Purge all empty unreferenced pages], ~[Convert cached_html] -* (nyi) new experimental ModeratedPage feature. (i.e. delayed POST actions) -* new edit "~[~] old markup ~[Convert~]" button to convert and save to new markup. -* new LinkDatabase plugin and actionpage for the http://touchgraph.sourceforge.net/ ~WikiBrowser -* new hyperwiki applet in the Sidebar theme. See http://hypergraph.sourceforge.net/ -* new xmlrpc methods: putPage, mailPasswordToUser -* new xmlrpc test framework -* action=upgrade performs now a mysql LOCK TABLE privileges check and fix -* action=upgrade asks now for the admin's user and password if not defined -* added lib/ASCIIMathPHP and ~AsciiMath plugin -* new ~AnalyseAccessLogSqlPlugin (by Charles Corrigan) -* new ~TemplatePlugin, optionally mediawiki-style ~{~{Template~}~} syntax -* new ENABLE_ACDROPDOWN moacdropdown library. fast xmlrpc communication nyi - -== 1.2.11 == -* support remove for $~WhichDatabase = file - -== 1.2.10 == -* support php5 with register_long_arrays = off - -== 1.2.9 bugfix == -* Jose Vina fixed MostPopular sorting for dba and dbm, - which was broken since 1.2.3 - -== 1.2.8 (the old-stable branch) Jan, 30 2005, Reini Urban == -* register_globals=off fix: - fix and centralize broken register_globals=off logic. -* update message catalog -* replace mysql_pconnect by mysql_connect - -== 1.2.7 (the old-stable branch) Jan, 6 2005, Reini Urban == - -~PhpWiki 1.2.7 backport cvs release-1_2-branch enhancements never released with 1.2.3-1.2.6: -* full xhtml conformity -* split_pagename in title and header to help google -* "INSTALL.Mac OS X" added from cvs -* lib/zipfile.php: Content-Disposition: attachment -* lib/config.php, lib/stdlib.php: support new USE_LINK_ICONS and AUTOSPLIT_WIKIWORDS, - better i18n $!~WikiNameRegexp -- re-added images/* LINK_ICONS, pre-calculate DATA_PATH -- locale/*: fix and update strings and templates esp. for german, -* index.php: urlparser extended to omit &start_debug=1 and other args -* added minor_edit checkbox -* print more meta tags: robots, favicon, language and PHPWIKI_VERSION - -== 1.2.6 (the old-stable branch) Dec, 19 2004, Reini Urban == - -Flatfile fixes and enhancement: -* fixed !TitleSearch and Backlinks for flatfile. -* enable MostPopular (hitcount storage) for flatfile - -== 1.2.5 (the old-stable branch) Nov, 28 2004, Reini Urban == -* works with register_globals=off -* adds user/password to pgsql, -* fix zip and dumpserial on dba, dbm, msql and file, -* and fixes a minor (un)lock issue, displaying the (un)locked page afterwards - and not the ~FrontPage. - -== 1.3.10 May, 13 2004, Reini Urban, Joby Walker == - -In short: paging support, adodb rewrite, permission problem fixed. - -=== Fixes === -* fixed severe permission problem: - Default permissions not honored. Everybody was able to edit. -* set UserPreferences for bool and int fixed -* POP3 auth -* dba open problems improved, but not generally fixed -* fixed dba session reading, but still broken -* support wikiword links and image links in ~RichTable content, - backlinks still not working. -* fixed navbar links in theme smaller, and made them default -* fixed loading of localized pagenames on action=upgrade -* fixed interwiki.map loading on certain ~PrettyWiki setups -* re-enabled php-4.0.6 support (broken since 1.3.8: superglobals, array_key_exists), - 4.0.4-pl1 and 4.0.5 do work, but not stable enough. -* fix running phpwiki in "http://server/" (empty DATA_PATH) -* fix PhpWiki:~PrettyWiki detection: starter script includes index.php, - and include main.php by its own to override certain config values. -* fix ~WikiAdminRemove arguments passed from WikiAdminSelect, - ~WikiAdminRemove deleted too many args if passed from WikiAdminSelect -* session transportation improved, no db objects stored -* ~PageGroup support for ~[links] and subpages -* ~HttpClient fixes for older php's -* ~RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list -* Theme buttons are now also searched in the default theme -* numerous other minor bugfixes. - -=== Changes === -* ADODB update from ancient mysql-only, to 4.21 with all supported databases. - transaction support, with mysql locking-workarounds -* pear not in our include_path anymore: either use your pear or our pear, - by adding it to your include_path or not. use now 1:1 copies of pear libs. -* ~CreateToc parses now headers with links and formatting optionally, if - TOC_FULL_SYNTAX is defined -* ~PageChangeNotification: userids, not emails are printed -* default theme navbar consistency: linkButtons instead of action buttons -* _~WikiTranslation what=buttons, noT=1, nolinks=1 -* ~SetupWiki (virgin setup) also loads all mandatory pages now - and overwrites ReleaseNotes -* ~PageChangeNotification changed subject to "~[~WikiName] Page change %s", - update your filters accordingly -* action=upgrade now linked in PhpWikiAdministration, - db: fix page.id auto_increment and ADD session.sess_ip -* some internal ~InlineParser optimization -* DBAuthParam statement syntax change: variables now like '$userid' - -=== New === -* new ini-style config instead of old index.php, by Joby Walker -* paging support for pagelists longer than limit -* ~PopularNearby plugin: same as the classic most popular footer -* formatted single-line plugins supported -* RelatedChanges plugin: only those which are links at the current page -* new ~GoogleLink pref: add "~[G]" lookup on unknown links -* added chinese language support, by Yan-ren Tsai (druryl) -* added missing MacOSX buttons, by Carsten Klapp. -* new Crao theme from http://wiki.crao.net, by Arnaud Fontaine and Laurent Lunati -* extended PhpWiki:InlineImages markup (size, border, ...) - -== 1.3.9-p1 May,5 2004, Reini Urban == - -Bugfix patch for the following 1.3.9 problems: -* Default permissions not honored. Everybody was able to edit. -* set UserPreferences for bool and int fixed -* dba open problems improved -* session transportation improved, no db objects stored -* php-4.0.6 support re-enabled (superglobals, array_key_exists) -* ~WikiAdminRemove deleted too many if args passed from WikiAdminSelect -* ~PageGroup support for ~[links] and subpages -* disabled default dba sessions, broken! -* ~HttpClient fixes for older php's -* ~RssFeed for allow_url_fopen=false, IMAGE support, empty ITEM list - -== 1.2.4 (the old-stable version) May, 4 2004, Reini Urban == -* improves possible deadlocks in DBA, -* fixes problems with DBA open failures. - -== 1.2.3 (the old-stable version) Apr, 29 2004, Reini Urban == -* added the most popular footer for dba -* added remove for dba -* fixed a warning on info page - -== 1.3.9 Apr, 12 2004, Reini Urban == - -Bugfix release for the following 1.3.8 problems: -* syntax errors in lib/plugin/~UpLoad.php -* syntax errors in lib/plugin/~WikiAdminRemove.php -* syntax error in schemas/mysql.sql -* several path issues (cannot findfile...), which were caused - by a chdir for bindtextdomain in lib/config.php. - Failed opening required 'lib/stdlib.php', - templates/html.tmpl: not found, and more -* added self-registration for ~DbPassUser -* added ~GoTo plugin, ~RateIt action page - -== 1.3.8 Jan-Apr 2004, Reini Urban == - -External plugable authentication, DB prefs and sessions, -some more fixes, docs, themes and plugins. - -* new ~WikiUserNew class (started by Carsten Klapp), -* new Preferences (optionally from DB, no cookies anymore) -* improved DB_Session (added ADODB + dba support, - WhoIsOnline support) -* enabled ~WikiGroup (Joby Walker and Reini Urban) -* new individual ~PagePermissions (enabled, but not yet enforced) -* new ~WikiAdminRename, ~WikiAdminSearchReplace, ~WikiAdminSetAcl -* several other new plugins: ~WikiPoll, WhoIsOnline, - ~CreateToc (experimental), ~AddComment, - _~WikiTranslation and ~TranslateText, ~NoCache, - ~UpLoad (by Nathan Gass, qubit and Reini Urban), - ~IncludeSiteMap (by cuthbertcat and Reini Urban), - ~RichTable (by Sameer D. Sahasrabuddhe), - ~CreatePage and ~RateIt (by Dan Frankowski), - ~RssFeed (by Arnaud Fontaine) -* added ~InterWiki image button support -* added Japanese language support (by Tadashi Jokagi) -* added sqlite support (thanks to Matthew Palmer) -* added theme and plugin-specific ~PageList column types and theme-specific UserPreferences -* added ~EmailVerification and ~PageChangeNotification (experimental) -* added new sess_ip column (DB_Session) for ip-based robot throttling - -* Pear DB update, minor performance improvement for PearDB -* ~PageList: enhanced sortby + limit support, sortable gridbuttons enforced, cleanup. -* minor theme/default overhaul, new theme/smaller, new experimental theme/wikilens -* new theme/Wordpress by Mike Pickering -* updated theme/Sidebar: box methods, fast jscalendar and easier to customize -* more ~OldStyleTable arguments, ~PhotoAlbum local fs support -* preliminary action=upgrade (To import new pgsrc pages only yet. not for DB) -* preliminary SOAP support -* added ~PdfOutput libraries -* experimental javascript Search&Replace edit buttons -* experimental old-browser compatibility code. -* fixed WikiAdminSelect, ~WikiAdminRemove -* fixed and improved XHTML dumps (css, images, unlinked pages, \r\r\n issue) -* fixed ADODB limit problem, fixed dba on Windows PHP 4.3.x -* fixed ~BlockParser problem with "0" as text -* fixed ~UnfoldSubpages sortby -* fixes for PHP5 compatibility started -* fixed gettext, setlocale and update_locale problems - -== 1.3.4 until 1.3.7, 2002-2003 Jeff, Carsten and Steve Wainstead == - -* several stable releases with better documentation (most plugins) and various bugfixes. -* ~EditMetaData (by Michael Van Dam) for example. (forgot what else was new) -* Jochen Kalmbach's new ~UserFileManagement and ~UserRegistration didn't went upstream. - (personal uploads, ...) - -== 1.3.3 early 2002, Jeff strikes back, with the help of Carsten Klapp == - -* major feature enhancements: -* Cache all output and use a clever page cache. Get rid of plugin-head. -* new ~PageType class. Formatter and Search engine rewrite. -* Validator -* ... [truncated message content] |
From: <car...@us...> - 2025-02-16 18:55:12
|
Revision: 11114 http://sourceforge.net/p/phpwiki/code/11114 Author: carstenklapp Date: 2025-02-16 18:55:10 +0000 (Sun, 16 Feb 2025) Log Message: ----------- diff preview when editing a page if there is an edit conflict Modified Paths: -------------- trunk/lib/editpage.php trunk/pgsrc/ReleaseNotes Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2025-02-16 00:36:19 UTC (rev 11113) +++ trunk/lib/editpage.php 2025-02-16 18:55:10 UTC (rev 11114) @@ -196,7 +196,9 @@ } if ($saveFailed and $this->isConcurrentUpdate()) { - // Get the text of the original page, and the two conflicting edits + //get a diff preview before inserting merged content into editarea + $tokens['PREVIEW_CONTENT'] = $this->getDiff(); + // Get the text of the original page, and the two conflicting edits // The diff3 class takes arrays as input. So retrieve content as // an array, or convert it as necesary. $orig = $this->page->getRevision($this->_currentVersion); Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-16 00:36:19 UTC (rev 11113) +++ trunk/pgsrc/ReleaseNotes 2025-02-16 18:55:10 UTC (rev 11114) @@ -1,4 +1,4 @@ -Date: Sat, 15 Feb 2025 23:04:10 +0000 +Date: Sun, 16 Feb 2025 18:37:06 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -52,6 +52,8 @@ - Dumped pages now use unix line endings instead of windows. Import of files with windows line endings should still work. * configurator.php is now in a less-broken state. Useable but needs more work. +* New: Show a nice diff preview when editing a page if there is an edit + conflict. == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-16 22:30:51
|
Revision: 11115 http://sourceforge.net/p/phpwiki/code/11115 Author: carstenklapp Date: 2025-02-16 22:30:49 +0000 (Sun, 16 Feb 2025) Log Message: ----------- Prevent diff markers from being rendered as markup when editing a conflict or merging a dumpload. Modified Paths: -------------- trunk/lib/diff3.php trunk/pgsrc/ReleaseNotes Modified: trunk/lib/diff3.php =================================================================== --- trunk/lib/diff3.php 2025-02-16 18:55:10 UTC (rev 11114) +++ trunk/lib/diff3.php 2025-02-16 22:30:49 UTC (rev 11115) @@ -232,11 +232,11 @@ // FIXME: this should probably be moved somewhere else... $lines = array_merge( $lines, - array("<<<<<<<" . ($label1 ? " $label1" : '')), + array(" ~<<<<<<<" . ($label1 ? " $label1" : '')), $block->final1, - array("======="), + array(" ~======="), $block->final2, - array(">>>>>>>" . ($label2 ? " $label2" : '')) + array(" ~>>>>>>>" . ($label2 ? " $label2" : '')) ); $this->ConflictingBlocks++; } else { Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-16 18:55:10 UTC (rev 11114) +++ trunk/pgsrc/ReleaseNotes 2025-02-16 22:30:49 UTC (rev 11115) @@ -1,4 +1,4 @@ -Date: Sun, 16 Feb 2025 18:37:06 +0000 +Date: Sun, 16 Feb 2025 22:23:47 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -52,8 +52,9 @@ - Dumped pages now use unix line endings instead of windows. Import of files with windows line endings should still work. * configurator.php is now in a less-broken state. Useable but needs more work. -* New: Show a nice diff preview when editing a page if there is an edit - conflict. +* New: Show a nice diff preview when editing a page if there is an edit conflict. +* New: Prevent diff markers from being rendered as markup when editing a + conflict or merging a dumpload. == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-16 23:10:17
|
Revision: 11116 http://sourceforge.net/p/phpwiki/code/11116 Author: carstenklapp Date: 2025-02-16 23:10:14 +0000 (Sun, 16 Feb 2025) Log Message: ----------- Fixed broken Merge edit functionality by moving some warning logic from editpage.tmpl into lib/editpage.php. Added Merge-edit diff preview. Prevent editing of nonexistent page revision unless creating a new page (anti-bot). Modified Paths: -------------- trunk/lib/editpage.php trunk/pgsrc/ReleaseNotes trunk/themes/default/templates/editpage.tmpl Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2025-02-16 22:30:49 UTC (rev 11115) +++ trunk/lib/editpage.php 2025-02-16 23:10:14 UTC (rev 11116) @@ -130,6 +130,7 @@ $tokens['PAGE_LOCKED_MESSAGE'] = ''; $tokens['LOCK_CHANGED_MSG'] = ''; $tokens['CONCURRENT_UPDATE_MESSAGE'] = ''; + $tokens['EDITING_OLD_REVISION_MESSAGE'] = ''; $r =& $this->request; if (isset($r->args['pref']['editWidth']) @@ -196,9 +197,9 @@ } if ($saveFailed and $this->isConcurrentUpdate()) { - //get a diff preview before inserting merged content into editarea - $tokens['PREVIEW_CONTENT'] = $this->getDiff(); - // Get the text of the original page, and the two conflicting edits + //get a diff preview before inserting merged content into editarea + $tokens['PREVIEW_CONTENT'] = $this->getDiff(); + // Get the text of the original page, and the two conflicting edits // The diff3 class takes arrays as input. So retrieve content as // an array, or convert it as necesary. $orig = $this->page->getRevision($this->_currentVersion); @@ -222,7 +223,7 @@ HTML( HTML::h2(_("Some internal editing error")), HTML::p(_("Your are probably trying to edit/create an invalid version of this page.")), - HTML::p(HTML::em(_("&version=-1 might help."))) + HTML::p(HTML::em("&version=-1 might help.")) ); } @@ -236,7 +237,29 @@ $tokens['PREVIEW_CONTENT'] = $this->getDiff(); } - // FIXME: NOT_CURRENT_MESSAGE? + $selectedversionno = $this->selected->getVersion(); + $currentversionno = $this->current->getVersion(); + if (($selectedversionno > 0) && ($selectedversionno < $currentversionno)) { + $tokens['EDITING_OLD_REVISION_MESSAGE'] = $this->getEditOldmsg(); + } + if (($currentversionno > 0) && ($selectedversionno < 1)) { + // version==0, editing noexistant version of page, possible manual url + // manipulation or bot, redirect to browsing + $this->_redirectToBrowsePage(); //todo: redirect to editing current version page instead + return false; //? + } + // This function needs more work so leaving the below in for future debugging. + // if (($currentversionno==0) && ($selectedversionno ==0)) { + // // creating new page, do nothing + // } + // echo "<pre>\n"; + // echo "\n\$this->editaction " . $this->editaction; + // echo "\n\$this->request->getArg('merge') " . $this->request->getArg('merge'); + // echo "\n\$currentversionno " . $currentversionno; + // echo "\n\$selectedversionno " . $selectedversionno; + // echo "</pre>\n"; + // die(); + $tokens = array_merge($tokens, $this->getFormElements()); return $this->output('editpage', _("Edit: %s")); @@ -570,8 +593,22 @@ return new TransformedText($this->page, $this->_content, $this->meta); } - private function getDiff() + public function getEditOldmsg() { + $html = HTML(); + $html->pushContent( + HTML::p( + array('class' => "warning_msg"), + HTML::span(array('class' => "bold"), _("Warning:")), + " " ._("You are editing an old version of this page.") + ." ". _("Saving this page will overwrite the current version.") + ), + ); + return $html; + } + + public function getDiff() + { require_once 'lib/diff.php'; $html = HTML(); @@ -1274,36 +1311,54 @@ } if ($saveFailed || $this->isConcurrentUpdate()) { + //get a diff preview before inserting merged content into editarea + $tokens['PREVIEW_CONTENT'] = $this->getDiff(); // Get the text of the original page, and the two conflicting edits // The diff class takes arrays as input. So retrieve content as // an array, or convert it as necesary. $orig = $this->page->getRevision($this->_currentVersion); $this_content = explode("\n", $this->_content); + $orig_content = $orig->getContent(); $other_content = $this->current->getContent(); - require_once 'lib/diff.php'; - $diff2 = new Diff($other_content, $this_content); - $context_lines = max( - 4, - count($other_content) + 1, - count($this_content) + 1 - ); - $fmt = new BlockDiffFormatter($context_lines); + // require_once 'lib/diff.php'; + // $diff2 = new Diff($other_content, $this_content); + require_once 'lib/diff3.php'; + $diff2 = new diff3($orig_content, $this_content, $other_content); + $output = $diff2->merged_output(_("Loaded version"), _("Existing version")); + $this->_content = implode("\n", $output); - $this->_content = $fmt->format($diff2); + // $context_lines = max( + // 4, + // count($other_content) + 1, + // count($this_content) + 1 + // ); + // $fmt = new BlockDiffFormatter($context_lines); + // $this->_content = $fmt->format($diff2); // FIXME: integrate this into class BlockDiffFormatter - $this->_content = str_replace( - ">>>>>>>\n<<<<<<<\n", - "=======\n", - $this->_content - ); - $this->_content = str_replace( - "<<<<<<<\n>>>>>>>\n", - "=======\n", - $this->_content - ); - + // $this->_content = str_replace( + // ">>>>>>>\n<<<<<<<\n", + // " ~=======\n", + // $this->_content + // ); + // $this->_content = str_replace( + // "<<<<<<<\n>>>>>>>\n", + // " ~=======\n", + // $this->_content + // ); + // // reformat diff markers to prevent from being interpreted as markup + // $this->_content = str_replace( + // "<<<<<<<\n", + // " ~<<<<<<<\n", + // $this->_content + // ); + // $this->_content = str_replace( + // ">>>>>>>\n", + // " ~>>>>>>>\n", + // $this->_content + // ); + $this->_currentVersion = $this->current->getVersion(); - $this->version = $this->_currentVersion; + $this->version = $this->_currentVersion;//fixme: is this correct? apples to EDITING_OLD_REVISION_MESSAGE also. $this->selected->getVersion() $tokens['CONCURRENT_UPDATE_MESSAGE'] = $this->getConflictMessage(); } @@ -1314,7 +1369,11 @@ $tokens['PREVIEW_CONTENT'] = $this->getPreview(); } // FIXME: convert to _MESSAGE? - // FIXME: NOT_CURRENT_MESSAGE? + // FIXME: NOT_CURRENT_MESSAGE? ok trying + if (($this->version > 0) && ($this->version < $this->_currentVersion)) { + $tokens['EDITING_OLD_REVISION_MESSAGE'] = $this->getEditOldmsg(); + } + $tokens = array_merge($tokens, $this->getFormElements()); // we need all GET params for loadfile overwrite if ($this->request->getArg('action') == 'loadfile') { Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-16 22:30:49 UTC (rev 11115) +++ trunk/pgsrc/ReleaseNotes 2025-02-16 23:10:14 UTC (rev 11116) @@ -1,4 +1,4 @@ -Date: Sun, 16 Feb 2025 22:23:47 +0000 +Date: Sun, 16 Feb 2025 22:40:56 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -52,9 +52,12 @@ - Dumped pages now use unix line endings instead of windows. Import of files with windows line endings should still work. * configurator.php is now in a less-broken state. Useable but needs more work. -* New: Show a nice diff preview when editing a page if there is an edit conflict. +* New: Show a nice diff preview when editing a page if there is an edit + conflict. * New: Prevent diff markers from being rendered as markup when editing a conflict or merging a dumpload. +* Fixed broken Merge edit functionality when loading dumps, also added diff + preview. == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == Modified: trunk/themes/default/templates/editpage.tmpl =================================================================== --- trunk/themes/default/templates/editpage.tmpl 2025-02-16 22:30:49 UTC (rev 11115) +++ trunk/themes/default/templates/editpage.tmpl 2025-02-16 23:10:14 UTC (rev 11116) @@ -9,13 +9,7 @@ <?php } ?> <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> -<?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> - <p class="warning_msg"> - <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old version.") ?> - <?php echo _("Saving this page will overwrite the current version.") ?> - </p> -<?php } ?> +<?php echo $EDITING_OLD_REVISION_MESSAGE ?> <script type="text/javascript"> <!--// $(document).ready(function() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-16 23:48:38
|
Revision: 11117 http://sourceforge.net/p/phpwiki/code/11117 Author: carstenklapp Date: 2025-02-16 23:48:35 +0000 (Sun, 16 Feb 2025) Log Message: ----------- Updating custom theme editpage.tmpl with new $EDITING_OLD_REVISION_MESSAGE variable. Modified Paths: -------------- trunk/pgsrc/ReleaseNotes trunk/themes/Crao/templates/editpage.tmpl trunk/themes/Portland/templates/editpage.tmpl trunk/themes/Wordpress/templates/editpage.tmpl trunk/themes/fusionforge/templates/editpage.tmpl Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-16 23:10:14 UTC (rev 11116) +++ trunk/pgsrc/ReleaseNotes 2025-02-16 23:48:35 UTC (rev 11117) @@ -1,4 +1,4 @@ -Date: Sun, 16 Feb 2025 22:40:56 +0000 +Date: Sun, 16 Feb 2025 23:34:56 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -57,7 +57,8 @@ * New: Prevent diff markers from being rendered as markup when editing a conflict or merging a dumpload. * Fixed broken Merge edit functionality when loading dumps, also added diff - preview. + preview. This means themes using custom editpage.tmpl need to be updated + with new $EDITING_OLD_REVISION_MESSAGE variable. == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2025-02-16 23:10:14 UTC (rev 11116) +++ trunk/themes/Crao/templates/editpage.tmpl 2025-02-16 23:48:35 UTC (rev 11117) @@ -9,13 +9,7 @@ <?php } ?> <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> -<?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> - <p class="warning_msg"> - <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old version.") ?> - <?php echo _("Saving this page will overwrite the current version.") ?> - </p> -<?php } ?> +<?php echo $EDITING_OLD_REVISION_MESSAGE ?> <script type="text/javascript"> <!--// $(document).ready(function() { Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2025-02-16 23:10:14 UTC (rev 11116) +++ trunk/themes/Portland/templates/editpage.tmpl 2025-02-16 23:48:35 UTC (rev 11117) @@ -6,13 +6,7 @@ <td> <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> -<?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> - <p class="warning_msg"> - <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old version.") ?> - <?php echo _("Saving this page will overwrite the current version.") ?> - </p> -<?php } ?> +<?php echo $EDITING_OLD_REVISION_MESSAGE ?> <script type="text/javascript"> <!--// $(document).ready(function() { Modified: trunk/themes/Wordpress/templates/editpage.tmpl =================================================================== --- trunk/themes/Wordpress/templates/editpage.tmpl 2025-02-16 23:10:14 UTC (rev 11116) +++ trunk/themes/Wordpress/templates/editpage.tmpl 2025-02-16 23:48:35 UTC (rev 11117) @@ -8,13 +8,7 @@ <td> <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> -<?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> - <p class="warning_msg"> - <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old version.") ?> - <?php echo _("Saving this page will overwrite the current version.") ?> - </p> -<?php } ?> +<?php echo $EDITING_OLD_REVISION_MESSAGE ?> <script type="text/javascript"> <!--// $(document).ready(function() { Modified: trunk/themes/fusionforge/templates/editpage.tmpl =================================================================== --- trunk/themes/fusionforge/templates/editpage.tmpl 2025-02-16 23:10:14 UTC (rev 11116) +++ trunk/themes/fusionforge/templates/editpage.tmpl 2025-02-16 23:48:35 UTC (rev 11117) @@ -7,13 +7,7 @@ <?php } ?> <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> -<?php if (!$revision->isCurrent() && !$revision->hasDefaultContents()) { ?> - <p class="warning_msg"> - <strong><?php echo _("Warning")._(": ") ?></strong> - <?php echo _("You are editing an old version.") ?> - <?php echo _("Saving this page will overwrite the current version.") ?> - </p> -<?php } ?> +<?php echo $EDITING_OLD_REVISION_MESSAGE ?> <?php if (forge_get_config('use_jquery_form_navigate')) { ?> <script type="text/javascript"> <!--// This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-17 01:24:27
|
Revision: 11118 http://sourceforge.net/p/phpwiki/code/11118 Author: carstenklapp Date: 2025-02-17 01:24:25 +0000 (Mon, 17 Feb 2025) Log Message: ----------- Fixed users unexpectedly being logged out. Affected flatfile database and probably other db types as well. Improved by sanity checking of database global timestamp. Modified Paths: -------------- trunk/lib/WikiDB.php trunk/pgsrc/ReleaseNotes Modified: trunk/lib/WikiDB.php =================================================================== --- trunk/lib/WikiDB.php 2025-02-16 23:48:35 UTC (rev 11117) +++ trunk/lib/WikiDB.php 2025-02-17 01:24:25 UTC (rev 11118) @@ -608,6 +608,9 @@ public function getTimestamp() { $ts = $this->get('_timestamp'); + if (!$ts) { //TODO: does flatfile have global db timestamp? + $ts = array(time(), 0); + } return sprintf("%d %d", $ts[0], $ts[1]); } @@ -617,6 +620,9 @@ public function touch() { $ts = $this->get('_timestamp'); + if (!$ts) { //TODO: does flatfile have global db timestamp? + $ts = array(time(), 0); + } $this->set('_timestamp', array(time(), $ts[1] + 1)); } Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-16 23:48:35 UTC (rev 11117) +++ trunk/pgsrc/ReleaseNotes 2025-02-17 01:24:25 UTC (rev 11118) @@ -1,4 +1,4 @@ -Date: Sun, 16 Feb 2025 23:34:56 +0000 +Date: Mon, 17 Feb 2025 01:10:53 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -29,7 +29,7 @@ * Added 404 error to ~HttpClient.php which is displayed now in ~PhotoAlbumPlugin. Removed url of defunct example website that broke PhpWikiManual. -* **Important bugfix for PHP8.3 and newer:** Fixed garbled display of pages +* **Important bugfix for PHP 8.3 and newer:** Fixed garbled display of pages due to depreciated errors. Also try harder to suppress depreciated errors on all PHP versions. Set ##DEBUG=2## in ##config.ini## to view depreciated errors, and ##DEBUG=1## for basic errors. Added hooks for css formatting of @@ -58,7 +58,10 @@ conflict or merging a dumpload. * Fixed broken Merge edit functionality when loading dumps, also added diff preview. This means themes using custom editpage.tmpl need to be updated - with new $EDITING_OLD_REVISION_MESSAGE variable. + with new ##$EDITING_OLD_REVISION_MESSAGE## variable. +* **Important bugfix:** Fixed users unexpectedly being logged out. Affected + flatfile database and probably other db types also. Improved by sanity + checking of database global timestamp. == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-18 03:52:33
|
Revision: 11124 http://sourceforge.net/p/phpwiki/code/11124 Author: carstenklapp Date: 2025-02-18 03:52:31 +0000 (Tue, 18 Feb 2025) Log Message: ----------- Updating install docs for 1.6.5 Modified Paths: -------------- trunk/INSTALL trunk/doc/HISTORY Added Paths: ----------- trunk/doc/INSTALL.macOS Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2025-02-18 03:41:07 UTC (rev 11123) +++ trunk/INSTALL 2025-02-18 03:52:31 UTC (rev 11124) @@ -1,7 +1,7 @@ REQUIREMENTS -PhpWiki 1.6.4 requires a web server with at least PHP version 5.3.3. -PhpWiki 1.6.4 should work for all PHP releases from 5.3.3 to 8.3.x. +PhpWiki 1.6.5 requires a web server with at least PHP version 5.3.3. +PhpWiki 1.6.5 should work for all PHP releases from 5.3.3 to 8.4.3. Visit <http://www.php.net> and <http://php.net/downloads.php> for downloads and information. Modified: trunk/doc/HISTORY =================================================================== --- trunk/doc/HISTORY 2025-02-18 03:41:07 UTC (rev 11123) +++ trunk/doc/HISTORY 2025-02-18 03:52:31 UTC (rev 11124) @@ -1,3 +1,6 @@ +The latest history can be found in pgsrc/ReleaseNotes which is basically a +text file that is also loaded into the wiki the first time you browse it. +------------------------------------------------------------------------------ 1.3.11 June, 28? 2004, Reini Urban: Lots of bugfixes, a new EDIT_TOOLBAR from mediawiki, more page Added: trunk/doc/INSTALL.macOS =================================================================== --- trunk/doc/INSTALL.macOS (rev 0) +++ trunk/doc/INSTALL.macOS 2025-02-18 03:52:31 UTC (rev 11124) @@ -0,0 +1,21 @@ +== Using PhpWiki with macOS == + +The included doc INSTALL.MacOSX is outdated and refers to older versions of +both Mac OS X and phpwiki. Indeed the last version of OSX to provide a +built-in web sharing feature in System Preferences was Mac OS X 10.7 (Lion). + +It should be possible to use PhpWiki with the latest macOS because Apache is +still bundled with the OS. Prior to macOS Monterey (12.0.0) PHP was also +included. In more recent macOS PHP can be installed via fink or homebrew, +probably requiring the xcode command line tools to install. A suitable +database is also required. + +Once you have the web server with PHP and a database backend, follow the +general steps in the INSTALLL doc and the database instructions in the doc +folder. + +If anyone with macOS and either an Apple Silicon or Intel Mac wants to +contribute their experiences installing phpwiki feel free to contact me and I +will update this document. + +CarstenKlapp <car...@us...> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-18 04:46:43
|
Revision: 11126 http://sourceforge.net/p/phpwiki/code/11126 Author: carstenklapp Date: 2025-02-18 04:46:41 +0000 (Tue, 18 Feb 2025) Log Message: ----------- set date of dumped files to wiki page date. Fix some metadata like lock not being applied to database when loading pages with acl specified Modified Paths: -------------- trunk/lib/loadsave.php trunk/pgsrc/ReleaseNotes Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2025-02-18 03:56:57 UTC (rev 11125) +++ trunk/lib/loadsave.php 2025-02-18 04:46:41 UTC (rev 11126) @@ -152,8 +152,7 @@ // normal dumps use date modified $head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . $LE; } else { - $use_page_creationdate_instead = 0; - if ($use_page_creationdate_instead) { + if (isPhpWikiTeam($current->get('author'))) { $head .= "Date: " . Rfc2822DateTime($page->get('date')) . $LE; // for special pagedumps where you don't want to change the date // in dumped pgsrc, use creation date @@ -438,11 +437,32 @@ flush(); assert($num == strlen($data)); fclose($fd); + + $current = $page->getCurrentRevision(false); + $author=$current->get('author'); + if (isPhpWikiTeam($author)) { //default_pgsrc_hasnotbeenmodified + $creationdate = $page->get('date'); + echo (" (unmodified default page)"); + // echo " DEBUG: setting as Creation Date: " . Rfc2822DateTime($creationdate) . " " . $creationdate . "\n"; + touch($directory . "/" . $filename, $creationdate); + } else { + $moddate = $current->get('mtime'); + // echo " DEBUG: setting as Modification Date: " . Rfc2822DateTime($moddate) . " " . $moddate . "\n"; + touch($directory . "/" . $filename, $moddate); + } } EndLoadDump($request); } +function isPhpWikiTeam($author) { + $translated_teamnames = array( //do not mark these with _() + "The PhpWiki Team", //en + "Das PhpWiki Team" //de + ); + return in_array($author, $translated_teamnames, true); +} + /** * @param WikiRequest $request */ @@ -561,6 +581,21 @@ flush(); assert($num == strlen($data)); fclose($fd); + + $current = $page->getCurrentRevision(false); + $author=$current->get('author'); + if (isPhpWikiTeam($author)) { //default_pgsrc_hasnotbeenmodified + $creationdate = $page->get('date'); + echo (" (unmodified default page)"); + // echo " DEBUG: setting as Creation Date: " . Rfc2822DateTime($creationdate) . " " . $creationdate . "\n"; + touch($directory . "/" . $filename, $creationdate); + } else { + $moddate = $current->get('mtime'); + // echo " DEBUG: setting as Modification Date: " . Rfc2822DateTime($moddate) . " " . $moddate . "\n"; + touch($directory . "/" . $filename, $moddate); + } + + } EndLoadDump($request); @@ -1237,39 +1272,12 @@ //$mesg->pushContent(" (also setting metadata)"); //$mesg->pushContent(" DEBUG: (\$isnewpage=$isnewpage)"); - // set hits - if ($isnewpage) { //don't load hits from pgsrc if page exists in database, only if new - if (isset($pagedata['hits'])) - { - //sanitize hits. - $pagedata['hits'] = intval($pagedata['hits']); - $mesg->pushContent(", Loading hits=".$pagedata['hits']); - $page->set('hits', $pagedata['hits']); - } - if (isset($pagedata['perm'])) - { - //todo: sanitize acl? - $mesg->pushContent(", Loading acl=".$pagedata['perm']); - $page->set('perm', $pagedata['perm']); - } - } else { - if (isset($pagedata['hits'])) - { - $mesg->pushContent(", Not overwriting hits"); - //unset($pagedata['hits']);//keep hits from loading over existing page - } - if (isset($pagedata['perm'])) - { - $mesg->pushContent(", Not overwriting acl"); - //unset($pagedata['perm']);//keep acl from loading over existing page - } - } - // set page locked // how to get current page lock status?? to customise messages more if (!empty($pagedata['locked'])) { $mesg->pushContent(", LOCKING"); - $page->set('locked', $pagedata['locked']); + // $mesg->pushContent(", lock=".$pagedata['locked']); + $page->set('locked', true); } else { if (!defined('ALLOW_PGSRC_TO_UNLOCK_PAGES')) { define ('ALLOW_PGSRC_TO_UNLOCK_PAGES' ,0);//debugging and security @@ -1286,7 +1294,6 @@ //unset($pagedata['locked']);//keep locked from loading over existing page } } - // set page creation date if (!empty($pagedata['date'])) { $page->set('date', $pagedata['date']); @@ -1298,12 +1305,40 @@ } //unset($pagedata['owner']); + //set perm last or it may interfere with setting other attributes like lock + // set hits and acl perm last but only if new page + if ($isnewpage) { //don't load hits from pgsrc if page exists in database, only if new + if (isset($pagedata['hits'])) + { + //sanitize hits. + $pagedata['hits'] = intval($pagedata['hits']); + $mesg->pushContent(", Loading hits=".$pagedata['hits']); + $page->set('hits', $pagedata['hits']); + } + if (isset($pagedata['perm'])) + { + //todo: sanitize acl? + $mesg->pushContent(", Loading acl=".$pagedata['perm']); + $page->set('perm', $pagedata['perm']); + } + } else { + if (isset($pagedata['hits'])) + { + $mesg->pushContent(", Not overwriting hits"); + //unset($pagedata['hits']);//keep hits from loading over existing page + } + if (isset($pagedata['perm'])) + { + $mesg->pushContent(", Not overwriting acl"); + //unset($pagedata['perm']);//keep acl from loading over existing page + } + } // if we want to load other fields in the future from // MIME file, here is where we do it: // // comment out the below to discard remaining data from loaded file for security. // loading remaining data: - // if ($s=sizeof($pagedata)) { + // if ($s=sizeof($pagedata)) { //flawed // echo "<pre>$s extra pagedata entries found in loaded file:\n"; // print_r($pagedata);//this formatting is fine, normal users will never get here // echo "</pre>"; @@ -1311,7 +1346,6 @@ // $mesg->pushContent(", setting '$key'='$value'"); // $page->set($key, $value); // } - // } $mesg->pushContent(HTML::br()); Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-02-18 03:56:57 UTC (rev 11125) +++ trunk/pgsrc/ReleaseNotes 2025-02-18 04:46:41 UTC (rev 11126) @@ -1,4 +1,4 @@ -Date: Mon, 17 Feb 2025 01:10:53 +0000 +Date: Tue, 18 Feb 2025 04:39:48 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -11,6 +11,8 @@ == 1.6.5 2025-XX-XX Marc-Etienne Vargenau, Carsten Klapp == +CarstenKlapp strikes back! + * Upgrade PEAR to release 1.10.16, PEAR DB to release 1.12.2 * Readme for basic Windows 11 install instructions. * Complete rewrite of ~SpaceWiki theme using modern css. @@ -51,14 +53,16 @@ - Improved filtering of unknown page metadata being loaded into database. - Dumped pages now use unix line endings instead of windows. Import of files with windows line endings should still work. + - **Fixed broken Merge edit** functionality when loading dumps, also added + diff preview. This means themes using custom editpage.tmpl need to be + updated with new ##$EDITING_OLD_REVISION_MESSAGE## variable. + - Date of files dumped now set to match page date in wiki. + - Fix some metadata not being applied to database when loading pages. * configurator.php is now in a less-broken state. Useable but needs more work. * New: Show a nice diff preview when editing a page if there is an edit conflict. * New: Prevent diff markers from being rendered as markup when editing a conflict or merging a dumpload. -* Fixed broken Merge edit functionality when loading dumps, also added diff - preview. This means themes using custom editpage.tmpl need to be updated - with new ##$EDITING_OLD_REVISION_MESSAGE## variable. * **Important bugfix:** Fixed users unexpectedly being logged out. Affected flatfile database and probably other db types also. Improved by sanity checking of database global timestamp. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-02-19 10:15:58
|
Revision: 11129 http://sourceforge.net/p/phpwiki/code/11129 Author: vargenau Date: 2025-02-19 10:15:46 +0000 (Wed, 19 Feb 2025) Log Message: ----------- Update PhpWiki version to 1.6.5 Modified Paths: -------------- trunk/INSTALL trunk/Makefile trunk/doc/INSTALL.windows trunk/locale/de/pgsrc/%C3%84hnlicheSeiten trunk/locale/de/pgsrc/AlleBenutzer trunk/locale/de/pgsrc/AlleSeiten trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir trunk/locale/de/pgsrc/BackLinks trunk/locale/de/pgsrc/BenutzerEinstellungen trunk/locale/de/pgsrc/DebugAuthInfo trunk/locale/de/pgsrc/DebugBackendInfo trunk/locale/de/pgsrc/DebugGruppenInfo trunk/locale/de/pgsrc/EditiereText trunk/locale/de/pgsrc/Einstellungen trunk/locale/de/pgsrc/FuzzySuche trunk/locale/de/pgsrc/G%C3%A4steBuch trunk/locale/de/pgsrc/GaesteBuch trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen trunk/locale/de/pgsrc/GleicheSeiten trunk/locale/de/pgsrc/Hilfe trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin trunk/locale/de/pgsrc/Hilfe%2FGuterStil trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin trunk/locale/de/pgsrc/Hilfe%2FPhpWiki trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin trunk/locale/de/pgsrc/Hilfe%2FWabiSabi trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin trunk/locale/de/pgsrc/HochLaden trunk/locale/de/pgsrc/HomePage trunk/locale/de/pgsrc/InterWikiListe trunk/locale/de/pgsrc/KategorieAktionSeite trunk/locale/de/pgsrc/KategorieKategorie trunk/locale/de/pgsrc/KategorieWikiPlugin trunk/locale/de/pgsrc/LeereSeiten trunk/locale/de/pgsrc/LinkSuche trunk/locale/de/pgsrc/ListeRelationen trunk/locale/de/pgsrc/MeistBesucht trunk/locale/de/pgsrc/ModerierteSeite trunk/locale/de/pgsrc/NeueSeite trunk/locale/de/pgsrc/Neueste%C3%84nderungen trunk/locale/de/pgsrc/NeuesteSeiten trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen trunk/locale/de/pgsrc/PhpWikiDokumentation trunk/locale/de/pgsrc/PhpWikiSystemverwalten trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclL%C3%B6schen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FEntfernen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FUmbenennen trunk/locale/de/pgsrc/PhpWikiUmfrage trunk/locale/de/pgsrc/SandKasten trunk/locale/de/pgsrc/SandKiste trunk/locale/de/pgsrc/SeiteBeobarten trunk/locale/de/pgsrc/SeiteFinden trunk/locale/de/pgsrc/SeiteSpeichern trunk/locale/de/pgsrc/SeitenInfo trunk/locale/de/pgsrc/SeitenProtokoll trunk/locale/de/pgsrc/SemantischeRelationen trunk/locale/de/pgsrc/SemantischeSuche trunk/locale/de/pgsrc/StartSeite trunk/locale/de/pgsrc/StartSeiteAlias trunk/locale/de/pgsrc/TitelSuche trunk/locale/de/pgsrc/Verlinkte%C3%84nderungen trunk/locale/de/pgsrc/VerwaisteSeiten trunk/locale/de/pgsrc/VolltextSuche trunk/locale/de/pgsrc/Vorlage%2FBeispiel trunk/locale/de/pgsrc/WerIstOnline trunk/locale/de/pgsrc/WikiAdminAuswahl trunk/locale/de/pgsrc/WunschZettelSeiten trunk/locale/de/pgsrc/ZufallsSeite trunk/locale/es/pgsrc/Ayuda trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas trunk/locale/es/pgsrc/Ayuda%2FBuenEstilo trunk/locale/es/pgsrc/Ayuda%2FComoUsarWiki trunk/locale/es/pgsrc/Ayuda%2FEditarElTexto trunk/locale/es/pgsrc/Ayuda%2FKBrown trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica trunk/locale/es/pgsrc/Ayuda%2FPhpWiki trunk/locale/es/pgsrc/Ayuda%2FReglasDeFormatoDeTexto trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead trunk/locale/es/pgsrc/Ayuda%2FWabiSabi trunk/locale/es/pgsrc/Ayuda%2FWikiWikiWeb trunk/locale/es/pgsrc/BuscarP%C3%A1gina trunk/locale/es/pgsrc/CajaDeArena trunk/locale/es/pgsrc/CambiosRecientes trunk/locale/es/pgsrc/HomePage trunk/locale/es/pgsrc/MasPopulares trunk/locale/es/pgsrc/NotasDeLiberacion trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/TodasLasPaginas trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/fr/pgsrc/%C3%89diterLesM%C3%A9taDonn%C3%A9es trunk/locale/fr/pgsrc/%C3%89ditionsR%C3%A9centes trunk/locale/fr/pgsrc/AdministrationDePhpWiki trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FChown trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FPurger trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRechercherRemplacer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRenommer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimerAcl trunk/locale/fr/pgsrc/Aide trunk/locale/fr/pgsrc/Aide%2F%C3%89diterLeContenu trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages trunk/locale/fr/pgsrc/Aide%2FCommentUtiliserUnWiki trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques trunk/locale/fr/pgsrc/Aide%2FGreffon%C3%89diterLesM%C3%A9taDonn%C3%A9es trunk/locale/fr/pgsrc/Aide%2FGreffonAjouterDesCommentaires trunk/locale/fr/pgsrc/Aide%2FGreffonAlbumPhotos trunk/locale/fr/pgsrc/Aide%2FGreffonBeauTableau trunk/locale/fr/pgsrc/Aide%2FGreffonBonjourLeMonde trunk/locale/fr/pgsrc/Aide%2FGreffonCalendrier trunk/locale/fr/pgsrc/Aide%2FGreffonColorationPhp trunk/locale/fr/pgsrc/Aide%2FGreffonCommenter trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUneTdm trunk/locale/fr/pgsrc/Aide%2FGreffonD%C3%A9plierLesSousPages trunk/locale/fr/pgsrc/Aide%2FGreffonHistoriqueAuteur trunk/locale/fr/pgsrc/Aide%2FGreffonHtmlPur trunk/locale/fr/pgsrc/Aide%2FGreffonInclureUnePage trunk/locale/fr/pgsrc/Aide%2FGreffonInfosSyst%C3%A8me trunk/locale/fr/pgsrc/Aide%2FGreffonIns%C3%A9rer trunk/locale/fr/pgsrc/Aide%2FGreffonListeDePages trunk/locale/fr/pgsrc/Aide%2FGreffonListeDesSousPages trunk/locale/fr/pgsrc/Aide%2FGreffonListeDuCalendrier trunk/locale/fr/pgsrc/Aide%2FGreffonPageAl%C3%A9atoire trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues trunk/locale/fr/pgsrc/Aide%2FGreffonRedirection trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss trunk/locale/fr/pgsrc/Aide%2FGreffonTableauAncienStyle trunk/locale/fr/pgsrc/Aide%2FGreffonTeX2png trunk/locale/fr/pgsrc/Aide%2FGreffonTestDeCache trunk/locale/fr/pgsrc/Aide%2FGreffonWiki trunk/locale/fr/pgsrc/Aide%2FGreffonWikiBlog trunk/locale/fr/pgsrc/Aide%2FIc%C3%B4nesDeLien trunk/locale/fr/pgsrc/Aide%2FInterWiki trunk/locale/fr/pgsrc/Aide%2FLienGoogle trunk/locale/fr/pgsrc/Aide%2FListeDePages trunk/locale/fr/pgsrc/Aide%2FPhpWiki trunk/locale/fr/pgsrc/Aide%2FR%C3%A8glesDeFormatageDesTextes trunk/locale/fr/pgsrc/Aide%2FSteve%20Wainstead trunk/locale/fr/pgsrc/Aide%2FStyleCorrect trunk/locale/fr/pgsrc/Aide%2FURLMagiquesPhpWiki trunk/locale/fr/pgsrc/Aide%2FWabiSabi trunk/locale/fr/pgsrc/Aide%2FWikiWikiWeb trunk/locale/fr/pgsrc/Aide%2FWikisUtilisantPhpWiki trunk/locale/fr/pgsrc/AliasAccueil trunk/locale/fr/pgsrc/Bac%C3%80Sable trunk/locale/fr/pgsrc/CarteInterWiki trunk/locale/fr/pgsrc/Cat%C3%A9gorieCat%C3%A9gorie trunk/locale/fr/pgsrc/Cat%C3%A9gorieGreffonWiki trunk/locale/fr/pgsrc/Cat%C3%A9gorieGroupes trunk/locale/fr/pgsrc/Cat%C3%A9goriePageDAction trunk/locale/fr/pgsrc/Cat%C3%A9goriePagesAccueil trunk/locale/fr/pgsrc/ChangementsLi%C3%A9s trunk/locale/fr/pgsrc/ChercherUnePage trunk/locale/fr/pgsrc/ClassezLa trunk/locale/fr/pgsrc/CommentairesR%C3%A9cents trunk/locale/fr/pgsrc/Cr%C3%A9erUnePage trunk/locale/fr/pgsrc/D%C3%A9bogageDePhpWiki trunk/locale/fr/pgsrc/D%C3%A9poserUnFichier trunk/locale/fr/pgsrc/Derni%C3%A8resModifs trunk/locale/fr/pgsrc/Derni%C3%A8resModifsCompl%C3%A8tes trunk/locale/fr/pgsrc/DocumentationDePhpWiki trunk/locale/fr/pgsrc/GestionnaireDesGreffons trunk/locale/fr/pgsrc/HistoriqueDeLaPage trunk/locale/fr/pgsrc/HomePage trunk/locale/fr/pgsrc/InfosAuthentification trunk/locale/fr/pgsrc/InfosDeD%C3%A9bogage trunk/locale/fr/pgsrc/InfosSurLaPage trunk/locale/fr/pgsrc/LesPlusVisit%C3%A9es trunk/locale/fr/pgsrc/ManuelPhpWiki trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki trunk/locale/fr/pgsrc/NotesDeVersion trunk/locale/fr/pgsrc/PageAccueil trunk/locale/fr/pgsrc/PageAl%C3%A9atoire trunk/locale/fr/pgsrc/PagesFloues trunk/locale/fr/pgsrc/PagesOrphelines trunk/locale/fr/pgsrc/PagesRecherch%C3%A9es trunk/locale/fr/pgsrc/PagesSemblables trunk/locale/fr/pgsrc/PierrickMeignen trunk/locale/fr/pgsrc/Pr%C3%A9f%C3%A9rencesUtilisateur trunk/locale/fr/pgsrc/QuiEstEnLigne trunk/locale/fr/pgsrc/R%C3%A9cup%C3%A9rationDeLaPage trunk/locale/fr/pgsrc/R%C3%A9troLiens trunk/locale/fr/pgsrc/RechercheEnTexteInt%C3%A9gral trunk/locale/fr/pgsrc/RechercheInterWiki trunk/locale/fr/pgsrc/RechercheParTitre trunk/locale/fr/pgsrc/SommaireDuProjet trunk/locale/fr/pgsrc/SondagePhpWiki trunk/locale/fr/pgsrc/Suivre trunk/locale/fr/pgsrc/TousLesUtilisateurs trunk/locale/fr/pgsrc/ToutesLesPages trunk/locale/fr/pgsrc/TraduireUnTexte trunk/locale/fr/pgsrc/VersionsR%C3%A9centes trunk/locale/fr/pgsrc/VisiteursR%C3%A9cents trunk/locale/it/pgsrc/Aiuto trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine trunk/locale/it/pgsrc/Aiuto%2FBuonStile trunk/locale/it/pgsrc/Aiuto%2FComeUsareWiki trunk/locale/it/pgsrc/Aiuto%2FMagicPhpWikiURLs trunk/locale/it/pgsrc/Aiuto%2FModificaIlTesto trunk/locale/it/pgsrc/Aiuto%2FPhpWiki trunk/locale/it/pgsrc/Aiuto%2FRegoleFormattazioneTesto trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento trunk/locale/it/pgsrc/Aiuto%2FWabiSabi trunk/locale/it/pgsrc/Aiuto%2FWikiWikiWeb trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki%2FRimuovi trunk/locale/it/pgsrc/CambiamentiRecenti trunk/locale/it/pgsrc/FuzzyPages trunk/locale/it/pgsrc/HomePage trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/Pi%C3%B9Popolari trunk/locale/it/pgsrc/RicercaDelTesto trunk/locale/it/pgsrc/RicercaPerTitolo trunk/locale/it/pgsrc/ScatolaDiSabbia trunk/locale/it/pgsrc/TrovaPagina trunk/locale/it/pgsrc/TutteLePagine trunk/locale/it/pgsrc/VisitatoriRecenti trunk/locale/ja/pgsrc/%E3%83%9A%E3%83%BC%E3%82%B8%E6%A4%9C%E7%B4%A2 trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 trunk/locale/ja/pgsrc/HomePage trunk/locale/nl/pgsrc/Help trunk/locale/nl/pgsrc/Help%2FGebruikersVoorkeuren trunk/locale/nl/pgsrc/Help%2FGoedeStijl trunk/locale/nl/pgsrc/Help%2FHoeWikiTeGebruiken trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen trunk/locale/nl/pgsrc/Help%2FPhpWiki trunk/locale/nl/pgsrc/Help%2FTekstFormatteringsRegels trunk/locale/nl/pgsrc/Help%2FToverPhpWikiURLs trunk/locale/nl/pgsrc/Help%2FVeranderTekst trunk/locale/nl/pgsrc/Help%2FWabiSabi trunk/locale/nl/pgsrc/Help%2FWikiWikiWeb trunk/locale/nl/pgsrc/HomePage trunk/locale/nl/pgsrc/MeestBezocht trunk/locale/nl/pgsrc/PhpWikiBeheer trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVerwijder trunk/locale/nl/pgsrc/PhpWikiBeheer%2FZoekVervangt trunk/locale/nl/pgsrc/PhpWikiDocumentatie trunk/locale/nl/pgsrc/RecenteBezoekers trunk/locale/nl/pgsrc/RecenteVeranderingen trunk/locale/nl/pgsrc/ThuisPagina trunk/locale/nl/pgsrc/UitgaveNoten trunk/locale/nl/pgsrc/ZandBak trunk/locale/nl/pgsrc/ZoekPagina trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/pgsrc/Framsida trunk/locale/sv/pgsrc/G%C3%A4stboken trunk/locale/sv/pgsrc/Hj%C3%A4lp trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FHurManAnv%C3%A4nderWiki trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FPhpWiki trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FRedigeraText trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FTextformateringsregler trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FWikiWikiWeb trunk/locale/sv/pgsrc/HomePage trunk/locale/sv/pgsrc/MestPopul%C3%A4r trunk/locale/sv/pgsrc/PhpWikiAdministration trunk/locale/sv/pgsrc/S%C3%B6kEfterSida trunk/locale/sv/pgsrc/Sandl%C3%A5dan trunk/locale/sv/pgsrc/Senaste%C3%84ndringar trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 trunk/locale/zh/pgsrc/AllPages trunk/locale/zh/pgsrc/AllUsers trunk/locale/zh/pgsrc/BackLinks trunk/locale/zh/pgsrc/DebugBackendInfo trunk/locale/zh/pgsrc/FindPage trunk/locale/zh/pgsrc/FullRecentChanges trunk/locale/zh/pgsrc/FullTextSearch trunk/locale/zh/pgsrc/FuzzyPages trunk/locale/zh/pgsrc/Help trunk/locale/zh/pgsrc/Help%2FAddingPages trunk/locale/zh/pgsrc/Help%2FBackLinksPlugin trunk/locale/zh/pgsrc/Help%2FCalendarPlugin trunk/locale/zh/pgsrc/Help%2FCommentPlugin trunk/locale/zh/pgsrc/Help%2FEditText trunk/locale/zh/pgsrc/Help%2FHelloWorldPlugin trunk/locale/zh/pgsrc/Help%2FHowToUseWiki trunk/locale/zh/pgsrc/Help%2FLinkIcons trunk/locale/zh/pgsrc/Help%2FMagicPhpWikiURLs trunk/locale/zh/pgsrc/Help%2FMoreAboutMechanics trunk/locale/zh/pgsrc/Help%2FOldStyleTablePlugin trunk/locale/zh/pgsrc/Help%2FPhotoAlbumPlugin trunk/locale/zh/pgsrc/Help%2FPhpHighlightPlugin trunk/locale/zh/pgsrc/Help%2FPhpWiki trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin trunk/locale/zh/pgsrc/Help%2FRedirectToPlugin trunk/locale/zh/pgsrc/Help%2FSystemInfoPlugin trunk/locale/zh/pgsrc/Help%2FTranscludePlugin trunk/locale/zh/pgsrc/Help%2FWikiPlugin trunk/locale/zh/pgsrc/Help%2FWikiWikiWeb trunk/locale/zh/pgsrc/HomePage trunk/locale/zh/pgsrc/HomePageAlias trunk/locale/zh/pgsrc/InterWikiMap trunk/locale/zh/pgsrc/InterWikiSearch trunk/locale/zh/pgsrc/LikePages trunk/locale/zh/pgsrc/OrphanedPages trunk/locale/zh/pgsrc/PageDump trunk/locale/zh/pgsrc/PhpWikiAdministration trunk/locale/zh/pgsrc/PhpWikiDebug trunk/locale/zh/pgsrc/RandomPage trunk/locale/zh/pgsrc/RecentChanges trunk/locale/zh/pgsrc/RecentEdits trunk/locale/zh/pgsrc/RecentVisitors trunk/locale/zh/pgsrc/SandBox trunk/locale/zh/pgsrc/TitleSearch trunk/locale/zh/pgsrc/UpLoad trunk/locale/zh/pgsrc/UserPreferences trunk/locale/zh/pgsrc/WantedPages trunk/pgsrc/AllPages trunk/pgsrc/AllPagesByAcl trunk/pgsrc/AllPagesCreatedByMe trunk/pgsrc/AllPagesLastEditedByMe trunk/pgsrc/AllPagesOwnedByMe trunk/pgsrc/AllUserPages trunk/pgsrc/AllUsers trunk/pgsrc/AppendText trunk/pgsrc/AuthorHistory trunk/pgsrc/BackLinks trunk/pgsrc/BlogArchives trunk/pgsrc/BlogJournal trunk/pgsrc/CategoryActionPage trunk/pgsrc/CategoryCategory trunk/pgsrc/CategoryGroup trunk/pgsrc/CategoryHomePages trunk/pgsrc/CategoryWikiPlugin trunk/pgsrc/Copyrights trunk/pgsrc/CreatePage trunk/pgsrc/FindPage trunk/pgsrc/FullRecentChanges trunk/pgsrc/FullTextSearch trunk/pgsrc/FuzzyPages trunk/pgsrc/GeneralDisclaimer trunk/pgsrc/Help trunk/pgsrc/Help%2FActionPage trunk/pgsrc/Help%2FAddCommentPlugin trunk/pgsrc/Help%2FAddingPages trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users trunk/pgsrc/Help%2FAllPagesPlugin trunk/pgsrc/Help%2FAllUsersPlugin trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin trunk/pgsrc/Help%2FAppendTextPlugin trunk/pgsrc/Help%2FAsciiMathPlugin trunk/pgsrc/Help%2FAsciiSVGPlugin trunk/pgsrc/Help%2FAtomFeedPlugin trunk/pgsrc/Help%2FAuthorHistoryPlugin trunk/pgsrc/Help%2FBackLinksPlugin trunk/pgsrc/Help%2FBlogArchivesPlugin trunk/pgsrc/Help%2FBlogJournalPlugin trunk/pgsrc/Help%2FBoxRightPlugin trunk/pgsrc/Help%2FCacheTestPlugin trunk/pgsrc/Help%2FCalendarListPlugin trunk/pgsrc/Help%2FCalendarPlugin trunk/pgsrc/Help%2FCategories trunk/pgsrc/Help%2FChartPlugin trunk/pgsrc/Help%2FCommentPlugin trunk/pgsrc/Help%2FCreateBibPlugin trunk/pgsrc/Help%2FCreatePagePlugin trunk/pgsrc/Help%2FCreateTocPlugin trunk/pgsrc/Help%2FCurrentTimePlugin trunk/pgsrc/Help%2FDeadEndPagesPlugin trunk/pgsrc/Help%2FDiffPlugin trunk/pgsrc/Help%2FDynamicIncludePagePlugin trunk/pgsrc/Help%2FEditMetaDataPlugin trunk/pgsrc/Help%2FEditText trunk/pgsrc/Help%2FFacebookLikePlugin trunk/pgsrc/Help%2FFileInfoPlugin trunk/pgsrc/Help%2FFoafViewerPlugin trunk/pgsrc/Help%2FFullTextSearchPlugin trunk/pgsrc/Help%2FFuzzyPagesPlugin trunk/pgsrc/Help%2FGoToPlugin trunk/pgsrc/Help%2FGoodStyle trunk/pgsrc/Help%2FGoogleLink trunk/pgsrc/Help%2FGoogleMapsPlugin trunk/pgsrc/Help%2FGooglePluginPlugin trunk/pgsrc/Help%2FGraphVizPlugin trunk/pgsrc/Help%2FHelloWorldPlugin trunk/pgsrc/Help%2FHowToUseWiki trunk/pgsrc/Help%2FHtmlConverterPlugin trunk/pgsrc/Help%2FImages trunk/pgsrc/Help%2FIncludePagePlugin trunk/pgsrc/Help%2FIncludePagesPlugin trunk/pgsrc/Help%2FIncludeSiteMapPlugin trunk/pgsrc/Help%2FIncludeTreePlugin trunk/pgsrc/Help%2FInterWikiSearchPlugin trunk/pgsrc/Help%2FJabberPresencePlugin trunk/pgsrc/Help%2FJeff%20Dairiki trunk/pgsrc/Help%2FLdapSearchPlugin trunk/pgsrc/Help%2FLikePagesPlugin trunk/pgsrc/Help%2FLinkDatabasePlugin trunk/pgsrc/Help%2FLinkIcons trunk/pgsrc/Help%2FListPagesPlugin trunk/pgsrc/Help%2FListRelationsPlugin trunk/pgsrc/Help%2FListSubpagesPlugin trunk/pgsrc/Help%2FMagicPhpWikiURLs trunk/pgsrc/Help%2FMediawikiTablePlugin trunk/pgsrc/Help%2FModeratedPagePlugin trunk/pgsrc/Help%2FMoreAboutMechanics trunk/pgsrc/Help%2FMostPopularPlugin trunk/pgsrc/Help%2FNewPagesPerUserPlugin trunk/pgsrc/Help%2FNoCachePlugin trunk/pgsrc/Help%2FOldStyleTablePlugin trunk/pgsrc/Help%2FOrphanedPagesPlugin trunk/pgsrc/Help%2FPageDumpPlugin trunk/pgsrc/Help%2FPageGroupPlugin trunk/pgsrc/Help%2FPageHistoryPlugin trunk/pgsrc/Help%2FPageInfoPlugin trunk/pgsrc/Help%2FPageList trunk/pgsrc/Help%2FPagePermissions trunk/pgsrc/Help%2FPageTrailPlugin trunk/pgsrc/Help%2FPasswordResetPlugin trunk/pgsrc/Help%2FPhpHighlightPlugin trunk/pgsrc/Help%2FPhpWiki trunk/pgsrc/Help%2FPloticusPlugin trunk/pgsrc/Help%2FPluginManagerPlugin trunk/pgsrc/Help%2FPopUpPlugin trunk/pgsrc/Help%2FPopularNearbyPlugin trunk/pgsrc/Help%2FPopularTagsPlugin trunk/pgsrc/Help%2FPredefinedIcons trunk/pgsrc/Help%2FPreferenceAppPlugin trunk/pgsrc/Help%2FPrevNextPlugin trunk/pgsrc/Help%2FProcessingPlugin trunk/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRateItPlugin trunk/pgsrc/Help%2FRawHtmlPlugin trunk/pgsrc/Help%2FRecentChangesPlugin trunk/pgsrc/Help%2FRecentCommentsPlugin trunk/pgsrc/Help%2FRecentEditsPlugin trunk/pgsrc/Help%2FRecentReferrersPlugin trunk/pgsrc/Help%2FRedirectToPlugin trunk/pgsrc/Help%2FReini%20Urban trunk/pgsrc/Help%2FRelatedChangesPlugin trunk/pgsrc/Help%2FRichTablePlugin trunk/pgsrc/Help%2FRssFeedPlugin trunk/pgsrc/Help%2FSearchHighlightPlugin trunk/pgsrc/Help%2FSemanticRelations trunk/pgsrc/Help%2FSemanticRelationsPlugin trunk/pgsrc/Help%2FSemanticSearchAdvancedPlugin trunk/pgsrc/Help%2FSemanticSearchPlugin trunk/pgsrc/Help%2FSiteMapPlugin trunk/pgsrc/Help%2FSpellCheckPlugin trunk/pgsrc/Help%2FSpreadsheet trunk/pgsrc/Help%2FSqlResultPlugin trunk/pgsrc/Help%2FSteve%20Wainstead trunk/pgsrc/Help%2FSyncWikiPlugin trunk/pgsrc/Help%2FSyntaxHighlighterPlugin trunk/pgsrc/Help%2FTeX2pngPlugin trunk/pgsrc/Help%2FTemplatePlugin trunk/pgsrc/Help%2FTexToPngPlugin trunk/pgsrc/Help%2FTextFormattingRules trunk/pgsrc/Help%2FTitleSearchPlugin trunk/pgsrc/Help%2FTranscludePlugin trunk/pgsrc/Help%2FTranslateTextPlugin trunk/pgsrc/Help%2FUnfoldSubpagesPlugin trunk/pgsrc/Help%2FUpLoadPlugin trunk/pgsrc/Help%2FUriResolverPlugin trunk/pgsrc/Help%2FUserPreferencesPlugin trunk/pgsrc/Help%2FUserRatingsPlugin trunk/pgsrc/Help%2FVideoPlugin trunk/pgsrc/Help%2FVisualWikiPlugin trunk/pgsrc/Help%2FWabiSabi trunk/pgsrc/Help%2FWantedPagesPlugin trunk/pgsrc/Help%2FWatchPagePlugin trunk/pgsrc/Help%2FWhoIsOnlinePlugin trunk/pgsrc/Help%2FWikiAdminChownPlugin trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin trunk/pgsrc/Help%2FWikiAdminPurgePlugin trunk/pgsrc/Help%2FWikiAdminRemovePlugin trunk/pgsrc/Help%2FWikiAdminRenamePlugin trunk/pgsrc/Help%2FWikiAdminSearchReplacePlugin trunk/pgsrc/Help%2FWikiAdminSelectPlugin trunk/pgsrc/Help%2FWikiAdminSetAclPlugin trunk/pgsrc/Help%2FWikiAdminSetAclSimplePlugin trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin trunk/pgsrc/Help%2FWikiAdminUtilsPlugin trunk/pgsrc/Help%2FWikiBlogPlugin trunk/pgsrc/Help%2FWikiFormPlugin trunk/pgsrc/Help%2FWikiFormRichPlugin trunk/pgsrc/Help%2FWikiForumPlugin trunk/pgsrc/Help%2FWikiPlugin trunk/pgsrc/Help%2FWikiPollPlugin trunk/pgsrc/Help%2FWikiTranslationPlugin trunk/pgsrc/Help%2FWikicreole trunk/pgsrc/Help%2FWikicreoleTablePlugin trunk/pgsrc/Help%2FYouTubePlugin trunk/pgsrc/Help%2Ftext2pngPlugin trunk/pgsrc/HomePage trunk/pgsrc/HomePageAlias trunk/pgsrc/InterWikiSearch trunk/pgsrc/LdapSearch trunk/pgsrc/LeastPopular trunk/pgsrc/LikePages trunk/pgsrc/LinkDatabase trunk/pgsrc/LinkSearch trunk/pgsrc/ListRelations trunk/pgsrc/LockedPages trunk/pgsrc/ModeratedPage trunk/pgsrc/MostPopular trunk/pgsrc/MyRatings trunk/pgsrc/MyRecentChanges trunk/pgsrc/MyRecentEdits trunk/pgsrc/NewPagesPerUser trunk/pgsrc/OrphanedPages trunk/pgsrc/PageDump trunk/pgsrc/PageHistory trunk/pgsrc/PageInfo trunk/pgsrc/PasswordReset trunk/pgsrc/PhpWikiAdministration trunk/pgsrc/PhpWikiAdministration%2FChown trunk/pgsrc/PhpWikiAdministration%2FDeleteAcl trunk/pgsrc/PhpWikiAdministration%2FPurge trunk/pgsrc/PhpWikiAdministration%2FRemove trunk/pgsrc/PhpWikiAdministration%2FRename trunk/pgsrc/PhpWikiAdministration%2FSearchReplace trunk/pgsrc/PhpWikiAdministration%2FSetAcl trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/pgsrc/PhpWikiDocumentation trunk/pgsrc/PhpWikiPoll trunk/pgsrc/PhpWikiRecentChanges trunk/pgsrc/PluginManager trunk/pgsrc/ProjectSummary trunk/pgsrc/RandomPage trunk/pgsrc/RateIt trunk/pgsrc/RecentChanges trunk/pgsrc/RecentChangesMyPages trunk/pgsrc/RecentComments trunk/pgsrc/RecentEdits trunk/pgsrc/RecentNewPages trunk/pgsrc/RecentReleases trunk/pgsrc/RecentVisitors trunk/pgsrc/RelatedChanges trunk/pgsrc/San%20Diego trunk/pgsrc/SandBox trunk/pgsrc/SearchHighlight trunk/pgsrc/SemanticRelations trunk/pgsrc/SemanticSearch trunk/pgsrc/SetGlobalAccessRights trunk/pgsrc/SetGlobalAccessRightsSimple trunk/pgsrc/SpecialPages trunk/pgsrc/SpellCheck trunk/pgsrc/SystemInfo trunk/pgsrc/Template%2FAttribute trunk/pgsrc/Template%2FCategory trunk/pgsrc/Template%2FExample trunk/pgsrc/Template%2FLinkto trunk/pgsrc/Template%2FNewPlugin trunk/pgsrc/Template%2FRelation trunk/pgsrc/Template%2FTalk trunk/pgsrc/Template%2FUserPage trunk/pgsrc/The%20PhpWiki%20programming%20team trunk/pgsrc/TitleSearch trunk/pgsrc/TranslateText trunk/pgsrc/UpLoad trunk/pgsrc/UriResolver trunk/pgsrc/UserContribs trunk/pgsrc/UserPreferences trunk/pgsrc/UserRatings trunk/pgsrc/WantedPages trunk/pgsrc/WatchPage trunk/pgsrc/WhoIsOnline trunk/pgsrc/WikiBlog trunk/pgsrc/area trunk/pgsrc/is_a trunk/pgsrc/located_in trunk/pgsrc/population trunk/themes/blog/pgsrc/About trunk/themes/blog/pgsrc/Blog trunk/themes/blog/pgsrc/CategoryHowTo trunk/themes/blog/pgsrc/HomePage trunk/themes/blog/pgsrc/HowTo trunk/themes/blog/pgsrc/PhotoAlbum trunk/themes/fusionforge/pgsrc/CategoryWiki%20templates trunk/themes/fusionforge/pgsrc/CategoryWiki%20user trunk/themes/fusionforge/pgsrc/ExternalPages trunk/themes/fusionforge/pgsrc/FindPage trunk/themes/fusionforge/pgsrc/FullTextSearch trunk/themes/fusionforge/pgsrc/HomePage trunk/themes/fusionforge/pgsrc/PhpWikiAdministration trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetExternal trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple trunk/themes/fusionforge/pgsrc/SpecialPages trunk/themes/fusionforge/pgsrc/TextFormattingRules trunk/themes/fusionforge/pgsrc/TitleSearch trunk/themes/fusionforge/pgsrc/UpLoad trunk/themes/fusionforge/pgsrc/colorbox trunk/themes/fusionforge/pgsrc/titlebar trunk/themes/wikilens/pgsrc/LeftbarContent Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/INSTALL 2025-02-19 10:15:46 UTC (rev 11129) @@ -113,7 +113,7 @@ Unzip this file into the directory where you want it to live. That's it. -bash$ unzip phpwiki-1.6.4.zip +bash$ unzip phpwiki-1.6.5.zip In the 'config/' subdirectory copy 'config-dist.ini' to 'config.ini' and edit the settings in 'config.ini' to your liking. Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/Makefile 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,4 +1,4 @@ -VERSION=1.6.4 +VERSION=1.6.5 RPMBUILD=rpmbuild clean: Modified: trunk/doc/INSTALL.windows =================================================================== --- trunk/doc/INSTALL.windows 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/doc/INSTALL.windows 2025-02-19 10:15:46 UTC (rev 11129) @@ -13,7 +13,7 @@ intl.default_locale=en }}} - unzip phpwiki -- copy phpwiki-1.6.4 directory to c:\Apache24\htdocs\ or wherever you +- copy phpwiki-1.6.5 directory to c:\Apache24\htdocs\ or wherever you installed apache and rename it to phpwiki - copy phpwiki\config\config-dist.ini to phpwiki\config\config.ini Modified: trunk/locale/de/pgsrc/%C3%84hnlicheSeiten =================================================================== --- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=%C3%84hnlicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleBenutzer =================================================================== --- trunk/locale/de/pgsrc/AlleBenutzer 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/AlleBenutzer 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=AlleBenutzer; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeiten =================================================================== --- trunk/locale/de/pgsrc/AlleSeiten 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/AlleSeiten 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=AlleSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=AlleSeitenEditiertVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=AlleSeitenErzeugtVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=AlleSeitenImBesitzVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/BackLinks =================================================================== --- trunk/locale/de/pgsrc/BackLinks 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/BackLinks 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=BackLinks; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BenutzerEinstellungen =================================================================== --- trunk/locale/de/pgsrc/BenutzerEinstellungen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/BenutzerEinstellungen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=BenutzerEinstellungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/DebugAuthInfo =================================================================== --- trunk/locale/de/pgsrc/DebugAuthInfo 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/DebugAuthInfo 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=DebugAuthInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugBackendInfo =================================================================== --- trunk/locale/de/pgsrc/DebugBackendInfo 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/DebugBackendInfo 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=DebugBackendInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugGruppenInfo =================================================================== --- trunk/locale/de/pgsrc/DebugGruppenInfo 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/DebugGruppenInfo 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=DebugGruppenInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/EditiereText =================================================================== --- trunk/locale/de/pgsrc/EditiereText 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/EditiereText 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=EditiereText; flags=""; Modified: trunk/locale/de/pgsrc/Einstellungen =================================================================== --- trunk/locale/de/pgsrc/Einstellungen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Einstellungen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Einstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/FuzzySuche =================================================================== --- trunk/locale/de/pgsrc/FuzzySuche 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/FuzzySuche 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=FuzzySuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/G%C3%A4steBuch =================================================================== --- trunk/locale/de/pgsrc/G%C3%A4steBuch 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/G%C3%A4steBuch 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; flags=""; Modified: trunk/locale/de/pgsrc/GaesteBuch =================================================================== --- trunk/locale/de/pgsrc/GaesteBuch 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/GaesteBuch 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=GaesteBuch; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Geringf%C3%BCgige%C3%84nderungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/GleicheSeiten =================================================================== --- trunk/locale/de/pgsrc/GleicheSeiten 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/GleicheSeiten 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=GleicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe =================================================================== --- trunk/locale/de/pgsrc/Hilfe 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAktionsSeite; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAutorenProtokollPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FBackLinksPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGraphVizPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FGuterStil =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGuterStil; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHalloWeltPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHochLadenPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FInhaltsVerzeichnisPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FModerierteSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeuerKommentarPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhpWiki =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhpWiki; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSeitenErzeugen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSteve%20Wainstead; flags=""; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextBearbeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextFormatierungsRegeln; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FVorlagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWabiSabi =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWabiSabi; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWieManWikiBenutzt; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiTechnik; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiWikiWeb; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hilfe%2FZufallsSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/HochLaden =================================================================== --- trunk/locale/de/pgsrc/HochLaden 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/HochLaden 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HochLaden; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/HomePage =================================================================== --- trunk/locale/de/pgsrc/HomePage 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/HomePage 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; flags=""; Modified: trunk/locale/de/pgsrc/InterWikiListe =================================================================== --- trunk/locale/de/pgsrc/InterWikiListe 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/InterWikiListe 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=InterWikiListe; pagetype=interwikimap; Modified: trunk/locale/de/pgsrc/KategorieAktionSeite =================================================================== --- trunk/locale/de/pgsrc/KategorieAktionSeite 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/KategorieAktionSeite 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=KategorieAktionSeite; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/KategorieKategorie =================================================================== --- trunk/locale/de/pgsrc/KategorieKategorie 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/KategorieKategorie 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=KategorieKategorie; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/KategorieWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/KategorieWikiPlugin 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/KategorieWikiPlugin 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=KategorieWikiPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/LeereSeiten =================================================================== --- trunk/locale/de/pgsrc/LeereSeiten 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/LeereSeiten 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=LeereSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/LinkSuche =================================================================== --- trunk/locale/de/pgsrc/LinkSuche 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/LinkSuche 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=LinkSuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeRelationen =================================================================== --- trunk/locale/de/pgsrc/ListeRelationen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/ListeRelationen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ListeRelationen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/MeistBesucht =================================================================== --- trunk/locale/de/pgsrc/MeistBesucht 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/MeistBesucht 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=MeistBesucht; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/ModerierteSeite 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ModerierteSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/NeueSeite =================================================================== --- trunk/locale/de/pgsrc/NeueSeite 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/NeueSeite 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=NeueSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Neueste%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Neueste%C3%84nderungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/NeuesteSeiten =================================================================== --- trunk/locale/de/pgsrc/NeuesteSeiten 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/NeuesteSeiten 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=NeuesteSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen =================================================================== --- trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2025-02-18 07:46:33 UTC (rev 11128) +++ trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2025-02-19 10:15:46 UTC (rev 11129) @@ -1,5 +1,5 @@ -Date: Fri, 16 Dec 2022 15:26:16 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.4) +Date: Wed, 19 Feb 2025 11:10:15 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=PasswortZur%C3%BCcksetzen; flags=PAGE_LOCKED; Modified: tru... [truncated message content] |
From: <car...@us...> - 2025-02-21 01:50:24
|
Revision: 11156 http://sourceforge.net/p/phpwiki/code/11156 Author: carstenklapp Date: 2025-02-21 01:50:21 +0000 (Fri, 21 Feb 2025) Log Message: ----------- Rolled back unfished crypt changes. Merged in user submitted patch, fixed some lines not being commented out in output. Fixed numeric values not being commented out when equal to default. Modified Paths: -------------- trunk/config/config-default.ini trunk/configurator.php Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2025-02-20 00:31:17 UTC (rev 11155) +++ trunk/config/config-default.ini 2025-02-21 01:50:21 UTC (rev 11156) @@ -113,5 +113,3 @@ PLUGIN_CACHED_USECACHE = true PLUGIN_CACHED_FORCE_SYNCMAP = true PLUGIN_CACHED_IMGTYPES = "png|gif|gd|gd2|jpeg|wbmp|xbm|xpm" -ADMIN_USER = "AdminUser" -ADMIN_PASSWD = "password" Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2025-02-20 00:31:17 UTC (rev 11155) +++ trunk/configurator.php 2025-02-21 01:50:21 UTC (rev 11156) @@ -1,4 +1,7 @@ <?php +// defining these 2 here is a temporary fix +if (!defined('ADMIN_USER')) define('ADMIN_USER', ''); +if (!defined('ADMIN_PASSWD')) define('ADMIN_PASSWD', ''); /** * Copyright © 2002,2003,2005,2008-2010 $ThePhpWikiProgrammingTeam * Copyright © 2002 Martin Geisler <gim...@gi...> @@ -172,15 +175,8 @@ } // check password if (ENCRYPTED_PASSWD) { - if (!function_exists('DEBUGpassword_hash')) { - if (crypt($admin_pw, ADMIN_PASSWD) != ADMIN_PASSWD) { - _http_logout(); - } - } else { - $verified=password_verify($admin_pw, ADMIN_PASSWD); - if (!$verified) { - _http_logout(); - } + if (crypt($admin_pw, ADMIN_PASSWD) != ADMIN_PASSWD) { + _http_logout(); } } elseif ($admin_pw != ADMIN_PASSWD) { _http_logout(); @@ -617,7 +613,8 @@ new numeric_define_optional('MINOR_EDIT_TIMEOUT', MINOR_EDIT_TIMEOUT); $properties["Disabled Actions"] = - new array_define('DISABLED_ACTIONS', array("dumpserial", "loadfile"), "Actions listed in this array will not be allowed. The complete list + new array_define('DISABLED_ACTIONS', array("dumpserial", "loadfile"), " +Actions listed in this array will not be allowed. The complete list of actions can be found in lib/main.php with the function getActionDescription. @@ -872,7 +869,7 @@ ); $properties["dba timeout"] = - new numeric_define("DATABASE_TIMEOUT", DATABASE_TIMEOUT, " + new numeric_define_optional("DATABASE_TIMEOUT", DATABASE_TIMEOUT, " Recommended values are 10-20 seconds. The more load the server has, the higher the timeout."); $properties["DATABASE_OPTIMISE_FREQUENCY"] = @@ -966,7 +963,7 @@ new boolean_define('ENABLE_AUTH_OPENID'); $properties["PASSWORD_LENGTH_MINIMUM"] = - new numeric_define('PASSWORD_LENGTH_MINIMUM', PASSWORD_LENGTH_MINIMUM); + new numeric_define_optional('PASSWORD_LENGTH_MINIMUM', PASSWORD_LENGTH_MINIMUM); $properties["USER_AUTH_POLICY"] = new _define_selection( @@ -1468,19 +1465,8 @@ $properties["Data Path"] = new _define_commented_optional('DATA_PATH', dirname($scriptname)); - - if (defined('PHPWIKI_DIR')) { - $phpwiki_dir = PHPWIKI_DIR; - } else { - if (substr(PHP_OS, 0, 3) == 'WIN') { - $phpwiki_dir = dirname(__FILE__); - $phpwiki_dir = strtr($phpwiki_dir, '\\', '/'); - } else { - $phpwiki_dir = dirname(__FILE__); - } - } $properties["PhpWiki Install Directory"] = - new _define_commented_optional('PHPWIKI_DIR', $phpwiki_dir); + new _define_commented_optional('PHPWIKI_DIR', dirname(__FILE__)); $properties["Use PATH_INFO"] = new _define_selection_optional_commented( @@ -1535,11 +1521,7 @@ $upload_data_path = defined('UPLOAD_DATA_PATH') ? UPLOAD_DATA_PATH : getUploadDataPath(); new _define_optional('UPLOAD_DATA_PATH', $temp); -$temp = !empty($_ENV['TEMP']) ? $_ENV['TEMP'] : "/tmp";//fixme: check for existing TEMP_DIR constant - -if (substr(PHP_OS, 0, 3) == 'WIN') { - $temp = strtr($temp, '\\', '/'); -} +$temp = !empty($_ENV['TEMP']) ? $_ENV['TEMP'] : "/tmp"; $properties["TEMP_DIR"] = new _define_optional('TEMP_DIR', $temp); @@ -1547,7 +1529,10 @@ new _define_commented_optional( 'ALLOWED_LOAD', '/tmp', - ';List of directories from which it is allowed to load pages. Directories are separated with ":"' + ' +List of directories from which it is allowed to load pages. Directories +are separated with ":" +' ); /////////////////// @@ -2016,6 +2001,21 @@ class numeric_define_optional extends numeric_define { +///////////////// + public function _get_config_line($posted_value) + { + $n = ""; + if ($this->description) { + $n = "\n"; + } + if ($posted_value == $this->default_value) { + return "$n;" . $this->_config_format($posted_value); + } elseif ($posted_value == '') { + return "$n;" . $this->_config_format('0'); + } else { + return "$n" . $this->_config_format($posted_value); + } + } } class numeric_define_commented extends numeric_define @@ -2093,15 +2093,6 @@ $p .= "\n;ENCRYPTED_PASSWD = true"; return $p; } else { - // generate an encrypted password - $crypt_pass = $this->__makeencrypted($posted_value); - $p = "$n" . $this->_config_format($crypt_pass); - return $p . "\nENCRYPTED_PASSWD = true"; - } - } - private function __makeencrypted($password) - { - if (!function_exists('DEBUGpassword_hash')) { $salt_length = max( CRYPT_SALT_LENGTH, 2 * CRYPT_STD_DES, @@ -2110,14 +2101,11 @@ 16 * CRYPT_BLOWFISH ); // generate an encrypted password - $crypt_pass = crypt($password, rand_ascii($salt_length)); - return $crypt_pass; - } else { - $crypt_pass = password_hash($password, PASSWORD_DEFAULT); - return $crypt_pass; + $crypt_pass = crypt($posted_value, rand_ascii($salt_length)); + $p = "$n" . $this->_config_format($crypt_pass); + return $p . "\nENCRYPTED_PASSWD = true"; } } - } class _define_password_optional extends _define_password @@ -2571,17 +2559,20 @@ $config .= $end; - $new_filename=''; - // We first check if the config-file exists. - if (file_exists($fs_config_file)) { - // We make a backup copy of the file - $new_filename = preg_replace('/\.ini$/', '-' . time() . '.ini', $fs_config_file); - if (copy($fs_config_file, $new_filename)) { - $fp = fopen($fs_config_file, 'w'); + $new_filename = ''; + if (is_writable(dirname($fs_config_file))) { + // We first check if the config-file exists. + if (file_exists($fs_config_file)) { + // We make a backup copy of the file + $new_filename = preg_replace('/\.ini$/', '-' . time() . '.ini', $fs_config_file); + if (@copy($fs_config_file, $new_filename)) { + $fp = @fopen($fs_config_file, 'w'); + } + } else { + $fp = @fopen($fs_config_file, 'w'); } } else { - $fp = fopen($fs_config_file, 'w'); - + $fp = false; } if ($fp) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-02-22 04:32:50
|
Revision: 11158 http://sourceforge.net/p/phpwiki/code/11158 Author: carstenklapp Date: 2025-02-22 04:32:48 +0000 (Sat, 22 Feb 2025) Log Message: ----------- Tested with php-8.4.4, adjusted some suggested php.ini settings for windows Modified Paths: -------------- trunk/INSTALL trunk/doc/INSTALL.windows Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2025-02-22 04:28:03 UTC (rev 11157) +++ trunk/INSTALL 2025-02-22 04:32:48 UTC (rev 11158) @@ -1,7 +1,7 @@ REQUIREMENTS PhpWiki 1.6.5 requires a web server with at least PHP version 5.3.3. -PhpWiki 1.6.5 should work for all PHP releases from 5.3.3 to 8.4.3. +PhpWiki 1.6.5 should work for all PHP releases from 5.3.3 to 8.4.4. Visit <http://www.php.net> and <http://php.net/downloads.php> for downloads and information. Modified: trunk/doc/INSTALL.windows =================================================================== --- trunk/doc/INSTALL.windows 2025-02-22 04:28:03 UTC (rev 11157) +++ trunk/doc/INSTALL.windows 2025-02-22 04:32:48 UTC (rev 11158) @@ -1,7 +1,7 @@ == General instructions tested under Windows 11: == - Install Apache 2.4 -- Install php-8.4.3 +- Install php-8.4.4 - Add these lines to php.ini: (substitute your path to the php extension dir) {{{ extension_dir = "c:/Apache24/php/ext" @@ -9,8 +9,19 @@ extension=mbstring extension=dba extension=zip -extension=xml +extension=mysqli +default_charset = utf-8 +internal_encoding=utf-8 intl.default_locale=en +[mbstring] +mbstring.language = all +mbstring.encoding_translation = On +mbstring.substitute_character = none; +mbstring.func_overload = 0 +mbstring.strict_encoding = On + +max_execution_time = 60 + }}} - unzip phpwiki - copy phpwiki-1.6.5 directory to c:\Apache24\htdocs\ or wherever you @@ -17,8 +28,8 @@ installed apache and rename it to phpwiki - copy phpwiki\config\config-dist.ini to phpwiki\config\config.ini -Probably the quickest way to get up and running is with flat file -database instead downloading and installing a sql database. +Probably the quickest way to get up and running is with file database +instead downloading and installing a sql database. - edit config.ini and search for these variables, removing the ; from the start of the line: {{{ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-02-28 14:09:43
|
Revision: 11166 http://sourceforge.net/p/phpwiki/code/11166 Author: vargenau Date: 2025-02-28 14:09:41 +0000 (Fri, 28 Feb 2025) Log Message: ----------- No space in string Modified Paths: -------------- trunk/lib/main.php trunk/themes/default/templates/debug.tmpl Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2025-02-28 12:41:00 UTC (rev 11165) +++ trunk/lib/main.php 2025-02-28 14:09:41 UTC (rev 11166) @@ -1384,7 +1384,7 @@ MakeWikiZipHtml($this); // I don't think it hurts to add cruft at the end of the zip file. echo "\n========================================================\n"; - echo "PhpWiki " . PHPWIKI_VERSION . "\n"; + echo "PhpWiki" . " " . PHPWIKI_VERSION . "\n"; } public function action_dumpsvn() Modified: trunk/themes/default/templates/debug.tmpl =================================================================== --- trunk/themes/default/templates/debug.tmpl 2025-02-28 12:41:00 UTC (rev 11165) +++ trunk/themes/default/templates/debug.tmpl 2025-02-28 14:09:41 UTC (rev 11166) @@ -11,7 +11,7 @@ alt="Valid CSS 3!" /></a> </div> </td><td> -<span class="debug"><?php echo fmt("PhpWiki ".PHPWIKI_VERSION." "._("Page Execution took %s seconds"), $RUNTIMER->getStats())?> +<span class="debug"><?php echo fmt("PhpWiki"." ".PHPWIKI_VERSION." "._("Page Execution took %s seconds"), $RUNTIMER->getStats())?> <?php $mem = @memory_get_usage(); if ($mem) { ?> <?php $formatted = round($mem/pow(1024,($i=floor(log($mem,1024)))),2).' '.array('b','kb','mb','gb','tb','pb')[$i]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <car...@us...> - 2025-03-02 22:10:45
|
Revision: 11176 http://sourceforge.net/p/phpwiki/code/11176 Author: carstenklapp Date: 2025-03-02 22:10:43 +0000 (Sun, 02 Mar 2025) Log Message: ----------- Use newer password_hash function instead of crypt when available. Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2025-03-02 12:47:42 UTC (rev 11175) +++ trunk/config/config-dist.ini 2025-03-02 22:10:43 UTC (rev 11176) @@ -84,7 +84,7 @@ ;DISABLE_UNITS = true ; For a non-standard path -;UNITS_EXE = /usr/bin/units +; UNITS_EXE = /usr/bin/units ; For Mac OS X, you need to install GNU Units http://www.gnu.org/software/units/ ; The units command shipped with Mac OS X will not work. ; Install e.g. with Homebrew: brew install gnu-units Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2025-03-02 12:47:42 UTC (rev 11175) +++ trunk/configurator.php 2025-03-02 22:10:43 UTC (rev 11176) @@ -152,7 +152,7 @@ // So nobody can see or reset the password(s). if (file_exists($fs_config_file)) { exit("Configuration config file \"$fs_config_file\" already exists.\n" - . "Cannot continue: You have to fix that manually."); + . "Cannot continue: Delete or rename config.ini to use the configurator."); // Require admin user if (!defined('ADMIN_USER') or !defined('ADMIN_PASSWD')) { if (!function_exists("IniConfig")) { @@ -2221,15 +2221,19 @@ $p .= "\n;ENCRYPTED_PASSWD = true"; return $p; } else { - $salt_length = max( - CRYPT_SALT_LENGTH, - 2 * CRYPT_STD_DES, - 9 * CRYPT_EXT_DES, - 12 * CRYPT_MD5, - 16 * CRYPT_BLOWFISH - ); - // generate an encrypted password - $crypt_pass = crypt($posted_value, rand_ascii($salt_length)); + if (!function_exists('password_hash')) { + $salt_length = max( + CRYPT_SALT_LENGTH, + 2 * CRYPT_STD_DES, + 9 * CRYPT_EXT_DES, + 12 * CRYPT_MD5, + 16 * CRYPT_BLOWFISH + ); + // generate an encrypted password + $crypt_pass = crypt($posted_value, rand_ascii($salt_length)); + } else { + $crypt_pass = password_hash($posted_value, PASSWORD_DEFAULT); + } $p = "$n" . $this->_config_format($crypt_pass); return $p . "\nENCRYPTED_PASSWD = true"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-03-09 16:47:58
|
Revision: 11180 http://sourceforge.net/p/phpwiki/code/11180 Author: vargenau Date: 2025-03-09 16:47:46 +0000 (Sun, 09 Mar 2025) Log Message: ----------- depreciated --> deprecated Modified Paths: -------------- trunk/lib/ErrorManager.php trunk/pgsrc/ReleaseNotes trunk/themes/default/phpwiki-common.css Modified: trunk/lib/ErrorManager.php =================================================================== --- trunk/lib/ErrorManager.php 2025-03-02 22:30:41 UTC (rev 11179) +++ trunk/lib/ErrorManager.php 2025-03-09 16:47:46 UTC (rev 11180) @@ -45,7 +45,7 @@ This also means that the ability to execute custom callbacks is also deprecated, with no replacement functionality provided. https://php.watch/versions/8.3/assert-multiple-deprecations - Hide depreciated errors unless DEBUG=2 because they output compressed text + Hide deprecated errors unless DEBUG=2 because they output compressed text before all headers have been sent, resulting in a garbled page. All code using assertions will have to be rewritten for php9. */ @@ -78,11 +78,11 @@ /** * As this is a singleton class, you should never call this. */ - //fixed depreciated dynamic typing + // fixed deprecated dynamic typing public $_handlers; public $_fatal_handler; public $_postpone_mask; - public $_postponed_errors;//ok + public $_postponed_errors; // ok public function __construct() { @@ -514,7 +514,7 @@ if ($this->isNotice()) { return 'hint'; } elseif ($this->isDepreciated()) { - return 'depreciated'; + return 'deprecated'; } elseif ($this->isWarning()) { return 'warning'; } else { @@ -527,7 +527,7 @@ if ($this->isNotice()) { return 'Notice'; } elseif ($this->isDepreciated()) { - return 'depreciated'; + return 'deprecated'; } elseif ($this->isWarning()) { return 'Warning'; } else { @@ -579,7 +579,7 @@ } $html->pushContent($list); } - //only print depreciated if debug is 2 or higher + // only print deprecated if debug is 2 or higher if (DEBUG < 2 && $this->isDepreciated()) { $html=false; } Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-03-02 22:30:41 UTC (rev 11179) +++ trunk/pgsrc/ReleaseNotes 2025-03-09 16:47:46 UTC (rev 11180) @@ -33,10 +33,10 @@ ~PhotoAlbumPlugin. Removed url of defunct example website that broke PhpWikiManual. * **Important bugfix for PHP 8.3 and newer:** Fixed garbled display of pages - due to depreciated errors. Also try harder to suppress depreciated errors on - all PHP versions. Set ##DEBUG=2## in ##config.ini## to view depreciated + due to deprecated errors. Also try harder to suppress deprecated errors on + all PHP versions. Set ##DEBUG=2## in ##config.ini## to view deprecated errors, and ##DEBUG=1## for basic errors. Added hooks for css formatting of - depreciated errors. + deprecated errors. * Improvements and bugfixes to loading and saving pages to filedumps: - fixed download of individual dump files stalling in chrome (must always click resume). Modified: trunk/themes/default/phpwiki-common.css =================================================================== --- trunk/themes/default/phpwiki-common.css 2025-03-02 22:30:41 UTC (rev 11179) +++ trunk/themes/default/phpwiki-common.css 2025-03-09 16:47:46 UTC (rev 11180) @@ -66,7 +66,7 @@ /* Banners ============================================================ */ -.success, .feedback, .warning, .warning_msg, .error, .information, .depreciated { +.success, .feedback, .warning, .warning_msg, .error, .information, .deprecated { color: black; padding-left: 0.5em; padding-right: 0.5em; @@ -98,13 +98,13 @@ padding: 1ex; } -.depreciated { +.deprecated { border-color: #bbbbbb; background-color: white; padding-top: 0.00ex; padding-bottom: 0.1ex; } -.depreciated p { +.deprecated p { font-family: monospace; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-03-15 10:17:31
|
Revision: 11185 http://sourceforge.net/p/phpwiki/code/11185 Author: vargenau Date: 2025-03-15 10:17:28 +0000 (Sat, 15 Mar 2025) Log Message: ----------- Use LF terminator Modified Paths: -------------- trunk/doc/INSTALL.windows trunk/lib/WikiDB/backend/PDO_sqlite.php trunk/themes/blog/jscalendar/bugtest-hidden-selects.html Modified: trunk/doc/INSTALL.windows =================================================================== --- trunk/doc/INSTALL.windows 2025-03-15 10:13:03 UTC (rev 11184) +++ trunk/doc/INSTALL.windows 2025-03-15 10:17:28 UTC (rev 11185) @@ -1,54 +1,54 @@ -== General instructions tested under Windows 11: == - -- Install Apache 2.4 -- Install php-8.4.4 -- Add these lines to php.ini: (substitute your path to the php extension dir) -{{{ -extension_dir = "c:/Apache24/php/ext" -extension=gettext -extension=mbstring -extension=dba -extension=zip -extension=mysqli -default_charset = utf-8 -internal_encoding=utf-8 -intl.default_locale=en -[mbstring] -mbstring.language = all -mbstring.encoding_translation = On -mbstring.substitute_character = none; -mbstring.func_overload = 0 -mbstring.strict_encoding = On - -max_execution_time = 60 - -}}} -- unzip phpwiki -- copy phpwiki-1.6.5 directory to c:\Apache24\htdocs\ or wherever you - installed apache and rename it to phpwiki -- copy phpwiki\config\config-dist.ini to phpwiki\config\config.ini - -Probably the quickest way to get up and running is with file database -instead downloading and installing a sql database. -- edit config.ini and search for these variables, removing the ; from - the start of the line: -{{{ -WIKI_NAME = "My PhpWiki" -ADMIN_USER =YourName -ADMIN_PASSWD ="password" -SESSION_SAVE_PATH = "/Apache24/htdocs/phpwiki_session" -USE_DB_SESSION = true -DATABASE_TYPE = file -DATABASE_PREFIX = phpwiki_ -DATABASE_DIRECTORY = "/Apache24/htdocs/phpwiki_db" -TEMP_DIR = -}}} - -Leaving TEMP_DIR blank will default to the TEMP env var -- Start apache -- Browse to http://localhost/phpwiki/index.php - -For more info read INSTALL in the main phpwiki dir and -doc\INSTALL.flatfile - -CarstenKlapp +== General instructions tested under Windows 11: == + +- Install Apache 2.4 +- Install php-8.4.4 +- Add these lines to php.ini: (substitute your path to the php extension dir) +{{{ +extension_dir = "c:/Apache24/php/ext" +extension=gettext +extension=mbstring +extension=dba +extension=zip +extension=mysqli +default_charset = utf-8 +internal_encoding=utf-8 +intl.default_locale=en +[mbstring] +mbstring.language = all +mbstring.encoding_translation = On +mbstring.substitute_character = none; +mbstring.func_overload = 0 +mbstring.strict_encoding = On + +max_execution_time = 60 + +}}} +- unzip phpwiki +- copy phpwiki-1.6.5 directory to c:\Apache24\htdocs\ or wherever you + installed apache and rename it to phpwiki +- copy phpwiki\config\config-dist.ini to phpwiki\config\config.ini + +Probably the quickest way to get up and running is with file database +instead downloading and installing a sql database. +- edit config.ini and search for these variables, removing the ; from + the start of the line: +{{{ +WIKI_NAME = "My PhpWiki" +ADMIN_USER =YourName +ADMIN_PASSWD ="password" +SESSION_SAVE_PATH = "/Apache24/htdocs/phpwiki_session" +USE_DB_SESSION = true +DATABASE_TYPE = file +DATABASE_PREFIX = phpwiki_ +DATABASE_DIRECTORY = "/Apache24/htdocs/phpwiki_db" +TEMP_DIR = +}}} + +Leaving TEMP_DIR blank will default to the TEMP env var +- Start apache +- Browse to http://localhost/phpwiki/index.php + +For more info read INSTALL in the main phpwiki dir and +doc\INSTALL.flatfile + +CarstenKlapp Modified: trunk/lib/WikiDB/backend/PDO_sqlite.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_sqlite.php 2025-03-15 10:13:03 UTC (rev 11184) +++ trunk/lib/WikiDB/backend/PDO_sqlite.php 2025-03-15 10:17:28 UTC (rev 11185) @@ -1,60 +1,60 @@ -<?php -/** - * Copyright © 2023 $ThePhpWikiProgrammingTeam - * - * This file is part of PhpWiki. - * - * PhpWiki is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * PhpWiki is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with PhpWiki; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - * - * SPDX-License-Identifier: GPL-2.0-or-later - * - */ - -/** - * @author: Christof Meerwald - */ -require_once 'lib/WikiDB/backend/PDO.php'; - -class WikiDB_backend_PDO_sqlite extends WikiDB_backend_PDO -{ - public function __construct($dbparams) - { - parent::__construct($dbparams); - } - - public function backendType() - { - return 'sqlite'; - } - - /* - * offset specific syntax within sqlite - * convert from,count to SQL "LIMIT $count OFFSET $from" - */ - public function _limit_sql($limit = false) - { - if ($limit) { - list($from, $count) = $this->limit($limit); - if ($from) { - $limit = " LIMIT $count OFFSET $from"; - } else { - $limit = " LIMIT $count"; - } - } else { - $limit = ''; - } - return $limit; - } -} +<?php +/** + * Copyright © 2023 $ThePhpWikiProgrammingTeam + * + * This file is part of PhpWiki. + * + * PhpWiki is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * PhpWiki is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with PhpWiki; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * SPDX-License-Identifier: GPL-2.0-or-later + * + */ + +/** + * @author: Christof Meerwald + */ +require_once 'lib/WikiDB/backend/PDO.php'; + +class WikiDB_backend_PDO_sqlite extends WikiDB_backend_PDO +{ + public function __construct($dbparams) + { + parent::__construct($dbparams); + } + + public function backendType() + { + return 'sqlite'; + } + + /* + * offset specific syntax within sqlite + * convert from,count to SQL "LIMIT $count OFFSET $from" + */ + public function _limit_sql($limit = false) + { + if ($limit) { + list($from, $count) = $this->limit($limit); + if ($from) { + $limit = " LIMIT $count OFFSET $from"; + } else { + $limit = " LIMIT $count"; + } + } else { + $limit = ''; + } + return $limit; + } +} Modified: trunk/themes/blog/jscalendar/bugtest-hidden-selects.html =================================================================== --- trunk/themes/blog/jscalendar/bugtest-hidden-selects.html 2025-03-15 10:13:03 UTC (rev 11184) +++ trunk/themes/blog/jscalendar/bugtest-hidden-selects.html 2025-03-15 10:17:28 UTC (rev 11185) @@ -1,108 +1,108 @@ -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ro" lang="ro"> - -<head> -<title>Bug</title> -<link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-1.css" title="win2k-1" /> - -<!-- import the calendar script --> -<script type="text/javascript" src="calendar.js"></script> - -<!-- import the language module --> -<script type="text/javascript" src="lang/calendar-en.js"></script> - -<!-- helper script that uses the calendar --> -<script type="text/javascript"> -// This function gets called when the end-user clicks on some date. -function selected(cal, date) { - cal.sel.value = date; // just update the date in the input field. - if (cal.sel.id == "sel1" || cal.sel.id == "sel3") - // if we add this call we close the calendar on single-click. - // just to exemplify both cases, we are using this only for the 1st - // and the 3rd field, while 2nd and 4th will still require double-click. - cal.callCloseHandler(); -} - -// And this gets called when the end-user clicks on the _selected_ date, -// or clicks on the "Close" button. It just hides the calendar without -// destroying it. -function closeHandler(cal) { - cal.hide(); // hide the calendar -} - -// This function shows the calendar under the element having the given id. -// It takes care of catching "mousedown" signals on document and hiding the -// calendar if the click was outside. -function showCalendar(id, format) { - var el = document.getElementById(id); - if (calendar != null) { - // we already have some calendar created - calendar.hide(); // so we hide it first. - } else { - // first-time call, create the calendar. - var cal = new Calendar(false, null, selected, closeHandler); - // uncomment the following line to hide the week numbers - // cal.weekNumbers = false; - calendar = cal; // remember it in the global var - cal.setRange(1900, 2070); // min/max year allowed. - cal.create(); - } - calendar.setDateFormat(format); // set the specified date format - calendar.parseDate(el.value); // try to parse the text in field - calendar.sel = el; // inform it what input field we use - calendar.showAtElement(el); // show the calendar below it - - return false; -} - -var MINUTE = 60 * 1000; -var HOUR = 60 * MINUTE; -var DAY = 24 * HOUR; -var WEEK = 7 * DAY; - -// If this handler returns true then the "date" given as -// parameter will be disabled. In this example we enable -// only days within a range of 10 days from the current -// date. -// You can use the functions date.getFullYear() -- returns the year -// as 4 digit number, date.getMonth() -- returns the month as 0..11, -// and date.getDate() -- returns the date of the month as 1..31, to -// make heavy calculations here. However, beware that this function -// should be very fast, as it is called for each day in a month when -// the calendar is (re)constructed. -function isDisabled(date) { - var today = new Date(); - return (Math.abs(date.getTime() - today.getTime()) / DAY) > 10; -} -</script> -</head> - -<body> -<form> -<b>Date:</b> -<br> -<input type="text" name="date1" id="sel1" size="30"> -<input type="button" value="..." onclick="return showCalendar('sel1', 'y-m-d');"> -<p> -<br> -<br><b>Visible <select>, hides and unhides as expected</b> -<br> -<select name="foo" multiple> -<option value="1">can use the functions date.getFullYear() -- returns</option> -<option value="2">4 digit number, date.getMonth() -- returns the month</option> -<option value="3">heavy calculations here. However, beware that this</option> -</select> - -<p> -<br><b>Hidden <select>, it should stay hidden (but doesn't)</b> -<br> -<select name="foo2" multiple style="visibility: hidden"> -<option value="1">this should</option> -<option value="2">remain hidden right?</option> -</select> - -<p> -<br><b>Hidden textbox below, it stays hidden as expected</b> -<br> -<input type="text" name="foo3" value="this stays hidden just fine" style="visibility: hidden"> -</form> -</body></html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ro" lang="ro"> + +<head> +<title>Bug</title> +<link rel="stylesheet" type="text/css" media="all" href="calendar-win2k-1.css" title="win2k-1" /> + +<!-- import the calendar script --> +<script type="text/javascript" src="calendar.js"></script> + +<!-- import the language module --> +<script type="text/javascript" src="lang/calendar-en.js"></script> + +<!-- helper script that uses the calendar --> +<script type="text/javascript"> +// This function gets called when the end-user clicks on some date. +function selected(cal, date) { + cal.sel.value = date; // just update the date in the input field. + if (cal.sel.id == "sel1" || cal.sel.id == "sel3") + // if we add this call we close the calendar on single-click. + // just to exemplify both cases, we are using this only for the 1st + // and the 3rd field, while 2nd and 4th will still require double-click. + cal.callCloseHandler(); +} + +// And this gets called when the end-user clicks on the _selected_ date, +// or clicks on the "Close" button. It just hides the calendar without +// destroying it. +function closeHandler(cal) { + cal.hide(); // hide the calendar +} + +// This function shows the calendar under the element having the given id. +// It takes care of catching "mousedown" signals on document and hiding the +// calendar if the click was outside. +function showCalendar(id, format) { + var el = document.getElementById(id); + if (calendar != null) { + // we already have some calendar created + calendar.hide(); // so we hide it first. + } else { + // first-time call, create the calendar. + var cal = new Calendar(false, null, selected, closeHandler); + // uncomment the following line to hide the week numbers + // cal.weekNumbers = false; + calendar = cal; // remember it in the global var + cal.setRange(1900, 2070); // min/max year allowed. + cal.create(); + } + calendar.setDateFormat(format); // set the specified date format + calendar.parseDate(el.value); // try to parse the text in field + calendar.sel = el; // inform it what input field we use + calendar.showAtElement(el); // show the calendar below it + + return false; +} + +var MINUTE = 60 * 1000; +var HOUR = 60 * MINUTE; +var DAY = 24 * HOUR; +var WEEK = 7 * DAY; + +// If this handler returns true then the "date" given as +// parameter will be disabled. In this example we enable +// only days within a range of 10 days from the current +// date. +// You can use the functions date.getFullYear() -- returns the year +// as 4 digit number, date.getMonth() -- returns the month as 0..11, +// and date.getDate() -- returns the date of the month as 1..31, to +// make heavy calculations here. However, beware that this function +// should be very fast, as it is called for each day in a month when +// the calendar is (re)constructed. +function isDisabled(date) { + var today = new Date(); + return (Math.abs(date.getTime() - today.getTime()) / DAY) > 10; +} +</script> +</head> + +<body> +<form> +<b>Date:</b> +<br> +<input type="text" name="date1" id="sel1" size="30"> +<input type="button" value="..." onclick="return showCalendar('sel1', 'y-m-d');"> +<p> +<br> +<br><b>Visible <select>, hides and unhides as expected</b> +<br> +<select name="foo" multiple> +<option value="1">can use the functions date.getFullYear() -- returns</option> +<option value="2">4 digit number, date.getMonth() -- returns the month</option> +<option value="3">heavy calculations here. However, beware that this</option> +</select> + +<p> +<br><b>Hidden <select>, it should stay hidden (but doesn't)</b> +<br> +<select name="foo2" multiple style="visibility: hidden"> +<option value="1">this should</option> +<option value="2">remain hidden right?</option> +</select> + +<p> +<br><b>Hidden textbox below, it stays hidden as expected</b> +<br> +<input type="text" name="foo3" value="this stays hidden just fine" style="visibility: hidden"> +</form> +</body></html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-03-16 17:46:26
|
Revision: 11187 http://sourceforge.net/p/phpwiki/code/11187 Author: vargenau Date: 2025-03-16 17:46:10 +0000 (Sun, 16 Mar 2025) Log Message: ----------- Remove empty flags Modified Paths: -------------- trunk/doc/README.security trunk/locale/README trunk/locale/es/pgsrc/Ayuda%2FKBrown trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead trunk/locale/es/pgsrc/HomePage trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead trunk/locale/it/pgsrc/HomePage trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/VisitatoriRecenti trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 trunk/locale/ja/pgsrc/HomePage trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen trunk/locale/nl/pgsrc/HomePage trunk/locale/nl/pgsrc/RecenteBezoekers trunk/locale/nl/pgsrc/ThuisPagina trunk/locale/sv/pgsrc/Framsida trunk/locale/sv/pgsrc/G%C3%A4stboken trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead trunk/locale/sv/pgsrc/HomePage trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 trunk/locale/zh/pgsrc/HomePage trunk/locale/zh/pgsrc/HomePageAlias trunk/locale/zh/pgsrc/RecentVisitors trunk/themes/blog/pgsrc/About trunk/themes/blog/pgsrc/Blog trunk/themes/blog/pgsrc/CategoryHowTo trunk/themes/blog/pgsrc/HomePage trunk/themes/blog/pgsrc/HowTo trunk/themes/blog/pgsrc/PhotoAlbum Modified: trunk/doc/README.security =================================================================== --- trunk/doc/README.security 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/doc/README.security 2025-03-16 17:46:10 UTC (rev 11187) @@ -139,11 +139,10 @@ Subject: ~AppendText From: foo@bar (~PhpWiki) To: foo@bar (~PhpWiki) -Date: Wed, 5 Jan 2005 17:09:46 +0800 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by ~PhpWiki 1.3.11pre-20050108) Content-Type: application/x-phpwiki; pagename=~AppendText; - flags=""; author=The%20PhpWiki%20programming%20team; version=1; lastmodified=1104916186; @@ -162,11 +161,10 @@ Subject: . From: foo@bar (~PhpWiki) To: foo@bar (~PhpWiki) -Date: Mon, 17 Jan 2005 15:54:59 +0800 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by ~PhpWiki 1.3.11pre-20050108) Content-Type: application/x-phpwiki; pagename=.; - flags=""; author=Admin; version=1; lastmodified=1105949000; Modified: trunk/locale/README =================================================================== --- trunk/locale/README 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/README 2025-03-16 17:46:10 UTC (rev 11187) @@ -199,7 +199,6 @@ Mime-Version: 1.0 (Produced by PhpWiki 1.3.11pre) Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/es/pgsrc/Ayuda%2FKBrown =================================================================== --- trunk/locale/es/pgsrc/Ayuda%2FKBrown 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/es/pgsrc/Ayuda%2FKBrown 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Ayuda%2FKBrown; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead =================================================================== --- trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Ayuda%2FSteve%20Wainstead; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/es/pgsrc/HomePage =================================================================== --- trunk/locale/es/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/es/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal =================================================================== --- trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=P%C3%A1ginaPrincipal; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/es/pgsrc/VisitantesRecientes =================================================================== --- trunk/locale/es/pgsrc/VisitantesRecientes 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/es/pgsrc/VisitantesRecientes 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=VisitantesRecientes; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead =================================================================== --- trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Aiuto%2FSteve%20Wainstead; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/it/pgsrc/HomePage =================================================================== --- trunk/locale/it/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/it/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/it/pgsrc/PaginaPrincipale =================================================================== --- trunk/locale/it/pgsrc/PaginaPrincipale 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/it/pgsrc/PaginaPrincipale 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=PaginaPrincipale; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/it/pgsrc/VisitatoriRecenti =================================================================== --- trunk/locale/it/pgsrc/VisitatoriRecenti 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/it/pgsrc/VisitatoriRecenti 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=VisitatoriRecenti; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 =================================================================== --- trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/ja/pgsrc/HomePage =================================================================== --- trunk/locale/ja/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/ja/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen =================================================================== --- trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Help%2FJanNieuwenhuizen; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/nl/pgsrc/HomePage =================================================================== --- trunk/locale/nl/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/nl/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/nl/pgsrc/RecenteBezoekers =================================================================== --- trunk/locale/nl/pgsrc/RecenteBezoekers 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/nl/pgsrc/RecenteBezoekers 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=RecenteBezoekers; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/nl/pgsrc/ThuisPagina =================================================================== --- trunk/locale/nl/pgsrc/ThuisPagina 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/nl/pgsrc/ThuisPagina 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ThuisPagina; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/sv/pgsrc/Framsida =================================================================== --- trunk/locale/sv/pgsrc/Framsida 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/sv/pgsrc/Framsida 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Framsida; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/sv/pgsrc/G%C3%A4stboken =================================================================== --- trunk/locale/sv/pgsrc/G%C3%A4stboken 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/sv/pgsrc/G%C3%A4stboken 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=G%C3%A4stboken; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead =================================================================== --- trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Hj%C3%A4lp%2FSteve%20Wainstead; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/sv/pgsrc/HomePage =================================================================== --- trunk/locale/sv/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/sv/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 =================================================================== --- trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=%E9%A6%96%E9%A0%81; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/zh/pgsrc/HomePage =================================================================== --- trunk/locale/zh/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/zh/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/zh/pgsrc/HomePageAlias =================================================================== --- trunk/locale/zh/pgsrc/HomePageAlias 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/zh/pgsrc/HomePageAlias 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePageAlias; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/locale/zh/pgsrc/RecentVisitors =================================================================== --- trunk/locale/zh/pgsrc/RecentVisitors 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/locale/zh/pgsrc/RecentVisitors 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=RecentVisitors; - flags=""; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/themes/blog/pgsrc/About =================================================================== --- trunk/themes/blog/pgsrc/About 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/themes/blog/pgsrc/About 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Sat, 15 Mar 2025 18:22:01 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=About; - flags=""; author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/themes/blog/pgsrc/Blog =================================================================== --- trunk/themes/blog/pgsrc/Blog 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/themes/blog/pgsrc/Blog 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Sat, 15 Mar 2025 18:22:01 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=Blog; - flags=""; author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/themes/blog/pgsrc/CategoryHowTo =================================================================== --- trunk/themes/blog/pgsrc/CategoryHowTo 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/themes/blog/pgsrc/CategoryHowTo 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Sat, 15 Mar 2025 18:22:01 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=CategoryHowTo; - flags=""; author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/themes/blog/pgsrc/HomePage =================================================================== --- trunk/themes/blog/pgsrc/HomePage 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/themes/blog/pgsrc/HomePage 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Sat, 15 Mar 2025 18:22:01 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HomePage; - flags=""; author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/themes/blog/pgsrc/HowTo =================================================================== --- trunk/themes/blog/pgsrc/HowTo 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/themes/blog/pgsrc/HowTo 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Sat, 15 Mar 2025 18:22:01 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=HowTo; - flags=""; author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary Modified: trunk/themes/blog/pgsrc/PhotoAlbum =================================================================== --- trunk/themes/blog/pgsrc/PhotoAlbum 2025-03-15 17:34:59 UTC (rev 11186) +++ trunk/themes/blog/pgsrc/PhotoAlbum 2025-03-16 17:46:10 UTC (rev 11187) @@ -1,8 +1,7 @@ -Date: Sat, 15 Mar 2025 18:22:01 +0000 +Date: Sun, 16 Mar 2025 18:44:08 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=PhotoAlbum; - flags=""; author=The%20PhpWiki%20Team; charset=UTF-8 Content-Transfer-Encoding: binary This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-03-17 11:29:32
|
Revision: 11191 http://sourceforge.net/p/phpwiki/code/11191 Author: vargenau Date: 2025-03-17 11:29:25 +0000 (Mon, 17 Mar 2025) Log Message: ----------- Update locale/it/pgsrc/NoteDiRilascio Modified Paths: -------------- trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2025-03-17 11:25:07 UTC (rev 11190) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2025-03-17 11:29:25 UTC (rev 11191) @@ -1,4 +1,4 @@ -Date: Wed, 19 Feb 2025 11:10:15 +0000 +Date: Mon, 17 Mar 2025 12:28:45 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -8,10 +8,69 @@ <<CreateToc with_toclink||=1 headers||=1,2,3 width=300px position=right>> -== 1.X.X 2024-XX-XX Marc-Etienne Vargenau == +== 1.6.5 2025-03-17 Marc-Etienne Vargenau, Carsten Klapp == -* Upgrade PEAR to relase 1.10.15, PEAR DB to release 1.12.2 +Carsten Klapp strikes back! +* Upgrade PEAR to release 1.10.16, PEAR DB to release 1.12.2 +* Readme for basic Windows 11 install instructions. +* Complete rewrite of ~SpaceWiki theme using modern CSS. +* ##passencrypt.php## and ##configurator.php##: Improved password encryption and + random password generation. Use newer ##password_hash## function when available. + Added copy to clipboard buttons. +* Updated ##.htaccess## files to work with Apache 2.4. Will still work with + older versions but requires mod_version module which is available in + Apache 2.0.56 and later. +* Minor updates to Hawaiian and Portland themes. +* Fixed MacOSX theme buttons not loading, other visual improvements and + RecentChanges uses a table now. +* Improved formatting output for debugging, adjusted code for themes + which depend on default theme. Added signature template. This can be + disabled by adding this line to ##themeinfo.php##: + ##$this->addImageAlias('signature', false);## +* Added 404 error to ~HttpClient.php which is displayed now in + ~PhotoAlbumPlugin. Removed URL of defunct example website that broke + PhpWikiManual. +* **Important bugfix for PHP 8.3 and newer:** Fixed garbled display of pages + due to deprecated errors. Also try harder to suppress deprecated errors on + all PHP versions. Set ##DEBUG=2## in ##config.ini## to view deprecated + errors, and ##DEBUG=1## for basic errors. Added hooks for CSS formatting of + deprecated errors. +* Improvements and bugfixes to loading and saving pages to filedumps: + - fixed download of individual dump files stalling in chrome (must always + click resume). + - fixed page lock status not always loading, especially for virgin wiki. + - Security: Prevented unlocking existing page when loading dumped file + without lock flag. + - Security: Page hits and ACL are only loaded when page doesn't exist in + database. To do a complete restore of a page, delete it first. + - Fixed page metadata changes incorrectly being applied to database when + attempting to load a file and it was skipped. + - When a file is loaded the status now reports the loaded page lock status. + - Removed invalid http headers. + - Added dumpsvn action, mainly for developers and translators of pgsrc files. + - Fixed filenames sometimes not being urlencoded properly. + - Improved filtering of unknown page metadata being loaded into database. + - Dumped pages now use Unix line endings instead of Windows. Import of files + with Windows line endings should still work. + - Added summary page counts to page dumping. + - Dumping no longer overwrites existing files. + - **Fixed broken Merge edit** functionality when loading dumps, also added + diff preview. This means themes using custom editpage.tmpl need to be + updated with new ##$EDITING_OLD_REVISION_MESSAGE## variable. + - Date of files dumped now set to match page date in wiki. +* configurator.php now comments out most values that are defaults. Added + automatically suggested paths for Windows users. +* New: Show a nice diff preview when editing a page if there is an edit + conflict. +* New: Prevent diff markers from being rendered as markup when editing a + conflict or merging a dumpload. +* **Important bugfix:** Fixed users unexpectedly being logged out. Affected + flatfile database and possibly other db types also. Improved by sanity + checking of database global timestamp. +* RDF link in RecentChanges no longer crashes but still provides incomplete + output. + == 1.6.4 2024-03-13 Marc-Etienne Vargenau, Christof Meerwald == * Upgrade PEAR to relase 1.10.14, PEAR DB to release 1.12.1 Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2025-03-17 11:25:07 UTC (rev 11190) +++ trunk/pgsrc/ReleaseNotes 2025-03-17 11:29:25 UTC (rev 11191) @@ -1,4 +1,4 @@ -Date: Sun, 2 Mar 2025 22:26:26 +0000 +Date: Mon, 17 Mar 2025 12:28:45 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2025-05-05 18:04:19
|
Revision: 11197 http://sourceforge.net/p/phpwiki/code/11197 Author: vargenau Date: 2025-05-05 18:03:49 +0000 (Mon, 05 May 2025) Log Message: ----------- Update for PhpWiki 1.6.6 Modified Paths: -------------- trunk/INSTALL trunk/Makefile trunk/doc/INSTALL.windows trunk/lib/prepend.php trunk/locale/de/pgsrc/%C3%84hnlicheSeiten trunk/locale/de/pgsrc/AlleBenutzer trunk/locale/de/pgsrc/AlleSeiten trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir trunk/locale/de/pgsrc/BackLinks trunk/locale/de/pgsrc/BenutzerEinstellungen trunk/locale/de/pgsrc/DebugAuthInfo trunk/locale/de/pgsrc/DebugBackendInfo trunk/locale/de/pgsrc/DebugGruppenInfo trunk/locale/de/pgsrc/EditiereText trunk/locale/de/pgsrc/Einstellungen trunk/locale/de/pgsrc/FuzzySuche trunk/locale/de/pgsrc/G%C3%A4steBuch trunk/locale/de/pgsrc/GaesteBuch trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen trunk/locale/de/pgsrc/GleicheSeiten trunk/locale/de/pgsrc/Hilfe trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin trunk/locale/de/pgsrc/Hilfe%2FGuterStil trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin trunk/locale/de/pgsrc/Hilfe%2FPhpWiki trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin trunk/locale/de/pgsrc/Hilfe%2FWabiSabi trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin trunk/locale/de/pgsrc/HochLaden trunk/locale/de/pgsrc/HomePage trunk/locale/de/pgsrc/InterWikiListe trunk/locale/de/pgsrc/KategorieAktionSeite trunk/locale/de/pgsrc/KategorieKategorie trunk/locale/de/pgsrc/KategorieWikiPlugin trunk/locale/de/pgsrc/LeereSeiten trunk/locale/de/pgsrc/LinkSuche trunk/locale/de/pgsrc/ListeRelationen trunk/locale/de/pgsrc/MeistBesucht trunk/locale/de/pgsrc/ModerierteSeite trunk/locale/de/pgsrc/NeueSeite trunk/locale/de/pgsrc/Neueste%C3%84nderungen trunk/locale/de/pgsrc/NeuesteSeiten trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen trunk/locale/de/pgsrc/PhpWikiDokumentation trunk/locale/de/pgsrc/PhpWikiSystemverwalten trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclL%C3%B6schen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FAclSetzenEinfach trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FChown trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FEntfernen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FL%C3%B6schen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FSuchenErsetzen trunk/locale/de/pgsrc/PhpWikiSystemverwalten%2FUmbenennen trunk/locale/de/pgsrc/PhpWikiUmfrage trunk/locale/de/pgsrc/SandKasten trunk/locale/de/pgsrc/SandKiste trunk/locale/de/pgsrc/SeiteBeobarten trunk/locale/de/pgsrc/SeiteFinden trunk/locale/de/pgsrc/SeiteSpeichern trunk/locale/de/pgsrc/SeitenInfo trunk/locale/de/pgsrc/SeitenProtokoll trunk/locale/de/pgsrc/SemantischeRelationen trunk/locale/de/pgsrc/SemantischeSuche trunk/locale/de/pgsrc/StartSeite trunk/locale/de/pgsrc/StartSeiteAlias trunk/locale/de/pgsrc/TitelSuche trunk/locale/de/pgsrc/Verlinkte%C3%84nderungen trunk/locale/de/pgsrc/VerwaisteSeiten trunk/locale/de/pgsrc/VolltextSuche trunk/locale/de/pgsrc/Vorlage%2FBeispiel trunk/locale/de/pgsrc/WerIstOnline trunk/locale/de/pgsrc/WikiAdminAuswahl trunk/locale/de/pgsrc/WunschZettelSeiten trunk/locale/de/pgsrc/ZufallsSeite trunk/locale/es/pgsrc/Ayuda trunk/locale/es/pgsrc/Ayuda%2FAgregarPaginas trunk/locale/es/pgsrc/Ayuda%2FBuenEstilo trunk/locale/es/pgsrc/Ayuda%2FComoUsarWiki trunk/locale/es/pgsrc/Ayuda%2FEditarElTexto trunk/locale/es/pgsrc/Ayuda%2FKBrown trunk/locale/es/pgsrc/Ayuda%2FMasAcercadeLaMecanica trunk/locale/es/pgsrc/Ayuda%2FPhpWiki trunk/locale/es/pgsrc/Ayuda%2FReglasDeFormatoDeTexto trunk/locale/es/pgsrc/Ayuda%2FSteve%20Wainstead trunk/locale/es/pgsrc/Ayuda%2FWabiSabi trunk/locale/es/pgsrc/Ayuda%2FWikiWikiWeb trunk/locale/es/pgsrc/BuscarP%C3%A1gina trunk/locale/es/pgsrc/CajaDeArena trunk/locale/es/pgsrc/CambiosRecientes trunk/locale/es/pgsrc/HomePage trunk/locale/es/pgsrc/MasPopulares trunk/locale/es/pgsrc/NotasDeLiberacion trunk/locale/es/pgsrc/P%C3%A1ginaPrincipal trunk/locale/es/pgsrc/TodasLasPaginas trunk/locale/es/pgsrc/VisitantesRecientes trunk/locale/fr/pgsrc/%C3%89diterLesM%C3%A9taDonn%C3%A9es trunk/locale/fr/pgsrc/%C3%89ditionsR%C3%A9centes trunk/locale/fr/pgsrc/AdministrationDePhpWiki trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FChown trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAcl trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FD%C3%A9finirAclSimple trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FPurger trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRechercherRemplacer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FRenommer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimer trunk/locale/fr/pgsrc/AdministrationDePhpWiki%2FSupprimerAcl trunk/locale/fr/pgsrc/Aide trunk/locale/fr/pgsrc/Aide%2F%C3%89diterLeContenu trunk/locale/fr/pgsrc/Aide%2FAjouterDesPages trunk/locale/fr/pgsrc/Aide%2FCommentUtiliserUnWiki trunk/locale/fr/pgsrc/Aide%2FD%C3%A9tailsTechniques trunk/locale/fr/pgsrc/Aide%2FGreffon%C3%89diterLesM%C3%A9taDonn%C3%A9es trunk/locale/fr/pgsrc/Aide%2FGreffonAjouterDesCommentaires trunk/locale/fr/pgsrc/Aide%2FGreffonAlbumPhotos trunk/locale/fr/pgsrc/Aide%2FGreffonBeauTableau trunk/locale/fr/pgsrc/Aide%2FGreffonBonjourLeMonde trunk/locale/fr/pgsrc/Aide%2FGreffonCalendrier trunk/locale/fr/pgsrc/Aide%2FGreffonColorationPhp trunk/locale/fr/pgsrc/Aide%2FGreffonCommenter trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUnePage trunk/locale/fr/pgsrc/Aide%2FGreffonCr%C3%A9erUneTdm trunk/locale/fr/pgsrc/Aide%2FGreffonD%C3%A9plierLesSousPages trunk/locale/fr/pgsrc/Aide%2FGreffonHistoriqueAuteur trunk/locale/fr/pgsrc/Aide%2FGreffonHtmlPur trunk/locale/fr/pgsrc/Aide%2FGreffonInclureUnePage trunk/locale/fr/pgsrc/Aide%2FGreffonInfosSyst%C3%A8me trunk/locale/fr/pgsrc/Aide%2FGreffonIns%C3%A9rer trunk/locale/fr/pgsrc/Aide%2FGreffonListeDePages trunk/locale/fr/pgsrc/Aide%2FGreffonListeDesSousPages trunk/locale/fr/pgsrc/Aide%2FGreffonListeDuCalendrier trunk/locale/fr/pgsrc/Aide%2FGreffonPageAl%C3%A9atoire trunk/locale/fr/pgsrc/Aide%2FGreffonPagesFloues trunk/locale/fr/pgsrc/Aide%2FGreffonRechercheExterne trunk/locale/fr/pgsrc/Aide%2FGreffonRedirection trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss trunk/locale/fr/pgsrc/Aide%2FGreffonTableauAncienStyle trunk/locale/fr/pgsrc/Aide%2FGreffonTeX2png trunk/locale/fr/pgsrc/Aide%2FGreffonTestDeCache trunk/locale/fr/pgsrc/Aide%2FGreffonWiki trunk/locale/fr/pgsrc/Aide%2FGreffonWikiBlog trunk/locale/fr/pgsrc/Aide%2FIc%C3%B4nesDeLien trunk/locale/fr/pgsrc/Aide%2FInterWiki trunk/locale/fr/pgsrc/Aide%2FLienGoogle trunk/locale/fr/pgsrc/Aide%2FListeDePages trunk/locale/fr/pgsrc/Aide%2FPhpWiki trunk/locale/fr/pgsrc/Aide%2FR%C3%A8glesDeFormatageDesTextes trunk/locale/fr/pgsrc/Aide%2FSteve%20Wainstead trunk/locale/fr/pgsrc/Aide%2FStyleCorrect trunk/locale/fr/pgsrc/Aide%2FURLMagiquesPhpWiki trunk/locale/fr/pgsrc/Aide%2FWabiSabi trunk/locale/fr/pgsrc/Aide%2FWikiWikiWeb trunk/locale/fr/pgsrc/Aide%2FWikisUtilisantPhpWiki trunk/locale/fr/pgsrc/AliasAccueil trunk/locale/fr/pgsrc/Bac%C3%80Sable trunk/locale/fr/pgsrc/CarteInterWiki trunk/locale/fr/pgsrc/Cat%C3%A9gorieCat%C3%A9gorie trunk/locale/fr/pgsrc/Cat%C3%A9gorieGreffonWiki trunk/locale/fr/pgsrc/Cat%C3%A9gorieGroupes trunk/locale/fr/pgsrc/Cat%C3%A9goriePageDAction trunk/locale/fr/pgsrc/Cat%C3%A9goriePagesAccueil trunk/locale/fr/pgsrc/ChangementsLi%C3%A9s trunk/locale/fr/pgsrc/ChercherUnePage trunk/locale/fr/pgsrc/ClassezLa trunk/locale/fr/pgsrc/CommentairesR%C3%A9cents trunk/locale/fr/pgsrc/Cr%C3%A9erUnePage trunk/locale/fr/pgsrc/D%C3%A9bogageDePhpWiki trunk/locale/fr/pgsrc/D%C3%A9poserUnFichier trunk/locale/fr/pgsrc/Derni%C3%A8resModifs trunk/locale/fr/pgsrc/Derni%C3%A8resModifsCompl%C3%A8tes trunk/locale/fr/pgsrc/DocumentationDePhpWiki trunk/locale/fr/pgsrc/GestionnaireDesGreffons trunk/locale/fr/pgsrc/HistoriqueDeLaPage trunk/locale/fr/pgsrc/HomePage trunk/locale/fr/pgsrc/InfosAuthentification trunk/locale/fr/pgsrc/InfosDeD%C3%A9bogage trunk/locale/fr/pgsrc/InfosSurLaPage trunk/locale/fr/pgsrc/LesPlusVisit%C3%A9es trunk/locale/fr/pgsrc/ManuelPhpWiki trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki trunk/locale/fr/pgsrc/NotesDeVersion trunk/locale/fr/pgsrc/PageAccueil trunk/locale/fr/pgsrc/PageAl%C3%A9atoire trunk/locale/fr/pgsrc/PagesFloues trunk/locale/fr/pgsrc/PagesOrphelines trunk/locale/fr/pgsrc/PagesRecherch%C3%A9es trunk/locale/fr/pgsrc/PagesSemblables trunk/locale/fr/pgsrc/PierrickMeignen trunk/locale/fr/pgsrc/Pr%C3%A9f%C3%A9rencesUtilisateur trunk/locale/fr/pgsrc/QuiEstEnLigne trunk/locale/fr/pgsrc/R%C3%A9cup%C3%A9rationDeLaPage trunk/locale/fr/pgsrc/R%C3%A9troLiens trunk/locale/fr/pgsrc/RechercheEnTexteInt%C3%A9gral trunk/locale/fr/pgsrc/RechercheInterWiki trunk/locale/fr/pgsrc/RechercheParTitre trunk/locale/fr/pgsrc/SommaireDuProjet trunk/locale/fr/pgsrc/SondagePhpWiki trunk/locale/fr/pgsrc/Suivre trunk/locale/fr/pgsrc/TousLesUtilisateurs trunk/locale/fr/pgsrc/ToutesLesPages trunk/locale/fr/pgsrc/TraduireUnTexte trunk/locale/fr/pgsrc/VersionsR%C3%A9centes trunk/locale/fr/pgsrc/VisiteursR%C3%A9cents trunk/locale/it/pgsrc/Aiuto trunk/locale/it/pgsrc/Aiuto%2FAggiungerePagine trunk/locale/it/pgsrc/Aiuto%2FBuonStile trunk/locale/it/pgsrc/Aiuto%2FComeUsareWiki trunk/locale/it/pgsrc/Aiuto%2FMagicPhpWikiURLs trunk/locale/it/pgsrc/Aiuto%2FModificaIlTesto trunk/locale/it/pgsrc/Aiuto%2FPhpWiki trunk/locale/it/pgsrc/Aiuto%2FRegoleFormattazioneTesto trunk/locale/it/pgsrc/Aiuto%2FSteve%20Wainstead trunk/locale/it/pgsrc/Aiuto%2FVarieSulFunzionamento trunk/locale/it/pgsrc/Aiuto%2FWabiSabi trunk/locale/it/pgsrc/Aiuto%2FWikiWikiWeb trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki trunk/locale/it/pgsrc/AmministrazioneDiPhpWiki%2FRimuovi trunk/locale/it/pgsrc/CambiamentiRecenti trunk/locale/it/pgsrc/FuzzyPages trunk/locale/it/pgsrc/HomePage trunk/locale/it/pgsrc/NoteDiRilascio trunk/locale/it/pgsrc/PaginaPrincipale trunk/locale/it/pgsrc/Pi%C3%B9Popolari trunk/locale/it/pgsrc/RicercaDelTesto trunk/locale/it/pgsrc/RicercaPerTitolo trunk/locale/it/pgsrc/ScatolaDiSabbia trunk/locale/it/pgsrc/TrovaPagina trunk/locale/it/pgsrc/TutteLePagine trunk/locale/it/pgsrc/VisitatoriRecenti trunk/locale/ja/pgsrc/%E3%83%9A%E3%83%BC%E3%82%B8%E6%A4%9C%E7%B4%A2 trunk/locale/ja/pgsrc/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%9A%E3%83%BC%E3%82%B8 trunk/locale/ja/pgsrc/HomePage trunk/locale/nl/pgsrc/Help trunk/locale/nl/pgsrc/Help%2FGebruikersVoorkeuren trunk/locale/nl/pgsrc/Help%2FGoedeStijl trunk/locale/nl/pgsrc/Help%2FHoeWikiTeGebruiken trunk/locale/nl/pgsrc/Help%2FJanNieuwenhuizen trunk/locale/nl/pgsrc/Help%2FMeerOverTechnieken trunk/locale/nl/pgsrc/Help%2FPaginasToevoegen trunk/locale/nl/pgsrc/Help%2FPhpWiki trunk/locale/nl/pgsrc/Help%2FTekstFormatteringsRegels trunk/locale/nl/pgsrc/Help%2FToverPhpWikiURLs trunk/locale/nl/pgsrc/Help%2FVeranderTekst trunk/locale/nl/pgsrc/Help%2FWabiSabi trunk/locale/nl/pgsrc/Help%2FWikiWikiWeb trunk/locale/nl/pgsrc/HomePage trunk/locale/nl/pgsrc/MeestBezocht trunk/locale/nl/pgsrc/PhpWikiBeheer trunk/locale/nl/pgsrc/PhpWikiBeheer%2FVerwijder trunk/locale/nl/pgsrc/PhpWikiBeheer%2FZoekVervangt trunk/locale/nl/pgsrc/PhpWikiDocumentatie trunk/locale/nl/pgsrc/RecenteBezoekers trunk/locale/nl/pgsrc/RecenteVeranderingen trunk/locale/nl/pgsrc/ThuisPagina trunk/locale/nl/pgsrc/UitgaveNoten trunk/locale/nl/pgsrc/ZandBak trunk/locale/nl/pgsrc/ZoekPagina trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/pgsrc/Framsida trunk/locale/sv/pgsrc/G%C3%A4stboken trunk/locale/sv/pgsrc/Hj%C3%A4lp trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FHurManAnv%C3%A4nderWiki trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FL%C3%A4ggaTillSidor trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FMerOmMekanismerna trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FPhpWiki trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FRedigeraText trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FSteve%20Wainstead trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FTextformateringsregler trunk/locale/sv/pgsrc/Hj%C3%A4lp%2FWikiWikiWeb trunk/locale/sv/pgsrc/HomePage trunk/locale/sv/pgsrc/MestPopul%C3%A4r trunk/locale/sv/pgsrc/PhpWikiAdministration trunk/locale/sv/pgsrc/S%C3%B6kEfterSida trunk/locale/sv/pgsrc/Sandl%C3%A5dan trunk/locale/sv/pgsrc/Senaste%C3%84ndringar trunk/locale/zh/pgsrc/%E9%A6%96%E9%A0%81 trunk/locale/zh/pgsrc/AllPages trunk/locale/zh/pgsrc/AllUsers trunk/locale/zh/pgsrc/BackLinks trunk/locale/zh/pgsrc/DebugBackendInfo trunk/locale/zh/pgsrc/FindPage trunk/locale/zh/pgsrc/FullRecentChanges trunk/locale/zh/pgsrc/FullTextSearch trunk/locale/zh/pgsrc/FuzzyPages trunk/locale/zh/pgsrc/Help trunk/locale/zh/pgsrc/Help%2FAddingPages trunk/locale/zh/pgsrc/Help%2FBackLinksPlugin trunk/locale/zh/pgsrc/Help%2FCalendarPlugin trunk/locale/zh/pgsrc/Help%2FCommentPlugin trunk/locale/zh/pgsrc/Help%2FEditText trunk/locale/zh/pgsrc/Help%2FExternalSearchPlugin trunk/locale/zh/pgsrc/Help%2FHelloWorldPlugin trunk/locale/zh/pgsrc/Help%2FHowToUseWiki trunk/locale/zh/pgsrc/Help%2FInterWiki trunk/locale/zh/pgsrc/Help%2FLinkIcons trunk/locale/zh/pgsrc/Help%2FMagicPhpWikiURLs trunk/locale/zh/pgsrc/Help%2FMoreAboutMechanics trunk/locale/zh/pgsrc/Help%2FOldStyleTablePlugin trunk/locale/zh/pgsrc/Help%2FPhotoAlbumPlugin trunk/locale/zh/pgsrc/Help%2FPhpHighlightPlugin trunk/locale/zh/pgsrc/Help%2FPhpWiki trunk/locale/zh/pgsrc/Help%2FRandomPagePlugin trunk/locale/zh/pgsrc/Help%2FRedirectToPlugin trunk/locale/zh/pgsrc/Help%2FSystemInfoPlugin trunk/locale/zh/pgsrc/Help%2FTranscludePlugin trunk/locale/zh/pgsrc/Help%2FWikiPlugin trunk/locale/zh/pgsrc/Help%2FWikiWikiWeb trunk/locale/zh/pgsrc/HomePage trunk/locale/zh/pgsrc/HomePageAlias trunk/locale/zh/pgsrc/InterWikiMap trunk/locale/zh/pgsrc/InterWikiSearch trunk/locale/zh/pgsrc/LikePages trunk/locale/zh/pgsrc/OrphanedPages trunk/locale/zh/pgsrc/PageDump trunk/locale/zh/pgsrc/PhpWikiAdministration trunk/locale/zh/pgsrc/PhpWikiDebug trunk/locale/zh/pgsrc/RandomPage trunk/locale/zh/pgsrc/RecentChanges trunk/locale/zh/pgsrc/RecentEdits trunk/locale/zh/pgsrc/RecentVisitors trunk/locale/zh/pgsrc/SandBox trunk/locale/zh/pgsrc/TitleSearch trunk/locale/zh/pgsrc/UpLoad trunk/locale/zh/pgsrc/UserPreferences trunk/locale/zh/pgsrc/WantedPages trunk/pgsrc/AllPages trunk/pgsrc/AllPagesByAcl trunk/pgsrc/AllPagesCreatedByMe trunk/pgsrc/AllPagesLastEditedByMe trunk/pgsrc/AllPagesOwnedByMe trunk/pgsrc/AllUserPages trunk/pgsrc/AllUsers trunk/pgsrc/AppendText trunk/pgsrc/AuthorHistory trunk/pgsrc/BackLinks trunk/pgsrc/BlogArchives trunk/pgsrc/BlogJournal trunk/pgsrc/CategoryActionPage trunk/pgsrc/CategoryCategory trunk/pgsrc/CategoryDebugPage trunk/pgsrc/CategoryGroup trunk/pgsrc/CategoryHomePages trunk/pgsrc/CategoryWikiPlugin trunk/pgsrc/Copyrights trunk/pgsrc/CreatePage trunk/pgsrc/DebugAuthInfo trunk/pgsrc/DebugBackendInfo trunk/pgsrc/DebugGroupInfo trunk/pgsrc/EditMetaData trunk/pgsrc/FindPage trunk/pgsrc/FullRecentChanges trunk/pgsrc/FullTextSearch trunk/pgsrc/FuzzyPages trunk/pgsrc/GeneralDisclaimer trunk/pgsrc/Help trunk/pgsrc/Help%2FActionPage trunk/pgsrc/Help%2FAddCommentPlugin trunk/pgsrc/Help%2FAddingPages trunk/pgsrc/Help%2FAdvice%20for%20Mediawiki%20users trunk/pgsrc/Help%2FAllPagesPlugin trunk/pgsrc/Help%2FAllUsersPlugin trunk/pgsrc/Help%2FAnalyseAccessLogSqlPlugin trunk/pgsrc/Help%2FAppendTextPlugin trunk/pgsrc/Help%2FAsciiMathPlugin trunk/pgsrc/Help%2FAsciiSVGPlugin trunk/pgsrc/Help%2FAtomFeedPlugin trunk/pgsrc/Help%2FAuthorHistoryPlugin trunk/pgsrc/Help%2FBackLinksPlugin trunk/pgsrc/Help%2FBlogArchivesPlugin trunk/pgsrc/Help%2FBlogJournalPlugin trunk/pgsrc/Help%2FBoxRightPlugin trunk/pgsrc/Help%2FCacheTestPlugin trunk/pgsrc/Help%2FCalendarListPlugin trunk/pgsrc/Help%2FCalendarPlugin trunk/pgsrc/Help%2FCategories trunk/pgsrc/Help%2FChartPlugin trunk/pgsrc/Help%2FCommentPlugin trunk/pgsrc/Help%2FCreateBibPlugin trunk/pgsrc/Help%2FCreatePagePlugin trunk/pgsrc/Help%2FCreateTocPlugin trunk/pgsrc/Help%2FCurrentTimePlugin trunk/pgsrc/Help%2FDeadEndPagesPlugin trunk/pgsrc/Help%2FDebugAuthInfoPlugin trunk/pgsrc/Help%2FDebugBackendInfoPlugin trunk/pgsrc/Help%2FDebugGroupInfoPlugin trunk/pgsrc/Help%2FDebugRetransformPlugin trunk/pgsrc/Help%2FDiffPlugin trunk/pgsrc/Help%2FDynamicIncludePagePlugin trunk/pgsrc/Help%2FEditMetaDataPlugin trunk/pgsrc/Help%2FEditText trunk/pgsrc/Help%2FExternalSearchPlugin trunk/pgsrc/Help%2FFacebookLikePlugin trunk/pgsrc/Help%2FFileInfoPlugin trunk/pgsrc/Help%2FFoafViewerPlugin trunk/pgsrc/Help%2FFullTextSearchPlugin trunk/pgsrc/Help%2FFuzzyPagesPlugin trunk/pgsrc/Help%2FGoToPlugin trunk/pgsrc/Help%2FGoodStyle trunk/pgsrc/Help%2FGoogleLink trunk/pgsrc/Help%2FGoogleMapsPlugin trunk/pgsrc/Help%2FGooglePluginPlugin trunk/pgsrc/Help%2FGraphVizPlugin trunk/pgsrc/Help%2FHelloWorldPlugin trunk/pgsrc/Help%2FHowToUseWiki trunk/pgsrc/Help%2FHtmlConverterPlugin trunk/pgsrc/Help%2FImages trunk/pgsrc/Help%2FIncludePagePlugin trunk/pgsrc/Help%2FIncludePagesPlugin trunk/pgsrc/Help%2FIncludeSiteMapPlugin trunk/pgsrc/Help%2FIncludeTreePlugin trunk/pgsrc/Help%2FInterWiki trunk/pgsrc/Help%2FInterWikiSearchPlugin trunk/pgsrc/Help%2FJabberPresencePlugin trunk/pgsrc/Help%2FJeff%20Dairiki trunk/pgsrc/Help%2FLdapSearchPlugin trunk/pgsrc/Help%2FLikePagesPlugin trunk/pgsrc/Help%2FLinkDatabasePlugin trunk/pgsrc/Help%2FLinkIcons trunk/pgsrc/Help%2FLinkSearchPlugin trunk/pgsrc/Help%2FListPagesPlugin trunk/pgsrc/Help%2FListRelationsPlugin trunk/pgsrc/Help%2FListSubpagesPlugin trunk/pgsrc/Help%2FMagicPhpWikiURLs trunk/pgsrc/Help%2FMediawikiTablePlugin trunk/pgsrc/Help%2FModeratedPagePlugin trunk/pgsrc/Help%2FMoreAboutMechanics trunk/pgsrc/Help%2FMostPopularPlugin trunk/pgsrc/Help%2FNewPagesPerUserPlugin trunk/pgsrc/Help%2FNoCachePlugin trunk/pgsrc/Help%2FOldStyleTablePlugin trunk/pgsrc/Help%2FOrphanedPagesPlugin trunk/pgsrc/Help%2FPageDumpPlugin trunk/pgsrc/Help%2FPageGroupPlugin trunk/pgsrc/Help%2FPageHistoryPlugin trunk/pgsrc/Help%2FPageInfoPlugin trunk/pgsrc/Help%2FPageList trunk/pgsrc/Help%2FPagePermissions trunk/pgsrc/Help%2FPageTrailPlugin trunk/pgsrc/Help%2FPasswordResetPlugin trunk/pgsrc/Help%2FPhotoAlbumPlugin trunk/pgsrc/Help%2FPhpHighlightPlugin trunk/pgsrc/Help%2FPhpWiki trunk/pgsrc/Help%2FPloticusPlugin trunk/pgsrc/Help%2FPluginManagerPlugin trunk/pgsrc/Help%2FPopUpPlugin trunk/pgsrc/Help%2FPopularNearbyPlugin trunk/pgsrc/Help%2FPopularTagsPlugin trunk/pgsrc/Help%2FPredefinedIcons trunk/pgsrc/Help%2FPreferenceAppPlugin trunk/pgsrc/Help%2FPrevNextPlugin trunk/pgsrc/Help%2FProcessingPlugin trunk/pgsrc/Help%2FRandomPagePlugin trunk/pgsrc/Help%2FRateItPlugin trunk/pgsrc/Help%2FRawHtmlPlugin trunk/pgsrc/Help%2FRecentChangesPlugin trunk/pgsrc/Help%2FRecentCommentsPlugin trunk/pgsrc/Help%2FRecentEditsPlugin trunk/pgsrc/Help%2FRecentReferrersPlugin trunk/pgsrc/Help%2FRedirectToPlugin trunk/pgsrc/Help%2FReini%20Urban trunk/pgsrc/Help%2FRelatedChangesPlugin trunk/pgsrc/Help%2FRichTablePlugin trunk/pgsrc/Help%2FRssFeedPlugin trunk/pgsrc/Help%2FSearchHighlightPlugin trunk/pgsrc/Help%2FSemanticRelations trunk/pgsrc/Help%2FSemanticRelationsPlugin trunk/pgsrc/Help%2FSemanticSearchAdvancedPlugin trunk/pgsrc/Help%2FSemanticSearchPlugin trunk/pgsrc/Help%2FSiteMapPlugin trunk/pgsrc/Help%2FSpellCheckPlugin trunk/pgsrc/Help%2FSpreadsheet trunk/pgsrc/Help%2FSqlResultPlugin trunk/pgsrc/Help%2FSteve%20Wainstead trunk/pgsrc/Help%2FSyncWikiPlugin trunk/pgsrc/Help%2FSyntaxHighlighterPlugin trunk/pgsrc/Help%2FSystemInfoPlugin trunk/pgsrc/Help%2FTeX2pngPlugin trunk/pgsrc/Help%2FTemplatePlugin trunk/pgsrc/Help%2FTexToPngPlugin trunk/pgsrc/Help%2FTextFormattingRules trunk/pgsrc/Help%2FTitleSearchPlugin trunk/pgsrc/Help%2FTranscludePlugin trunk/pgsrc/Help%2FTranslateTextPlugin trunk/pgsrc/Help%2FUnfoldSubpagesPlugin trunk/pgsrc/Help%2FUpLoadPlugin trunk/pgsrc/Help%2FUriResolverPlugin trunk/pgsrc/Help%2FUserPreferencesPlugin trunk/pgsrc/Help%2FUserRatingsPlugin trunk/pgsrc/Help%2FVideoPlugin trunk/pgsrc/Help%2FVisualWikiPlugin trunk/pgsrc/Help%2FWabiSabi trunk/pgsrc/Help%2FWantedPagesPlugin trunk/pgsrc/Help%2FWatchPagePlugin trunk/pgsrc/Help%2FWhoIsOnlinePlugin trunk/pgsrc/Help%2FWikiAdminChownPlugin trunk/pgsrc/Help%2FWikiAdminDeleteAclPlugin trunk/pgsrc/Help%2FWikiAdminPurgePlugin trunk/pgsrc/Help%2FWikiAdminRemovePlugin trunk/pgsrc/Help%2FWikiAdminRenamePlugin trunk/pgsrc/Help%2FWikiAdminSearchReplacePlugin trunk/pgsrc/Help%2FWikiAdminSelectPlugin trunk/pgsrc/Help%2FWikiAdminSetAclPlugin trunk/pgsrc/Help%2FWikiAdminSetAclSimplePlugin trunk/pgsrc/Help%2FWikiAdminSetExternalPlugin trunk/pgsrc/Help%2FWikiAdminUtilsPlugin trunk/pgsrc/Help%2FWikiBlogPlugin trunk/pgsrc/Help%2FWikiFormPlugin trunk/pgsrc/Help%2FWikiFormRichPlugin trunk/pgsrc/Help%2FWikiForumPlugin trunk/pgsrc/Help%2FWikiPlugin trunk/pgsrc/Help%2FWikiPollPlugin trunk/pgsrc/Help%2FWikiTranslationPlugin trunk/pgsrc/Help%2FWikiWikiWeb trunk/pgsrc/Help%2FWikicreole trunk/pgsrc/Help%2FWikicreoleTablePlugin trunk/pgsrc/Help%2FWikisUsingPhpWiki trunk/pgsrc/Help%2FYouTubePlugin trunk/pgsrc/Help%2Ftext2pngPlugin trunk/pgsrc/HomePage trunk/pgsrc/HomePageAlias trunk/pgsrc/InterWikiMap trunk/pgsrc/InterWikiSearch trunk/pgsrc/LdapSearch trunk/pgsrc/LeastPopular trunk/pgsrc/LikePages trunk/pgsrc/LinkDatabase trunk/pgsrc/LinkSearch trunk/pgsrc/ListRelations trunk/pgsrc/LockedPages trunk/pgsrc/ModeratedPage trunk/pgsrc/MostPopular trunk/pgsrc/MyRatings trunk/pgsrc/MyRecentChanges trunk/pgsrc/MyRecentEdits trunk/pgsrc/NewPagesPerUser trunk/pgsrc/OrphanedPages trunk/pgsrc/PageDump trunk/pgsrc/PageHistory trunk/pgsrc/PageInfo trunk/pgsrc/PasswordReset trunk/pgsrc/PhpWikiAdministration trunk/pgsrc/PhpWikiAdministration%2FChown trunk/pgsrc/PhpWikiAdministration%2FDeleteAcl trunk/pgsrc/PhpWikiAdministration%2FPurge trunk/pgsrc/PhpWikiAdministration%2FRemove trunk/pgsrc/PhpWikiAdministration%2FRename trunk/pgsrc/PhpWikiAdministration%2FSearchReplace trunk/pgsrc/PhpWikiAdministration%2FSetAcl trunk/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/pgsrc/PhpWikiDebug trunk/pgsrc/PhpWikiDocumentation trunk/pgsrc/PhpWikiManual trunk/pgsrc/PhpWikiPoll trunk/pgsrc/PhpWikiRecentChanges trunk/pgsrc/PluginManager trunk/pgsrc/ProjectSummary trunk/pgsrc/RandomPage trunk/pgsrc/RateIt trunk/pgsrc/RecentChanges trunk/pgsrc/RecentChangesMyPages trunk/pgsrc/RecentComments trunk/pgsrc/RecentEdits trunk/pgsrc/RecentNewPages trunk/pgsrc/RecentReleases trunk/pgsrc/RecentVisitors trunk/pgsrc/RelatedChanges trunk/pgsrc/ReleaseNotes trunk/pgsrc/San%20Diego trunk/pgsrc/SandBox trunk/pgsrc/SearchHighlight trunk/pgsrc/SemanticRelations trunk/pgsrc/SemanticSearch trunk/pgsrc/SetGlobalAccessRights trunk/pgsrc/SetGlobalAccessRightsSimple trunk/pgsrc/SpecialPages trunk/pgsrc/SpellCheck trunk/pgsrc/SystemInfo trunk/pgsrc/Template%2FAttribute trunk/pgsrc/Template%2FCategory trunk/pgsrc/Template%2FExample trunk/pgsrc/Template%2FLinkto trunk/pgsrc/Template%2FNewPlugin trunk/pgsrc/Template%2FRelation trunk/pgsrc/Template%2FTalk trunk/pgsrc/Template%2FUserPage trunk/pgsrc/The%20PhpWiki%20programming%20team trunk/pgsrc/TitleSearch trunk/pgsrc/TranslateText trunk/pgsrc/UpLoad trunk/pgsrc/UriResolver trunk/pgsrc/UserContribs trunk/pgsrc/UserPreferences trunk/pgsrc/UserRatings trunk/pgsrc/WantedPages trunk/pgsrc/WatchPage trunk/pgsrc/WhoIsOnline trunk/pgsrc/WikiAdminSelect trunk/pgsrc/WikiBlog trunk/pgsrc/area trunk/pgsrc/is_a trunk/pgsrc/located_in trunk/pgsrc/population trunk/themes/blog/pgsrc/About trunk/themes/blog/pgsrc/Blog trunk/themes/blog/pgsrc/CategoryHowTo trunk/themes/blog/pgsrc/HomePage trunk/themes/blog/pgsrc/HowTo trunk/themes/blog/pgsrc/PhotoAlbum trunk/themes/fusionforge/pgsrc/CategoryWiki%20templates trunk/themes/fusionforge/pgsrc/CategoryWiki%20user trunk/themes/fusionforge/pgsrc/ExternalPages trunk/themes/fusionforge/pgsrc/FindPage trunk/themes/fusionforge/pgsrc/FullTextSearch trunk/themes/fusionforge/pgsrc/HomePage trunk/themes/fusionforge/pgsrc/PhpWikiAdministration trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetAclSimple trunk/themes/fusionforge/pgsrc/PhpWikiAdministration%2FSetExternal trunk/themes/fusionforge/pgsrc/SetGlobalAccessRightsSimple trunk/themes/fusionforge/pgsrc/SpecialPages trunk/themes/fusionforge/pgsrc/TextFormattingRules trunk/themes/fusionforge/pgsrc/TitleSearch trunk/themes/fusionforge/pgsrc/UpLoad trunk/themes/fusionforge/pgsrc/colorbox trunk/themes/fusionforge/pgsrc/titlebar trunk/themes/wikilens/pgsrc/LeftbarContent Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/INSTALL 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,7 +1,7 @@ REQUIREMENTS -PhpWiki 1.6.5 requires a web server with at least PHP version 5.3.3. -PhpWiki 1.6.5 should work for all PHP releases from 5.3.3 to 8.4.4. +PhpWiki 1.6.6 requires a web server with at least PHP version 5.3.3. +PhpWiki 1.6.6 should work for all PHP releases from 5.3.3 to 8.4.6. Visit <http://www.php.net> and <http://php.net/downloads.php> for downloads and information. @@ -113,7 +113,7 @@ Unzip this file into the directory where you want it to live. That's it. -bash$ unzip phpwiki-1.6.5.zip +bash$ unzip phpwiki-1.6.6.zip In the 'config/' subdirectory copy 'config-dist.ini' to 'config.ini' and edit the settings in 'config.ini' to your liking. Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/Makefile 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,4 +1,4 @@ -VERSION=1.6.5 +VERSION=1.6.6 RPMBUILD=rpmbuild clean: Modified: trunk/doc/INSTALL.windows =================================================================== --- trunk/doc/INSTALL.windows 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/doc/INSTALL.windows 2025-05-05 18:03:49 UTC (rev 11197) @@ -24,7 +24,7 @@ }}} - unzip phpwiki -- copy phpwiki-1.6.5 directory to c:\Apache24\htdocs\ or wherever you +- copy phpwiki-1.6.6 directory to c:\Apache24\htdocs\ or wherever you installed apache and rename it to phpwiki - copy phpwiki\config\config-dist.ini to phpwiki\config\config.ini Modified: trunk/lib/prepend.php =================================================================== --- trunk/lib/prepend.php 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/lib/prepend.php 2025-05-05 18:03:49 UTC (rev 11197) @@ -29,7 +29,7 @@ * Things which must be done and defined before anything else. */ -define('PHPWIKI_VERSION', '1.6.5'); +define('PHPWIKI_VERSION', '1.6.6'); // A new php-5.1.x feature: Turn off php-5.1.x auto_globals_jit = On, or use this mess below. if (empty($GLOBALS['HTTP_SERVER_VARS'])) { Modified: trunk/locale/de/pgsrc/%C3%84hnlicheSeiten =================================================================== --- trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/%C3%84hnlicheSeiten 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=%C3%84hnlicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/AlleBenutzer =================================================================== --- trunk/locale/de/pgsrc/AlleBenutzer 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/AlleBenutzer 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=AlleBenutzer; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeiten =================================================================== --- trunk/locale/de/pgsrc/AlleSeiten 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/AlleSeiten 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=AlleSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/AlleSeitenEditiertVonMir 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=AlleSeitenEditiertVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/AlleSeitenErzeugtVonMir 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=AlleSeitenErzeugtVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir =================================================================== --- trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/AlleSeitenImBesitzVonMir 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=AlleSeitenImBesitzVonMir; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/BackLinks =================================================================== --- trunk/locale/de/pgsrc/BackLinks 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/BackLinks 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=BackLinks; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/BenutzerEinstellungen =================================================================== --- trunk/locale/de/pgsrc/BenutzerEinstellungen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/BenutzerEinstellungen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=BenutzerEinstellungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/DebugAuthInfo =================================================================== --- trunk/locale/de/pgsrc/DebugAuthInfo 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/DebugAuthInfo 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=DebugAuthInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugBackendInfo =================================================================== --- trunk/locale/de/pgsrc/DebugBackendInfo 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/DebugBackendInfo 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=DebugBackendInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/DebugGruppenInfo =================================================================== --- trunk/locale/de/pgsrc/DebugGruppenInfo 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/DebugGruppenInfo 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=DebugGruppenInfo; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/EditiereText =================================================================== --- trunk/locale/de/pgsrc/EditiereText 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/EditiereText 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=EditiereText; author=Das%20PhpWiki-Team; Modified: trunk/locale/de/pgsrc/Einstellungen =================================================================== --- trunk/locale/de/pgsrc/Einstellungen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Einstellungen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Einstellungen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/FuzzySuche =================================================================== --- trunk/locale/de/pgsrc/FuzzySuche 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/FuzzySuche 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=FuzzySuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/G%C3%A4steBuch =================================================================== --- trunk/locale/de/pgsrc/G%C3%A4steBuch 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/G%C3%A4steBuch 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=G%C3%A4steBuch; author=Das%20PhpWiki-Team; Modified: trunk/locale/de/pgsrc/GaesteBuch =================================================================== --- trunk/locale/de/pgsrc/GaesteBuch 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/GaesteBuch 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=GaesteBuch; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Geringf%C3%BCgige%C3%84nderungen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Geringf%C3%BCgige%C3%84nderungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/GleicheSeiten =================================================================== --- trunk/locale/de/pgsrc/GleicheSeiten 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/GleicheSeiten 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=GleicheSeiten; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe =================================================================== --- trunk/locale/de/pgsrc/Hilfe 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FAktionsSeite 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAktionsSeite; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FAutorenProtokollPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FAutorenProtokollPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FBackLinksPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FBackLinksPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FGraphVizPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGraphVizPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FGuterStil =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FGuterStil 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FGuterStil; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FHalloWeltPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHalloWeltPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FHochLadenPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FHochLadenPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FInhaltsVerzeichnisPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FInhaltsVerzeichnisPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FModerierteSeitePlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FModerierteSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FNeueSeitePlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeueSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FNeuerKommentarPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FNeuerKommentarPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhotoAlbumPlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FPhpWiki =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FPhpWiki 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FPhpWiki; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FSeitenErzeugen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSeitenErzeugen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FSteve%20Wainstead 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FSteve%20Wainstead; author=Das%20PhpWiki-Team; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FTextBearbeiten 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextBearbeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FTextFormatierungsRegeln 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FTextFormatierungsRegeln; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FVorlagePlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FVorlagePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWabiSabi =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FWabiSabi 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWabiSabi; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FWieManWikiBenutzt 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWieManWikiBenutzt; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiTechnik 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiTechnik; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FWikiWikiWeb 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FWikiWikiWeb; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin =================================================================== --- trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Hilfe%2FZufallsSeitePlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Hilfe%2FZufallsSeitePlugin; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/HochLaden =================================================================== --- trunk/locale/de/pgsrc/HochLaden 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/HochLaden 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=HochLaden; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/HomePage =================================================================== --- trunk/locale/de/pgsrc/HomePage 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/HomePage 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=HomePage; author=Das%20PhpWiki-Team; Modified: trunk/locale/de/pgsrc/InterWikiListe =================================================================== --- trunk/locale/de/pgsrc/InterWikiListe 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/InterWikiListe 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=InterWikiListe; pagetype=interwikimap; Modified: trunk/locale/de/pgsrc/KategorieAktionSeite =================================================================== --- trunk/locale/de/pgsrc/KategorieAktionSeite 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/KategorieAktionSeite 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=KategorieAktionSeite; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/KategorieKategorie =================================================================== --- trunk/locale/de/pgsrc/KategorieKategorie 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/KategorieKategorie 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=KategorieKategorie; flags=EXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/KategorieWikiPlugin =================================================================== --- trunk/locale/de/pgsrc/KategorieWikiPlugin 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/KategorieWikiPlugin 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=KategorieWikiPlugin; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/LeereSeiten =================================================================== --- trunk/locale/de/pgsrc/LeereSeiten 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/LeereSeiten 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=LeereSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/LinkSuche =================================================================== --- trunk/locale/de/pgsrc/LinkSuche 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/LinkSuche 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=LinkSuche; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/ListeRelationen =================================================================== --- trunk/locale/de/pgsrc/ListeRelationen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/ListeRelationen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=ListeRelationen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/MeistBesucht =================================================================== --- trunk/locale/de/pgsrc/MeistBesucht 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/MeistBesucht 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=MeistBesucht; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/ModerierteSeite =================================================================== --- trunk/locale/de/pgsrc/ModerierteSeite 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/ModerierteSeite 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=ModerierteSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/NeueSeite =================================================================== --- trunk/locale/de/pgsrc/NeueSeite 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/NeueSeite 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=NeueSeite; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/Neueste%C3%84nderungen =================================================================== --- trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/Neueste%C3%84nderungen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=Neueste%C3%84nderungen; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/NeuesteSeiten =================================================================== --- trunk/locale/de/pgsrc/NeuesteSeiten 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/NeuesteSeiten 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=NeuesteSeiten; flags=PAGE_LOCKED%2CEXTERNAL_PAGE; Modified: trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen =================================================================== --- trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/PasswortZur%C3%BCcksetzen 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2025 11:10:15 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.5) +Mime-Version: 1.0 (Produced by PhpWiki 1.6.6) Content-Type: application/x-phpwiki; pagename=PasswortZur%C3%BCcksetzen; flags=PAGE_LOCKED; Modified: trunk/locale/de/pgsrc/PhpWikiDokumentation =================================================================== --- trunk/locale/de/pgsrc/PhpWikiDokumentation 2025-05-05 17:45:38 UTC (rev 11196) +++ trunk/locale/de/pgsrc/PhpWikiDokumentation 2025-05-05 18:03:49 UTC (rev 11197) @@ -1,5 +1,5 @@ Date: Wed, 19 Feb 2... [truncated message content] |