jelmer/dulwich-libgit2.git
14 years agoAdd some basic tests for fastexport.
Jelmer Vernooij [Thu, 15 Apr 2010 14:55:47 +0000 (16:55 +0200)]
Add some basic tests for fastexport.

14 years agoMerge trunk.
Jelmer Vernooij [Thu, 15 Apr 2010 14:09:30 +0000 (16:09 +0200)]
Merge trunk.

14 years agoCorrectly avoid parsing ShaFiles with fixed SHAs when calling sha().
Dave Borowitz [Mon, 8 Mar 2010 18:47:05 +0000 (10:47 -0800)]
Correctly avoid parsing ShaFiles with fixed SHAs when calling sha().

This required some reworking of the _needs_* and _sha ivars. Improved
check() to force computing the SHA and verifying that it matches the
previously-set value. Added a test for this check.

Change-Id: I6782693d7d7708bc7c28f357c27419d51409b884

14 years agoFix Blob._deserialize.
Jelmer Vernooij [Wed, 14 Apr 2010 22:36:46 +0000 (00:36 +0200)]
Fix Blob._deserialize.

14 years agoMake ShaFiles created from files trust their filenames.
Dave Borowitz [Thu, 4 Mar 2010 23:37:24 +0000 (15:37 -0800)]
Make ShaFiles created from files trust their filenames.

This adds a dummy FixedSha class that implements the read-only part
of hashlib's hash interface but does not actually compute a SHA-1
digest. This allows us to assign ids to file objects based on their
filename rather than requiring a read of the whole file; SHA-1s will
soon be checked during check().

Added a filename_to_sha helper function to objects.py; refactored the
opposite sha_to_filename functionality into this file as well for
parallelism and testing. As a side effect, reorganized some files in
tests/data to have the normal 2/38 filename structure.

Change-Id: Ic459628aec32a92e29ea49cfd6cbe685053971ef

14 years agoLazily read the contents of ShaFiles from disk.
Dave Borowitz [Thu, 4 Mar 2010 20:39:40 +0000 (12:39 -0800)]
Lazily read the contents of ShaFiles from disk.

Previously, ShaFile.from_file read and inflated the entire contents of a
ShaFile, storing the inflated text in memory. Parsing that text was done
lazily, but this resulted in a confusing performance profile, since the
"lazy" part was in fact faster (memory/CPU-bound) than the eager part
(I/O-bound).

This change ensures that a file is only read fully from disk right
before it is about to be parsed. The first few bytes are still read
from disk to get the file type, but there is no need to slurp the
whole file. Moreover, we now maintain a distinction between ShaFiles
that are initialized from (possibly raw) strings and files initialized
with filenames. In order to parse the contents of a file, we need to
have one or the other. There is a third category of ShaFiles that
should never be parsed, where all the properties are intended to be set
explicitly (usually (but not always) during testing). These objects are
created as usual via __init__.

The tests all pass, but we do not currently have a way of testing the
point at which the implementation reads the whole file from disk.

Also, note that a call to foo.id still results in reading the whole file
and calculating its SHA-1; this behavior may change in the future.

Change-Id: Ib9f67ead0d2a812a2e43cffa54c37a1c4a219841

14 years agoCheck tag and commit objects for duplicate and out-of-order headers.
Dave Borowitz [Sat, 27 Feb 2010 19:29:44 +0000 (11:29 -0800)]
Check tag and commit objects for duplicate and out-of-order headers.

This requires factoring out the commit/tag parsing code so it can be
used directly from both the _parse_text and check methods. The parse
methods yield tuples, which can either be used to set members or
check for ordering.

Change-Id: I5ffe47100273912eaa283d03332286287b109a13

14 years agoAdd TESTFLAGS variable to Makefile to make running nosetests easier.
Dave Borowitz [Fri, 5 Mar 2010 21:16:09 +0000 (13:16 -0800)]
Add TESTFLAGS variable to Makefile to make running nosetests easier.

