URL
https://opencores.org/ocsvn/configurator/configurator/trunk
Subversion Repositories configurator
Compare Revisions
- This comparison shows the changes necessary to convert path
/configurator/trunk/src
- from Rev 6 to Rev 10
- ↔ Reverse comparison
Rev 6 → Rev 10
/Configurator.py
59,6 → 59,12
current_select = None |
continue |
|
m = re.match("\/\/=comment(\s+)(.*)(\s*)", row) |
|
if m: |
self.tabs[current_tab].append(ConfigLabel(m.group(2))) |
continue |
|
if re.match("\s*`ifn?def.*", row): |
current_ifdef += 1 |
|
123,6 → 129,16
|
|
|
class ConfigLabel(gtk.Label): |
|
def __init__(self, text): |
|
gtk.Label.__init__(self, "\n" + text) |
|
|
def save(self, *args): pass |
|
|
class ConfigOption(gtk.HBox): |
|
def __init__(self, **kwargs): |