summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2013-03-27 17:46:03 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2013-05-07 13:48:48 -0400
commit95b18d1db77119c575462006c4d58ba7a47c8732 (patch)
tree2322ca82a1083a584f739ba83325501f64af815b
parent6c6b787aeb7d2ac08f37c93e6d1c16318d8ec29c (diff)
downloadgobject-introspection-95b18d1db77119c575462006c4d58ba7a47c8732.tar.gz
sectionparser: Add support for <INCLUDE>
https://bugzilla.gnome.org/show_bug.cgi?id=699856
-rw-r--r--giscanner/sectionparser.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/giscanner/sectionparser.py b/giscanner/sectionparser.py
index 85ef3a2e..ee023f31 100644
--- a/giscanner/sectionparser.py
+++ b/giscanner/sectionparser.py
@@ -27,6 +27,7 @@ class Section(object):
def __init__(self):
self.file = None
self.title = None
+ self.includes = None
self.main_subsection = Subsection(None)
self.subsections = []
@@ -66,6 +67,11 @@ def parse_sections_file(lines):
current_section.title = match.groupdict['contents']
continue
+ match = re.match(r"<INCLUDE>(?P<contents>.*)</INCLUDE>", line)
+ if match:
+ current_section.includes = match.groupdict['contents']
+ continue
+
match = re.match(r"<SUBSECTION(?: (?P<name>.*))?>", line)
if match:
current_subsection = Subsection(match.groupdict.get('name', None))