Change-Id: I7d94577883ad0805281bcac0003df964bfd05cdc

14 years agoAdd launchpad link.
Jelmer Vernooij [Tue, 13 Apr 2010 23:22:43 +0000 (01:22 +0200)]
Add launchpad link.

14 years agoFix whitespace bug in dul-web.
Dave Borowitz [Mon, 12 Apr 2010 22:09:09 +0000 (00:09 +0200)]
Fix whitespace bug in dul-web.

Had a tab that was syntactically correct, but since python treats tabs
as 8 spaces rather than 4 it resulted in incorrect behavior.

14 years agoMerge pack protocol receiver fix.
Jelmer Vernooij [Sun, 11 Apr 2010 01:01:04 +0000 (03:01 +0200)]
Merge pack protocol receiver fix.

14 years agoAdd DiskObjectStore.init.
Jelmer Vernooij [Sun, 11 Apr 2010 00:43:17 +0000 (02:43 +0200)]
Add DiskObjectStore.init.

14 years agotest_object_store: use temp dirs instead of 'foo'
Tay Ray Chuan [Sun, 11 Apr 2010 00:29:21 +0000 (02:29 +0200)]
test_object_store: use temp dirs instead of 'foo'

14 years agoclient: don't assume server response is of length 20 rc-fix-pack-protocol-v2
Tay Ray Chuan [Sun, 4 Apr 2010 14:58:31 +0000 (22:58 +0800)]
client: don't assume server response is of length 20

We do not for sure the length; it is safer to use
Protocol.read_pkt_line().

Also, handle HangupException if read_pkt_line() raises it. This happens
when talking to old versions of git-daemon (v1.6.6.1-26-g38a81b4), where
there won't be anything to read.

14 years agoObjectStoreGraphWalker.ack: use non-recursive implementation
Tay Ray Chuan [Fri, 9 Apr 2010 23:36:28 +0000 (01:36 +0200)]
ObjectStoreGraphWalker.ack: use non-recursive implementation

We were recursively removing from self.heads; rewrite this such we try
removing heads this in a loop.

This gives a nice performance boost.

14 years agoUse datetime.utcfromtimestamp() in tests.
Dave Borowitz [Fri, 9 Apr 2010 22:39:12 +0000 (00:39 +0200)]
Use datetime.utcfromtimestamp() in tests.

datetime.fromtimestamp() has the confusing behavior of treating the
timestamp as a UTC time and then converting to local time, but not
setting the tzinfo member. As a result, the function returns different
values depending on the local timezone, which makes it hard to write a
test that passes everywhere.

The output of datetime.utcfromtimestamp() is stable across all
timezones, which is all we really need for tests. (Returning sensible
datetime objects from the Commit/Tag API would require substantially
more work, but that is not fixed in this change.)

Tested in both US-Pacific and US-Eastern.

14 years agoPreserve '-' sign when -0000 is stored for the timezone in a commit/tag.
Jelmer Vernooij [Thu, 8 Apr 2010 22:29:32 +0000 (00:29 +0200)]
Preserve '-' sign when -0000 is stored for the timezone in a commit/tag.

14 years agoAdd Tree.__iter__.
Jelmer Vernooij [Thu, 8 Apr 2010 20:01:45 +0000 (22:01 +0200)]
Add Tree.__iter__.

14 years agoCope with \r in ref files on Windows.
Jelmer Vernooij [Wed, 7 Apr 2010 11:01:22 +0000 (13:01 +0200)]
Cope with \r in ref files on Windows.

14 years agoAvoid relying on PST for passing the testsuite.
Jelmer Vernooij [Thu, 8 Apr 2010 01:22:09 +0000 (03:22 +0200)]
Avoid relying on PST for passing the testsuite.

