summaryrefslogtreecommitdiff
path: root/girepository
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-05-21 10:47:11 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-10-08 20:56:10 +0200
commit556bb8ee3402b92e2936ed3b594cdfc0b04a9db5 (patch)
tree42c4f67dac6d6775c7e4148e374188bf517effee /girepository
parent07ad34a094cb00aef16250dfbf05d6eef05c3aff (diff)
downloadgobject-introspection-556bb8ee3402b92e2936ed3b594cdfc0b04a9db5.tar.gz
giscanner: fix description field storage in .gir files
GTK-Doc description fields for tags can contain multiple lines and even multiple paragraphs. Whitespace cannot be preserved in XML attributes, so we move the "deprecated" description text into a "<doc-deprecated />" element right next to where we already have the "<doc />" element. Keep the "deprecated" attribute around for backwards compatibility though, but set its value to "1" (analogous to the "writable", "contruct", etc attributes) if the annotated symbol is marked as deprecated. While at it, add <doc-version /> and <doc-stability /> which was not yet available in the .gir files... This takes care of the "Since:", "Stability:" and "Deprecated:" GTK-Doc tags. Nothing needs to be done for the "Returns:" tag as as we already write a "<doc />" child element on "<return-value />".
Diffstat (limited to 'girepository')
-rw-r--r--girepository/girparser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/girepository/girparser.c b/girepository/girparser.c
index 6fbf2a6b..82005fc0 100644
--- a/girepository/girparser.c
+++ b/girepository/girparser.c
@@ -2748,7 +2748,8 @@ start_element_handler (GMarkupParseContext *context,
attribute_names, attribute_values,
ctx, error))
goto out;
- if (strcmp (element_name, "doc") == 0)
+ if (strcmp ("doc", element_name) == 0 || strcmp ("doc-deprecated", element_name) == 0 ||
+ strcmp ("doc-stability", element_name) == 0 || strcmp ("doc-version", element_name) == 0)
{
state_switch (ctx, STATE_PASSTHROUGH);
goto out;