summaryrefslogtreecommitdiff
path: root/src/generic/controllers
AgeCommit message (Collapse)AuthorFilesLines
2012-05-11Support really big files in the download systemDaniel Hartwig1-8/+8
This follows recent changes in apt which added support for files greater than several gigabytes in size -- using the 'unsigned long long' type to store the file size. Changelog download is restored as a result of this. Closes: #669569 LP: #824708
2011-05-14Remove old cruft from Makefile.am files.Daniel Burrows1-1/+1
Also fixes a type: EXTRA_DEST -> EXTRA_DIST.
2011-04-02Nuke the scons build scripts.Daniel Burrows1-10/+0
These never worked out as well as I intended, and all indications were that they would be a maintenance burden...or just bitrot. Fully parallel builds are nice, but my builds are pretty quick on my 8-core box even with the artificial chokepoints that automake induces.
2010-07-10Force the current progress to be updated after a new file starts to download.Daniel Burrows1-0/+2
Without this, the progress indicator would sometimes disappear for a tick.
2010-07-10Make download_status_display part of the command-line code.Daniel Burrows1-20/+7
It's really just a hack to break the command-line implementation up in a way that's more amenable to unit-testing; it doesn't belong in the generic view interface.
2010-07-10Write a controller for the download progress view based on Acquire.Daniel Burrows3-0/+382
This code does the appropriate digging to extract structured download information from Acquire and pass it to the view.
2010-07-03Move the search input controller and view classes over to generic/.Daniel_Burrows@alumni.brown.edu5-0/+308
As a side effect, this creates a "controllers" directory in the generic tree, and removes the now-empty GTK+-specific controller and view directories. The README files are moved over to the generic locations and tweaked to be correct for their new home.