summaryrefslogtreecommitdiff
path: root/grc
diff options
context:
space:
mode:
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>2008-08-23 04:13:02 +0000
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>2008-08-23 04:13:02 +0000
commit3a31e0702c30f8960e869c7a11f0be24283ed2b3 (patch)
tree1205882d0e7469189bf99ec3d44989acdd7d27d1 /grc
parentd52c462e5fd3eae7d00505a64a013e811d43234c (diff)
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
Diffstat (limited to 'grc')
-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
48 files changed, 0 insertions, 48 deletions
diff --git a/grc/src/grc/ActionHandler.py b/grc/src/grc/ActionHandler.py
index 491a0de6c9..ccaeb57096 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 bd8d950abc..ebf10c7e15 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 5d1218c68d..c3db894dc7 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 3b43b86660..cf6ce83019 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 7bfea96604..e2161d6455 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 d07fab30e1..b973e27428 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 e9c988c5f3..1cc71b42b1 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 e44d7ff567..d9ba25591b 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 7f25533045..a69163e266 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 e241fb27ec..ff43933ecc 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 57871c75df..36ed142212 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 b90f775c5e..936c9d5f6f 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 65d47f4d8c..94c786d035 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 3218005028..a8aa43004b 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 fb8cb783d5..bf09bef0c2 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 3c5425fda1..9da5211565 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 3700c97616..cb5e282ec8 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 1b4f5dc529..00238b0640 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 859f88362c..9543fdda27 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 1271f6e681..55e26846b1 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 ca5ca4a76f..9100476a46 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 2adfcde7b4..62024710a7 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 837de863fa..6aafe66c11 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 71b6cdcfb0..add31b6d6e 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 9e06779183..7717921222 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 7329311397..0e92cb11ec 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 e6f5a107ce..ee19ee2f6c 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 80be8eba0c..1eedde0a09 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 c2e5edcfdf..26b2af7cd2 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 c3492d052e..1d7157eb5b 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 e9397ad71c..956615bd28 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 6e48e7b84d..e234077258 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 be11e7daea..779a143034 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 c603db5bc2..3449f1b9ec 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 34f084343e..49af965e5d 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 f8e0995017..e79167aab2 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 a14df8ec90..84909e7630 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 c7d6a74c7f..fd2f7aa062 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 3e037305bc..51526c2cf1 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 02c9de2914..70e174ca8e 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 207b298394..f0ea25c0ea 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 22a4c7ecdc..5512940c01 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 c8e899781d..3981df7f0b 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 fe09e0d4b3..eac305165c 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 b6402601ce..6cdfc263fb 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 a0f3c2a853..747d2f445a 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 8253f018ac..9c729fb877 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 bc0dcd446d..13fe77a56c 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