14 years agoEnsure we don't run past the end of the tree text.
Dave Borowitz [Thu, 8 Apr 2010 01:05:05 +0000 (03:05 +0200)]
Ensure we don't run past the end of the tree text.

We use strnlen so we can find namelen even if the buffer is truncated
in the name. This is not necessary for Python string objects, which are
guaranteed to be null-terminated, but some buffer objects (e.g. mmap)
may not be.

14 years agoRemove unused import, always ensure that objects is serialized before running check().
Jelmer Vernooij [Thu, 8 Apr 2010 01:02:15 +0000 (03:02 +0200)]
Remove unused import, always ensure that objects is serialized before running check().

14 years agoAdd check() methods to object classes for consistency checking.
Dave Borowitz [Thu, 8 Apr 2010 00:55:09 +0000 (02:55 +0200)]
Add check() methods to object classes for consistency checking.

These roughly mirror the parts of git fsck that deal with object
well-formedness, including checking the presence of required headers,
formatting of author/committer names, tree ordering, and so on. This
change does *not* include consistency checks that require touching other
objects; those will go in ObjectStore.

Note that currently many types of errors will still be raised during
object parsing proper, such as ValueErrors when trying to parse invalid
integers. In the check() method, any such exceptions are caught and
wrapped in an ObjectFormatException. The separate codepath also gives
us a place to put these checks if we decide to optimize them out of the
main object-parsing codepath.

14 years agoRename set_ref -> set_symbolic_ref.
Jelmer Vernooij [Mon, 5 Apr 2010 22:57:43 +0000 (00:57 +0200)]
Rename set_ref -> set_symbolic_ref.

14 years agoAvoid writing to stdout.
Jelmer Vernooij [Mon, 5 Apr 2010 22:29:30 +0000 (00:29 +0200)]
Avoid writing to stdout.

14 years agoFix import of NotTagError.
Jelmer Vernooij [Mon, 5 Apr 2010 19:59:47 +0000 (21:59 +0200)]
Fix import of NotTagError.

14 years agoDefine common TestSkipped exception so it's easier to swap out later for
Jelmer Vernooij [Mon, 5 Apr 2010 19:52:49 +0000 (21:52 +0200)]
Define common TestSkipped exception so it's easier to swap out later for
something nose-specific.

14 years agoChange parse_tree to return a list rather than a dict.
Dave Borowitz [Mon, 5 Apr 2010 19:48:27 +0000 (21:48 +0200)]
Change parse_tree to return a list rather than a dict.

For future consistency checks, we will need to ensure that objects in
the tree are stored in sorted order when we parse the tree, so it makes
sense to be able to reuse parse_tree for this purpose.

Also added tests for both the C and Python versions of parse_tree. To
do this in one test run, we also need to hold onto the pure-python
implementation before importing the C version if available.

14 years agocgi.parse_qs is deprecated in favor of urlparse.parse_qs in python 2.6,
Dave Borowitz [Mon, 5 Apr 2010 19:37:17 +0000 (21:37 +0200)]
cgi.parse_qs is deprecated in favor of urlparse.parse_qs in python 2.6,
but the function in urlparse doesn't exist in earlier versions.

14 years agoFix imports.
Jelmer Vernooij [Mon, 5 Apr 2010 19:29:02 +0000 (21:29 +0200)]
Fix imports.

14 years agoMerge Dave's fixes for the compatibility tests and web.
Jelmer Vernooij [Sat, 3 Apr 2010 18:26:51 +0000 (20:26 +0200)]
Merge Dave's fixes for the compatibility tests and web.

14 years agoUpdate servers and compat tests to work with DictBackends.
Dave Borowitz [Sat, 3 Apr 2010 18:18:12 +0000 (20:18 +0200)]
Update servers and compat tests to work with DictBackends.

14 years agoAvoid seek when loading pack index files.
Jelmer Vernooij [Sat, 3 Apr 2010 16:37:50 +0000 (18:37 +0200)]
Avoid seek when loading pack index files.

