Removed CVS keywords from files, to make merging between branches
authorEvan Prodromou <evanprodromou@users.mediawiki.org>
Mon, 29 Nov 2004 18:25:30 +0000 (18:25 +0000)
committerEvan Prodromou <evanprodromou@users.mediawiki.org>
Mon, 29 Nov 2004 18:25:30 +0000 (18:25 +0000)
easier. Interpolated keywords cause lots of conflicts and headaches at
merge time for older (<1.12.x) CVS versions.

32 files changed:
docs/design.doc
includes/Article.php
includes/Block.php
includes/Database.php
includes/DatabaseFunctions.php
includes/DatabasePostgreSQL.php
includes/DefaultSettings.php
includes/EditPage.php
includes/Feed.php
includes/GlobalFunctions.php
includes/Image.php
includes/LogPage.php
includes/MessageCacheHints.php
includes/ObjectCache.php
includes/OutputPage.php
includes/Parser.php
includes/SearchUpdate.php
includes/SiteStatsUpdate.php
includes/SpecialRandompage.php
includes/Title.php
includes/ZhClient.php
languages/LanguageFr.php
languages/LanguageLt.php
languages/LanguageSv.php
languages/LanguageUtf8.php
maintenance/InitialiseMessages.inc
maintenance/parserTests.txt
maintenance/postgresql/pg_tables.sql
maintenance/postgresql/pg_users.sql
maintenance/refreshLinks.inc
skins/disabled/WikimediaWiki.php
soap/nusoap.php

index a0eb9ba..af1ee30 100644 (file)
@@ -117,3 +117,10 @@ Naming/coding conventions:
     of session variables are wsName, cookies wcName, and form field
     values wpName ("p" for "POST").
 
+  - Be kind to your release manager and don't use CVS keywords (Id,
+    Revision, etc.) to mark file versions; they make merging code between
+    different branches a pain for older versions (<1.12.x) of CVS, and
+    are kind of sketchy for versions after that.
+    
+
+    
\ No newline at end of file
index ae99a95..2a4f5e0 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /**
  * File for articles
- * @version $Id$
  * @package MediaWiki
  */
 
@@ -20,7 +19,6 @@ $wgArticleOldContentFields = false;
  * Note: edit user interface and cache support functions have been
  * moved to separate EditPage and CacheManager classes.
  *
