moved author attribution out of individual files and put in AUTHORS
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 23 Aug 2008 04:13:02 +0000 (04:13 +0000)
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 23 Aug 2008 04:13:02 +0000 (04:13 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9379 221aa14e-8319-0410-a670-987f0aec2ac5

49 files changed:
AUTHORS
grc/src/grc/ActionHandler.py
grc/src/grc/Actions.py
grc/src/grc/Messages.py
grc/src/grc/ParseXML.py
grc/src/grc/Preferences.py
grc/src/grc/StateCache.py
grc/src/grc/Utils.py
grc/src/grc/__init__.py
grc/src/grc/converter.py
grc/src/grc/elements/Block.py
grc/src/grc/elements/Connection.py
grc/src/grc/elements/Element.py
grc/src/grc/elements/FlowGraph.py
grc/src/grc/elements/Param.py
grc/src/grc/elements/Platform.py
grc/src/grc/elements/Port.py
grc/src/grc/elements/__init__.py
grc/src/grc/gui/Bars.py
grc/src/grc/gui/BlockTreeWindow.py
grc/src/grc/gui/Dialogs.py
grc/src/grc/gui/DrawingArea.py
grc/src/grc/gui/FileDialogs.py
grc/src/grc/gui/MainWindow.py
grc/src/grc/gui/NotebookPage.py
grc/src/grc/gui/ParamsDialog.py
grc/src/grc/gui/__init__.py
grc/src/grc/gui/elements/Block.py
grc/src/grc/gui/elements/Colors.py
grc/src/grc/gui/elements/Connection.py
grc/src/grc/gui/elements/Element.py
grc/src/grc/gui/elements/FlowGraph.py
grc/src/grc/gui/elements/Param.py
grc/src/grc/gui/elements/Platform.py
grc/src/grc/gui/elements/Port.py
grc/src/grc/gui/elements/Utils.py
grc/src/grc/gui/elements/__init__.py
grc/src/grc_gnuradio/Block.py
grc/src/grc_gnuradio/Connection.py
grc/src/grc_gnuradio/FlowGraph.py
grc/src/grc_gnuradio/Generator.py
grc/src/grc_gnuradio/Param.py
grc/src/grc_gnuradio/Platform.py
grc/src/grc_gnuradio/Port.py
grc/src/grc_gnuradio/__init__.py
grc/src/grc_gnuradio/utils/__init__.py
grc/src/grc_gnuradio/utils/convert_hier.py
grc/src/grc_gnuradio/utils/expr_utils.py
grc/src/grc_gnuradio/utils/extract_docs.py

diff --git a/AUTHORS b/AUTHORS
index 11fbc45985b6cfc40e75d81a1eccf70bb6192c3f..7338f6140b86db1f6532800e1aa83a900533dae8 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -13,4 +13,5 @@ Johnathan Corgan <jcorgan@corganenterprises.com>  Build system, ongoing stuff, r
 Bdale Garbee <bdale@gag.com>           Debian release packages
 Tom Rondeau <trondeau@vt.edu>          Mostly digital waveforms and a little bit of trouble
 Nate Goergen (UMD Student)
-Josh Blum <josh@joshknows.com>         OpenGL versions of graphical sinks
+Josh Blum <josh@joshknows.com>         OpenGL versions of graphical sinks,
+                                       The GNU Radio Companion (grc)
index 491a0de6c909d0bc3626aae0d067082105cac42a..ccaeb57096398a5b27d8be97213405858803b14d 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package ActionHandler
 #ActionHandler builds the interface and handles most of the user inputs.
-#@author Josh Blum
 
 import os
 import signal
index bd8d950abc12d365089c269b5dc5875ff0d2060a..ebf10c7e1545df1b6904f33abd32c887a8edf6b9 100644 (file)
@@ -19,7 +19,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 ##@package Actions
 #Global actions for gui elements to communicate state changes to the action handler.
 #Use gtk.stock_list_ids() to get a list of possible stock ids (for toolbar/menu icons)
-#@author Josh Blum
 
 import pygtk
 pygtk.require('2.0')
index 5d1218c68d93d162e0f56effab661ee743940b45..c3db894dc7c5d2593048241e66ebb810ddbc28f7 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package Messages
 #Handle all of the system messages and error reports.
-#@author Josh Blum
 
 from Constants import VERSION
 import traceback
index 3b43b86660cd873bd0afb859c79ea921b3ec25e1..cf6ce830195dbfdde2bd5361382b2575737610ce 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.ParseXML
 #Parse xml files to nested data and vice-versa.
-#@author Josh Blum
 
 from lxml import etree
 from Utils import odict
index 7bfea966047371470109d9c79f6c9a7471403ad8..e2161d6455e5b3976f3f5c2b7739f8889d88adb6 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.Preferences
 #Holds global paramerences
-#@author Josh Blum
 
 from Constants import HOME_DIR, FLOW_GRAPH_DTD
 import ParseXML
index d07fab30e1cca48aff27cab412643ec532bd0fb2..b973e27428b323dfdb5ad86358ce6e178b9ad721 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package StateCache
 #Stores the flow graph states to drive the undo/redo and save interface.
-#@author Josh Blum
 
 from Actions import FLOW_GRAPH_UNDO, FLOW_GRAPH_REDO, get_action_from_name
 
index e9c988c5f3b029583553419be7c06e6e49c11b36..1cc71b42b1898fcb63c34442fc31de93bad636d3 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.Utils
 #Utility methods and classes.
-#@author Josh Blum
 
 from UserDict import DictMixin
 
index e44d7ff5679fd9e4f2dcf6b8110ba6a59a110ffd..d9ba25591b2d69eaaaf29ce9f2c332f262515d2a 100644 (file)
@@ -18,5 +18,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc
 #grc package.
-#@author Josh Blum
 
index 7f2553304585739a04631812b57403008da036ff..a69163e2661d113a09be1e6fd41df8de63390adf 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.converter
 #convert old flow graph file format to new format
-#@author Josh Blum
 
 from grc.Constants import FLOW_GRAPH_DTD
 from grc import ParseXML, Utils
index e241fb27ec87f46c935d1d71284480ec38714d11..ff43933ecc2790c0ab79b3201eb440a0aabbdbec 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.elements.Block
 #Flow graph block.
-#@author Josh Blum
 
 from grc import Utils
 from grc.Utils import odict
index 57871c75dfe0c7dd68f1b8bba66389d7ce35350e..36ed1422126d1824bd5779607e5b0f1fcf716da6 100644 (file)
@@ -21,7 +21,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 #A connection exists between 2 ports.
 #One port must be input, one output.
 #The port decided whether it can have the connection.
-#@author Josh Blum
 
 from grc.elements.Element import Element
 from grc.Utils import odict
index b90f775c5ee6e4050d4d6abe2cf95c95da9ee65a..936c9d5f6f1f23663540d24361938fa8e8cceb09 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.elements.Element
 #The base class for all elements.
-#@author Josh Blum
 
 class Element(object):
 
index 65d47f4d8c832b8d94184fa5a914398a5a8cd730..94c786d03507610e83d996bbb6cf64032c5a1fcd 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.elements.FlowGraph
 #Primative flow graph.
-#@author Josh Blum
 
 from grc import Utils
 from grc.Utils import odict
index 3218005028b938e2bab6d49a5657511bd7fc3b5c..a8aa43004b3bfb3c20e48799a1d74d9731a6d019 100644 (file)
@@ -19,7 +19,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 ##@package grc.elements.Param
 #Flow graph block parameters.
 #And options for enum type paramater.
-#@author Josh Blum
 
 from grc import Utils
 from grc.Utils import odict
index fb8cb783d566bf36dcad1d404bfcc737ba3b03a8..bf09bef0c2998c23c515baf2887a1480689389da 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.elements.Platform
 #A Platform contains all blocks in platform.
-#@author Josh Blum
 
 import os
 from grc import ParseXML
index 3c5425fda1c882a4fef0eb5c52665211fbcdf200..9da521156572d27410ae06b17bda38e038b14e38 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.elements.Port
 #Flow graph block port (source or sink).
-#@author Josh Blum
 
 from grc import Utils
 from grc.elements.Element import Element
index 3700c97616c0b4f457d1c1579f208bf23d098a08..cb5e282ec8474838a2e0b7ef6a850708851363c1 100644 (file)
@@ -18,5 +18,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.elements
 #Package for flow graph elements.
-#@author Josh Blum
 
index 1b4f5dc52901b90f7f03f71073bcdce7ae3f6505..00238b064050af5d4b337f9d910c8485da731985 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.Bars
 #Create the GUI's toolbar and menubar
-#@author Josh Blum
 
 from grc.Actions import *
 import pygtk
index 859f88362c829fde47e56697659f79e97da39ebe..9543fdda27e4c1614dfb7e523c14e901d1b3ae30 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.BlockTreeWindow
 #The block selection panel gives the user a tree selection to choose a block.
-#@author Josh Blum
 
 from grc.Constants import *
 import pygtk
index 1271f6e681a1dc139dfcc5e3c93da35c13786f3a..55e26846b1432056e0d0e204934780e74dc70747 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.Dialogs
 #Misc dialogs.
-#@author Josh Blum
 
 import pygtk
 pygtk.require('2.0')
index ca5ca4a76fc1f0f8573719bb7d684bb3a7f4a872..9100476a469fd9128e1bfdff9f899ef4d8d10a9a 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.DrawingArea
 #Drawing area for graphical elements.
-#@author Josh Blum
 
 import pygtk
 pygtk.require('2.0')
index 2adfcde7b4ee43227205ddabefa35114d455abb6..62024710a7129e7479a8de54be5fede0a28d94f8 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.FileDialogs
 #The open/save dialog for flow graph fFileDialogiles and screen shots.
-#@author Josh Blum
 
 import pygtk
 pygtk.require('2.0')
index 837de863fac596b3d71aa5dac1f590ec9f0ca9e6..6aafe66c117678e6c202c1b4bd116b46865501f8 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.MainWindow
 #The main window, containing all windows, tool bars, and menu bars.
-#@author Josh Blum
 
 from grc.Constants import *
 from grc.Actions import *
index 71b6cdcfb04991b438bc33d05e488abac2a9f4a3..add31b6d6e2b6d0cc11f210eecc0ebeb0fe585c0 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.NotebookPage
 #A page in the notebook, represents an individual flow graph.
-#@author Josh Blum
 
 from grc.Actions import *
 import pygtk
index 9e067791830018dcc0c78f1b819ac7c6e19613cb..77179212224ce5a7f953a3d09da728b3ba98078c 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.ParamsDialog
 #A dialog for editing a block's parameters.
-#@author Josh Blum
 
 import pygtk
 pygtk.require('2.0')
index 73293113973ad9b7b152ab328c84152561c468f3..0e92cb11ecf09fb0e1edd7bf528477aadffa4277 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui
 #GTK based classes go into this package.
-#@author Josh Blum
 
 #only import the modules that need external access
 from MainWindow import MainWindow
index e6f5a107ce377f44ec550a04ba972d4e92d11c0b..ee19ee2f6c62277f93bd2e4fcf265939c3a8c524 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Block
 #The graphical signal block.
-#@author Josh Blum
 
 from grc import Preferences
 from Element import Element
index 80be8eba0cc2762216ffd2a776ce8cca690f53d9..1eedde0a09902562be00944ff2ac05a8bfb2f90b 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Colors
 #Global Colors for the gui
-#@author Josh Blum
 
 import pygtk
 pygtk.require('2.0')
index c2e5edcfdf596ce1c337c03547275eb1a4825730..26b2af7cd2063798487b04e494d799037824cbea 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Connection
 #The graphical connection for input/output ports.
-#@author Josh Blum
 
 import Utils
 from Element import Element
index c3492d052edc38b81cc947a8f92ec4dde26ca1d3..1d7157eb5b19ec7f8d7c2249eba735ecd8f0c09f 100644 (file)
@@ -19,7 +19,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 ##@package grc.gui.elements.Element
 #Base class for graphical elements such as:
 #signal blocks, input sockets, output sockets and connections.
-#@author Josh Blum
 
 import Colors
 import pygtk
index e9397ad71cd58015ad072f25bb48e7b5e674515e..956615bd2839cb6da5078514662dbaffc5393c7a 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.FlowGraph
 #A flow graph structure for storing signal blocks and their connections.
-#@author Josh Blum
 
 from grc import Preferences
 from grc import Utils
index 6e48e7b84dc31c7087d6db5fe63195e0d6c74135..e2340772581a070c0f5d63b1d85610665d74f834 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Param
 #GTK objects for handling input and the signal block parameter class.
-#@author Josh Blum
 
 import Utils
 from Element import Element
index be11e7daea7148606e26f3a1a2db9fd2731c3224..779a14303408bd7a00f8eaf73bee819f1de58c9e 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Platform
 #Graphical platform to turn an existing platform into a gui platform.
-#@author Josh Blum
 
 from FlowGraph import FlowGraph
 from Connection import Connection
index c603db5bc2d5e89fcaba34653a90eff54215da01..3449f1b9eca749fc5aa9eecd14479f4a45fe72a7 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Port
 #The graphical input/output sockets of the signal block.
-#@author Josh Blum
 
 from Element import Element
 from grc.Constants import *
index 34f084343e374e3128a3ad8c5836b9b2b493e726..49af965e5d53f5cc675e345d67e70a14d264050f 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements.Utils
 #Shared functions for flow graph elements.
-#@author Josh Blum
 
 def get_angle_from_coordinates((x1,y1), (x2,y2)):
        """!
index f8e0995017f73720b4747ee0337f79eb46907c1c..e79167aab2f90a2964cb32d92116827f7102ec02 100644 (file)
@@ -18,6 +18,5 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc.gui.elements
 #All graphical elements used in a flow graph.
-#@author Josh Blum
 
 
index a14df8ec904b7ec3e29658f51d6e1cd2106affd3..84909e76305055a00c7a9d9f070c7522455e80c5 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.Block
 #Flow graph block.
-#@author Josh Blum
 
 from grc.elements.Block import Block as _Block
 from grc import Utils
index c7d6a74c7ffcd0d0c801a75604237d3406f8471b..fd2f7aa062f12ca2d649d4aa42143e023ee3b5eb 100644 (file)
@@ -21,7 +21,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 #A connection exists between 2 ports.
 #One port must be input, one output.
 #The port decided whether it can have the connection.
-#@author Josh Blum
 
 from grc.elements.Connection import Connection as _Connection
 
index 3e037305bc6df2a3e044fb8e7d20b73a673bca64..51526c2cf18f0f4112fb46db2702016e390eaf22 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.FlowGraph
 #Primative flow graph.
-#@author Josh Blum
 
 from utils import expr_utils
 from grc.elements.FlowGraph import FlowGraph as _FlowGraph
index 02c9de291499edb827768b9c4286d762be584717..70e174ca8e9351d46e260ef99b8b0871a149ae13 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.Generator
 #Create python based flow graphs.
-#@author Josh Blum
 
 import os
 import subprocess
index 207b29839474cd42877dd5eed6f22b90694d3e4f..f0ea25c0ea8a7bf55da3083b1fdd947ac8cffd70 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.Param
 #Flow graph block parameters.
-#@author Josh Blum
 
 from utils import expr_utils
 from grc.elements.Param import Param as _Param
index 22a4c7ecdcb77c99712a90dc988e1671ca3373a2..5512940c01f0c52d94ced6c5aa17f4fa82d1d5cf 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.Platform
 #Gnuradio python specific platform.
-#@author Josh Blum
 
 import os
 from grc.Constants import FLOW_GRAPH_FILE_EXTENSION
index c8e899781d184ca67cd724d15896f4680df22a5d..3981df7f0b9ccbc14054805c23fb3b3474f1346c 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.Port
 #Flow graph block port (source or sink).
-#@author Josh Blum
 
 from grc.elements.Port import Port as _Port
 from grc import Utils
index fe09e0d4b378787db6256260726f318ddf13a182..eac305165c0eced055cf44d8b228fc3382cba99d 100644 (file)
@@ -18,4 +18,3 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio 
 #gnuradio overloaded elements and supplemental python modules
-#@author Josh Blum
index b6402601ce408c441c879e6601c99c99e8b2aa07..6cdfc263fb2867648960a680be177ae9e396fdde 100644 (file)
@@ -18,5 +18,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.utils
 #utility functions and classes
-#@author Josh Blum
 
index a0f3c2a85335dbc0642e433379a455c45fcd2622..747d2f445a9f4a901ea3bf816d53bc736e468cb1 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.utils.convert_hier
 #Utility functions to convert a grc hier block to an xml wrapper
-#@author Josh Blum
 
 from grc_gnuradio.Constants import BLOCK_DTD
 from grc import ParseXML
index 8253f018ac334923e8710986e37fa191dfab5437..9c729fb877a727d330a32b435c9a551b715728f3 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.utils.expr_utils
 #Utility functions to comprehend variable expressions.
-#@author Josh Blum
 
 import string
 VAR_CHARS = string.letters + string.digits + '_'
index bc0dcd446d43063992007b964bee0adcf37ca594..13fe77a56caef66e2625350b4345a5f3ef720f42 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 ##@package grc_gnuradio.utils.extract_docs
 #Extract documentation from the gnuradio doxygen files.
-#@author Josh Blum
 
 from grc_gnuradio.Constants import *
 from lxml import etree