4
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 20 hours ago. based on code collected about 20 hours ago.
Jan 12, 2025 — Jan 12, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
added Iterable interface to Ref type More... over 16 years ago
renamed find_all to list_all, changed commit to use iterable interface in preparation for command changes More... over 16 years ago
Added base for all iteratable objects More... over 16 years ago
unified name of utils module, recently it was named util and utils in different packages More... over 16 years ago
tree: renamed content_from_string to _from_string to make it private. Removed tests that were testing that method More... over 16 years ago
tree: now behaves like a list with string indexing functionality - using a dict as cache is a problem as the tree is ordered, added blobs, trees and traverse method repo: remove blob function as blobs are created directly or iterated - primitve types should not clutter the repo interface More... over 16 years ago
test_base: Improved basic object creation as well as set hash tests More... over 16 years ago
repo.active_branch now returns a Head object, not a string More... over 16 years ago
IndexObjects are now checking their slots to raise a proper error message in case someone tries to access an unset path or mode - this information cannot be retrieved afterwards as IndexObject information is kept in the object that pointed at them. To find this information, one would have to search all objects which is not feasible More... over 16 years ago
refs now take repo as first argument and derive from LazyMixin to allow them to dynamically retrieve their objects Improved way commits are returned by refs as they now use the path to be sure they always point to the ref even if it changes - previously it would use the sha intead so it would not update after being cached on the ref object More... over 16 years ago
renamed from_string and list_from_string to _from_string and _list_from_string to indicate their new status as private method, adjusted all callers respectively More... over 16 years ago
Reorganized package structure and cleaned up imports More... over 16 years ago
Merge branch 'hierarchyfix' into improvements More... over 16 years ago
Added remaining tests for new base classes and removed some methods whose existance was doubtful or unsafe More... over 16 years ago
Fixed remaining tests to deal with the changes mode is now generally an int compatible to the stat module More... over 16 years ago
commit: fixed failing commit tests as the mocked git command would always return the same thing which does not work anymore - re-implemented it in a more dynamic manner, but in the end tests will have to be revised anyway Added slots to Diff and Stats type respectively More... over 16 years ago
mode-only change for test system - this should be in a separate repository in fact so that changes are a little more self-contained and not depending on the actual source repository More... over 16 years ago
fixed issue in Ref.name implementation which would not handle components properly More... over 16 years ago
lazymixin system now supports per-attribute baking, it is up to the class whether it bakes more. This also leads to more efficient use of memory as values are only cached and set when required - the baking system does not require an own tracking variable anymore, and values are only to be cached once - then python will natively find the cache without involving any additional overhead. This works by using __getattr__ instead of __get_attribute__ which would always be called More... over 16 years ago
put Tree and Blob onto a new base class suitable to deal with IndexObjects More... over 16 years ago
blob tests fixed to deal with changes to the Blob type More... over 16 years ago
converted all spaces to tabs ( 4 spaces = 1 tab ) just to allow me and my editor to work with the files properly. Can convert it back for releaes More... over 16 years ago
Re-designed the tag testing - it does not use fixtures anymore but dyamically checks the existance of tags within the repository - it basically tests the interface and checks that expected return types are actually returned More... over 16 years ago
Intermediate commit: commit,tree and blob objects now derive from object - test is in place which still fails on purpose. Need to integrate tags which can be objects or just a special form of a ref More... over 16 years ago
finished cleaning usage of regular expressions - they are now precompiled More... over 16 years ago
diff regex are now precompiled on class level, renamed a|b_blob to a|b_blob_id as it better reflects the actual value actor regex now precompiled on class level blob regex now precompiled on class level; made blame method more readable and faster although it can still be improved by making assumptions about the blame format and by reading the git command stream directly ( which is a general issue right now ) More... over 16 years ago
deriving NoSuchPathError from OSError as it relates to it very well More... over 16 years ago
Blob|Tree: renamed 'name' member to 'path', updated tests and changelog as it would make existing code incompatible in some places More... over 16 years ago
Merge branch 'doc_enhancements' into fixes More... over 16 years ago
improved repo documentation More... over 16 years ago