| Commit message (Expand) | Author | Age | Files | Lines |
| * | Added fixes to setup.py to allow easy_installation0.5.0 | Sebastian Thiel | 2010-07-08 | 2 | -1/+56 |
| * | Fixed bug caused by incorrect comparison of 'filled-up' binary shas, as it wo... | Sebastian Thiel | 2010-07-07 | 6 | -21/+49 |
| * | Moved partial_to_complete_sha_hex from gitdb to compounddb, its fitting there... | Sebastian Thiel | 2010-07-07 | 3 | -60/+68 |
| * | Added method to obtain a full sha from a partial sha, for each of the databas... | Sebastian Thiel | 2010-07-07 | 9 | -7/+211 |
| * | PackEntity: fixed capital bug which would cause a None to be in place of the ... | Sebastian Thiel | 2010-07-06 | 3 | -3/+9 |
| * | Win32 compatability adjustments. One performance test fails during shutdown a... | Sebastian Thiel | 2010-07-02 | 5 | -5/+33 |
| * | Removed obsolete makefile, to compile the extension, use ./setup build_ext an... | Sebastian Thiel | 2010-07-01 | 1 | -12/+0 |
| * | added setup.py and Manifest to allow distribution and easy_install | Sebastian Thiel | 2010-07-01 | 6 | -1/+49 |
| * | Merge branch 'docs' | Sebastian Thiel | 2010-06-30 | 14 | -42/+707 |
| |\ |
|
| | * | Added a minimal documentation, including a quick usage guide | Sebastian Thiel | 2010-06-30 | 5 | -10/+197 |
| | * | Added auto-doc api reference and fixed plenty of docstrings | Sebastian Thiel | 2010-06-30 | 12 | -43/+218 |
| | * | Added empty version of gitdb documentation | Sebastian Thiel | 2010-06-30 | 3 | -0/+303 |
| |/ |
|
| * | Fixed critical bug that could cause single bytes not to be returned in reads ... | Sebastian Thiel | 2010-06-29 | 4 | -7/+15 |
| * | Merge branch 'sha20' | Sebastian Thiel | 2010-06-25 | 13 | -93/+85 |
| |\ |
|
| | * | gitdb now uses 20 byte shas internally only, reducing the need to convert sha... | Sebastian Thiel | 2010-06-25 | 13 | -93/+85 |
| |/ |
|
| * | CompoundDB: implemented simple dict base first-level cache which really helps... | Sebastian Thiel | 2010-06-25 | 8 | -8/+64 |
| * | Fixed critical issues with incorrect permissions set on files the db has writ... | Sebastian Thiel | 2010-06-24 | 2 | -0/+9 |
| * | Index and PackFiles do not obtain a lock anymore before reading the files in ... | Sebastian Thiel | 2010-06-24 | 3 | -13/+27 |
| * | Removed redunant code due to parital reimplementation of a file descriptor st... | Sebastian Thiel | 2010-06-24 | 5 | -49/+58 |
| * | MemoryDB: Implemented direct stream copy, allowing to flush memory db content... | Sebastian Thiel | 2010-06-22 | 5 | -25/+107 |
| * | Added MemoryDB including initial test, moved ZippedShaWriter into stream modu... | Sebastian Thiel | 2010-06-22 | 8 | -25/+169 |
| * | Implemented gitdb, it should be a fully functional git database with full rea... | Sebastian Thiel | 2010-06-20 | 7 | -25/+131 |
| * | Base implementation and stubs added for git-like db, as well as the reference... | Sebastian Thiel | 2010-06-18 | 12 | -62/+258 |
| * | Merge branch 'pack' | Sebastian Thiel | 2010-06-18 | 27 | -328/+2239 |
| |\ |
|
| | * | Added endurance run to check all objects in the git source repository, someth... | Sebastian Thiel | 2010-06-18 | 2 | -4/+28 |
| | * | Added initial test for putting some often-called functions into an extension ... | Sebastian Thiel | 2010-06-18 | 4 | -0/+124 |
| | * | Removed data-offset field from PackInfo as it is not needed in most cases. In... | Sebastian Thiel | 2010-06-18 | 5 | -35/+29 |
| | * | removed some extra checks in apply-delta which are indeed not required | Sebastian Thiel | 2010-06-18 | 2 | -10/+3 |
| | * | delta-apply now works after fixing a stupid type, instead of i + 1 I wrote i ... | Sebastian Thiel | 2010-06-18 | 3 | -19/+28 |
| | * | PackedDB: added sha_iter and size methods, these should move to the ObjectDBR... | Sebastian Thiel | 2010-06-17 | 4 | -15/+84 |
| | * | Implemented basic info and stream retrieval as well as pack file handling of ... | Sebastian Thiel | 2010-06-17 | 4 | -19/+193 |
| | * | Sha1 verification works as well, forgot to fill in the base buffer for delta-... | Sebastian Thiel | 2010-06-17 | 4 | -5/+14 |
| | * | CRC verification already works for all packs, sha1 still needs some work, pro... | Sebastian Thiel | 2010-06-17 | 2 | -22/+67 |
| | * | Initial implementation of stream validation - this is the final hurdle, if th... | Sebastian Thiel | 2010-06-17 | 5 | -40/+146 |
| | * | Implemented main PackEntity object retrieval method and moved constructor for... | Sebastian Thiel | 2010-06-17 | 4 | -40/+165 |
| | * | initial version of delta-apply, but more pedandic testing is required | Sebastian Thiel | 2010-06-17 | 4 | -20/+188 |
| | * | initial research on possible delta-apply algorithms. True streaming appears o... | Sebastian Thiel | 2010-06-17 | 3 | -3/+86 |
| | * | Implemented offset based pack object collection including test, next up is th... | Sebastian Thiel | 2010-06-16 | 5 | -75/+191 |
| | * | implemented direct pack reading - currently not all information is passed on,... | Sebastian Thiel | 2010-06-16 | 4 | -26/+92 |
| | * | DecompressMemMapReader: improved compressed_bytes_read method with alternate ... | Sebastian Thiel | 2010-06-16 | 1 | -7/+15 |
| | * | DecompressMemMapReader: implemented compressed bytes counting, including test... | Sebastian Thiel | 2010-06-16 | 4 | -49/+81 |
| | * | moved all info and stream base classes into new module, base, as well as the ... | Sebastian Thiel | 2010-06-16 | 9 | -345/+461 |
| | * | Initial version of a pack design that should be able to solve the problem nicely | Sebastian Thiel | 2010-06-15 | 5 | -42/+298 |
| | * | index: added tests for reading version 1 index files | Sebastian Thiel | 2010-06-15 | 4 | -10/+19 |
| | * | index reading from V2 index files implemeneted and tested. | Sebastian Thiel | 2010-06-15 | 8 | -13/+297 |
| | * | Added basic frame for packfile implementation and testing, as well as the tes... | Sebastian Thiel | 2010-06-15 | 9 | -2/+103 |
| |/ |
|
| * | Added LockedFD class including test, it moved 'down' from git-python | Sebastian Thiel | 2010-06-15 | 2 | -1/+221 |
| * | update db test to allow testing of individual database types, giving more fin... | Sebastian Thiel | 2010-06-14 | 3 | -17/+27 |
| * | Made the db module a package to have enough room for expansion | Sebastian Thiel | 2010-06-14 | 7 | -213/+249 |
| * | Now using the async zlib module if it is available to allow performance gains... | Sebastian Thiel | 2010-06-13 | 7 | -9/+21 |