14 years agoSimplify apply_pack call.
Jelmer Vernooij [Sat, 3 Apr 2010 16:25:04 +0000 (18:25 +0200)]
Simplify apply_pack call.

14 years agoRemove GitBackendRepo, use plain Repo's instead.
Jelmer Vernooij [Sat, 3 Apr 2010 15:49:44 +0000 (17:49 +0200)]
Remove GitBackendRepo, use plain Repo's instead.

14 years agoMove apply_pack to ReceivePackHandler, so a server backend repo is a strict subset...
Jelmer Vernooij [Sat, 3 Apr 2010 15:43:39 +0000 (17:43 +0200)]
Move apply_pack to ReceivePackHandler, so a server backend repo is a strict subset of Repo.

14 years agoUse property to access commit parents.
Jelmer Vernooij [Sat, 3 Apr 2010 15:39:50 +0000 (17:39 +0200)]
Use property to access commit parents.

14 years agoFix dul-daemon.
Jelmer Vernooij [Sat, 3 Apr 2010 01:36:31 +0000 (03:36 +0200)]
Fix dul-daemon.

14 years agoIf git is available on the local machine, always run the compatibility tests so I...
Jelmer Vernooij [Sat, 3 Apr 2010 00:43:57 +0000 (02:43 +0200)]
If git is available on the local machine, always run the compatibility tests so I don't break stuff again.

14 years agoFix use of git backend.
Jelmer Vernooij [Fri, 2 Apr 2010 23:58:56 +0000 (01:58 +0200)]
Fix use of git backend.

14 years agoSome trivial formatting fixes.
Jelmer Vernooij [Fri, 2 Apr 2010 23:46:59 +0000 (01:46 +0200)]
Some trivial formatting fixes.

14 years agomerge support for custom get_peeled function in server.
Jelmer Vernooij [Fri, 2 Apr 2010 19:30:13 +0000 (21:30 +0200)]
merge support for custom get_peeled function in server.

14 years agoimplement chunked version of ShaFile.as_legacy_object.
Jelmer Vernooij [Fri, 2 Apr 2010 14:07:33 +0000 (16:07 +0200)]
implement chunked version of ShaFile.as_legacy_object.

14 years agoUse open_repository to find repository for get_peeled.
Jelmer Vernooij [Fri, 2 Apr 2010 02:45:54 +0000 (04:45 +0200)]
Use open_repository to find repository for get_peeled.

14 years agoSupport progress argument to generate_pack_contents.
Jelmer Vernooij [Fri, 2 Apr 2010 02:15:07 +0000 (04:15 +0200)]
Support progress argument to generate_pack_contents.

14 years agoAdd RefsContainer.read_ref.
Jelmer Vernooij [Fri, 2 Apr 2010 01:57:11 +0000 (03:57 +0200)]
Add RefsContainer.read_ref.

14 years agoSupport opening git repositories by path.
Jelmer Vernooij [Fri, 2 Apr 2010 01:21:35 +0000 (03:21 +0200)]
Support opening git repositories by path.

14 years agoAlways require a Git repository object to be passed into
Jelmer Vernooij [Fri, 2 Apr 2010 00:55:38 +0000 (02:55 +0200)]
Always require a Git repository object to be passed into
dulwich.server.GitBackend.

14 years agoPreviously, the word "type" was massively overloaded in objects.py. It
Dave Borowitz [Fri, 2 Apr 2010 00:11:34 +0000 (02:11 +0200)]
Previously, the word "type" was massively overloaded in objects.py. It
could refer to the numeric type of an object (obj.type or
obj._num_type), the type name of the object (obj._type or FOO_ID), or
the actual class (python type) of the object. This could get quite
confusing.

