Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b

Parent Directory (gnuradio/docs/doxygen)

Kludge Summary of gnuradio/docs/doxygen/other

Total Kludges 10
Total Subdirs 0

All Directories within gnuradio/docs/doxygen/other

All Files within gnuradio/docs/doxygen/other

Kludge Snippets in gnuradio/docs/doxygen/other

gnuradio/docs/doxygen/other/doxypy.py — 1

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
84        				if match:
85        					self.current_state = to_state
86        					self.current_input = input
87        					self.current_transition = transition
88        					if options.debug:
89        						print >>sys.stderr, "# FSM: executing (%s -> %s) for line '%s'" % (from_state, to_state, input)
90        					callback(match)
91        					return
92        
				

gnuradio/docs/doxygen/other/doxypy.py — 2

PyFlakes undefined name 'options'
Committer eb
Commit ID 7811f7f3d743aebafbe5daf2f5088d139b774459
178        
179        	def __closeComment(self):
180        		"""Appends any open comment block and triggering block to the output."""
181        		
182        		if options.autobrief:
183        			if len(self.comment) == 1 \
184        			or (len(self.comment) > 2 and self.comment[1].strip() == ''):
185        				self.comment[0] = self.__docstringSummaryToBrief(self.comment[0])
186        			
				

gnuradio/docs/doxygen/other/doxypy.py — 3

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
206        	def __flushBuffer(self):
207        		"""Flushes the current outputbuffer to the outstream."""
208        		if self.output:
209        			try:
210        				if options.debug:
211        					print >>sys.stderr, "# OUTPUT: ", self.output
212        				print >>self.outstream, "\n".join(self.output)
213        				self.outstream.flush()
214        			except IOError:
				

gnuradio/docs/doxygen/other/doxypy.py — 4

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
226        		"""Restarts a new comment search for a different triggering line.
227        		
228        		Closes the current commentblock and starts a new comment search.
229        		"""
230        		if options.debug:
231        			print >>sys.stderr, "# CALLBACK: resetCommentSearch" 
232        		self.__closeComment()
233        		self.startCommentSearch(match)
234        	
				

gnuradio/docs/doxygen/other/doxypy.py — 5

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
237        		
238        		Saves the triggering line, resets the current comment and saves
239        		the current indentation.
240        		"""
241        		if options.debug:
242        			print >>sys.stderr, "# CALLBACK: startCommentSearch"
243        		self.defclass = [self.fsm.current_input]
244        		self.comment = []
245        		self.indent = match.group(1)
				

gnuradio/docs/doxygen/other/doxypy.py — 6

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
249        		
250        		Closes the current commentblock, resets	the triggering line and
251        		appends the current line to the output.
252        		"""
253        		if options.debug:
254        			print >>sys.stderr, "# CALLBACK: stopCommentSearch" 
255        		self.__closeComment()
256        		
257        		self.defclass = []
				

gnuradio/docs/doxygen/other/doxypy.py — 7

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
261        		"""Appends a line in the FILEHEAD state.
262        		
263        		Closes the open comment	block, resets it and appends the current line.
264        		""" 
265        		if options.debug:
266        			print >>sys.stderr, "# CALLBACK: appendFileheadLine" 
267        		self.__closeComment()
268        		self.comment = []
269        		self.output.append(self.fsm.current_input)
				

gnuradio/docs/doxygen/other/doxypy.py — 8

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
273        		
274        		The comment delimiter is removed from multiline start and ends as
275        		well as singleline comments.
276        		"""
277        		if options.debug:
278        			print >>sys.stderr, "# CALLBACK: appendCommentLine" 
279        		(from_state, to_state, condition, callback) = self.fsm.current_transition
280        		
281        		# single line comment
				

gnuradio/docs/doxygen/other/doxypy.py — 9

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
310        			self.comment.append(self.fsm.current_input)
311        	
312        	def appendNormalLine(self, match):
313        		"""Appends a line to the output."""
314        		if options.debug:
315        			print >>sys.stderr, "# CALLBACK: appendNormalLine" 
316        		self.output.append(self.fsm.current_input)
317        		
318        	def appendDefclassLine(self, match):
				

gnuradio/docs/doxygen/other/doxypy.py — 10

PyFlakes undefined name 'options'
Committer jcorgan
Commit ID 74f527a8840e91c420962f26bea0e9f299f4b514
316        		self.output.append(self.fsm.current_input)
317        		
318        	def appendDefclassLine(self, match):
319        		"""Appends a line to the triggering block."""
320        		if options.debug:
321        			print >>sys.stderr, "# CALLBACK: appendDefclassLine" 
322        		self.defclass.append(self.fsm.current_input)
323        	
324        	def makeCommentBlock(self):