- * @version $Id$
  * @package MediaWiki
  */
 class Article {
index 5a85153..3b4916c 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * Blocks and bans object
  * @package MediaWiki
- * $Id$
  */
 
 /**
index b6153a3..1dc6c1a 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * This file deals with MySQL interface functions 
  * and query specifics/optimisations
- * @version # $Id$
  * @package MediaWiki
  */
 
@@ -27,7 +26,6 @@ define( 'DEADLOCK_DELAY_MAX', 1500000 );
 /**
  * Database abstraction object
  * @package MediaWiki
- * @version # $Id$
  */
 class Database {
 
@@ -1368,7 +1366,6 @@ class Database {
  *
  * @package MediaWiki
  * @see Database
- * @version # $Id$
  */
 class DatabaseMysql extends Database {
        # Inherit all
@@ -1379,7 +1376,6 @@ class DatabaseMysql extends Database {
  * Result wrapper for grabbing data queried by someone else
  *
  * @package MediaWiki
- * @version # $Id$ 
  */
 class ResultWrapper {
        var $db, $result;
index 9904cd0..7d9f035 100644 (file)
@@ -4,7 +4,6 @@
  * 
  * Note: $wgDatabase has ceased to exist. Destroy all references.
  *
- * @version # $Id$
  * @package MediaWiki
  */
 
index 63c500a..21dc994 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-# $Id$
 
 /**
  * DO NOT USE !!!  Unless you want to help developping it.
index b8899d3..a8380dc 100644 (file)
@@ -9,7 +9,6 @@
  * like $wgScriptPath, you must also localize everything that
  * depends on it.
  *
- * @version $Id$
  * @package MediaWiki
  */
 
index 3ed2882..e7ccb34 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * Contain the EditPage class
  * @package MediaWiki
- * @version $Id$
  */
 
 /**
index 3ac7fe3..8d4188f 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-# $Id$
 # Basic support for outputting syndication feeds in RSS, other formats
 # 
 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
index f05e82d..0ab7818 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-# $Id$
 
 /**
  * Global functions used everywhere
index 8aafff6..2209c4a 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /**
  * @package MediaWiki
- * $Id$
  */
 
 /**
index 68b73b2..f1fc55a 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-#$Id$
 #
 # Copyright (C) 2002, 2004 Brion Vibber <brion@pobox.com>
 # http://www.mediawiki.org/
index d84e247..582fec3 100644 (file)
@@ -2,7 +2,6 @@
 
 /* 
  *     @package Mediawiki
- *     @version $Id$
  *
  *     This class should provide methods for message 
  *     cache key hints for various scopes */
index 7689b94..b476447 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-# $Id$
 #
 # Copyright (C) 2003-2004 Brion Vibber <brion@pobox.com>
 # http://www.mediawiki.org/
index 565d3e8..31eb28d 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 /**
- * @version $Id$
  * @package MediaWiki
  */
 
index a8165d7..2c70279 100644 (file)
@@ -4,7 +4,6 @@
  * File for Parser and related classes
  *
  * @package MediaWiki
- * @version $Id$
  */
 
 /**
index 859cccc..9337aa2 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-# $Id$
 /**
  * See deferred.doc
  * @package MediaWiki
index f44a3ed..25cc89e 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-# $Id$
 /**
  * See deferred.doc
  *
index 4066c65..62269ec 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 /**
- * @version # $Id$
  * @package MediaWiki
  * @subpackage SpecialPage
  */
index 435c534..43f8e78 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 /**
- * $Id$
  * See title.doc
  * 
  * @package MediaWiki
index 7bedf82..13b195e 100644 (file)
@@ -3,7 +3,6 @@
  * Client for querying zhdaemon
  *
  * @package MediaWiki
- * @version $Id$
  */
 
 class ZhClient {
index 1b9d601..322ad3a 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 
-// $Id$
-
 // The names of the namespaces can be set here, but the numbers
 // are magical, so don't change or move them!  The Namespace class
 // encapsulates some of the magic-ness.
index 8efdb02..0b31f16 100644 (file)
@@ -1,6 +1,5 @@
 <?php
-# $Id$
-#
+
 require_once( "LanguageUtf8.php" );
 
 
index fd4e786..3883071 100644 (file)
@@ -9,8 +9,6 @@
 
 require_once( "LanguageUtf8.php" );
 
-// $Id$
-
 /* private */ $wgNamespaceNamesSv = array(
        NS_MEDIA            => "Media",
        NS_SPECIAL          => "Special",
index aa7ec68..681940e 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-#$Id$
+
 if( defined( "MEDIAWIKI" ) ) {
 
 # This file and LanguageLatin1.php may be included from within functions, so
index d625d7d..f3e3623 100755 (executable)
@@ -2,8 +2,6 @@
 /**
  * Script to initialise the MediaWiki namespace
  *
- * $Id$
- *
  * This script is included from update.php and install.php. Do not run it 
  * by itself.
  *
index 2d7372e..23bf77b 100644 (file)
@@ -1,7 +1,6 @@
 # MediaWiki Parser test cases
 # Some taken from http://meta.wikimedia.org/wiki/Parser_testing
 # All (C) their respective authors and released under the GPL
-# $Id$
 #
 # The syntax should be fairly self-explanatory.
 #
index 5b5c59c..191c74a 100644 (file)
@@ -1,4 +1,3 @@
--- $Id$
 --
 -- Database schema for MediaWiki PostgreSQL support
 --
index 35f117e..c01eef7 100644 (file)
@@ -1,4 +1,3 @@
--- $Id$
 -- access rights for wiki database users
 CREATE USER {$wgDBuser}
        PASSWORD '{$wgDBpassword}';
index 82bf29a..60f2981 100644 (file)
@@ -3,7 +3,6 @@
  * @todo document
  * @package MediaWiki
  * @subpackage Maintenance
- * @version $Id$
  */
 
 /** */
index 26ce0cc..608c8b8 100644 (file)
@@ -2,7 +2,6 @@
 /**
  * Tentative to make a skin for wikimedia.org
  *
- * @version $Id$
  * @package MediaWiki
  * @subpackage Skins
  */
index 4aea2f6..a973cf1 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 
 /*
-$Id$
 
 NuSOAP - Web Services Toolkit for PHP
 
@@ -55,14 +54,13 @@ require_once('class.soap_server.php');*/
 * nusoap_base
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access   public
 */
 class nusoap_base {
 
        var $title = 'NuSOAP';
        var $version = '0.6.7';
-       var $revision = '$Revision$';
+       var $revision = '1.1';
        var $error_str = false;
     var $debug_str = '';
        // toggles automatic encoding of special characters as entities
@@ -663,7 +661,6 @@ function usleepWindows($usec)
 * mainly used for returning faults from deployed functions
 * in a server instance.
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access public
 */
 class soap_fault extends nusoap_base {
@@ -728,7 +725,6 @@ class soap_fault extends nusoap_base {
 * tutorials I refer to :)
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access   public
 */
 class XMLSchema extends nusoap_base  {
@@ -1489,7 +1485,6 @@ class XMLSchema extends nusoap_base  {
 * NOTE: this is only really used when WSDL is not available.
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access   public
 */
 class soapval extends nusoap_base {
@@ -1546,7 +1541,6 @@ class soapval extends nusoap_base {
 * NOTE: PHP must be compiled with the CURL extension for HTTPS support
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access public
 */
 class soap_transport_http extends nusoap_base {
@@ -2308,7 +2302,6 @@ class soap_transport_http extends nusoap_base {
 * NOTE: WSDL functionality is experimental
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access   public
 */
 class soap_server extends nusoap_base {
@@ -3129,7 +3122,6 @@ class soap_server extends nusoap_base {
 * parses a WSDL file, allows access to it's data, other utility methods
 * 
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access public 
 */
 class wsdl extends nusoap_base {
@@ -4428,7 +4420,6 @@ class wsdl extends nusoap_base {
 * soap_parser class parses SOAP XML messages into native PHP values
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access   public
 */
 class soap_parser extends nusoap_base {
@@ -4966,7 +4957,6 @@ class soap_parser extends nusoap_base {
 * unset($soapclient);
 *
 * @author   Dietrich Ayala <dietrich@ganx4.com>
-* @version  $Id$
 * @access   public
 */
 class soapclient extends nusoap_base  {