summaryrefslogtreecommitdiff
path: root/gitdb/db
Commit message (Collapse)AuthorAgeFilesLines
* Fixed remaining tests as far as possible/necessary before the actual work ↵fetch_n_pushSebastian Thiel2011-05-051-3/+0
| | | | starts. Oh my ...
* Fixed db/test_gitSebastian Thiel2011-05-053-5/+12
|
* First rename session, db/test_base.py works, but there is much more work to doSebastian Thiel2011-05-048-61/+60
|
* Moved plenty of code around to separate pure python implementation from ↵Sebastian Thiel2011-04-2911-310/+526
| | | | future ones. This will change plenty of imports, which still needs to be fixed. Fortunately, this is a good foundation for getting all the tests fixed one again. Another step is to make the tests more flexible by allowing to run them with different object database easily.
* First version with some working reference tests. The db implementation is ↵Sebastian Thiel2011-04-293-5/+324
| | | | still a mess, it really needs to be separated into interfaces and implementations, sorted by type , like pure, pygit(at some point) and so on. This would already allow database implementations to be mixed and matched. One further step to be taken another day would be to 'interfacify' object and reference types, so they could be replaced by different implementations as well including full isinstance support (as isinstance would only check for the base interface). To ease this, the interfaces would just keep their original names, but the implementation would move to types like PureObject, PureSymbolicReference, etc. etc
* Applied more fixes and an implementation for the RepositoryPathsMixin. This ↵Sebastian Thiel2011-04-293-30/+92
| | | | showed that we need to distinguish between plain object dbs with a respective interface and full repositories, which have references and remotes. Ideally, the ones that require only odbs use the odb member, others use the repo member
* Added RepositoryPathMixin as well as ConfigurationMixin. The first mentioned ↵Sebastian Thiel2011-04-262-10/+140
| | | | one still needs to be implemented, and integrated into type hierarchy to be actually useful. A test for the RepositoryPathsMixin would be required as well
* Fixed reference tests - symbolic refs now need to be created with a ↵Sebastian Thiel2011-04-262-5/+56
| | | | git_dir() providing repository. Currently there is no separate interface for this, which might have to be added at some point just for the sake of completeness
* Added ref implementation and tried to fix it so that it has a chance of ↵Sebastian Thiel2011-04-071-3/+7
| | | | running. Currently it requires an object implementation which will be ported next. None of the tests is expected to run yet.
* Added first scetch of a transport DB interface which should be enough to ↵Sebastian Thiel2011-04-042-2/+134
| | | | allow an own implementation of the git protocol without breaking clients. It also includes interfaces for the fetchinfo and pushinfo types
* preprended all modules with licensing informationSebastian Thiel2011-02-237-0/+28
|
* moved all relevant files into the gitdb folder.Sebastian Thiel2010-11-307-0/+1057
Submodule relinked to point to new github location, and moved as well