This change does the following:
 -Replace obj._type and obj._num_type with type_name and type_num. (The
  type property is retained for client compatibility, but is marked as
  deprecated.) Change the various type maps and callers to use the
  object's public members as keys.
 -Add a convenience function object_class that takes either a string or
  an int and dispatches to the appropriate type map.
 -Rename the FOO_ID constants as _FOO_HEADER, since those constants
  were previously overloaded to mean both header field names and type
  names. There is some overlap, but this is intentional.
 -Use isinstance for type comparisons rather than type, which is common
  python practice and avoids the problematic word altogether.

14 years agoPreviously, serialize() expected the object type to be numeric, and
Dave Borowitz [Thu, 1 Apr 2010 23:58:27 +0000 (01:58 +0200)]
Previously, serialize() expected the object type to be numeric, and
_parse_text() set it to be an object class. Surprisingly, there were
no code paths that perform a round-trip parse-serialize-parse or
serialize-parse-serialize on tags; put a TODO in test_objects.py to add
such tests.

14 years agoPass command-line arguments on to command implementation.
Jelmer Vernooij [Thu, 1 Apr 2010 23:41:04 +0000 (01:41 +0200)]
Pass command-line arguments on to command implementation.

14 years agoFix import.
Jelmer Vernooij [Thu, 1 Apr 2010 23:33:32 +0000 (01:33 +0200)]
Fix import.

14 years agoUse posixpath where possible.
Jelmer Vernooij [Thu, 1 Apr 2010 17:07:25 +0000 (19:07 +0200)]
Use posixpath where possible.

14 years agoUse standard buffer size rather than object size.
Jelmer Vernooij [Thu, 1 Apr 2010 16:58:09 +0000 (18:58 +0200)]
Use standard buffer size rather than object size.

14 years agoInitial work on a fastexport module.
Jelmer Vernooij [Thu, 1 Apr 2010 00:34:02 +0000 (02:34 +0200)]
Initial work on a fastexport module.

14 years agoAllow delta's to be chunked as well.
Jelmer Vernooij [Wed, 31 Mar 2010 21:05:52 +0000 (23:05 +0200)]
Allow delta's to be chunked as well.

14 years agoAccept chunked contents for apply_delta base texts.
Jelmer Vernooij [Wed, 31 Mar 2010 19:45:10 +0000 (21:45 +0200)]
Accept chunked contents for apply_delta base texts.

14 years agoconsistently use chunks internally inside of the pack code.
Jelmer Vernooij [Wed, 31 Mar 2010 19:34:40 +0000 (21:34 +0200)]
consistently use chunks internally inside of the pack code.

14 years agoReturn chunks from apply_delta.
Jelmer Vernooij [Wed, 31 Mar 2010 19:21:45 +0000 (21:21 +0200)]
Return chunks from apply_delta.

14 years agoReturn chunks from unpack_object.
Jelmer Vernooij [Wed, 31 Mar 2010 19:14:41 +0000 (21:14 +0200)]
Return chunks from unpack_object.

14 years agoRemove read_zlib in favor of read_zlib_chunks.
Jelmer Vernooij [Wed, 31 Mar 2010 19:09:24 +0000 (21:09 +0200)]
Remove read_zlib in favor of read_zlib_chunks.

14 years agoWork with chunks internally in dulwich.objects.
Jelmer Vernooij [Wed, 31 Mar 2010 18:27:58 +0000 (20:27 +0200)]
Work with chunks internally in dulwich.objects.

14 years agoRename _parse_text to _deserialize for consistency.
Jelmer Vernooij [Wed, 31 Mar 2010 18:16:35 +0000 (20:16 +0200)]
Rename _parse_text to _deserialize for consistency.

14 years agoSet needs_serialization/needs_parsing properties only in a few places.
Jelmer Vernooij [Wed, 31 Mar 2010 18:15:42 +0000 (20:15 +0200)]
Set needs_serialization/needs_parsing properties only in a few places.

