<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitdb.git/gitdb/test, branch 0.5.3</title>
<subtitle>github.com: gitpython-developers/gitdb.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/'/>
<entry>
<title>Fixed up docs for upcoming release. Bumped version to 0.5.3</title>
<updated>2011-06-13T21:49:42+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-06-13T21:29:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=4524faf0d0c5383268b134084954b34faeaa766d'/>
<id>4524faf0d0c5383268b134084954b34faeaa766d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added changelog information</title>
<updated>2011-06-10T20:05:36+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-06-10T20:05:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=34f01396b913220fe5b19e1f8e33f2d3f4ec2ce5'/>
<id>34f01396b913220fe5b19e1f8e33f2d3f4ec2ce5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed _perf module, which built, but didn't link dynamically. All the time, I think it never successfully imported, but its hard to believe this slipped by.</title>
<updated>2011-03-31T21:40:10+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-03-31T21:40:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=0c7a3ec9829caa6632afd3e46901be67c63ae7fa'/>
<id>0c7a3ec9829caa6632afd3e46901be67c63ae7fa</id>
<content type='text'>
Added performance test for pack-writing, which isn't really showing what I want as it currently read data from a densly compressed pack which takes most of the time in the nearly pure python implementation. Compared to c++, all the measured performance is just below anything I'd want to use. But we shouldn't forget this is just a test implementation, writing packs is quite simple actually, if you leave out the delta compression part and the delta logic
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added performance test for pack-writing, which isn't really showing what I want as it currently read data from a densly compressed pack which takes most of the time in the nearly pure python implementation. Compared to c++, all the measured performance is just below anything I'd want to use. But we shouldn't forget this is just a test implementation, writing packs is quite simple actually, if you leave out the delta compression part and the delta logic
</pre>
</div>
</content>
</entry>
<entry>
<title>crc needs to be done on the pack object header as well, of course</title>
<updated>2011-03-31T18:27:44+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-03-31T18:27:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=184a776960efdc2a83eac571c9c046ffcee3e7c8'/>
<id>184a776960efdc2a83eac571c9c046ffcee3e7c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implemented remainder of the test, and it already shows that something is wrong with my packs. Probably something stupid ;)</title>
<updated>2011-03-31T16:49:22+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-03-31T16:49:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=98a19ac1986b623277098263f01696827567c584'/>
<id>98a19ac1986b623277098263f01696827567c584</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>initial version of pack writing, which seems to work, but still needs some more testing and verification</title>
<updated>2011-03-31T16:01:05+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-03-31T16:01:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=e83210d99aaac5768827c448909fa04d63776e64'/>
<id>e83210d99aaac5768827c448909fa04d63776e64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added stub for pack writing implementation which should work for pack streaming over a transport as well</title>
<updated>2011-03-31T09:08:26+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-03-31T09:08:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=810d1e38315c6e886c1daef93670840b213ee78a'/>
<id>810d1e38315c6e886c1daef93670840b213ee78a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>preprended all modules with licensing information</title>
<updated>2011-02-22T23:43:31+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2011-02-22T23:43:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=df570f00f611073a20796128ca167474aa7826fc'/>
<id>df570f00f611073a20796128ca167474aa7826fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed unittests</title>
<updated>2010-11-30T22:45:49+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2010-11-30T22:45:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=0300d0d6c4af63257d094813ceaab2302906680c'/>
<id>0300d0d6c4af63257d094813ceaab2302906680c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>moved all relevant files into the gitdb folder.</title>
<updated>2010-11-30T22:24:07+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2010-11-30T22:24:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitdb.git/commit/?id=9fbc59da76b15cecb1ee37a8e48617fab58a077c'/>
<id>9fbc59da76b15cecb1ee37a8e48617fab58a077c</id>
<content type='text'>
Submodule relinked to point to new github location, and moved as well
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submodule relinked to point to new github location, and moved as well
</pre>
</div>
</content>
</entry>
</feed>
