diff options
author | Josh Blum <josh@joshknows.com> | 2011-10-19 16:37:33 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-10-19 16:37:33 -0700 |
commit | be300d920fe1b7a3eb738565cddd10624ec62a75 (patch) | |
tree | 45bb49c4a4acd7c93bb218c84b94de4c90f198c5 /grc/python | |
parent | a57f7484a1b1ba18b66334675ce6458b00d40626 (diff) | |
parent | e30b824e9165bff69f09121631c3d5a706cbbd39 (diff) |
Merge branch 'next' of http://gnuradio.org/git/gnuradio into next
Diffstat (limited to 'grc/python')
-rw-r--r-- | grc/python/extract_docs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/grc/python/extract_docs.py b/grc/python/extract_docs.py index be55fd239e..fe157a2216 100644 --- a/grc/python/extract_docs.py +++ b/grc/python/extract_docs.py @@ -26,7 +26,7 @@ DOXYGEN_NAME_XPATH = '/doxygen/compounddef/compoundname' DOXYGEN_BRIEFDESC_GR_XPATH = '/doxygen/compounddef/briefdescription' DOXYGEN_DETAILDESC_GR_XPATH = '/doxygen/compounddef/detaileddescription' -GROUP_KEYS = "gr|usrp2|trellis|noaa|vocoder|digital" +GROUP_KEYS = "gr|trellis|noaa|vocoder|digital" def extract_txt(xml): """ @@ -65,7 +65,6 @@ def _extract(key): #extract descriptions comp_name = extract_txt(xml.xpath(DOXYGEN_NAME_XPATH)[0]).strip() comp_name = ' --- ' + comp_name + ' --- ' -# if re.match('(gr|usrp2|trellis|noaa)_.*', key): if re.match(('(%s)_.*' % GROUP_KEYS), key): brief_desc = extract_txt(xml.xpath(DOXYGEN_BRIEFDESC_GR_XPATH)[0]).strip() detailed_desc = extract_txt(xml.xpath(DOXYGEN_DETAILDESC_GR_XPATH)[0]).strip() |