summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS3
-rw-r--r--grc/src/grc/ActionHandler.py1
-rw-r--r--grc/src/grc/Actions.py1
-rw-r--r--grc/src/grc/Messages.py1
-rw-r--r--grc/src/grc/ParseXML.py1
-rw-r--r--grc/src/grc/Preferences.py1
-rw-r--r--grc/src/grc/StateCache.py1
-rw-r--r--grc/src/grc/Utils.py1
-rw-r--r--grc/src/grc/__init__.py1
-rw-r--r--grc/src/grc/converter.py1
-rw-r--r--grc/src/grc/elements/Block.py1
-rw-r--r--grc/src/grc/elements/Connection.py1
-rw-r--r--grc/src/grc/elements/Element.py1
-rw-r--r--grc/src/grc/elements/FlowGraph.py1
-rw-r--r--grc/src/grc/elements/Param.py1
-rw-r--r--grc/src/grc/elements/Platform.py1
-rw-r--r--grc/src/grc/elements/Port.py1
-rw-r--r--grc/src/grc/elements/__init__.py1
-rw-r--r--grc/src/grc/gui/Bars.py1
-rw-r--r--grc/src/grc/gui/BlockTreeWindow.py1
-rw-r--r--grc/src/grc/gui/Dialogs.py1
-rw-r--r--grc/src/grc/gui/DrawingArea.py1
-rw-r--r--grc/src/grc/gui/FileDialogs.py1
-rw-r--r--grc/src/grc/gui/MainWindow.py1
-rw-r--r--grc/src/grc/gui/NotebookPage.py1
-rw-r--r--grc/src/grc/gui/ParamsDialog.py1
-rw-r--r--grc/src/grc/gui/__init__.py1
-rw-r--r--grc/src/grc/gui/elements/Block.py1
-rw-r--r--grc/src/grc/gui/elements/Colors.py1
-rw-r--r--grc/src/grc/gui/elements/Connection.py1
-rw-r--r--grc/src/grc/gui/elements/Element.py1
-rw-r--r--grc/src/grc/gui/elements/FlowGraph.py1
-rw-r--r--grc/src/grc/gui/elements/Param.py1
-rw-r--r--grc/src/grc/gui/elements/Platform.py1
-rw-r--r--grc/src/grc/gui/elements/Port.py1
-rw-r--r--grc/src/grc/gui/elements/Utils.py1
-rw-r--r--grc/src/grc/gui/elements/__init__.py1
-rw-r--r--grc/src/grc_gnuradio/Block.py1
-rw-r--r--grc/src/grc_gnuradio/Connection.py1
-rw-r--r--grc/src/grc_gnuradio/FlowGraph.py1
-rw-r--r--grc/src/grc_gnuradio/Generator.py1
-rw-r--r--grc/src/grc_gnuradio/Param.py1
-rw-r--r--grc/src/grc_gnuradio/Platform.py1
-rw-r--r--grc/src/grc_gnuradio/Port.py1
-rw-r--r--grc/src/grc_gnuradio/__init__.py1
-rw-r--r--grc/src/grc_gnuradio/utils/__init__.py1
-rw-r--r--grc/src/grc_gnuradio/utils/convert_hier.py1
-rw-r--r--grc/src/grc_gnuradio/utils/expr_utils.py1
-rw-r--r--grc/src/grc_gnuradio/utils/extract_docs.py1
49 files changed, 2 insertions, 49 deletions
diff --git a/AUTHORS b/AUTHORS
index 11fbc4598..7338f6140 100644
--- 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)
diff --git a/grc/src/grc/ActionHandler.py b/grc/src/grc/ActionHandler.py
index 491a0de6c..ccaeb5709 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 bd8d950ab..ebf10c7e1 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 5d1218c68..c3db894dc 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 3b43b8666..cf6ce8301 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 7bfea9660..e2161d645 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 d07fab30e..b973e2742 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 e9c988c5f..1cc71b42b 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 e44d7ff56..d9ba25591 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 7f2553304..a69163e26 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 e241fb27e..ff43933ec 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 57871c75d..36ed14221 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 b90f775c5..936c9d5f6 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 65d47f4d8..94c786d03 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 321800502..a8aa43004 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 fb8cb783d..bf09bef0c 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 3c5425fda..9da521156 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 3700c9761..cb5e282ec 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 1b4f5dc52..00238b064 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 859f88362..9543fdda2 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 1271f6e68..55e26846b 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 ca5ca4a76..9100476a4 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 2adfcde7b..62024710a 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 837de863f..6aafe66c1 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 71b6cdcfb..add31b6d6 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 9e0677918..771792122 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 732931139..0e92cb11e 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 e6f5a107c..ee19ee2f6 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 80be8eba0..1eedde0a0 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 c2e5edcfd..26b2af7cd 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 c3492d052..1d7157eb5 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 e9397ad71..956615bd2 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 6e48e7b84..e23407725 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 be11e7dae..779a14303 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 c603db5bc..3449f1b9e 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 34f084343..49af965e5 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 f8e099501..e79167aab 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 a14df8ec9..84909e763 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 c7d6a74c7..fd2f7aa06 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 3e037305b..51526c2cf 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 02c9de291..70e174ca8 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 207b29839..f0ea25c0e 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 22a4c7ecd..5512940c0 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 c8e899781..3981df7f0 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 fe09e0d4b..eac305165 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 b6402601c..6cdfc263f 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 a0f3c2a85..747d2f445 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 8253f018a..9c729fb87 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 bc0dcd446..13fe77a56 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