From 54396bab19a878022ac3d43631a2d0d397b8984e Mon Sep 17 00:00:00 2001 From: Shinjiman Date: Sat, 23 May 2009 19:26:05 +0000 Subject: [PATCH] * (bug 18698) Renaming non entry point maintenance scripts from .inc.php to .inc patch by Karun Dambiec --- RELEASE-NOTES | 1 + docs/php-memcached/ChangeLog | 65 +++++++------------ docs/php-memcached/README | 1 + ...ns.inc.php => deleteOrphanedRevisions.inc} | 0 maintenance/deleteOrphanedRevisions.php | 2 +- ...{importImages.inc.php => importImages.inc} | 0 maintenance/importImages.php | 2 +- ...eassignEdits.inc.php => reassignEdits.inc} | 0 maintenance/reassignEdits.php | 2 +- ...leCount.inc.php => updateArticleCount.inc} | 0 maintenance/updateArticleCount.php | 2 +- 11 files changed, 30 insertions(+), 45 deletions(-) create mode 100644 docs/php-memcached/README rename maintenance/{deleteOrphanedRevisions.inc.php => deleteOrphanedRevisions.inc} (100%) rename maintenance/{importImages.inc.php => importImages.inc} (100%) rename maintenance/{reassignEdits.inc.php => reassignEdits.inc} (100%) rename maintenance/{updateArticleCount.inc.php => updateArticleCount.inc} (100%) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index df25b9cb21..b11fca0b23 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -150,6 +150,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Fix array logic in Sanitizer::removeHTMLtags so that it doesn't strip good tags that were redundantly defined. * (bug 14118) SpecialPage::getTitleFor does not return a localised name +* (bug 18698) Renaming non entry point maintenance scripts from .inc.php to .inc == API changes in 1.16 == diff --git a/docs/php-memcached/ChangeLog b/docs/php-memcached/ChangeLog index 86792f607e..553aaa1983 100644 --- a/docs/php-memcached/ChangeLog +++ b/docs/php-memcached/ChangeLog @@ -1,45 +1,28 @@ -Release 1.0.10 --------------- -* bug fix: changes hashing function to crc32, sprintf %u -* feature: optional compression +09 Oct 2003: + 1455 UTC: + Released version 0.1.2 + Fixed bug in get_multi; when debugging was enabled but no keys were fetched, + script execution would halt (uninitialized $val) -Release 1.0.9 -------------- -* protocol parsing bug +08 Oct 2003: + 1848 UTC: + Released version 0.1.1 -Release 1.0.8 -------------- -* whitespace/punctuation/wording cleanups + 1825 UTC: + Fixed bug in memcached::memcached; was attempting to initialize + memcached::_dead_sock (function) instead of memcached::_dead_hosts + (oops!) -Release 1.0.7 -------------- -* added 3 functions which handle error reporting - error() - returns error number of last error generated, else returns 0 - error_string() - returns a string description of error number retuned - error_clear() - clears the last error number and error string -* removed call to preg_match() in _loaditems() -* only non-scalar values are serialize() before being - sent to the server -* added the optional timestamp argument for delete() - read Documentation file for details -* PHPDocs/PEAR style comments added -* abstract debugging (Brion Vibber ) - -Release 1.0.6 -------------- -* removed all array_push() calls -* applied patch provided by Stuart Herbert - corrects possible endless loop. Available at - http://bugs.gentoo.org/show_bug.cgi?id=25385 -* fixed problem with storing large binary files -* added more error checking, specifically on all socket functions -* added support for the INCR and DECR commands - which increment or decrement a value stored in MemCached -* Documentation removed from source and is now available - in the file Documentation + 1812 UTC: + Fixed memcached::enable_compression; + thanks to Justin Matlock for pointing it out + +07 Oct 2003: + 1635 UTC: + Fixed call to memcached::_dead_sock in memcached::delete + Added documentation for class variable $_buckets + +06 Oct 2003: + 2039 UTC: + Initial release of memcached-client-php; version 0.1 -Release 1.0.4 -------------- -* initial release, version numbers kept - in sync with MemCached version -* capable of storing any datatype in MemCached diff --git a/docs/php-memcached/README b/docs/php-memcached/README new file mode 100644 index 0000000000..07812dda22 --- /dev/null +++ b/docs/php-memcached/README @@ -0,0 +1 @@ +HTML documentation is under http://phpca.cytherianage.net/memcached/doc/ diff --git a/maintenance/deleteOrphanedRevisions.inc.php b/maintenance/deleteOrphanedRevisions.inc similarity index 100% rename from maintenance/deleteOrphanedRevisions.inc.php rename to maintenance/deleteOrphanedRevisions.inc diff --git a/maintenance/deleteOrphanedRevisions.php b/maintenance/deleteOrphanedRevisions.php index f440cd7d9f..0a22515a44 100644 --- a/maintenance/deleteOrphanedRevisions.php +++ b/maintenance/deleteOrphanedRevisions.php @@ -12,7 +12,7 @@ $options = array( 'report', 'help' ); require_once( 'commandLine.inc' ); -require_once( 'deleteOrphanedRevisions.inc.php' ); +require_once( 'deleteOrphanedRevisions.inc' ); echo( "Delete Orphaned Revisions\n" ); if( isset( $options['help'] ) ) { diff --git a/maintenance/importImages.inc.php b/maintenance/importImages.inc similarity index 100% rename from maintenance/importImages.inc.php rename to maintenance/importImages.inc diff --git a/maintenance/importImages.php b/maintenance/importImages.php index 727af3cd8c..5efd1fcbb5 100644 --- a/maintenance/importImages.php +++ b/maintenance/importImages.php @@ -11,7 +11,7 @@ $optionsWithArgs = array( 'extensions', 'comment', 'comment-file', 'comment-ext', 'user', 'license' ); require_once( 'commandLine.inc' ); -require_once( 'importImages.inc.php' ); +require_once( 'importImages.inc' ); $added = $skipped = $overwritten = 0; echo( "Import Images\n\n" ); diff --git a/maintenance/reassignEdits.inc.php b/maintenance/reassignEdits.inc similarity index 100% rename from maintenance/reassignEdits.inc.php rename to maintenance/reassignEdits.inc diff --git a/maintenance/reassignEdits.php b/maintenance/reassignEdits.php index 0d64020280..5825644e80 100644 --- a/maintenance/reassignEdits.php +++ b/maintenance/reassignEdits.php @@ -11,7 +11,7 @@ $options = array( 'force', 'norc', 'quiet', 'report' ); require_once( 'commandLine.inc' ); -require_once( 'reassignEdits.inc.php' ); +require_once( 'reassignEdits.inc' ); # Set silent mode; --report overrides --quiet if( !@$options['report'] && @$options['quiet'] ) diff --git a/maintenance/updateArticleCount.inc.php b/maintenance/updateArticleCount.inc similarity index 100% rename from maintenance/updateArticleCount.inc.php rename to maintenance/updateArticleCount.inc diff --git a/maintenance/updateArticleCount.php b/maintenance/updateArticleCount.php index a24984a86a..15033ad309 100644 --- a/maintenance/updateArticleCount.php +++ b/maintenance/updateArticleCount.php @@ -10,7 +10,7 @@ $options = array( 'update', 'help' ); require_once( 'commandLine.inc' ); -require_once( 'updateArticleCount.inc.php' ); +require_once( 'updateArticleCount.inc' ); echo( "Update Article Count\n\n" ); if( isset( $options['help'] ) && $options['help'] ) { -- 2.20.1