Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-01-06 | Use a single code base for Python 2 and 3 | Julian Andres Klode | 1 | -5/+10 | |
This is much better than running 2to3 during the build, as it gives us more control over the Python 3 code. | |||||
2014-01-06 | Use print_function everywhere | Julian Andres Klode | 1 | -0/+2 | |
This brings the code closer to Python 3. Automatically converted using 2to3 -f print. | |||||
2014-01-05 | make test_pep8.py pass | Michael Vogt | 1 | -4/+5 | |
2011-04-11 | apt.progress: Use long for ETA, natural type for size (LP: #377375) | Julian Andres Klode | 1 | -3/+2 | |
2010-12-13 | * apt/progress/text.py: | Michael Vogt | 1 | -6/+8 | |
- only run ioctl for termios.TIOCGWINSZ if the fd is a tty | |||||
2010-03-01 | * apt/progress/text.py: | Julian Andres Klode | 1 | -2/+0 | |
- Drop InstallProgress, it's useless to keep this alias around. | |||||
2010-01-17 | apt/progress/text.py: Replace one print statement with a .write() call. | Julian Andres Klode | 1 | -1/+1 | |
2010-01-15 | Make all class-level constants have uppercase names. | Julian Andres Klode | 1 | -1/+1 | |
2009-07-31 | apt/progress: Large update, introducing apt.progress.base.InstallProgress. | Julian Andres Klode | 1 | -0/+2 | |
This contains many updates including the introduction of a new InstallProgress class which replaces the old InstallProgress and DpkgInstallProgress classes. | |||||
2009-07-31 | python: Remove the progress classes in apt_pkg. | Julian Andres Klode | 1 | -18/+18 | |
They have been replaced with apt.progress.base, so stuff like GTK+ or Qt progress classes can be written using subclassing. | |||||
2009-07-31 | apt/progress/base.py: Introduce new base progress classes. | Julian Andres Klode | 1 | -20/+19 | |
Also adjust the class in apt/progress/text.py to derive from this instead of the classes in apt_pkg (which will be dropped). | |||||
2009-07-23 | python/cdrom.cc: Do not check arguments in PkgCdromNew. | Julian Andres Klode | 1 | -1/+1 | |
2009-07-19 | apt/progress/text.py: Always call methods of the parent class. | Julian Andres Klode | 1 | -1/+10 | |
2009-07-19 | apt/progress/text.py: Add some docstrings. | Julian Andres Klode | 1 | -0/+5 | |
2009-07-19 | apt/progress/text.py: Introduce CdromProgress. | Julian Andres Klode | 1 | -4/+27 | |
2009-07-17 | apt: Use apt_pkg.gettext instead of Python's gettext. | Julian Andres Klode | 1 | -4/+2 | |
2009-07-17 | apt/progress/text.py: Improve final summary. | Julian Andres Klode | 1 | -14/+22 | |
2009-07-17 | apt/progress/text.py: Cleanup, add i18n (and try apt translation if we have ↵ | Julian Andres Klode | 1 | -40/+52 | |
none). | |||||
2009-07-17 | apt/progress/text.py: Don't display complete items in AcquireProgress.fetch | Julian Andres Klode | 1 | -0/+3 | |
2009-07-16 | apt/progress/text.py: Limit number of displayed items by display size. | Julian Andres Klode | 1 | -2/+8 | |
2009-07-16 | apt/progress/text.py: Print status messages. | Julian Andres Klode | 1 | -7/+6 | |
2009-07-16 | apt/progress/text.py: 'Sync' AcquireProgress with the one used for apt-get. | Julian Andres Klode | 1 | -18/+93 | |
2009-07-16 | apt/progress/text.py: Introduce new progress classes for text. | Julian Andres Klode | 1 | -0/+122 | |
These are based on the new classes in apt_pkg and work better, because they correctly clear the screen. |