From 3a31e0702c30f8960e869c7a11f0be24283ed2b3 Mon Sep 17 00:00:00 2001 From: eb Date: Sat, 23 Aug 2008 04:13:02 +0000 Subject: [PATCH] moved author attribution out of individual files and put in AUTHORS git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9379 221aa14e-8319-0410-a670-987f0aec2ac5 --- AUTHORS | 3 ++- grc/src/grc/ActionHandler.py | 1 - grc/src/grc/Actions.py | 1 - grc/src/grc/Messages.py | 1 - grc/src/grc/ParseXML.py | 1 - grc/src/grc/Preferences.py | 1 - grc/src/grc/StateCache.py | 1 - grc/src/grc/Utils.py | 1 - grc/src/grc/__init__.py | 1 - grc/src/grc/converter.py | 1 - grc/src/grc/elements/Block.py | 1 - grc/src/grc/elements/Connection.py | 1 - grc/src/grc/elements/Element.py | 1 - grc/src/grc/elements/FlowGraph.py | 1 - grc/src/grc/elements/Param.py | 1 - grc/src/grc/elements/Platform.py | 1 - grc/src/grc/elements/Port.py | 1 - grc/src/grc/elements/__init__.py | 1 - grc/src/grc/gui/Bars.py | 1 - grc/src/grc/gui/BlockTreeWindow.py | 1 - grc/src/grc/gui/Dialogs.py | 1 - grc/src/grc/gui/DrawingArea.py | 1 - grc/src/grc/gui/FileDialogs.py | 1 - grc/src/grc/gui/MainWindow.py | 1 - grc/src/grc/gui/NotebookPage.py | 1 - grc/src/grc/gui/ParamsDialog.py | 1 - grc/src/grc/gui/__init__.py | 1 - grc/src/grc/gui/elements/Block.py | 1 - grc/src/grc/gui/elements/Colors.py | 1 - grc/src/grc/gui/elements/Connection.py | 1 - grc/src/grc/gui/elements/Element.py | 1 - grc/src/grc/gui/elements/FlowGraph.py | 1 - grc/src/grc/gui/elements/Param.py | 1 - grc/src/grc/gui/elements/Platform.py | 1 - grc/src/grc/gui/elements/Port.py | 1 - grc/src/grc/gui/elements/Utils.py | 1 - grc/src/grc/gui/elements/__init__.py | 1 - grc/src/grc_gnuradio/Block.py | 1 - grc/src/grc_gnuradio/Connection.py | 1 - grc/src/grc_gnuradio/FlowGraph.py | 1 - grc/src/grc_gnuradio/Generator.py | 1 - grc/src/grc_gnuradio/Param.py | 1 - grc/src/grc_gnuradio/Platform.py | 1 - grc/src/grc_gnuradio/Port.py | 1 - grc/src/grc_gnuradio/__init__.py | 1 - grc/src/grc_gnuradio/utils/__init__.py | 1 - grc/src/grc_gnuradio/utils/convert_hier.py | 1 - grc/src/grc_gnuradio/utils/expr_utils.py | 1 - grc/src/grc_gnuradio/utils/extract_docs.py | 1 - 49 files changed, 2 insertions(+), 49 deletions(-) diff --git a/AUTHORS b/AUTHORS index 11fbc459..7338f614 100644 --- a/AUTHORS +++ b/AUTHORS @@ -13,4 +13,5 @@ Johnathan Corgan Build system, ongoing stuff, r Bdale Garbee Debian release packages Tom Rondeau Mostly digital waveforms and a little bit of trouble Nate Goergen (UMD Student) -Josh Blum OpenGL versions of graphical sinks +Josh Blum OpenGL versions of graphical sinks, + The GNU Radio Companion (grc) diff --git a/grc/src/grc/ActionHandler.py b/grc/src/grc/ActionHandler.py index 491a0de6..ccaeb570 100644 --- a/grc/src/grc/ActionHandler.py +++ b/grc/src/grc/ActionHandler.py @@ -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 diff --git a/grc/src/grc/Actions.py b/grc/src/grc/Actions.py index bd8d950a..ebf10c7e 100644 --- a/grc/src/grc/Actions.py +++ b/grc/src/grc/Actions.py @@ -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') diff --git a/grc/src/grc/Messages.py b/grc/src/grc/Messages.py index 5d1218c6..c3db894d 100644 --- a/grc/src/grc/Messages.py +++ b/grc/src/grc/Messages.py @@ -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 diff --git a/grc/src/grc/ParseXML.py b/grc/src/grc/ParseXML.py index 3b43b866..cf6ce830 100644 --- a/grc/src/grc/ParseXML.py +++ b/grc/src/grc/ParseXML.py @@ -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 diff --git a/grc/src/grc/Preferences.py b/grc/src/grc/Preferences.py index 7bfea966..e2161d64 100644 --- a/grc/src/grc/Preferences.py +++ b/grc/src/grc/Preferences.py @@ -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 diff --git a/grc/src/grc/StateCache.py b/grc/src/grc/StateCache.py index d07fab30..b973e274 100644 --- a/grc/src/grc/StateCache.py +++ b/grc/src/grc/StateCache.py @@ -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 diff --git a/grc/src/grc/Utils.py b/grc/src/grc/Utils.py index e9c988c5..1cc71b42 100644 --- a/grc/src/grc/Utils.py +++ b/grc/src/grc/Utils.py @@ -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 diff --git a/grc/src/grc/__init__.py b/grc/src/grc/__init__.py index e44d7ff5..d9ba2559 100644 --- a/grc/src/grc/__init__.py +++ b/grc/src/grc/__init__.py @@ -18,5 +18,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ ##@package grc #grc package. -#@author Josh Blum diff --git a/grc/src/grc/converter.py b/grc/src/grc/converter.py index 7f255330..a69163e2 100644 --- a/grc/src/grc/converter.py +++ b/grc/src/grc/converter.py @@ -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 diff --git a/grc/src/grc/elements/Block.py b/grc/src/grc/elements/Block.py index e241fb27..ff43933e 100644 --- a/grc/src/grc/elements/Block.py +++ b/grc/src/grc/elements/Block.py @@ -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 diff --git a/grc/src/grc/elements/Connection.py b/grc/src/grc/elements/Connection.py index 57871c75..36ed1422 100644 --- a/grc/src/grc/elements/Connection.py +++ b/grc/src/grc/elements/Connection.py @@ -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 diff --git a/grc/src/grc/elements/Element.py b/grc/src/grc/elements/Element.py index b90f775c..936c9d5f 100644 --- a/grc/src/grc/elements/Element.py +++ b/grc/src/grc/elements/Element.py @@ -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): diff --git a/grc/src/grc/elements/FlowGraph.py b/grc/src/grc/elements/FlowGraph.py index 65d47f4d..94c786d0 100644 --- a/grc/src/grc/elements/FlowGraph.py +++ b/grc/src/grc/elements/FlowGraph.py @@ -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 diff --git a/grc/src/grc/elements/Param.py b/grc/src/grc/elements/Param.py index 32180050..a8aa4300 100644 --- a/grc/src/grc/elements/Param.py +++ b/grc/src/grc/elements/Param.py @@ -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 diff --git a/grc/src/grc/elements/Platform.py b/grc/src/grc/elements/Platform.py index fb8cb783..bf09bef0 100644 --- a/grc/src/grc/elements/Platform.py +++ b/grc/src/grc/elements/Platform.py @@ -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 diff --git a/grc/src/grc/elements/Port.py b/grc/src/grc/elements/Port.py index 3c5425fd..9da52115 100644 --- a/grc/src/grc/elements/Port.py +++ b/grc/src/grc/elements/Port.py @@ -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 diff --git a/grc/src/grc/elements/__init__.py b/grc/src/grc/elements/__init__.py index 3700c976..cb5e282e 100644 --- a/grc/src/grc/elements/__init__.py +++ b/grc/src/grc/elements/__init__.py @@ -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 diff --git a/grc/src/grc/gui/Bars.py b/grc/src/grc/gui/Bars.py index 1b4f5dc5..00238b06 100644 --- a/grc/src/grc/gui/Bars.py +++ b/grc/src/grc/gui/Bars.py @@ -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 diff --git a/grc/src/grc/gui/BlockTreeWindow.py b/grc/src/grc/gui/BlockTreeWindow.py index 859f8836..9543fdda 100644 --- a/grc/src/grc/gui/BlockTreeWindow.py +++ b/grc/src/grc/gui/BlockTreeWindow.py @@ -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 diff --git a/grc/src/grc/gui/Dialogs.py b/grc/src/grc/gui/Dialogs.py index 1271f6e6..55e26846 100644 --- a/grc/src/grc/gui/Dialogs.py +++ b/grc/src/grc/gui/Dialogs.py @@ -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') diff --git a/grc/src/grc/gui/DrawingArea.py b/grc/src/grc/gui/DrawingArea.py index ca5ca4a7..9100476a 100644 --- a/grc/src/grc/gui/DrawingArea.py +++ b/grc/src/grc/gui/DrawingArea.py @@ -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') diff --git a/grc/src/grc/gui/FileDialogs.py b/grc/src/grc/gui/FileDialogs.py index 2adfcde7..62024710 100644 --- a/grc/src/grc/gui/FileDialogs.py +++ b/grc/src/grc/gui/FileDialogs.py @@ -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') diff --git a/grc/src/grc/gui/MainWindow.py b/grc/src/grc/gui/MainWindow.py index 837de863..6aafe66c 100644 --- a/grc/src/grc/gui/MainWindow.py +++ b/grc/src/grc/gui/MainWindow.py @@ -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 * diff --git a/grc/src/grc/gui/NotebookPage.py b/grc/src/grc/gui/NotebookPage.py index 71b6cdcf..add31b6d 100644 --- a/grc/src/grc/gui/NotebookPage.py +++ b/grc/src/grc/gui/NotebookPage.py @@ -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 diff --git a/grc/src/grc/gui/ParamsDialog.py b/grc/src/grc/gui/ParamsDialog.py index 9e067791..77179212 100644 --- a/grc/src/grc/gui/ParamsDialog.py +++ b/grc/src/grc/gui/ParamsDialog.py @@ -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') diff --git a/grc/src/grc/gui/__init__.py b/grc/src/grc/gui/__init__.py index 73293113..0e92cb11 100644 --- a/grc/src/grc/gui/__init__.py +++ b/grc/src/grc/gui/__init__.py @@ -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 diff --git a/grc/src/grc/gui/elements/Block.py b/grc/src/grc/gui/elements/Block.py index e6f5a107..ee19ee2f 100644 --- a/grc/src/grc/gui/elements/Block.py +++ b/grc/src/grc/gui/elements/Block.py @@ -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 diff --git a/grc/src/grc/gui/elements/Colors.py b/grc/src/grc/gui/elements/Colors.py index 80be8eba..1eedde0a 100644 --- a/grc/src/grc/gui/elements/Colors.py +++ b/grc/src/grc/gui/elements/Colors.py @@ -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') diff --git a/grc/src/grc/gui/elements/Connection.py b/grc/src/grc/gui/elements/Connection.py index c2e5edcf..26b2af7c 100644 --- a/grc/src/grc/gui/elements/Connection.py +++ b/grc/src/grc/gui/elements/Connection.py @@ -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 diff --git a/grc/src/grc/gui/elements/Element.py b/grc/src/grc/gui/elements/Element.py index c3492d05..1d7157eb 100644 --- a/grc/src/grc/gui/elements/Element.py +++ b/grc/src/grc/gui/elements/Element.py @@ -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 diff --git a/grc/src/grc/gui/elements/FlowGraph.py b/grc/src/grc/gui/elements/FlowGraph.py index e9397ad7..956615bd 100644 --- a/grc/src/grc/gui/elements/FlowGraph.py +++ b/grc/src/grc/gui/elements/FlowGraph.py @@ -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 diff --git a/grc/src/grc/gui/elements/Param.py b/grc/src/grc/gui/elements/Param.py index 6e48e7b8..e2340772 100644 --- a/grc/src/grc/gui/elements/Param.py +++ b/grc/src/grc/gui/elements/Param.py @@ -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 diff --git a/grc/src/grc/gui/elements/Platform.py b/grc/src/grc/gui/elements/Platform.py index be11e7da..779a1430 100644 --- a/grc/src/grc/gui/elements/Platform.py +++ b/grc/src/grc/gui/elements/Platform.py @@ -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 diff --git a/grc/src/grc/gui/elements/Port.py b/grc/src/grc/gui/elements/Port.py index c603db5b..3449f1b9 100644 --- a/grc/src/grc/gui/elements/Port.py +++ b/grc/src/grc/gui/elements/Port.py @@ -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 * diff --git a/grc/src/grc/gui/elements/Utils.py b/grc/src/grc/gui/elements/Utils.py index 34f08434..49af965e 100644 --- a/grc/src/grc/gui/elements/Utils.py +++ b/grc/src/grc/gui/elements/Utils.py @@ -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)): """! diff --git a/grc/src/grc/gui/elements/__init__.py b/grc/src/grc/gui/elements/__init__.py index f8e09950..e79167aa 100644 --- a/grc/src/grc/gui/elements/__init__.py +++ b/grc/src/grc/gui/elements/__init__.py @@ -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 diff --git a/grc/src/grc_gnuradio/Block.py b/grc/src/grc_gnuradio/Block.py index a14df8ec..84909e76 100644 --- a/grc/src/grc_gnuradio/Block.py +++ b/grc/src/grc_gnuradio/Block.py @@ -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 diff --git a/grc/src/grc_gnuradio/Connection.py b/grc/src/grc_gnuradio/Connection.py index c7d6a74c..fd2f7aa0 100644 --- a/grc/src/grc_gnuradio/Connection.py +++ b/grc/src/grc_gnuradio/Connection.py @@ -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 diff --git a/grc/src/grc_gnuradio/FlowGraph.py b/grc/src/grc_gnuradio/FlowGraph.py index 3e037305..51526c2c 100644 --- a/grc/src/grc_gnuradio/FlowGraph.py +++ b/grc/src/grc_gnuradio/FlowGraph.py @@ -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 diff --git a/grc/src/grc_gnuradio/Generator.py b/grc/src/grc_gnuradio/Generator.py index 02c9de29..70e174ca 100644 --- a/grc/src/grc_gnuradio/Generator.py +++ b/grc/src/grc_gnuradio/Generator.py @@ -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 diff --git a/grc/src/grc_gnuradio/Param.py b/grc/src/grc_gnuradio/Param.py index 207b2983..f0ea25c0 100644 --- a/grc/src/grc_gnuradio/Param.py +++ b/grc/src/grc_gnuradio/Param.py @@ -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 diff --git a/grc/src/grc_gnuradio/Platform.py b/grc/src/grc_gnuradio/Platform.py index 22a4c7ec..5512940c 100644 --- a/grc/src/grc_gnuradio/Platform.py +++ b/grc/src/grc_gnuradio/Platform.py @@ -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 diff --git a/grc/src/grc_gnuradio/Port.py b/grc/src/grc_gnuradio/Port.py index c8e89978..3981df7f 100644 --- a/grc/src/grc_gnuradio/Port.py +++ b/grc/src/grc_gnuradio/Port.py @@ -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 diff --git a/grc/src/grc_gnuradio/__init__.py b/grc/src/grc_gnuradio/__init__.py index fe09e0d4..eac30516 100644 --- a/grc/src/grc_gnuradio/__init__.py +++ b/grc/src/grc_gnuradio/__init__.py @@ -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 diff --git a/grc/src/grc_gnuradio/utils/__init__.py b/grc/src/grc_gnuradio/utils/__init__.py index b6402601..6cdfc263 100644 --- a/grc/src/grc_gnuradio/utils/__init__.py +++ b/grc/src/grc_gnuradio/utils/__init__.py @@ -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 diff --git a/grc/src/grc_gnuradio/utils/convert_hier.py b/grc/src/grc_gnuradio/utils/convert_hier.py index a0f3c2a8..747d2f44 100644 --- a/grc/src/grc_gnuradio/utils/convert_hier.py +++ b/grc/src/grc_gnuradio/utils/convert_hier.py @@ -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 diff --git a/grc/src/grc_gnuradio/utils/expr_utils.py b/grc/src/grc_gnuradio/utils/expr_utils.py index 8253f018..9c729fb8 100644 --- a/grc/src/grc_gnuradio/utils/expr_utils.py +++ b/grc/src/grc_gnuradio/utils/expr_utils.py @@ -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 + '_' diff --git a/grc/src/grc_gnuradio/utils/extract_docs.py b/grc/src/grc_gnuradio/utils/extract_docs.py index bc0dcd44..13fe77a5 100644 --- a/grc/src/grc_gnuradio/utils/extract_docs.py +++ b/grc/src/grc_gnuradio/utils/extract_docs.py @@ -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 -- 2.30.2