[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/utilities/ Merged r26446: Fix docstrings and $Id$ expansion.

Philipp von Weitershausen philikon at philikon.de
Tue Jul 13 12:13:14 EDT 2004


Log message for revision 26448:
  Merged r26446: Fix docstrings and $Id$ expansion.
  


Changed:
  UU  Zope3/branches/ZopeX3-3.0/utilities/XXXreport
  UU  Zope3/branches/ZopeX3-3.0/utilities/XXXreport2html.py
  _U  Zope3/branches/ZopeX3-3.0/utilities/finddeps.py
  UU  Zope3/branches/ZopeX3-3.0/utilities/i18nextract.py
  UU  Zope3/branches/ZopeX3-3.0/utilities/i18nmergeall.py
  U   Zope3/branches/ZopeX3-3.0/utilities/i18nstats.py
  UU  Zope3/branches/ZopeX3-3.0/utilities/importchecker.py
  UU  Zope3/branches/ZopeX3-3.0/utilities/importorder.py
  _U  Zope3/branches/ZopeX3-3.0/utilities/importtool
  UU  Zope3/branches/ZopeX3-3.0/utilities/pyskel.py
  UU  Zope3/branches/ZopeX3-3.0/utilities/runurl.py


-=-
Modified: Zope3/branches/ZopeX3-3.0/utilities/XXXreport
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/XXXreport	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/XXXreport	2004-07-13 16:13:14 UTC (rev 26448)
@@ -12,7 +12,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-# $Id: XXXreport,v 1.4 2003/12/17 07:55:59 philikon Exp $
+# $Id$
 
 # This script assumes it is located in the utilities directory of Zope3
 


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/XXXreport
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/XXXreport2html.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/XXXreport2html.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/XXXreport2html.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -15,7 +15,7 @@
 
 Creates a HTML file from a XXXReport file.
 
-$Id: XXXreport2html.py,v 1.4 2002/12/25 14:15:36 jim Exp $
+$Id$
 """
 
 import sys


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/XXXreport2html.py
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/finddeps.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/i18nextract.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/i18nextract.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/i18nextract.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -41,7 +41,7 @@
         Specifies a directory, relative to the package in which to put the
         output translation template.
 
-$Id: i18nextract.py,v 1.6 2004/04/21 10:02:14 eckart Exp $
+$Id$
 """
 
 import os, sys, getopt


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/i18nextract.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/i18nmergeall.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/i18nmergeall.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/i18nmergeall.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -26,7 +26,7 @@
     -l / --locales-dir
         Specify the 'locales' directory for which to generate the statistics.
 
-$Id: i18nmergeall.py,v 1.1 2004/04/09 12:11:22 srichter Exp $
+$Id$
 """
 import sys
 import os


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/i18nmergeall.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/i18nstats.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/i18nstats.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/i18nstats.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -25,7 +25,7 @@
     -l / --locales-dir
         Specify the 'locales' directory for which to generate the statistics.
 
-$Id: i18nstats.py,v 1.1 2004/04/09 12:11:25 srichter Exp $
+$Id$
 """
 import sys
 import os

Modified: Zope3/branches/ZopeX3-3.0/utilities/importchecker.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/importchecker.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/importchecker.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -12,7 +12,13 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
+"""Import checker
 
+This utility finds unused imports in Python modules.  Its output is
+grep-like and thus emacs-friendly.
+
+$Id$
+"""
 import compiler
 import os, os.path
 import sys


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/importchecker.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/importorder.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/importorder.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/importorder.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -42,7 +42,7 @@
    It Displays Import order for all py files in the specified path and
    doesn't write importorder into .py file. 
 
-$Id: importorder.py,v 1.1 2004/05/10 15:48:03 eddala Exp $
+$Id$
 """
 
 import getopt


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/importorder.py
___________________________________________________________________
Name: svn:keywords
   + Id


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/importtool
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/pyskel.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/pyskel.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/pyskel.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -12,8 +12,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""
-Generate method skeletons for intefaces.
+"""Generate method skeletons for intefaces.
 
 Usage: python pyskel.py dotted_name
 
@@ -25,7 +24,7 @@
 The dotted name is the module name and interface object name connected
 with a dot.
 
-Revision information: $Id: pyskel.py,v 1.5 2004/01/14 22:55:30 chrism Exp $
+$Id$
 """
 
 import sys, os, re


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/pyskel.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/ZopeX3-3.0/utilities/runurl.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/utilities/runurl.py	2004-07-13 16:12:42 UTC (rev 26447)
+++ Zope3/branches/ZopeX3-3.0/utilities/runurl.py	2004-07-13 16:13:14 UTC (rev 26448)
@@ -66,7 +66,7 @@
 
         Run from a build directory
 
-$Id: runurl.py,v 1.6 2003/11/21 17:12:47 jim Exp $
+$Id$
 """
 
 import sys, os, getopt, gc


Property changes on: Zope3/branches/ZopeX3-3.0/utilities/runurl.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the Zope3-Checkins mailing list