From f919f9dcbb54a08e6e26d6c229ce92fb784fa1b2 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Fri, 13 Apr 2012 18:36:53 -0400
Subject: Removed whitespace and added dtools/bin/remove-whitespace as a tool
 to do this in the future.

The sed script was provided by Moritz Fischer.
---
 grc/CMakeLists.txt                          | 8 ++++----
 grc/base/CMakeLists.txt                     | 8 ++++----
 grc/base/Platform.py                        | 2 +-
 grc/base/block_tree.dtd                     | 6 +++---
 grc/base/flow_graph.dtd                     | 6 +++---
 grc/blocks/CMakeLists.txt                   | 8 ++++----
 grc/blocks/blks2_pfb_arb_resampler.xml      | 2 +-
 grc/blocks/blks2_pfb_channelizer.xml        | 4 ++--
 grc/examples/CMakeLists.txt                 | 8 ++++----
 grc/examples/xmlrpc/readme.txt              | 4 ++--
 grc/examples/xmlrpc/xmlrpc_client_script.py | 2 +-
 grc/freedesktop/CMakeLists.txt              | 8 ++++----
 grc/gui/ActionHandler.py                    | 2 +-
 grc/gui/BlockTreeWindow.py                  | 2 +-
 grc/python/CMakeLists.txt                   | 8 ++++----
 grc/python/Param.py                         | 2 +-
 grc/scripts/CMakeLists.txt                  | 8 ++++----
 grc/todo.txt                                | 2 +-
 18 files changed, 45 insertions(+), 45 deletions(-)

(limited to 'grc')

diff --git a/grc/CMakeLists.txt b/grc/CMakeLists.txt
index 8be5d7fbcc..f54aa4f809 100644
--- a/grc/CMakeLists.txt
+++ b/grc/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/base/CMakeLists.txt b/grc/base/CMakeLists.txt
index c6d6a09ebc..1087e842a3 100644
--- a/grc/base/CMakeLists.txt
+++ b/grc/base/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/base/Platform.py b/grc/base/Platform.py
index a66c28ab9c..94d0077ea9 100644
--- a/grc/base/Platform.py
+++ b/grc/base/Platform.py
@@ -87,7 +87,7 @@ class Platform(_Element):
 				else:
 					self._blocks[key] = block
 					self._blocks_n[key] = n
-			except ParseXML.XMLSyntaxError, e: 
+			except ParseXML.XMLSyntaxError, e:
 				try: #try to add the xml file as a block tree
 					ParseXML.validate_dtd(xml_file, BLOCK_TREE_DTD)
 					self._block_tree_files.append(xml_file)
diff --git a/grc/base/block_tree.dtd b/grc/base/block_tree.dtd
index be1524a38f..7d4a13ccc3 100644
--- a/grc/base/block_tree.dtd
+++ b/grc/base/block_tree.dtd
@@ -1,4 +1,4 @@
-<!-- 
+<!--
 Copyright 2008 Free Software Foundation, Inc.
 This file is part of GNU Radio
 
@@ -14,10 +14,10 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA 
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 -->
 <!--
-	block_tree.dtd 
+	block_tree.dtd
 	Josh Blum
 	The document type definition for a block tree category listing.
  -->
diff --git a/grc/base/flow_graph.dtd b/grc/base/flow_graph.dtd
index 904147b373..74f48f10ab 100644
--- a/grc/base/flow_graph.dtd
+++ b/grc/base/flow_graph.dtd
@@ -1,4 +1,4 @@
-<!-- 
+<!--
 Copyright 2008 Free Software Foundation, Inc.
 This file is part of GNU Radio
 
@@ -14,10 +14,10 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA 
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 -->
 <!--
-	flow_graph.dtd 
+	flow_graph.dtd
 	Josh Blum
 	The document type definition for flow graph xml files.
  -->
diff --git a/grc/blocks/CMakeLists.txt b/grc/blocks/CMakeLists.txt
index ad31b09759..fce4a19071 100644
--- a/grc/blocks/CMakeLists.txt
+++ b/grc/blocks/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/blocks/blks2_pfb_arb_resampler.xml b/grc/blocks/blks2_pfb_arb_resampler.xml
index b4e09791f3..b58e70f1cb 100644
--- a/grc/blocks/blks2_pfb_arb_resampler.xml
+++ b/grc/blocks/blks2_pfb_arb_resampler.xml
@@ -14,7 +14,7 @@
 	$taps,
 	$size,
 )</make>
-	<!-- Set taps not implemented yet 
+	<!-- Set taps not implemented yet
            <callback>set_taps($taps)</callback>
          -->
 	<callback>set_rate($rate)</callback>
diff --git a/grc/blocks/blks2_pfb_channelizer.xml b/grc/blocks/blks2_pfb_channelizer.xml
index 0dba6108be..5a93c08664 100644
--- a/grc/blocks/blks2_pfb_channelizer.xml
+++ b/grc/blocks/blks2_pfb_channelizer.xml
@@ -16,11 +16,11 @@
 	  $atten)
 self.$(id).set_channel_map($ch_map)
 	</make>
-	<!-- Set taps not implemented yet 
+	<!-- Set taps not implemented yet
            <callback>set_taps($taps)</callback>
          -->
         <callback>set_channel_map($ch_map)</callback>
