summaryrefslogtreecommitdiff
path: root/grc/python
diff options
context:
space:
mode:
authorTom Rondeau2012-10-01 17:37:35 -0400
committerTom Rondeau2012-10-01 17:37:35 -0400
commitb31ea99bf07cb66f1dab3cea94f9f792f6cab2fc (patch)
tree452329e4e262b2da3b690d12493f1b44c8d84160 /grc/python
parent21b39825df56f0353f6f9e60f06c1ded38f9df81 (diff)
parent65ea256f8de15b7a23c602f9775edf0636b3732c (diff)
downloadgnuradio-b31ea99bf07cb66f1dab3cea94f9f792f6cab2fc.tar.gz
gnuradio-b31ea99bf07cb66f1dab3cea94f9f792f6cab2fc.tar.bz2
gnuradio-b31ea99bf07cb66f1dab3cea94f9f792f6cab2fc.zip
Merge branch 'master' of gnuradio.org:gnuradio
Diffstat (limited to 'grc/python')
-rw-r--r--grc/python/block.dtd3
-rw-r--r--grc/python/convert_hier.py1
2 files changed, 3 insertions, 1 deletions
diff --git a/grc/python/block.dtd b/grc/python/block.dtd
index 41a744d07..292ea06cb 100644
--- a/grc/python/block.dtd
+++ b/grc/python/block.dtd
@@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Top level element.
A block contains a name, ...parameters list, and list of IO ports.
-->
-<!ELEMENT block (name, key, category?, throttle?, import*, var_make?, make, callback*, param*, check*, sink*, source*, doc?)>
+<!ELEMENT block (name, key, category?, throttle?, import*, var_make?, make, callback*, param*, check*, sink*, source*, doc?, grc_source?)>
<!--
Sub level elements.
-->
@@ -40,6 +40,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
<!ELEMENT category (#PCDATA)>
<!ELEMENT import (#PCDATA)>
<!ELEMENT doc (#PCDATA)>
+<!ELEMENT grc_source (#PCDATA)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT key (#PCDATA)>
<!ELEMENT check (#PCDATA)>
diff --git a/grc/python/convert_hier.py b/grc/python/convert_hier.py
index c6ca5b769..f4d082d59 100644
--- a/grc/python/convert_hier.py
+++ b/grc/python/convert_hier.py
@@ -73,6 +73,7 @@ def convert_hier(flow_graph, python_file):
block_n['source'].append(source_n)
#doc data
block_n['doc'] = "%s\n%s\n%s"%(block_author, block_desc, python_file)
+ block_n['grc_source'] = "%s"%(flow_graph.grc_file_path)
#write the block_n to file
xml_file = python_file + '.xml'
ParseXML.to_file({'block': block_n}, xml_file)