[Epydoc-commits] SF.net SVN: epydoc: [1721] trunk/epydoc/src/epydoc/util.py
Brought to you by:
edloper
From: <ed...@us...> - 2008-02-15 01:02:31
|
Revision: 1721 http://epydoc.svn.sourceforge.net/epydoc/?rev=1721&view=rev Author: edloper Date: 2008-02-14 17:02:30 -0800 (Thu, 14 Feb 2008) Log Message: ----------- - Minor changes to TerminalController class Modified Paths: -------------- trunk/epydoc/src/epydoc/util.py Modified: trunk/epydoc/src/epydoc/util.py =================================================================== --- trunk/epydoc/src/epydoc/util.py 2008-02-15 01:01:08 UTC (rev 1720) +++ trunk/epydoc/src/epydoc/util.py 2008-02-15 01:02:30 UTC (rev 1721) @@ -309,10 +309,12 @@ BOLD = '' #: Turn on bold mode NORMAL = '' #: Turn off all modes COLS = 75 #: Width of the terminal (default to 75) + UNDERLINE = '' #: Underline the text + REVERSE = '' #: Reverse the foreground & background BLACK = BLUE = GREEN = CYAN = RED = MAGENTA = YELLOW = WHITE = '' _STRING_CAPABILITIES = """ - BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1 + BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1 REVERSE=rev CLEAR_EOL=el BOLD=bold UNDERLINE=smul NORMAL=sgr0""".split() _COLORS = """BLACK BLUE GREEN CYAN RED MAGENTA YELLOW WHITE""".split() _ANSICOLORS = "BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE".split() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |