summaryrefslogtreecommitdiff
path: root/git/db/py/base.py
Commit message (Collapse)AuthorAgeFilesLines
* Autopep8 fixes with maximum line length 120Craig Northway2014-07-251-139/+139
|
* tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel2014-02-091-435/+435
| | | | Needs plenty of work
* Added basic frame for pygit2 - it just needs some basic methods to be ↵Sebastian Thiel2011-07-081-1/+3
| | | | implemented now - depending on the performance, it might actually receive some more work
* Removed cache in PureCompoundDB as it had the tendency to slow things down ↵Sebastian Thiel2011-07-071-29/+17
| | | | actually
* Initial version of the DulwichType inheritance. For now, it inherits ↵Sebastian Thiel2011-07-071-5/+14
| | | | | | everything from the existing implementation, but one by one things can be reimplmented to use dulwich. It also shows that py 2.6 is quite plagued from its new feature, which is actually a bug, as objects inability to accept any args makes mixins hard to use ...
* fixes python 2.6 compatibility issuesSebastian Thiel2011-07-051-2/+10
|
* First run in order to fix the remote handling. Cleaned up interfaces and ↵Sebastian Thiel2011-06-071-2/+3
| | | | figured out that the implementation really should be specific to the git command. This leaves the interface open for other implemntations which use a different way to provide feedback (as we do not make assumptions about the format of a feedback line)
* Fixed pure python implementation to run the default repository testsSebastian Thiel2011-05-301-8/+7
|
* git cmd implementation of repository appears to work, at least this is what ↵Sebastian Thiel2011-05-301-3/+6
| | | | the test suggests. Pure python implementation still has some trouble, but this should be very fixable
* Finished moving all repository methods to the respective interfaces and ↵Sebastian Thiel2011-05-301-1/+13
| | | | | | implementations. It seems theoretically work together now, although it clearly is much more complex than ever before. The repo package was slimmed down to being a module once again, which is only there for compatability actually
* Intermediate commit with quite some progress in order to put all extra ↵Sebastian Thiel2011-05-291-1/+73
| | | | methods on the default Repo implementation into interfaces or something that can be abstracted. It shows that it would indeed be good to keep the differentiation between Repositories which contain an object database as it is clearly easier to setup any combination of repositories that use git and those that do not, with just the addition of one more level of indirection. Lets see how it will end up
* Made repository paths methods a property to be compatible with the existing ↵Sebastian Thiel2011-05-101-15/+52
| | | | repo interface. Added submodule interface ... goal is to provide all of the extra repo functionality in custom interfaces
* Started to fix imports - tests still have no chance to work as database ↵Sebastian Thiel2011-05-061-1/+0
| | | | changed drastically. Now the actual work begins
* replaced all gitdb strings with gitSebastian Thiel2011-05-061-4/+4
|
* Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel2011-05-051-0/+351
Then the tests will need some work