summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-12-02allow for compression formats other than gz in the debian.tar files0.20091202_quilt-3.0Sean Finney2-2/+2
2009-12-02use "Debian-diff" as "type" for both 1.0 and 3.0 (quilt) formatsSean Finney1-1/+1
there doesn't really seem to be a reason to have it apart from identifying packages that are native and non-native.
2009-12-02store the patches in Quilt30Series without the dir nameSean Finney1-2/+2
2009-12-02initial support for source package format 3.0 (quilt)Sean Finney9-35/+154
the changes aren't as pretty as i'd like them to be, but i don't want to hold things up on mere aesthetic grounds and it seems to work anyway :)
2009-11-29add explicit ./ to reprepro confdirSean Finney1-1/+1
2009-11-29inject some zero-whitespace break characters in long version stringsSean Finney3-2/+7
2009-11-29remove another unused option: static_dirSean Finney1-1/+0
2009-11-29remove unused/obsolete config output_dirSean Finney2-6/+0
2009-11-12temporarily disable the body border attribute0.20091112_pre-quiltSean Finney1-1/+1
the large table is overflowing past the body element, and it looks like crap (at least in iceweasel). until the proper css/html foo is put in place the border is disabled.
2009-11-12add squeeze to the list of tracked releasesSean Finney2-1/+6
2009-10-26shuffle the logic in PackageCmd to allow exact matches for < 3 lettersSean Finney1-5/+8
2009-09-30Revert "oops, the length should be two not one"Sean Finney1-2/+1
This reverts commit 7bacd4e7b2f521be3d2bf6494547c60ddf2426b3. actually, it should be one.
2009-09-30oops, the length should be two not oneSean Finney1-1/+2
2009-09-30when no version is specified, do not cache PackageCmdSean Finney1-1/+2
2009-09-29some small notes in TODOSean Finney1-0/+18
2009-09-06oookay, really fix the latin-1/utf-8 problemSean Finney1-1/+5
the proper changes were reverted, the wrongly reverted had the revert reverted, and all is back to normal. move along, nothing to see here...
2009-09-06Revert "try both utf8 and latin-1 for contents in Patch constructor"Sean Finney1-5/+1
This reverts commit ee7e7301434b1cf8b3baa4d839fdbf2f05617e91.
2009-09-06Revert "Revert "remove some extra print statements that only cause problems""Sean Finney1-5/+5
This reverts commit a9ffd60188742f144d1a8d49f93b05f8e34c39d7. d'oh, i reverted the wrong commit. this re-adds the wrongly reverted commit.
2009-09-06proper fix for encoding/decoding errors in patch_view contentsSean Finney1-1/+1
this is the proper fix for the previous commit/revert.
2009-09-06Revert "remove some extra print statements that only cause problems"Sean Finney1-5/+5
This reverts commit c2ef848129e03d5486ff3d084d903a7ef7ea658b.
2009-09-06try both utf8 and latin-1 for contents in Patch constructorSean Finney1-1/+5
thanks to Raphael Geissert for catching this
2009-09-05remove some extra print statements that only cause problemsSean Finney1-5/+5
while some of them are printed only in the case of error, mod_wsgi doesn't allow sys.stdout access and therefore they're useless anyway.
2009-09-05switch <code> and <pre> order in patch view templateSean Finney1-2/+4
2009-09-04add mention of diffstat in required packagesSean Finney1-0/+1
2009-09-03add extra indicator config variable for compressed lists file.Sean Finney2-1/+7
2009-09-03also mention python-pysqlite2Sean Finney1-0/+1
2009-09-02add mention of python-profiler in READMESean Finney1-0/+1
2009-09-02move the profile/pstats import into run_profileSean Finney1-1/+1
this way if the app is being run on a machine that does not have python-profiler installed it will still function unless specifically told to profile.
2009-09-01update apache config to include WSGIDaemonProcess and friendsSean Finney1-0/+10
sample apache2 config now includes the various WSGI options needed to run as a dedicated user.
2009-09-01remove superflous import of DiffGzHandler from SourceArchiveSean Finney1-2/+0
2009-09-01track the size of the diff.gz file in DiffGzHandlerSean Finney1-0/+3
this can be used later to do things like pre-emptive caching of large files, etc.
2009-09-01consolidate profiling in pagehandler, removing duplicate codeSean Finney1-7/+11
2009-09-01initial implementation of selective output cachingSean Finney3-2/+101
the PackageCmd and PatchCmd classes are now cached on their first request. note that this is incomplete, as the PackageCmd is also currently used to print non-static information as well (when a package name doesn't find an exact match and it does a query).
2009-09-01small fixups to the pts index featureSean Finney2-10/+12
2009-09-01add new .gitignore masks for cache, profile and index filesSean Finney1-0/+3
2009-08-31even better profiling, new -o output cmdline optionSean Finney1-4/+8
use cProfile instead of profile, it's much faster and better as long as it doesn't need to be extended. the -o option redirects the output to the specified file, instead of printing it to stdout (or not printing it, both of which aren't very good for general testing/profiling purposes).
2009-08-31allow for pagehandler args to be passed on cmdlineSean Finney1-13/+29
2009-08-31initial support for profilingSean Finney1-3/+13
2009-08-31add simple getopt support to pagehandler.pySean Finney1-0/+15
while this isn't intended for mod_wsgi deployments, it opens up some new oppurtunities for cmdline testing (specifying a URL to avoid invoking the wsgiref server, enabling profiling, etc).
2009-07-26initial support for PTS index file generationSean Finney3-1/+52
a new option (-i) to ./gen-patch-info.py allows for generating a global "index" file with any and all information that the PTS might want from this system. The format is: { "index-version": N "packages": { "<pkg1>": { "url": url-for-all-versions "versions": { "<vers1>": { <various attributes> } } } } } index-version is a monotonically increasing version number. when the "schema" changes, this version is incremented. if we care enough, we can do a major-minor versioning scheme where BC breaks are differentiated from "new attribute" type changes by incrementing the major or minor versions, respectively.
2009-07-26changes to work with >> lenny versions of reprepro and python-debianSean Finney2-1/+23
reprepro now seems to default to passching the lists files uncompressed to the hook, so we deal with that gracefully either way. python-debian seems to have slightly changed how it handles some multiline fields due to starting to use the built-in apt_pkg module, see the comments in Conf.py which should point to the bug.
2009-07-26pass the patch tracker root via PYTHONPATH to repreproSean Finney1-2/+3
the diffsonly.py script called via reprepro needs to know where the patch tracker root is so that it can include configuration options from the same central location.
2009-07-26minor changes to required software in READMESean Finney1-8/+8
2009-07-21get README up to date with realitySean Finney1-19/+37
2009-02-12fail more gracefully if a diff.gz is missingsean finey2-3/+9
this should never happen in production as the database contains only a cache of what's on disk, but during testing on a system with the database and no archive, or in unexpected circumstances, it might be helpful to give a more informative error page.
2009-02-12add a base href to skeleton templatesean finey1-0/+1
2009-02-12updated apache conf for wsgiwsgisean finey1-9/+15
2009-02-12more gracefully find what should be the installation rootsean finey1-7/+5
2009-02-11mod_python -> wsgisean finey2-54/+77
i hear it's the new black. code change requirements weren't very big at all, and apparently this will work better/stabler on lenny systems, so...
2009-01-08d'oh. html validation fix for anchor name tagsSean Finney1-12/+8