diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-10-19 15:10:58 -0700 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-10-19 15:10:58 -0700 |
commit | e30b824e9165bff69f09121631c3d5a706cbbd39 (patch) | |
tree | 62e29ee0f9e7d6139d73174a4bf31559c2db9fab /grc/python | |
parent | 49a1ad2cd002200a3b37f40117cf69e1a07a9222 (diff) |
Removing usrp, usrp2, gr-usrp, gr-usrp2. Everything is moving to using UHD. Also removes related M4 and dependency requirements for USRP-related libs.
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() |