| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | # Widget to display a man page | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import regex | 
					
						
							|  |  |  | from Tkinter import * | 
					
						
							| 
									
										
										
										
											1995-10-23 14:36:05 +00:00
										 |  |  | from Tkinter import _tkinter | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | from ScrolledText import ScrolledText | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # XXX These fonts may have to be changed to match your system | 
					
						
							|  |  |  | BOLDFONT = '*-Courier-Bold-R-Normal-*-120-*' | 
					
						
							|  |  |  | ITALICFONT = '*-Courier-Medium-O-Normal-*-120-*' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # XXX Recognizing footers is system dependent | 
					
						
							|  |  |  | # (This one works for IRIX 5.2 and Solaris 2.2) | 
					
						
							|  |  |  | footerprog = regex.compile( | 
					
						
							|  |  |  | 	'^     Page [1-9][0-9]*[ \t]+\|^.*Last change:.*[1-9][0-9]*\n') | 
					
						
							|  |  |  | emptyprog = regex.compile('^[ \t]*\n') | 
					
						
							|  |  |  | ulprog = regex.compile('^[ \t]*[Xv!_][Xv!_ \t]*\n') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Basic Man Page class -- does not disable editing | 
					
						
							|  |  |  | class EditableManPage(ScrolledText): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 	# Initialize instance | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	def __init__(self, master=None, **cnf): | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 		# Initialize base class | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 		apply(ScrolledText.__init__, (self, master), cnf) | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		# Define tags for formatting styles | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 		self.tag_config('X', underline=1) | 
					
						
							|  |  |  | 		self.tag_config('!', font=BOLDFONT) | 
					
						
							|  |  |  | 		self.tag_config('_', font=ITALICFONT) | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 		# Set state to idle | 
					
						
							|  |  |  | 		self.fp = None | 
					
						
							|  |  |  | 		self.lineno = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# Test whether we are busy parsing a file | 
					
						
							|  |  |  | 	def busy(self): | 
					
						
							|  |  |  | 		return self.fp != None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# Ensure we're not busy | 
					
						
							|  |  |  | 	def kill(self): | 
					
						
							|  |  |  | 		if self.busy(): | 
					
						
							|  |  |  | 			self._endparser() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# Parse a file, in the background | 
					
						
							|  |  |  | 	def asyncparsefile(self, fp): | 
					
						
							|  |  |  | 		self._startparser(fp) | 
					
						
							| 
									
										
										
										
											1995-10-23 14:36:05 +00:00
										 |  |  | 		self.tk.createfilehandler(fp, _tkinter.READABLE, | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 					  self._filehandler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	parsefile = asyncparsefile	# Alias | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# I/O handler used by background parsing | 
					
						
							|  |  |  | 	def _filehandler(self, fp, mask): | 
					
						
							|  |  |  | 		nextline = self.fp.readline() | 
					
						
							|  |  |  | 		if not nextline: | 
					
						
							|  |  |  | 			self._endparser() | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		self._parseline(nextline) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# Parse a file, now (cannot be aborted) | 
					
						
							|  |  |  | 	def syncparsefile(self, fp): | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		from select import select | 
					
						
							|  |  |  | 		def avail(fp=fp, tout=0.0, select=select): | 
					
						
							|  |  |  | 			return select([fp], [], [], tout)[0] | 
					
						
							|  |  |  | 		height = self.getint(self['height']) | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 		self._startparser(fp) | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 		while 1: | 
					
						
							|  |  |  | 			nextline = fp.readline() | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 			if not nextline: | 
					
						
							|  |  |  | 				break | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 			self._parseline(nextline) | 
					
						
							|  |  |  | 		self._endparser() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# Initialize parsing from a particular file -- must not be busy | 
					
						
							|  |  |  | 	def _startparser(self, fp): | 
					
						
							|  |  |  | 		if self.busy(): | 
					
						
							|  |  |  | 			raise RuntimeError, 'startparser: still busy' | 
					
						
							|  |  |  | 		fp.fileno()		# Test for file-ness | 
					
						
							|  |  |  | 		self.fp = fp | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		self.lineno = 0 | 
					
						
							|  |  |  | 		self.ok = 0 | 
					
						
							|  |  |  | 		self.empty = 0 | 
					
						
							|  |  |  | 		self.buffer = None | 
					
						
							| 
									
										
										
										
											1994-07-12 09:00:42 +00:00
										 |  |  | 		savestate = self['state'] | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 		self['state'] = NORMAL | 
					
						
							|  |  |  | 		self.delete('1.0', END) | 
					
						
							| 
									
										
										
										
											1994-07-12 09:00:42 +00:00
										 |  |  | 		self['state'] = savestate | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 	# End parsing -- must be busy, need not be at EOF | 
					
						
							|  |  |  | 	def _endparser(self): | 
					
						
							|  |  |  | 		if not self.busy(): | 
					
						
							|  |  |  | 			raise RuntimeError, 'endparser: not busy' | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		if self.buffer: | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 			self._parseline('') | 
					
						
							|  |  |  | 		try: | 
					
						
							|  |  |  | 			self.tk.deletefilehandler(self.fp) | 
					
						
							|  |  |  | 		except TclError, msg: | 
					
						
							|  |  |  | 			pass | 
					
						
							|  |  |  | 		self.fp.close() | 
					
						
							|  |  |  | 		self.fp = None | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		del self.ok, self.empty, self.buffer | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 	# Parse a single line | 
					
						
							|  |  |  | 	def _parseline(self, nextline): | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		if not self.buffer: | 
					
						
							|  |  |  | 			# Save this line -- we need one line read-ahead | 
					
						
							|  |  |  | 			self.buffer = nextline | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		if emptyprog.match(self.buffer) >= 0: | 
					
						
							|  |  |  | 			# Buffered line was empty -- set a flag | 
					
						
							|  |  |  | 			self.empty = 1 | 
					
						
							|  |  |  | 			self.buffer = nextline | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		textline = self.buffer | 
					
						
							|  |  |  | 		if ulprog.match(nextline) >= 0: | 
					
						
							|  |  |  | 			# Next line is properties for buffered line | 
					
						
							|  |  |  | 			propline = nextline | 
					
						
							|  |  |  | 			self.buffer = None | 
					
						
							|  |  |  | 		else: | 
					
						
							|  |  |  | 			# Next line is read-ahead | 
					
						
							|  |  |  | 			propline = None | 
					
						
							|  |  |  | 			self.buffer = nextline | 
					
						
							|  |  |  | 		if not self.ok: | 
					
						
							|  |  |  | 			# First non blank line after footer must be header | 
					
						
							|  |  |  | 			# -- skip that too | 
					
						
							|  |  |  | 			self.ok = 1 | 
					
						
							|  |  |  | 			self.empty = 0 | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		if footerprog.match(textline) >= 0: | 
					
						
							|  |  |  | 			# Footer -- start skipping until next non-blank line | 
					
						
							|  |  |  | 			self.ok = 0 | 
					
						
							|  |  |  | 			self.empty = 0 | 
					
						
							|  |  |  | 			return | 
					
						
							| 
									
										
										
										
											1994-07-12 09:00:42 +00:00
										 |  |  | 		savestate = self['state'] | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 		self['state'] = NORMAL | 
					
						
							| 
									
										
										
										
											1995-09-07 19:46:43 +00:00
										 |  |  | 		if TkVersion >= 4.0: | 
					
						
							|  |  |  | 			self.mark_set('insert', 'end-1c') | 
					
						
							|  |  |  | 		else: | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 			self.mark_set('insert', END) | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		if self.empty: | 
					
						
							|  |  |  | 			# One or more previous lines were empty | 
					
						
							|  |  |  | 			# -- insert one blank line in the text | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 			self._insert_prop('\n') | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 			self.lineno = self.lineno + 1 | 
					
						
							|  |  |  | 			self.empty = 0 | 
					
						
							|  |  |  | 		if not propline: | 
					
						
							|  |  |  | 			# No properties | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 			self._insert_prop(textline) | 
					
						
							| 
									
										
										
										
											1994-07-12 09:00:42 +00:00
										 |  |  | 		else: | 
					
						
							|  |  |  | 			# Search for properties | 
					
						
							|  |  |  | 			p = '' | 
					
						
							|  |  |  | 			j = 0 | 
					
						
							|  |  |  | 			for i in range(min(len(propline), len(textline))): | 
					
						
							|  |  |  | 				if propline[i] != p: | 
					
						
							|  |  |  | 					if j < i: | 
					
						
							|  |  |  | 					    self._insert_prop(textline[j:i], p) | 
					
						
							|  |  |  | 					    j = i | 
					
						
							|  |  |  | 					p = propline[i] | 
					
						
							|  |  |  | 			self._insert_prop(textline[j:]) | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		self.lineno = self.lineno + 1 | 
					
						
							| 
									
										
										
										
											1994-07-12 09:00:42 +00:00
										 |  |  | 		self['state'] = savestate | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 	# Insert a string at the end, with at most one property (tag) | 
					
						
							|  |  |  | 	def _insert_prop(self, str, prop = ' '): | 
					
						
							| 
									
										
										
										
											1995-09-07 19:46:43 +00:00
										 |  |  | 		here = self.index(AtInsert()) | 
					
						
							|  |  |  | 		self.insert(AtInsert(), str) | 
					
						
							|  |  |  | 		if TkVersion <= 4.0: | 
					
						
							|  |  |  | 			tags = self.tag_names(here) | 
					
						
							|  |  |  | 			for tag in tags: | 
					
						
							|  |  |  | 				self.tag_remove(tag, here, AtInsert()) | 
					
						
							| 
									
										
										
										
											1994-07-08 09:14:54 +00:00
										 |  |  | 		if prop != ' ': | 
					
						
							| 
									
										
										
										
											1995-09-07 19:46:43 +00:00
										 |  |  | 			self.tag_add(prop, here, AtInsert()) | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Readonly Man Page class -- disables editing, otherwise the same | 
					
						
							|  |  |  | class ReadonlyManPage(EditableManPage): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-07-08 14:15:05 +00:00
										 |  |  | 	# Initialize instance | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	def __init__(self, master=None, **cnf): | 
					
						
							|  |  |  | 		cnf['state'] = DISABLED | 
					
						
							|  |  |  | 		apply(EditableManPage.__init__, (self, master), cnf) | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Alias | 
					
						
							|  |  |  | ManPage = ReadonlyManPage | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Test program. | 
					
						
							|  |  |  | # usage: ManPage [manpage]; or ManPage [-f] file | 
					
						
							|  |  |  | # -f means that the file is nroff -man output run through ul -i | 
					
						
							|  |  |  | def test(): | 
					
						
							|  |  |  | 	import os | 
					
						
							|  |  |  | 	import sys | 
					
						
							|  |  |  | 	# XXX This directory may be different on your system | 
					
						
							|  |  |  | 	MANDIR = '/usr/local/man/mann' | 
					
						
							|  |  |  | 	DEFAULTPAGE = 'Tcl' | 
					
						
							|  |  |  | 	formatted = 0 | 
					
						
							|  |  |  | 	if sys.argv[1:] and sys.argv[1] == '-f': | 
					
						
							|  |  |  | 		formatted = 1 | 
					
						
							|  |  |  | 		del sys.argv[1] | 
					
						
							|  |  |  | 	if sys.argv[1:]: | 
					
						
							|  |  |  | 		name = sys.argv[1] | 
					
						
							|  |  |  | 	else: | 
					
						
							|  |  |  | 		name = DEFAULTPAGE | 
					
						
							|  |  |  | 	if not formatted: | 
					
						
							|  |  |  | 		if name[-2:-1] != '.': | 
					
						
							|  |  |  | 			name = name + '.n' | 
					
						
							|  |  |  | 		name = os.path.join(MANDIR, name) | 
					
						
							|  |  |  | 	root = Tk() | 
					
						
							|  |  |  | 	root.minsize(1, 1) | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	manpage = ManPage(root, relief=SUNKEN, borderwidth=2) | 
					
						
							|  |  |  | 	manpage.pack(expand=1, fill=BOTH) | 
					
						
							| 
									
										
										
										
											1994-07-06 21:17:21 +00:00
										 |  |  | 	if formatted: | 
					
						
							|  |  |  | 		fp = open(name, 'r') | 
					
						
							|  |  |  | 	else: | 
					
						
							|  |  |  | 		fp = os.popen('nroff -man %s | ul -i' % name, 'r') | 
					
						
							|  |  |  | 	manpage.parsefile(fp) | 
					
						
							|  |  |  | 	root.mainloop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Run the test program when called as a script | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  | 	test() |