| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2009-03-08 | * doc/examples/*.py: Fix some examples, cleanup | Julian Andres Klode | 8 | -18/+6 | |
| 2009-03-08 | apt/cache.py: If no progress is given for cache open, use OpProgress. | Julian Andres Klode | 1 | -3/+3 | |
| Also fix doc/examples/records.py to use Package.candidate.* | |||||
| 2009-03-08 | * setup.py: Remove apt.gtk, add apt.progress | Julian Andres Klode | 1 | -0/+1 | |
| 2009-03-08 | * Merge with mvo | Julian Andres Klode | 6 | -0/+7 | |
| 2009-03-08 | * doc/source/*: Improve the documentation | Julian Andres Klode | 3 | -37/+173 | |
| - Document more attributes and functions of apt_pkg (they are all listed) | |||||
| 2009-03-08 | * apt/progress/: New package, replaces apt.progress and apt.gtk | Julian Andres Klode | 3 | -7/+7 | |
| - apt/progress/gtk2.py: Moved here from apt/gtk/widgets.py - apt/progress/__init__.py: Move here from apt/progress.py | |||||
| 2009-03-08 | * apt/package.py: Introduce the Version class | Julian Andres Klode | 1 | -0/+5 | |
| - Deprecate Package.candidate*() and Package.installed*(), except for installedFiles. - Provide Version.get_source() (LP: #118788) | |||||
| 2009-02-25 | add a bunch of #!/usr/bin/python to the examples | Michael Vogt | 6 | -0/+7 | |
| 2009-01-12 | doc/source/coding.rst: New python coding guidelines | Julian Andres Klode | 1 | -10/+22 | |
| The exception for mixedCase names is now only granted for modules introduced prior to version 0.7.9 and changes thereto. Modules which are listed as deprecated in the documentation of Python 2.6 should be avoided. has_key() may only be used on TagSection objects. | |||||
| 2009-01-12 | Cleanup: Comparisons to True/False, ==/!= None, deprecated modules | Julian Andres Klode | 10 | -32/+25 | |
| 2009-01-11 | * doc/source/apt_pkg/cache.rst: Mention the SHA256Hash is new in 0.7.9 | Julian Andres Klode | 1 | -0/+2 | |
| 2009-01-11 | * Add support for PkgRecords.SHA256Hash (Closes: #456113) | Julian Andres Klode | 1 | -0/+5 | |
| 2009-01-11 | * Merge Ben Finney's do not use has_key() (Closes: #481878) | Julian Andres Klode | 3 | -4/+4 | |
| A little bit adjusted to not remove the has_key() methods, and to use has_key() where needed [the low-level part does not have the needed functionality for 'key in mapping']. | |||||
| 2009-01-11 | Merge Ben Finney's whitespace changes (Closes: #481563) | Julian Andres Klode | 24 | -296/+314 | |
| 2009-01-11 | * doc/: Small updates, add PkgSourceList | Julian Andres Klode | 2 | -38/+64 | |
| 2009-01-11 | doc/source/**.rst: rst Style changes. | Julian Andres Klode | 4 | -113/+103 | |
| This changes our style to match the Python documentation. | |||||
| 2009-01-11 | * doc/source/apt_pkg/cache.rst: Add the last classes | Julian Andres Klode | 1 | -6/+435 | |
| There is no description for MetaIndex yet, but this will be added soon. | |||||
| 2009-01-10 | * doc/source/apt_pkg/cache.rst: Add PkgAcqFile, AcquireItem, and Configuration | Julian Andres Klode | 1 | -0/+175 | |
| Not documented: MetaIndex PackageIndexFile PkgManager PkgRecords PkgSourceList PkgSrcRecords ProblemResolver TagFile TagSection (9) | |||||
| 2009-01-10 | * doc/: Heavily improve documentation | Julian Andres Klode | 7 | -14/+655 | |
| Complete the documentation of pkgCache, pkgDepCache, pkgCache::Package. Introduce new documentation for pkgCache::Version, pkgCache::Dependency, pkgCache::PackageFile, pkgcache::Description. There is also an example now which checks for missing dependencies. | |||||
| 2009-01-09 | * doc/source/coding.rst: Add the jak branch | Julian Andres Klode | 1 | -0/+7 | |
| 2009-01-09 | * setup.py, doc/source/conf.py: Fix building by adding build/lib* to PYTHONPATH | Julian Andres Klode | 2 | -2/+9 | |
| We now build the extension first, and then the documentation. Also add the text docs. | |||||
| 2009-01-09 | * Introduce the new documentation and add 0.7.9~exp2 to changelog. | Julian Andres Klode | 23 | -13/+1396 | |
| The new documentation is built using sphinx (>= 0.5) [other versions may work too, but let's be safe]. | |||||
| 2009-01-09 | Cleanup: Remove whitespace at the end of line in all python codes. | Julian Andres Klode | 7 | -12/+12 | |
| 2008-11-24 | merged from the consolidation-bracn (with some modificatins) | Michael Vogt | 1 | -109/+21 | |
| 2008-11-07 | python/acquire.cc (GetPkgAcqFile): Support DestDir and DestFilename. | Michael Vogt | 1 | -12/+1 | |
| 2008-08-08 | 'mapping.has_key' is deprecated, use current Python 'key in mapping' idiom. | Ben Finney | 3 | -4/+4 | |
| 2008-08-08 | Fix whitespace in changes from 0.7.7. | Ben Finney | 1 | -1/+1 | |
| 2008-07-21 | * doc/examples/config.py: | Emanuele Rocca | 1 | -2/+1 | |
| - Fix config.py --help (closes: #257007) | |||||
| 2008-05-16 | Limit code lines to maximum 79 characters, to conform with PEP 8. | Ben Finney | 8 | -12/+25 | |
| 2008-05-16 | Imports on separate lines, to conform with PEP 8. | Ben Finney | 6 | -6/+18 | |
| 2008-05-16 | Remove redundant semicolons from statements. | Ben Finney | 3 | -23/+23 | |
| 2008-05-16 | Fix spaces adjacent to commas and operators, to conform with PEP 8. | Ben Finney | 16 | -66/+66 | |
| 2008-05-16 | Fix code indentation to 4 spaces, to conform with PEP 8. | Ben Finney | 15 | -210/+210 | |
| 2008-05-16 | Fixes to blank lines, to conform with PEP 8. | Ben Finney | 10 | -36/+41 | |
| 2008-05-16 | Remove trailing whitespace. | Ben Finney | 1 | -2/+2 | |
| 2008-05-16 | Remove trailing whitespace. | Ben Finney | 7 | -13/+13 | |
| 2008-01-08 | doc/examples/gui-inst.py: | Michael Vogt | 1 | -42/+13 | |
| - update to reflect the current features | |||||
| 2008-01-04 | * use the new CacheFile::ListUpdate() code | Michael Vogt | 1 | -0/+13 | |
| * add example in doc/examples/update.py | |||||
| 2007-09-14 | * doc/examples/acquire.py | Michael Vogt | 1 | -2/+1 | |
| - add actiongroup to example | |||||
| 2007-09-04 | * python/metaindex.cc: | Michael Vogt | 1 | -0/+15 | |
| - added support for the metaIndex objects * python/sourceslist.cc: - support new "List" attribute that returns the list of metaIndex source entries | |||||
| 2007-06-28 | * python/package.py: | Michael Vogt | 1 | -0/+12 | |
| - added Record class that can be accessed like a dictionary and return it in candidateRecord and installedRecord (thanks to Alexander Sack for discussing this with me) * doc/examples/records.py: - added example how to use the new Records class | |||||
| 2007-06-10 | * merged translated package descriptions branch | Michael Vogt | 1 | -0/+25 | |
| 2006-10-02 | * progress.cc: | Michael Vogt | 1 | -1/+1 | |
| - fix memleak in progress.cc * tests/memleak.py: - uncomment the mem-leak code * doc/examples/sources.py: - improved the example | |||||
| 2006-09-12 | * apt/progress.py: | Michael Vogt | 1 | -4/+1 | |
| - use select() when waiting for child input | |||||
| 2006-08-03 | * basic ddtp support added | Michael Vogt | 1 | -0/+25 | |
| 2006-06-09 | * changelog updated | Michael Vogt | 2 | -1/+23 | |
| * prints_uris.py example added | |||||
| 2006-04-26 | * added a simple "all_deps" recursive example | Michael Vogt | 1 | -0/+34 | |
| 2006-03-22 | * add PkgSrcRecords.Index to the code | Michael Vogt | 1 | -1/+1 | |
| 2006-03-22 | * added indexFile.ArchiveURI(string) | Michael Vogt | 1 | -0/+1 | |
| 2006-03-22 | * fixes for the pkgSrcRecords code | Michael Vogt | 2 | -1/+7 | |
