Changeset 4977
- Timestamp:
- 06/30/08 11:56:54 (6 months ago)
- Files:
-
- 1 modified
-
branches/5.2/build/bin/batchmerge.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2/build/bin/batchmerge.py
r4931 r4977 298 298 299 299 def logHtml(self): 300 print "<table >"300 print "<table id=\"changelog-table\">" 301 301 print " <tr><td>#</td><td>Changeset Comment</td></tr>" 302 302 for change in self.changes: … … 308 308 # Handle merge undo markup 309 309 if change.getUndo(): 310 changeref = "<font style=\"text-decoration: line-through;\">%s</font>" % (changeref)311 changecomment = "<font style=\"text-decoration: line-through;\">%s</font>" % (changecomment)310 changeref = "<font class=\"changeset-merge-undone\">%s</font>" % (changeref) 311 changecomment = "<font class=\"changeset-merge-undone\">%s</font>" % (changecomment) 312 312 changecomment = "Reverted a change: "+changecomment 313 313 314 314 # Make basic HTML formatting 315 item = " <tr style=\"vertical-align: top;\"><td>%s:</td><td>%s</td></tr>" % (changeref, changecomment)315 item = " <tr><td>%s:</td><td>%s</td></tr>" % (changeref, changecomment) 316 316 317 317 # Add ticket summary after ticket number, if missing … … 501 501 commandRevert() 502 502 503 elif len(sys.argv) == 3and sys.argv[1] == "massmerge":503 elif (len(sys.argv) == 3 or len(sys.argv)==4) and sys.argv[1] == "massmerge": 504 504 cfgfilename = sys.argv[2] 505 505 startfrom = None
