summaryrefslogtreecommitdiffstats
path: root/pym/portage/output.py
Commit message (Expand)AuthorAgeFilesLines
* Bug #290625 - Manually encode output to stdout in python3, in order to avoidZac Medico2009-10-261-13/+21
* Use dict.(keys|values|items)() instead of dict.(iterkeys|itervalues|iteritems...Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+2
* Use range() instead of xrange() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+2
* Add support in ConsoleStyleFile.write() for unicode encoding when writing toZac Medico2009-09-201-5/+15
* Misc unicode fixes for repoman.Zac Medico2009-09-201-0/+5
* Use _unicode_encode() to ensure that only unicode strings are passed intoZac Medico2009-09-201-0/+7
* Update system imports for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-201-2/+5
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-201-3/+3
* remove FIXME, since zmedico fixed itFabian Groffen2009-08-241-5/+0
* Bug #282269, comment #2 - Avoid potential UnicodeEncodeError when writingZac Medico2009-08-221-0/+3
* Use _encodings where appropriate and add _encodings['stdio'] for stdoutZac Medico2009-08-211-5/+4
* Use _content_encoding and _fs_encoding where appropriate.Zac Medico2009-08-181-5/+8
* Implement lazy loading of color.map when either the codes or _stylesZac Medico2009-08-181-12/+45
* Prepare 308 messages to localization.Arfrever Frehtes Taifersar Arahesis2009-08-151-11/+9
* Fix EOutput to safely write unicode to stderr/stdout. Thanks to Arfrever forZac Medico2009-08-091-14/+17
* Always pass encodings='utf_8' to codecs.open(), since otherwise it canZac Medico2009-07-201-1/+2
* Remove leading slash from appropriate paths inside portage.const, so thatZac Medico2009-07-121-1/+7
* Rename color_codes back to codes.Zac Medico2009-06-171-70/+70
* Rename codes to _styles.Zac Medico2009-06-171-30/+30
* Rename map_code_to_color_code() to style_to_ansi_code().Zac Medico2009-06-171-5/+12
* Add epydoc docstrings fro codes and color_codes variables.Zac Medico2009-06-171-0/+3
* Use map_code_to_color_code() where appropriate inside ConsoleStyleFile.write().Zac Medico2009-06-171-1/+1
* Bug #274279 - Add color.map support for mapping a color to a different colorZac Medico2009-06-161-148/+148
* Make xtermTitle() use a global variable to cache the result of the TERM check.Zac Medico2009-04-291-13/+17
* Use lazyimport to avoid importing the checksum, locks, and util modulesZac Medico2009-02-221-2/+7
* Add a "quiet" parameter to the EOutput constructor, and also flushZac Medico2009-01-101-2/+4
* Use ebegin/eend to indicate when waiting for a lock and when it's acquired.Zac Medico2009-01-101-4/+5
* Direct EOutput.eerror() and ewarn() output to stderr.Zac Medico2008-09-261-2/+2
* Use stdout.write() instead of "print", for py3k compat.Zac Medico2008-07-031-14/+24
* Fix the PermissionDenied message for color.map.Zac Medico2008-06-261-1/+4
* More eblank.Zac Medico2008-06-171-1/+0
* Remove eblank nonsenseMarius Mauch2008-06-171-14/+0
* * Rename NEUTRAL color to BLANK for eblank.Zac Medico2008-06-171-1/+15
* Add support for an new "eblank" elog function that shows a blank line.Zac Medico2008-06-171-0/+1
* Make set_term_size() handle the CommandNotFound exception if sttyZac Medico2008-05-281-2/+6
* add xterm-color and interix to list of valid terminalsMarius Mauch2008-05-131-1/+1
* Make satisfied blockers "darkblue" by default.Zac Medico2008-05-061-1/+1
* Display satisfied blockers in green and show a small "b" instead of aZac Medico2008-05-061-0/+2
* Bug #172812 - Automatically uninstall packages to avoid blocker conflicts.Zac Medico2008-04-231-0/+1
* Bug #204651 - Make repoman respect NOCOLOR=true.Zac Medico2008-01-061-1/+2
* Move the reusable ConsoleStyleFile and StyleWriter classes intoZac Medico2007-12-151-0/+52
* Tweak EOutput.term_columns calculation for TERM="dumb" soZac Medico2007-11-081-1/+1
* If the title string is too big then xtermTitle() canZac Medico2007-10-251-0/+5
* Run pychecker over everything, fix obvious thing slike modules not in use, va...Alec Warner2007-07-221-3/+8
* Add "reset" to the list of attributes.Zac Medico2007-07-121-1/+2
* Add color classes PROMPT_CHOICE_{DEFAULT,OTHER} for emerge's Yes/No prompt.Zac Medico2007-07-081-0/+2
* Misc color fixes. Thanks to Arfrever Frehtes Taifersar Arahesis <Arfrever.FT...Zac Medico2007-07-061-12/+12
* Remove the PKG_*ARG* color classes in order to simplify things since it's que...Zac Medico2007-07-061-8/+2
* Fix broken code concatenation logic in parse_color_map().Zac Medico2007-07-041-1/+3
* Add a "onerror" callback to parse_color_map() for handling each ParseError th...Zac Medico2007-07-041-5/+33