CVS: winex/tools apply_patch,1.1.1.4,1.2
[email protected] 7 Dec 2007 15:07:58 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/tools apply_patch,1.1.1.4,1.2Update of /var/lib/cvsd/cvsroot/winex/tools
In directory agravaine:/tmp/cvs-serv14745/tools
Modified Files:
apply_patch
Log Message:
message filtering updates
Index: apply_patch
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/tools/apply_patch,v
retrieving revision 1.1.1.4
retrieving revision 1.2
diff -u -d -r1.1.1.4 -r1.2
--- apply_patch 17 Dec 2003 18:58:24 -0000 1.1.1.4
+++ apply_patch 7 Dec 2007 15:07:56 -0000 1.2
@@ -40,6 +40,8 @@
def extract_html(data):
data = re.compile(r"<.*?>",re.DOTALL).sub("",data)
+ data = re.compile(r"Signed-off-by:.*").sub("",data)
+ data = re.compile(r"[tT][rR][aA][cC] *#.*").sub("",data)
data = string.replace(data, "<", "<")
data = string.replace(data, ">", ">")
data = string.replace(data, """, "\"")