Differences From Artifact [2a72e2ecd2]:
- File compile_rules.py — part of check-in [bc2b809d0e] at 2018-08-18 11:26:56 on branch rg — [build] graph bookmark display (user: olr, size: 23731) [annotate] [blame] [check-ins using]
To Artifact [a6049dfea0]:
- File compile_rules.py — part of check-in [c466999e36] at 2018-08-31 09:14:53 on branch rg — [build] show bookmark for ENDGRAPH (user: olr, size: 23775) [annotate] [blame] [check-ins using]
| ︙ | |||
495 496 497 498 499 500 501 502 503 504 505 506 507 508 | 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 | + |
printBookmark(0, "GRAPH: " + m.group(1), i)
lRuleLine.append([i, "@@@@"+m.group(1)])
bGraph = True
lGraphRule.append([i, sLine])
bGraph = True
elif sLine.startswith("@@@@END_GRAPH"):
#lGraphRule.append([i, sLine])
printBookmark(0, "ENDGRAPH", i)
bGraph = False
elif re.match("@@@@ *$", sLine):
pass
elif bGraph:
lGraphRule.append([i, sLine])
# Regex rules
elif re.match("[ \t]*$", sLine):
|
| ︙ |