Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-07-05 | remove update trigger for package_rel_maps | Sean Finney | 1 | -10/+0 | |
since now we "mark" new package relationss (which is necessary for removing old relations), remove the update trigger, which would otherwise end up deleting everything in the database... | |||||
2008-07-05 | use a "marked" field to catch stale/removed pkgs | Sean Finney | 2 | -3/+9 | |
2008-07-05 | no such thing as varchar in sqlite | Sean Finney | 1 | -1/+1 | |
2008-07-01 | slightly better breadcrumbs in header | Sean Finney | 2 | -13/+11 | |
2008-07-01 | left-align diffstat info | Sean Finney | 1 | -0/+1 | |
2008-06-28 | shrink the diffstat info a bit | Sean Finney | 2 | -1/+6 | |
2008-06-28 | force -p1 for diffstat generation | Sean Finney | 1 | -2/+2 | |
2008-06-28 | remove superfluous diffgz in summary | Sean Finney | 1 | -6/+0 | |
it shows up in the next table below if it exists, anyway. | |||||
2008-06-28 | fix a long overdue XXX wrt diffgz's in pagehandler | Sean Finney | 2 | -21/+15 | |
2008-06-28 | minor template touchups / fixes | Sean Finney | 3 | -3/+13 | |
2008-06-28 | add copyright blah and git links at page bottom | Sean Finney | 2 | -0/+19 | |
2008-06-28 | xhtml compliance: esc. [^a-zA-Z0-9-] from <a name> | Sean Finney | 2 | -5/+10 | |
2008-06-28 | superfluous css change | Sean Finney | 1 | -0/+1 | |
2008-06-28 | make summary a little more compact | Sean Finney | 1 | -9/+7 | |
2008-06-28 | strip surrounding ws from diffstat output | Sean Finney | 1 | -1/+1 | |
2008-06-28 | mostly aesthetic changes and initial "breadcrumbs" | Sean Finney | 5 | -122/+182 | |
2008-06-28 | don't bother sorting package entries when parsing | Sean Finney | 1 | -3/+1 | |
no reason to, assuming i make a better way to track progress. | |||||
2008-06-28 | have a "slightly" more efficient frontpage query | Sean Finney | 4 | -6/+19 | |
2008-06-28 | db "optimizations" fsvo "optimization" | Sean Finney | 2 | -23/+24 | |
stop the voodoo with home-rolled "auto increment" type stuff. also, use sqlite "extensions" for conflict resolution (in schema for all but the source package table, which has it in saveSourcePackage), so that we don't need to check for pre-existing records. the "OR REPLACE" was doing this previously, but had wierd effects with modifying the primary key, which would cause db inconsistency and *really* wierd effects when combined with the triggers). | |||||
2008-06-28 | properly filter on suite/pkg when creating Archive | Sean Finney | 1 | -3/+1 | |
2008-06-28 | key fixup, pkg index, remove blank rows from sql | Sean Finney | 1 | -9/+7 | |
2008-06-28 | remove need for initial empty rows, fix syntax err | Sean Finney | 1 | -4/+4 | |
2008-06-26 | slightly refine the package results handling | Sean Finney | 1 | -1/+2 | |
2008-06-26 | whoops, forgot to add searchresults template | Sean Finney | 1 | -0/+34 | |
2008-06-26 | package search / versionless implementation | Sean Finney | 4 | -52/+61 | |
going to /packages/pkg now gives a table of contents with the available versions for the package, or the results of a widers search in the case of no exact matches also removed a bunch of dead code from DB mostly | |||||
2008-06-26 | add new collection row factory, query cleanup | Sean Finney | 2 | -42/+37 | |
2008-06-26 | don't use html backtrace for cmdline testing | Sean Finney | 1 | -1/+3 | |
2008-06-25 | cleanup/reorganize pagehandler command handling | Sean Finney | 1 | -77/+103 | |
2008-06-25 | fix broken downloads from patch view page | Sean Finney | 3 | -16/+18 | |
2008-06-25 | frontpage rework and quick/dirty jump form | Sean Finney | 4 | -14/+34 | |
2008-06-24 | modify relateSourcePackage to take package/version | Sean Finney | 2 | -5/+5 | |
...instead of a source package, which should remove an extra query and also allow changing the behaviour for findSourcePackage later on as well | |||||
2008-06-24 | add package anchor in toc | Sean Finney | 1 | -0/+1 | |
2008-06-24 | remove debug printing cruft for db bootstrapping | Sean Finney | 1 | -1/+0 | |
2008-06-24 | fix for direct patches in subdirs | Sean Finney | 1 | -1/+1 | |
2008-06-24 | strip epoch before looking for diff.gz file | Sean Finney | 1 | -2/+6 | |
2008-06-24 | remove suite info from packagevers template etc | Sean Finney | 3 | -5/+4 | |
the suite isn't readily available, and doesn't make much sense anyway since a single package/version can be shared in multiple suites. | |||||
2008-06-24 | add support for displaying "direct" changes | Sean Finney | 4 | -6/+39 | |
i.e. changes made directly to files (not using any patching system and not underneath ./debian) also introduce new Diffstat class for mangling diff stats in various ways. | |||||
2008-06-24 | slightly smarter frontpage handling | Sean Finney | 1 | -2/+3 | |
2008-06-24 | remove Writers, move to templates to Templates | Sean Finney | 3 | -36/+3 | |
2008-06-24 | slightly optimize query logic w/ INSERT OR REPLACE | Sean Finney | 1 | -26/+11 | |
2008-06-24 | remove hardcoded url assumptions | Sean Finney | 2 | -15/+13 | |
pagehandler now parses commands relative to Conf.root_url (which really should be called something else, like Conf.base_dir), allowing for both flexible subdir-based installs and vhost based installs. | |||||
2008-06-24 | reference static content from unique path | Sean Finney | 2 | -3/+2 | |
...so we can alias it directly, which should allow for the cleanest subdir vs. vhost support | |||||
2008-06-23 | don't declare ArchiveDiffer with empty parent | Sean Finney | 1 | -1/+1 | |
2008-06-23 | split up generator and parsing logic in Archive | Sean Finney | 1 | -5/+68 | |
also introduce a singleton-like ArchiveDiffer class. the idea is to eventually minimize the number of db queries and speed up the archive<->database sync. | |||||
2008-06-22 | big commit with db and cgi handling updates | Sean Finney | 11 | -122/+402 | |
i know it's bad form to lump this all together. oh well :p gen-patch-info now does very little besides processing packages and updating the relevant database entries. pretty much everything else is dynamically generated from pagehandler.py now. | |||||
2008-06-22 | add *.db to gitignore, to ignore the sqlite db(s) | Sean Finney | 1 | -0/+1 | |
2008-06-11 | saving some work on sqlite related stuff | Sean Finney | 2 | -0/+72 | |
2008-06-11 | omit displaying info for empty patches | Sean Finney | 1 | -2/+4 | |
2008-06-11 | further cgi related fixes | Sean Finney | 4 | -4/+18 | |
2008-06-11 | initial stab at cgi-based patch generation | Sean Finney | 6 | -1/+123 | |
complete with many ugly hacks to workaround the lack of an underlying database. hopefully it's all marked with XXX for later fixing :) does not cover all patch cases, in fact currently it only covers series patch viewing and downloading. |