-	
+
 	<param>
 		<name>Channels</name>
 		<key>nchans</key>
diff --git a/grc/examples/CMakeLists.txt b/grc/examples/CMakeLists.txt
index acb65dbdc1..a218dbe500 100644
--- a/grc/examples/CMakeLists.txt
+++ b/grc/examples/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/examples/xmlrpc/readme.txt b/grc/examples/xmlrpc/readme.txt
index c1f87c1cb5..056ad1e823 100644
--- a/grc/examples/xmlrpc/readme.txt
+++ b/grc/examples/xmlrpc/readme.txt
@@ -2,12 +2,12 @@
 # XMLRPC example
 ##################################################
 
-XMLRPC allows software to make remote function calls over http. 
+XMLRPC allows software to make remote function calls over http.
 In the case of GRC, one can use XMLRPC to modify variables in a running flow graph.
 See http://www.xmlrpc.com/
 
 --- Server Example ---
-Place an "XMLRPC Server" block inside of any flow graph. 
+Place an "XMLRPC Server" block inside of any flow graph.
 The server will provide set functions for every variable in the flow graph.
 If a variable is called "freq", the server will provide a function set_freq(new_freq).
 Run the server example and experiment with the example client script.
diff --git a/grc/examples/xmlrpc/xmlrpc_client_script.py b/grc/examples/xmlrpc/xmlrpc_client_script.py
index 956fa07fb7..8f00fa55d8 100644
--- a/grc/examples/xmlrpc/xmlrpc_client_script.py
+++ b/grc/examples/xmlrpc/xmlrpc_client_script.py
@@ -13,7 +13,7 @@ for i in range(10):
 	new_freq = random.uniform(0, 5000)
 	new_ampl = random.uniform(0, 2)
 	new_offset = random.uniform(-1, 1)
-	#set new values 
+	#set new values
 	time.sleep(1)
 	s.set_freq(new_freq)
 	time.sleep(1)
diff --git a/grc/freedesktop/CMakeLists.txt b/grc/freedesktop/CMakeLists.txt
index 492b0f7d83..d95fe04ac5 100644
--- a/grc/freedesktop/CMakeLists.txt
+++ b/grc/freedesktop/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011-2012 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/gui/ActionHandler.py b/grc/gui/ActionHandler.py
index 15785f2ee7..476c82b4f6 100644
--- a/grc/gui/ActionHandler.py
+++ b/grc/gui/ActionHandler.py
@@ -18,7 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 
 import os
-import signal 
+import signal
 from Constants import IMAGE_FILE_EXTENSION
 import Actions
 import pygtk
diff --git a/grc/gui/BlockTreeWindow.py b/grc/gui/BlockTreeWindow.py
index c12120eaff..0175c8becf 100644
--- a/grc/gui/BlockTreeWindow.py
+++ b/grc/gui/BlockTreeWindow.py
@@ -67,7 +67,7 @@ class BlockTreeWindow(gtk.VBox):
 		#setup the search
 		self.treeview.set_enable_search(True)
 		self.treeview.set_search_equal_func(self._handle_search)
-		#try to enable the tooltips (available in pygtk 2.12 and above) 
+		#try to enable the tooltips (available in pygtk 2.12 and above)
 		try: self.treeview.set_tooltip_column(DOC_INDEX)
 		except: pass
 		#setup drag and drop
diff --git a/grc/python/CMakeLists.txt b/grc/python/CMakeLists.txt
index 0871c7bd10..4832dd897e 100644
--- a/grc/python/CMakeLists.txt
+++ b/grc/python/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/python/Param.py b/grc/python/Param.py
index 2a7258dc71..2caca48024 100644
--- a/grc/python/Param.py
+++ b/grc/python/Param.py
@@ -335,7 +335,7 @@ class Param(_Param, _GUIParam):
 		# Stream ID Type
 		#########################
 		elif t == 'stream_id':
-			#get a list of all stream ids used in the virtual sinks 
+			#get a list of all stream ids used in the virtual sinks
 			ids = [param.get_value() for param in filter(
 				lambda p: p.get_parent().is_virtual_sink(),
 				self.get_all_params(t),
diff --git a/grc/scripts/CMakeLists.txt b/grc/scripts/CMakeLists.txt
index b8d5330f67..e905892308 100644
--- a/grc/scripts/CMakeLists.txt
+++ b/grc/scripts/CMakeLists.txt
@@ -1,17 +1,17 @@
 # Copyright 2011 Free Software Foundation, Inc.
-# 
+#
 # This file is part of GNU Radio
-# 
+#
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3, or (at your option)
 # any later version.
-# 
+#
 # GNU Radio is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
 # the Free Software Foundation, Inc., 51 Franklin Street,
diff --git a/grc/todo.txt b/grc/todo.txt
index ccfaad72a6..1205b3ff6d 100644
--- a/grc/todo.txt
+++ b/grc/todo.txt
@@ -12,7 +12,7 @@
 * packet mod: whitening offset
 * wx min window size in options block
 * gr_adaptive_fir_ccf
-* ofdm  
+* ofdm
   * gr_ofdm_bpsk_demapper
   * gr_ofdm_demapper_vcb
   * gr_ofdm_frame_sink
-- 
cgit v1.2.3