set svn:keywords property for proper keywords expansion
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 25 Oct 2007 20:33:17 +0000 (20:33 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 25 Oct 2007 20:33:17 +0000 (20:33 +0000)
103 files changed:
Makefile
ModPython.py
PLC/API.py
PLC/AddressTypes.py
PLC/Auth.py
PLC/BootStates.py
PLC/ConfFiles.py
PLC/Config.py
PLC/EventObjects.py
PLC/Events.py
PLC/Faults.py
PLC/GPG.py
PLC/KeyTypes.py
PLC/Messages.py
PLC/Method.py
PLC/Methods/AddNodeNetworkSetting.py
PLC/Methods/AddNodeNetworkSettingType.py
PLC/Methods/DeleteNodeNetworkSetting.py
PLC/Methods/DeleteNodeNetworkSettingType.py
PLC/Methods/GetNodeNetworkSettingTypes.py
PLC/Methods/GetNodeNetworkSettings.py
PLC/Methods/GetPeerData.py
PLC/Methods/RefreshPeer.py
PLC/Methods/UpdateNodeNetworkSetting.py
PLC/Methods/UpdateNodeNetworkSettingType.py
PLC/NetworkMethods.py
PLC/NetworkTypes.py
PLC/NodeGroups.py
PLC/NodeNetworks.py
PLC/Nodes.py
PLC/PCUs.py
PLC/Parameter.py
PLC/Persons.py
PLC/PostgreSQL.py
PLC/PyCurl.py
PLC/Roles.py
PLC/Shell.py
PLC/SliceInstantiations.py
PLC/Test.py
Server.py
Test.py
doc/DocBook.py
doc/Makefile
php/Makefile
php/header.php
php/methods.py
php/xmlrpc/config.m4
php/xmlrpc/config.m4.lib64
php/xmlrpc/config.w32
php/xmlrpc/libxmlrpc/base64.c
php/xmlrpc/libxmlrpc/encodings.c
php/xmlrpc/libxmlrpc/queue.c
php/xmlrpc/libxmlrpc/simplestring.c
php/xmlrpc/libxmlrpc/xml_element.c
php/xmlrpc/libxmlrpc/xml_element.c.gcc4
php/xmlrpc/libxmlrpc/xml_to_xmlrpc.c
php/xmlrpc/libxmlrpc/xmlrpc.c
php/xmlrpc/php_xmlrpc.h
php/xmlrpc/xmlrpc-epi-php.c
planetlab4.sql
plcsh
plctest/TestMain.py
psycopg2/scripts/ext2html.py
psycopg2/tests/dbapi20.py
pycurl/TODO
pycurl/doc/callbacks.html
pycurl/doc/curlmultiobject.html
pycurl/doc/curlobject.html
pycurl/doc/pycurl.html
pycurl/examples/basicfirst.py
pycurl/examples/file_upload.py
pycurl/examples/retriever-multi.py
pycurl/examples/retriever.py
pycurl/examples/xmlrpc_curl.py
pycurl/setup.py
pycurl/setup_win32_ssl.py
pycurl/src/pycurl.c
pycurl/tests/test.py
pycurl/tests/test_cb.py
pycurl/tests/test_debug.py
pycurl/tests/test_getinfo.py
pycurl/tests/test_gtk.py
pycurl/tests/test_internals.py
pycurl/tests/test_memleak.py
pycurl/tests/test_multi.py
pycurl/tests/test_multi2.py
pycurl/tests/test_multi3.py
pycurl/tests/test_multi4.py
pycurl/tests/test_multi5.py
pycurl/tests/test_multi6.py
pycurl/tests/test_multi_vs_thread.py
pycurl/tests/test_post.py
pycurl/tests/test_post2.py
pycurl/tests/test_post3.py
pycurl/tests/test_stringio.py
pycurl/tests/test_xmlrpc.py
pycurl/tests/util.py
refresh-peer.py
setup.py
tests/Makefile
tests/Test.py
tests/TestPeers.py
tools/slice_attributes.py

index 09ab772..6eba7ee 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2005 The Trustees of Princeton University
 #
-# $Id: Makefile 793 2007-08-28 15:21:17Z thierry $
+# $Id$
 #
 
 # Metafiles
index a6a424c..c722114 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 #
 # Copyright (C) 2004-2006 The Trustees of Princeton University
-# $Id: ModPython.py,v 1.4 2007/01/11 22:05:15 mlhuang Exp $
+# $Id$
 #
 
 import sys
index 5c06848..7fcfa09 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 #
 # Copyright (C) 2004-2006 The Trustees of Princeton University
-# $Id: API.py,v 1.8 2007/01/05 16:09:09 tmack Exp $
+# $Id$
 #
 
 import sys
index 0effbe2..dd6afff 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: AddressTypes.py,v 1.8 2006/11/09 03:07:42 mlhuang Exp $
+# $Id$
 #
 
 from types import StringTypes
index 627eece..f62b511 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Auth.py,v 1.17 2007/02/10 18:39:09 mlhuang Exp $
+# $Id$
 #
 
 import crypt
index 42a5214..f1bfcf9 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: BootStates.py,v 1.6 2006/10/24 20:02:22 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index dbd46f3..63474e3 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: ConfFiles.py,v 1.9 2006/11/09 03:07:42 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index 97233f0..6a4a7e2 100644 (file)
@@ -6,7 +6,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2004-2006 The Trustees of Princeton University
 #
-# $Id: Config.py,v 1.2 2006/09/06 19:15:59 mlhuang Exp $
+# $Id$
 #
 
 import os
index 25df867..1c6c4bb 100644 (file)
@@ -4,7 +4,7 @@
 # Tony Mack <tmack@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: EventObjects.py 348 2007-05-10 14:13:51Z thierry $
+# $Id$
 #
 
 from PLC.Faults import *
index ff80efc..c01f589 100644 (file)
@@ -4,7 +4,7 @@
 # Tony Mack <tmack@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Events.py,v 1.12 2007/02/27 18:52:14 tmack Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index 1b8bd0d..3c9328e 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 #
 # Copyright (C) 2004-2006 The Trustees of Princeton University
-# $Id: Faults.py,v 1.2 2006/12/07 09:13:55 thierry Exp $
+# $Id$
 #
 
 import xmlrpclib
index a393ca7..2499bab 100644 (file)
@@ -7,7 +7,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: GPG.py,v 1.5 2007/02/01 22:28:12 mlhuang Exp $
+# $Id$
 #
 
 import os
index 0092bf7..34df019 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: KeyTypes.py,v 1.3 2006/10/24 20:02:22 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index 36ff436..3ec310f 100644 (file)
@@ -4,7 +4,7 @@
 # Tony Mack <tmack@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Messages.py,v 1.4 2006/11/16 17:03:36 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Parameter import Parameter
index 7472795..74dc862 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Method.py,v 1.29 2007/08/20 20:31:47 tmack Exp $
+# $Id$
 #
 
 import xmlrpclib
index b2915a2..b31aed2 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 90 $
+# $Revision$
 #
 from PLC.Faults import *
 from PLC.Method import Method
index 8a16112..35a3ca0 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 88 $
+# $Revision$
 #
 
 
index 34dcda2..eae2112 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 90 $
+# $Revision$
 #
 
 from PLC.Faults import *
index ec8d2b1..dc52d10 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 88 $
+# $Revision$
 #
 from PLC.Faults import *
 from PLC.Method import Method
index 16eec0a..10d7b39 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 88 $
+# $Revision$
 #
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
index 1eca4f4..42359ce 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 88 $
+# $Revision$
 #
 from PLC.Faults import *
 from PLC.Method import Method
index 346331a..113fe86 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 # 
-# $Id: GetPeerData.py 904 2007-10-08 14:28:06Z thierry $
+# $Id$
 
 import time
 
index 6c0444f..40fb1e2 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 # 
-# $Id: RefreshPeer.py,v 1.23 2007/03/23 19:05:16 thierry Exp $
+# $Id$
 
 import time
 
index f0ed8de..bd59879 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 90 $
+# $Revision$
 #
 
 from PLC.Faults import *
index caa0511..5501c11 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Thierry Parmentelat - INRIA
 #
-# $Revision: 88 $
+# $Revision$
 #
 from PLC.Faults import *
 from PLC.Method import Method
index a3d306b..41ccfab 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: NetworkMethods.py,v 1.3 2006/10/24 20:02:22 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index bab7af8..f3a032f 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: NetworkTypes.py,v 1.3 2006/10/24 20:02:22 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index 3b00bc6..cc2a44c 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: NodeGroups.py,v 1.18 2006/11/09 03:07:42 mlhuang Exp $
+# $Id$
 #
 
 from types import StringTypes
index 52f688f..47e091d 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: NodeNetworks.py 793 2007-08-28 15:21:17Z thierry $
+# $Id$
 #
 
 from types import StringTypes
index 517a16a..87f0d1c 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Nodes.py 800 2007-08-30 03:49:35Z thierry $
+# $Id$
 #
 
 from types import StringTypes
index e1cf6ca..563acf9 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: PCUs.py,v 1.9 2006/11/09 03:07:42 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index 2307483..fc25b93 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Parameter.py,v 1.6 2006/11/08 22:10:00 mlhuang Exp $
+# $Id$
 #
 
 from types import *
index 24d71d3..0b0fe68 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Persons.py,v 1.38 2007/08/22 19:54:07 tmack Exp $
+# $Id$
 #
 
 from types import StringTypes
index d996e72..597077a 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: PostgreSQL.py,v 1.14 2007/02/11 18:34:06 mlhuang Exp $
+# $Id$
 #
 
 import psycopg2
index e43efe6..f0d4005 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: PyCurl.py,v 1.2 2007/09/12 17:52:27 tmack Exp $
+# $Id$
 #
 
 import os
index 42b2622..400b344 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Roles.py,v 1.7 2006/11/08 23:02:01 mlhuang Exp $
+# $Id$
 #
 
 from types import StringTypes
index f2aa211..6e4a77b 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2005 The Trustees of Princeton University
 #
-# $Id: Shell.py,v 1.4 2007/02/02 04:38:28 mlhuang Exp $
+# $Id$
 #
 
 import os
index 843b327..4996a1e 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: SliceInstantiations.py,v 1.2 2006/10/03 19:27:28 mlhuang Exp $
+# $Id$
 #
 
 from PLC.Faults import *
index 03b4b8c..05796a6 100644 (file)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Test.py 250 2007-04-17 15:14:57Z thierry $
+# $Id$
 #
 
 from pprint import pprint
index 84c3360..40a68ab 100755 (executable)
--- a/Server.py
+++ b/Server.py
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Server.py,v 1.3 2006/10/25 20:33:07 mlhuang Exp $
+# $Id$
 #
 
 import os
diff --git a/Test.py b/Test.py
index c7a8c98..8ff3ad2 100755 (executable)
--- a/Test.py
+++ b/Test.py
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Test.py,v 1.21 2007/01/12 06:17:33 mlhuang Exp $
+# $Id$
 #
 
 """
index 0b279b2..254e99e 100755 (executable)
@@ -6,7 +6,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: DocBook.py,v 1.3 2006/10/25 19:35:36 mlhuang Exp $
+# $Id$
 #
 
 import xml.dom.minidom
index bbb25c9..3adaa1f 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Makefile,v 1.2 2006/11/03 20:36:05 thierry Exp $
+# $Id$
 #
 
 all: PLCAPI.pdf
index 5498951..560ff68 100644 (file)
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Makefile,v 1.2 2006/10/27 15:40:37 mlhuang Exp $
+# $Id$
 #
 
 all: plc_api.php
index 15d1591..5172894 100644 (file)
@@ -8,7 +8,7 @@
 // Mark Huang <mlhuang@cs.princeton.edu>
 // Copyright (C) 2005-2006 The Trustees of Princeton University
 //
-// $Id: header.php 170 2007-03-30 12:44:11Z thierry $
+// $Id$
 //
 //
 
index b41b1ba..ca34773 100755 (executable)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2005 The Trustess of Princeton University
 #
-# $Id: methods.py,v 1.4 2006/11/29 19:43:17 mlhuang Exp $
+# $Id$
 #
 
 import os, sys
index f9cbdea..54335df 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.21 2003/10/01 02:53:15 sniper Exp $
+dnl $Id$
 dnl
 
 sinclude(ext/xmlrpc/libxmlrpc/acinclude.m4)
index 5dc9995..8551f6b 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.21 2003/10/01 02:53:15 sniper Exp $
+dnl $Id$
 dnl
 
 sinclude(ext/xmlrpc/libxmlrpc/acinclude.m4)
index 4001446..8c399cd 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: config.w32,v 1.2 2003/12/22 13:16:42 wez Exp $
+// $Id$
 // vim:ft=javascript
 
 ARG_WITH("xmlrpc", "XMLRPC-EPI support", "no");
index e067038..7788d02 100644 (file)
@@ -1,4 +1,4 @@
-static const char rcsid[] = "#(@) $Id: base64.c,v 1.4 2004/04/27 17:33:59 iliaa Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 /*
 
index 0bad3ee..1637a09 100644 (file)
@@ -41,7 +41,7 @@
 #include <stdlib.h>
 #endif
 
-static const char rcsid[] = "#(@) $Id: encodings.c,v 1.7 2004/03/08 23:04:33 abies Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 #include <errno.h>
 
index ca96034..2418738 100644 (file)
@@ -1,4 +1,4 @@
-static const char rcsid[] = "#(@) $Id: queue.c,v 1.4 2002/07/05 04:43:53 danda Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 /* 
  * Date last modified: Jan 2001
index 68dab91..be2aba5 100644 (file)
@@ -31,7 +31,7 @@
 */
 
 
-static const char rcsid[] = "#(@) $Id: simplestring.c,v 1.4 2003/12/16 21:00:21 sniper Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 
 #define SIMPLESTRING_INCR 32
index a4ba37e..ae30838 100644 (file)
@@ -31,7 +31,7 @@
 */
 
 
-static const char rcsid[] = "#(@) $Id: xml_element.c,v 1.6 2004/06/01 20:16:06 iliaa Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 
 
index f1a23a9..154f19b 100644 (file)
@@ -31,7 +31,7 @@
 */
 
 
-static const char rcsid[] = "#(@) $Id: xml_element.c,v 1.6 2004/06/01 20:16:06 iliaa Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 
 
index fb69963..c76b00f 100644 (file)
@@ -31,7 +31,7 @@
 */
 
 
-static const char rcsid[] = "#(@) $Id: xml_to_xmlrpc.c,v 1.5 2004/04/27 17:33:59 iliaa Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 #ifdef _WIN32
 #include "xmlrpc_win32.h"
index 67242b8..d5f3f7b 100644 (file)
@@ -31,7 +31,7 @@
 */
 
 
-static const char rcsid[] = "#(@) $Id: xmlrpc.c,v 1.6 2004/04/27 17:33:59 iliaa Exp $";
+static const char rcsid[] = "#(@) $Id$";
 
 
 /****h* ABOUT/xmlrpc
index b56f844..98355ba 100644 (file)
@@ -51,7 +51,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_xmlrpc.h,v 1.10 2004/01/08 17:33:00 sniper Exp $ */
+/* $Id$ */
 
 #ifndef _PHP_XMLRPC_H
 #define _PHP_XMLRPC_H
index 7e19c7e..d668067 100644 (file)
@@ -51,7 +51,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: xmlrpc-epi-php.c,v 1.37 2004/01/08 08:17:47 andi Exp $ */
+/* $Id$ */
 
 /**********************************************************************
 * BUGS:                                                               *
index 555ee28..76e9937 100644 (file)
@@ -9,7 +9,7 @@
 --
 -- Copyright (C) 2006 The Trustees of Princeton University
 --
--- $Id: planetlab4.sql 793 2007-08-28 15:21:17Z thierry $
+-- $Id$
 --
 
 SET client_encoding = 'UNICODE';
diff --git a/plcsh b/plcsh
index fed505f..10944b0 100755 (executable)
--- a/plcsh
+++ b/plcsh
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2005 The Trustees of Princeton University
 #
-# $Id: plcsh,v 1.5 2007/02/02 04:39:03 mlhuang Exp $
+# $Id$
 #
 
 import os
index 38c0f5f..498cfbb 100755 (executable)
@@ -10,7 +10,7 @@ import threading
 
 class TestMain:
 
-    subversion_id = "$Id: TestMain.py 767 2007-08-06 08:32:04Z amine $"
+    subversion_id = "$Id$"
 
     def __init__ (self):
        self.path=os.path.dirname(sys.argv[0])
index f7c95d8..488e97f 100755 (executable)
@@ -2,7 +2,7 @@
 \r
 # Author: Daniele Varrazzo\r
 # Contact: daniele dot varrazzo at gmail dot com\r
-# Revision: $Revision: 711 $\r
+# Revision: $Revision$\r
 # Date: $Date$\r
 # Copyright: This module has been placed in the public domain.\r
 \r
index 4fc8c0c..21f15b9 100644 (file)
@@ -11,8 +11,8 @@
     -- Ian Bicking
 '''
 
-__rcs_id__  = '$Id: dbapi20.py,v 1.10 2003/10/09 03:14:14 zenzen Exp $'
-__version__ = '$Revision: 1.10 $'[11:-2]
+__rcs_id__  = '$Id$'
+__version__ = '$Revision$'[11:-2]
 __author__ = 'Stuart Bishop <zen@shangri-la.dropbear.id.au>'
 
 import unittest
index 0ed534a..ed4afdf 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: TODO,v 1.95 2005/03/04 14:43:04 kjetilja Exp $
+# $Id$
 # vi:ts=4:et
 
 If you want to hack on pycurl, here's our list of unresolved issues:
index e300c4d..b98e0a9 100644 (file)
@@ -133,7 +133,7 @@ and 'tests/test_getinfo.py' shows PROGRESSFUNCTION.</p>
   <a href="http://validator.w3.org/check/referer"><img align="right"
      src="http://www.w3.org/Icons/valid-xhtml10"
      alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a>
-  $Id: callbacks.html,v 1.15 2005/02/10 11:35:23 kjetilja Exp $
+  $Id$
 </p>
 
 </body>
index 812111d..f944b18 100644 (file)
@@ -129,7 +129,7 @@ returned.</p>
   <a href="http://validator.w3.org/check/referer"><img align="right"
      src="http://www.w3.org/Icons/valid-xhtml10"
      alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a>
-  $Id: curlmultiobject.html,v 1.4 2004/06/05 17:59:01 mfx Exp $
+  $Id$
 </p>
 
 </body>
index 4a6fe78..53497f6 100644 (file)
@@ -95,7 +95,7 @@ print c.getinfo(pycurl.HTTP_CODE), c.getinfo(pycurl.EFFECTIVE_URL)
   <a href="http://validator.w3.org/check/referer"><img align="right"
      src="http://www.w3.org/Icons/valid-xhtml10"
      alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a>
-  $Id: curlobject.html,v 1.14 2005/02/11 11:09:09 mfx Exp $
+  $Id$
 </p>
 
 </body>
index 39c34fb..f1db42a 100644 (file)
@@ -113,7 +113,7 @@ a <code>CURLM</code> handle in libcurl.</p>
   <a href="http://validator.w3.org/check/referer"><img align="right"
      src="http://www.w3.org/Icons/valid-xhtml10"
      alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a>
-  $Id: pycurl.html,v 1.28 2005/02/11 11:09:10 mfx Exp $
+  $Id$
 </p>
 
 </body>
index 4e49465..af59405 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: basicfirst.py,v 1.5 2005/02/11 11:09:11 mfx Exp $
+# $Id$
 
 import sys
 import pycurl
index e513e7d..a514c1c 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: file_upload.py,v 1.5 2005/02/13 08:53:13 mfx Exp $
+# $Id$
 
 import os, sys
 import pycurl
index 488d0f7..2ec3f9a 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: retriever-multi.py,v 1.25 2005/02/13 08:28:01 mfx Exp $
+# $Id$
 
 #
 # Usage: python retriever-multi.py <file with URLs to fetch> [<# of
index bd20da7..2c91d07 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: retriever.py,v 1.17 2005/02/13 08:28:01 mfx Exp $
+# $Id$
 
 #
 # Usage: python retriever.py <file with URLs to fetch> [<# of
index a175d23..462bc97 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: xmlrpc_curl.py,v 1.10 2005/02/11 11:09:12 mfx Exp $
+# $Id$
 
 # We should ignore SIGPIPE when using pycurl.NOSIGNAL - see
 # the libcurl tutorial for more info.
index a9799db..841ff19 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: setup.py,v 1.123 2005/02/17 10:13:23 mfx Exp $
+# $Id$
 
 """Setup script for the PycURL module distribution."""
 
index b900874..1226ac1 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: setup_win32_ssl.py,v 1.27 2005/02/17 10:13:23 mfx Exp $
+# $Id$
 
 import os, sys, string
 assert sys.platform == "win32", "Only for building on Win32 with SSL and zlib"
index 6f5f699..25f9d61 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: pycurl.c,v 1.86 2005/03/04 08:39:30 kjetilja Exp $ */
+/* $Id$ */
 
 /* PycURL -- cURL Python module
  *
index f5afada..743c311 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test.py,v 1.16 2004/12/26 17:31:53 mfx Exp $
+# $Id$
 
 import sys, threading, time
 import pycurl
index 509f49e..1be305c 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_cb.py,v 1.14 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import sys
 import pycurl
index d3a6356..d439b16 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_debug.py,v 1.6 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import pycurl
 
index dd13570..ed64594 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_getinfo.py,v 1.18 2003/05/01 19:35:01 mfx Exp $
+# $Id$
 
 import time
 import pycurl
index b3c28c6..9626310 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_gtk.py,v 1.23 2004/12/26 17:31:53 mfx Exp $
+# $Id$
 
 import sys, threading
 from gtk import *
index afcc53d..a1a6533 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_internals.py,v 1.17 2003/05/01 16:48:54 mfx Exp $
+# $Id$
 
 #
 # a simple self-test
index 284df62..8577b97 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_memleak.py,v 1.4 2003/05/01 16:48:54 mfx Exp $
+# $Id$
 
 #
 # just a simple self-test
index 5be86f0..01312be 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi.py,v 1.9 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import pycurl
 
index 3d8ab1b..182e0dc 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi2.py,v 1.13 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import os, sys
 try:
index 9b52159..0ef514a 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi3.py,v 1.12 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 # same as test_multi2.py, but enforce some debugging and strange API-calls
 
index 6b143aa..0c024a4 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi4.py,v 1.13 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import sys, select, time
 import pycurl
index 10f799e..b55dd7e 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi5.py,v 1.11 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import sys, select, time
 import pycurl
index 77585e5..6ff8e92 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi6.py,v 1.5 2003/04/21 18:46:10 mfx Exp $
+# $Id$
 
 import sys, select, time
 import pycurl
index a6030cc..c242d30 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_multi_vs_thread.py,v 1.15 2004/12/26 17:31:53 mfx Exp $
+# $Id$
 
 import os, sys, time
 from threading import Thread, RLock
index 574bbda..f0a8ad0 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_post.py,v 1.9 2003/04/21 18:46:11 mfx Exp $
+# $Id$
 
 import urllib
 import pycurl
index fd1395a..74a6eca 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_post2.py,v 1.13 2005/03/03 10:00:40 kjetilja Exp $
+# $Id$
 
 import pycurl
 
index 3ebdd55..617eba2 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_post3.py,v 1.1 2004/06/21 11:24:18 kjetilja Exp $
+# $Id$
 
 import urllib
 POSTSTRING = urllib.urlencode({'field1':'value1', 'field2':'value2 with blanks', 'field3':'value3'})
index 7fdf153..25e639b 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_stringio.py,v 1.6 2003/04/21 18:46:11 mfx Exp $
+# $Id$
 
 import sys
 try:
index c2ff86d..bc5953e 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/env python
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: test_xmlrpc.py,v 1.7 2003/04/21 18:46:11 mfx Exp $
+# $Id$
 
 ## XML-RPC lib included in python2.2
 import xmlrpclib
index 945ad0d..a1a9978 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: iso-8859-1 -*-
 # vi:ts=4:et
-# $Id: util.py,v 1.4 2003/04/21 18:46:11 mfx Exp $
+# $Id$
 
 import os, sys
 
index ae38841..7c55224 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/env plcsh
-# $Id: refresh-peer.py 154 2007-03-28 14:15:55Z thierry $
+# $Id$
 
 import sys,os,time
 
index 78d1343..7206a9e 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: setup.py 519 2007-06-12 14:36:25Z thierry $
+# $Id$
 #
 
 from distutils.core import setup
index 5c56250..788861a 100644 (file)
@@ -1,5 +1,5 @@
 ### -*-Makefile-*-
-# $Id: Makefile 566 2007-06-20 14:44:13Z thierry $
+# $Id$
 PLC1=plc1.inria.fr
 PLC2=plc2.inria.fr
 
index 9781117..8ff3ad2 100755 (executable)
@@ -5,7 +5,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Test.py 502 2007-06-11 14:41:07Z thierry $
+# $Id$
 #
 
 """
index b6ba4b1..5013317 100755 (executable)
@@ -14,7 +14,7 @@
 ###
 ##############################
 
-subversion_id="$Id: TestPeers.py 560 2007-06-20 13:23:09Z thierry $"
+subversion_id="$Id$"
 
 import sys
 import time
index b0d20e0..d206098 100755 (executable)
@@ -6,7 +6,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: slice_attributes.py,v 1.5 2007/02/04 04:34:26 mlhuang Exp $
+# $Id$
 #
 
 import re