summaryrefslogtreecommitdiff
path: root/gitdm
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2008-07-18 15:04:55 -0600
committerJonathan Corbet <corbet@lwn.net>2008-07-18 15:04:55 -0600
commitba5f6b69435f70ceaed738906c8ed7a4a87dc61b (patch)
tree2d5b89f73ddd1dea9c1ae55e7f09c87613328d7b /gitdm
parent6eb60baac3247ac92b57f87319d3e261d24aca6b (diff)
Move regular expressions out to patterns.py
...I need them for an associated tool I'm working on.
Diffstat (limited to 'gitdm')
-rwxr-xr-xgitdm19
1 files changed, 2 insertions, 17 deletions
diff --git a/gitdm b/gitdm
index d580414..5373b26 100755
--- a/gitdm
+++ b/gitdm
@@ -14,21 +14,7 @@
import database, ConfigFile
import getopt, datetime
import os, re, sys, rfc822, string
-
-#
-# Some people, when confronted with a problem, think "I know, I'll use regular
-# expressions." Now they have two problems.
-# -- Jamie Zawinski
-#
-Pcommit = re.compile (r'^commit ([0-9a-f]+)$')
-Pauthor = re.compile (r'^Author: ([^<]+)\s<([^>]+)>$')
-Psob = re.compile (r'Signed-off-by:\s+([^<]+)\s+<([^>]+)>')
-Pmerge = re.compile (r'^Merge:.*$')
-Padd = re.compile (r'^\+[^\+].*$')
-Prem = re.compile (r'^-[^-].*$')
-Pdate = re.compile (r'^(Commit)?Date:\s+(.*)$')
-Pfilea = re.compile (r'^---\s+(.*)$')
-Pfileb = re.compile (r'^\+\+\+\s+(.*)$')
+from patterns import *
class patch:
pass
@@ -117,7 +103,6 @@ def AddDateLines(date, lines):
if lines > 1000000:
print 'Skip big patch (%d)' % lines
return
- dt = (date.year, date.month, date.day)
try:
DateMap[date] += lines
except KeyError:
@@ -130,7 +115,7 @@ def PrintDateStats():
datef = open ('datelc', 'w')
for date in dates:
total += DateMap[date]
- datef.write ('%d/%02d/%02d %6d %7d\n' % (date[0], date[1], date[2],
+ datef.write ('%d/%02d/%02d %6d %7d\n' % (date.year, date.month, date.day,
DateMap[date], total))
#