14 years agoUse raw_length in pack generation.
Jelmer Vernooij [Wed, 31 Mar 2010 18:11:03 +0000 (20:11 +0200)]
Use raw_length in pack generation.

14 years agoWork with chunks rather than StringIO internally when possible.
Jelmer Vernooij [Wed, 31 Mar 2010 18:06:40 +0000 (20:06 +0200)]
Work with chunks rather than StringIO internally when possible.

14 years agoMake ShaFile.serialize private (it's pointless to call for external users).
Jelmer Vernooij [Wed, 31 Mar 2010 18:00:54 +0000 (20:00 +0200)]
Make ShaFile.serialize private (it's pointless to call for external users).

14 years agoProvide C implementation of tree item sorter.
Jelmer Vernooij [Wed, 31 Mar 2010 15:44:14 +0000 (17:44 +0200)]
Provide C implementation of tree item sorter.

14 years agoSupport determining blob id without joining all chunks first.
Jelmer Vernooij [Wed, 31 Mar 2010 14:09:00 +0000 (16:09 +0200)]
Support determining blob id without joining all chunks first.

14 years agoAllow accessing Blob contents as chunks.
Jelmer Vernooij [Wed, 31 Mar 2010 13:58:32 +0000 (15:58 +0200)]
Allow accessing Blob contents as chunks.

14 years agoUse urlparse.parse_qs rather than deprecated cgi.parse_qs.
Jelmer Vernooij [Wed, 31 Mar 2010 13:33:44 +0000 (15:33 +0200)]
Use urlparse.parse_qs rather than deprecated cgi.parse_qs.

14 years agoIgnore deprecationwarnings from known deprecated methods during testsuite run.
Jelmer Vernooij [Wed, 31 Mar 2010 13:32:59 +0000 (15:32 +0200)]
Ignore deprecationwarnings from known deprecated methods during testsuite run.

14 years agoFix warning stacklevels.
Jelmer Vernooij [Wed, 31 Mar 2010 13:26:27 +0000 (15:26 +0200)]
Fix warning stacklevels.

14 years agoAdd ShaFile._raw_length.
Jelmer Vernooij [Wed, 31 Mar 2010 13:24:43 +0000 (15:24 +0200)]
Add ShaFile._raw_length.

14 years agoRepo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.
Jelmer Vernooij [Mon, 29 Mar 2010 11:01:49 +0000 (13:01 +0200)]
Repo.get_blob, Repo.commit, Repo.tag and Repo.tree are now deprecated.

14 years agotest_repository: add test for ObjectStore.find_common_revisions()
Tay Ray Chuan [Mon, 22 Mar 2010 03:54:34 +0000 (11:54 +0800)]
test_repository: add test for ObjectStore.find_common_revisions()

Demonstrate that find_common_revisions() returns common heads, not
revisions.

14 years agoMark current version as 0.5.1.
Jelmer Vernooij [Sat, 27 Mar 2010 16:23:06 +0000 (17:23 +0100)]
Mark current version as 0.5.1.

14 years agoImplement RefsContainer.__contains__.
Jelmer Vernooij [Sat, 27 Mar 2010 16:21:50 +0000 (17:21 +0100)]
Implement RefsContainer.__contains__.

14 years agoImprove formatting, update docstring.
Jelmer Vernooij [Sat, 27 Mar 2010 13:16:07 +0000 (14:16 +0100)]
Improve formatting, update docstring.

14 years agoAdd Repo.stage.
Jelmer Vernooij [Wed, 24 Mar 2010 11:10:25 +0000 (12:10 +0100)]
Add Repo.stage.

14 years agoMove get_transport_and_path to dulwich.client.
Jelmer Vernooij [Wed, 24 Mar 2010 10:27:04 +0000 (11:27 +0100)]
Move get_transport_and_path to dulwich.client.

14 years agoAdd docstrings.
Jelmer Vernooij [Wed, 24 Mar 2010 10:20:31 +0000 (11:20 +0100)]
Add docstrings.

14 years agoImprove docstrings.
Jelmer Vernooij [Tue, 23 Mar 2010 14:18:14 +0000 (15:18 +0100)]
Improve docstrings.

14 years agoIn threaded programs, more than one thread can try to add the same object at
Bruce Duncan [Tue, 23 Mar 2010 11:37:55 +0000 (12:37 +0100)]
In threaded programs, more than one thread can try to add the same object at
the same time and this can cause os.mkdir to fail.

14 years agoUse syntax understood by git am.
Jelmer Vernooij [Sun, 14 Mar 2010 19:04:33 +0000 (20:04 +0100)]
Use syntax understood by git am.

14 years agoMake sure mode is initialized.
Jelmer Vernooij [Fri, 12 Mar 2010 16:36:47 +0000 (17:36 +0100)]
Make sure mode is initialized.

14 years agoFix trailing newlines in generated patch files.
Jelmer Vernooij [Fri, 12 Mar 2010 16:35:03 +0000 (17:35 +0100)]
Fix trailing newlines in generated patch files.

14 years agoThe 'committer' and 'message' arguments to Repo.do_commit() have
Jelmer Vernooij [Thu, 11 Mar 2010 14:00:12 +0000 (15:00 +0100)]
The 'committer' and 'message' arguments to Repo.do_commit() have
been swapped. 'committer' is now optional. (Jelmer Vernooij)

Add some TODO items.

14 years agoAdd Index.commit.
Jelmer Vernooij [Thu, 11 Mar 2010 13:55:12 +0000 (14:55 +0100)]
Add Index.commit.

14 years agoAllow specifying path to 'dulwich log'.
Jelmer Vernooij [Thu, 11 Mar 2010 17:13:36 +0000 (18:13 +0100)]
Allow specifying path to 'dulwich log'.

14 years agoSimplify clone code.
Jelmer Vernooij [Thu, 11 Mar 2010 17:09:56 +0000 (18:09 +0100)]
Simplify clone code.

14 years agoFix Repository.__setitem__.
Jelmer Vernooij [Tue, 9 Mar 2010 13:15:31 +0000 (14:15 +0100)]
Fix Repository.__setitem__.

14 years agoFix indentation.
Jelmer Vernooij [Tue, 9 Mar 2010 13:14:17 +0000 (14:14 +0100)]
Fix indentation.

14 years agoadd testrepository magic.
Jelmer Vernooij [Tue, 9 Mar 2010 01:14:48 +0000 (02:14 +0100)]
add testrepository magic.

14 years agoAdd Dave to authors.
Jelmer Vernooij [Sun, 7 Mar 2010 16:51:12 +0000 (17:51 +0100)]
Add Dave to authors.

14 years agoRemove unused imports, limit import of nose to one file (so it's easier to
Jelmer Vernooij [Sun, 7 Mar 2010 16:44:26 +0000 (17:44 +0100)]
Remove unused imports, limit import of nose to one file (so it's easier to
replace the SkipTest class with e.g. the one from testtools).

14 years agoMerge Dave.
Jelmer Vernooij [Sun, 7 Mar 2010 16:40:58 +0000 (17:40 +0100)]
Merge Dave.

14 years agoRemove some unused imports.
Jelmer Vernooij [Sat, 6 Mar 2010 00:01:11 +0000 (01:01 +0100)]
Remove some unused imports.

14 years agoMerge support for no-progress capability, some PEP8 fixes and removal of unused imports.
Jelmer Vernooij [Fri, 5 Mar 2010 23:59:30 +0000 (00:59 +0100)]
Merge support for no-progress capability, some PEP8 fixes and removal of unused imports.

14 years agoMerge server capability refactoring from Dave.
Jelmer Vernooij [Fri, 5 Mar 2010 23:43:20 +0000 (00:43 +0100)]
Merge server capability refactoring from Dave.