ooo-build r13071 - trunk/scratch/rcsutil



Author: michael
Date: Fri Jul  4 15:55:59 2008
New Revision: 13071
URL: http://svn.gnome.org/viewvc/ooo-build?rev=13071&view=rev

Log:
clean & comment.


Modified:
   trunk/scratch/rcsutil/parse_rcs.py

Modified: trunk/scratch/rcsutil/parse_rcs.py
==============================================================================
--- trunk/scratch/rcsutil/parse_rcs.py	(original)
+++ trunk/scratch/rcsutil/parse_rcs.py	Fri Jul  4 15:55:59 2008
@@ -9,7 +9,6 @@
 sys.path.append(sys.path[0]+"/src")
 import revision, globals
 
-
 # all commits that were made to the following branches are ignored.
 ignoredBranches = [
     'SRX643_TF_BINFILTER',
@@ -17,10 +16,26 @@
     'cws_src680_hedaburemove01',
     'cws_src680_ooo19126']
 
-# all commmits done by the following authors are ignored.
+# all commmits done by the following authors are ignored
+# release engineers do eg. huge license changes directly
+# on HEAD, and integrate all branches themselves.
 ignoredAuthors = [
     'gh', 'ihi', 'rt', 'vg']
 
+# just examine source code, avoiding binary bits & so on
+sourceExtension = {
+    '.c':1, '.cc':1, '.cpp':1, '.cs':1, '.csc':1, '.css':1, '.cxx':1,
+    '.diff':1, '.h':1, '.hpp':1, '.hxx':1, '.idl':1, '.inc':1, '.ini':1,
+    '.jam':1, '.java':1, '.lst':1, '.mk':1, '.patch':1, '.py':1,
+    '.scp':1, '.sh':1, '.txt':1, '.xcs':1, '.xcu':1, '.xsl':1, '.y':1}
+
+# ignore large auto-generated files that people like to regularly
+# check into CVS for unknown reasons.
+autogenFiles = [
+    'sw/writerfilter/source/ooxml/OOXMLresources.cxx,v'
+    'sw/writerfilter/source/ooxml/OOXMLresources.hxx,v'
+]
+
 currentAffiliations = {
     'ab': 'Sun', # Andreas Bregas       
     'abi': 'Sun', # Andreas Bille        
@@ -302,19 +317,6 @@
     'zhiming': 'Intel'} # Jeremy Zheng         
 
 
-# include raw source code pruning random other cruft
-sourceExtension = {
-    '.c':1, '.cc':1, '.cpp':1, '.cs':1, '.csc':1, '.css':1, '.cxx':1,
-    '.diff':1, '.h':1, '.hpp':1, '.hxx':1, '.idl':1, '.inc':1, '.ini':1,
-    '.jam':1, '.java':1, '.lst':1, '.mk':1, '.patch':1, '.py':1,
-    '.scp':1, '.sh':1, '.txt':1, '.xcs':1, '.xcu':1, '.xsl':1, '.y':1}
-
-# for unknown reasons some (large) auto-generated files get checked in
-autogenFiles = [
-    'sw/writerfilter/source/ooxml/OOXMLresources.cxx,v'
-    'sw/writerfilter/source/ooxml/OOXMLresources.hxx,v'
-]
-
 def getAffiliation (name, date):
     affil = '(unknown)'
     if currentAffiliations.has_key(name):



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]