aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix `be show` handling for no IDsW. Trevor King2010-01-291-1/+1
|
* Add version information to test.py stderr for easier error reproductionW. Trevor King2010-01-291-0/+2
|
* Fix editor spawning on null-string EDITOR and VISUAL.W. Trevor King2010-01-291-4/+3
| | | | | $ EDITOR= VISUAL= python -c 'import os; import sys; print os.environ' {..., 'EDITOR': '', ..., 'VISUAL': '', ...}
* Merged some new bugs and be-xml-to-mbox extra_strings fixW. Trevor King2010-01-2917-194/+59
|\
| * Added #bea/169# : Generating per-bugdir/bug/comment change logsW. Trevor King2010-01-283-0/+47
| |
| * Removed taglines other cruft from #bea/d99# commentsW. Trevor King2010-01-2813-192/+10
| |
| * Fix "extra_strings" -> "extra-strings" typos in be-xml-to-mboxW. Trevor King2010-01-281-2/+2
| |
* | Add some workarounds for older bzrlibs. Tested on 1.3.1W. Trevor King2010-01-281-1/+58
|\ \
| * | Work around "bzr ls --non-recursive PATH : no list" bug in old bzrlib.W. Trevor King2010-01-281-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See: https://bugs.launchpad.net/bzr/+bug/158690 Bug affected versions: 0.90.0 (reported) 1.3.1 (my test suite hit it) Doesn't affect versions: 2.0+ (non_recursive -> recursive) But I haven't isolated the source more specifically. Working around it for everything < 2.0 should be safe, but the cutoff could be fine-tuned if someone wants to dig through the bzr.dev history...
| * | Fix bzrlib.builtins.cmd_cat() output for pre 1.6.0 bzrlibs.W. Trevor King2010-01-281-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed in bzr.dev revno: 3341.2.1 revision-id: bialix@ukr.net-20080407074826-5lwuyv4dn1qlijg4 parent: pqm@pqm.ubuntu.com-20080407044456-s1a9orh0kssphdh9 committer: Alexander Belchenko <bialix@ukr.net> branch nick: cmd-cat timestamp: Mon 2008-04-07 10:48:26 +0300 message: `bzr cat` no more internally used Tree.print_file(). Merged into bzr.dev's trunk revno: 3512 [merge] revision-id: pqm@pqm.ubuntu.com-20080626004245-dnw85so4xqg8r9hy parent: pqm@pqm.ubuntu.com-20080625230724-lyux37pu8nx8tq34 parent: aaron@aaronbentley.com-20080626001706-wo3w74fwgliy12s4 committer: Canonical.com Patch Queue Manager <pqm@pqm.ubuntu.com> branch nick: +trunk timestamp: Thu 2008-06-26 01:42:45 +0100 message: (bialix) Deprectate (Branch|Repository).print_file, fix cmd_cat Before bzr branch 1.6 bzr.dev$ bzr tags ... bzr-1.5rc1 3418.6.3 bzr-1.6 3606.5.9 ... Fixes: python test.py -q libbe.storage.vcs.bzr ...............................FSome value:1E.. ====================================================================== ERROR: Get should be able to return the previous version. ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/wking/src/fun/be/be.wtk/libbe/storage/base.py", line 976, in test_ get_previous_version ret = self.s.get(self.id, revision=revs[i]) File "/home/wking/src/fun/be/be.wtk/libbe/storage/base.py", line 335, in get value = self._get(*args, **kwargs) File "/home/wking/src/fun/be/be.wtk/libbe/storage/vcs/base.py", line 849, in _ get raise InvalidID(id, revision) InvalidID: unlikely id in revision 1 ...
| * | Fix bzrlib.builtins.cmd_ls() recursion argument for pre 2.0 bzrlibs.W. Trevor King2010-01-281-1/+45
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $ python test.py libbe.storage.vcs.bzr ... ====================================================================== ERROR: Children list should be revision dependent. ---------------------------------------------------------------------- Traceback (most recent call last): File ".../libbe/storage/base.py", line 997, in test_ get_previous_children ret = sorted(self.s.children('parent', revision=revs[i])) File ".../libbe/storage/base.py", line 314, in child ren return self._children(*args, **kwargs) File ".../libbe/storage/vcs/base.py", line 811, in _ children path = self.path(id, revision, relpath=False) File ".../libbe/storage/vcs/base.py", line 716, in p ath path = self._vcs_path(id, revision) File ".../libbe/storage/vcs/bzr.py", line 145, in _v cs_path self.repo, revision=revision, recursive=True) File ".../libbe/storage/vcs/bzr.py", line 163, in _v cs_listdir cmd.run(revision=revision, path=path, recursive=recursive) File "/usr/lib/python2.5/site-packages/bzrlib/commands.py", line 800, in ignor e_pipe result = func(*args, **kwargs) TypeError: run() got an unexpected keyword argument 'recursive' ... The change is due to (in bzr.dev): revno: 4206.2.1 revision-id: ian.clatworthy@canonical.com-20090326133831-orvicmmc6w29mpfp parent: pqm@pqm.ubuntu.com-20090326063330-evutyvml3067dpsz committer: Ian Clatworthy <ian.clatworthy@canonical.com> branch nick: bzr.ls-recursive-off timestamp: Thu 2009-03-26 23:38:31 +1000 message: ls should be non-recursive by default Which occured between bzr-1.9rc1 and 2.0rc1.: bzr.dev$ bzr tags 2.0rc1 4634.9.1 ... bzr-1.9rc1 3815.3.1 bzr-2.0.1 4634.73.2 ...
* / Oops, fix Comment doctest EDITOR cleanupW. Trevor King2010-01-281-1/+1
|/
* Merged with be.wtk trunkW. Trevor King2010-01-281-0/+3
|\
| * Don't accidentally spawn VISUAL in Comment doctests.W. Trevor King2010-01-281-0/+3
| |
* | Add #bea/9c2# : Can comment punt functionality to email.Message?W. Trevor King2010-01-283-0/+34
|/
* Implement Arch._vcs_path()W. Trevor King2010-01-273-9/+30
| | | | | | | | | | | | | | | Fixes VersionedStorage_commit_TestCase.test_get_previous_children. Should have fixed VersionedStorage_commit_TestCase.test_get_previous_version too, but 'tla file-find' is buggy: https://bugs.launchpad.net/ubuntu/+source/tla/+bug/513472 Also: * sort children in test_get_previous_children, since we shouldn't require a particular child order * unescape filenames in Arch._diff() * remove debugging prints from Arch._parse_diff() * remove silly blank line in git.py I'd stumbled across ;).
* Implement Arch._vcs_changed().W. Trevor King2010-01-271-2/+46
| | | | Fixes VersionedStorage_changed_TestCase.test_changed failure.
* Fix StorageTestCase.classname -> ._classname()W. Trevor King2010-01-271-2/+2
| | | | | Introduced in wking@drexel.edu-20100127152727-nu58o4g6jea5or7w
* `be html` links (<a href="...) #-delimited references in text/* bodies.W. Trevor King2010-01-273-9/+50
|
* Merged clarifications requested by Ben FinneyW. Trevor King2010-01-279-45/+97
|\
| * Make VCS error messages and Storage test failures more descriptiveW. Trevor King2010-01-275-11/+23
| |
| * Add --help, --quiet options to test.py.W. Trevor King2010-01-271-33/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes Ben's "unintuitive test.py interface" bug: Date: Wed, 27 Jan 2010 14:09:14 +1100 From: Ben Finney Subject: [Be-devel] Re: Test suite on Trevor's development branch ... > $ python ./test.py -q > > ---------------------------------------------------------------------- > Ran 0 tests in 0.000s > > OK Running a Python unittest-capable test suite with "-q" should run it in "quiet" mode, where progress is indicated by single characters along a lone, and only failures and errors are reported. ...
| * Encourage a run of `make` to build auto-generated files.W. Trevor King2010-01-273-1/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes Ben's "unintuitive test procedure" bug: Date: Wed, 27 Jan 2010 14:09:14 +1100 From: Ben Finney Subject: [Be-devel] Re: Test suite on Trevor's development branch ... > $ python ./test.py > Traceback (most recent call last): [...] > ImportError: No module named _version So it's not possible to simply get a copy of the branch and try running the test suite. ...
* | Merged be.auth, adding "--auth" to `be serve`W. Trevor King2010-01-276-196/+931
|\ \ | |/ |/|
| * Streamlined libbe.command.serve, adding --auth option, #/bea/c1b#, and testing.W. Trevor King2010-01-276-196/+931
|/
* Added --ssl to `be serve` using cherrypy.wsgiserver.W. Trevor King2010-01-252-61/+214
|
* Convert libbe.command.serve to WSGI for increased flexibility.W. Trevor King2010-01-251-256/+271
| | | | | | | The Python Web Server Gateway Interface (WSGI) is a simple and universal interface between web servers and web applications or frameworks. See PEP 333 for details. http://www.python.org/dev/peps/pep-0333/
* Rework fix for #bea/8fc# : be crashes on outdated id-cacheW. Trevor King2010-01-251-7/+10
| | | | | | | | | | | | | | | | | | | | | | | Now we re-run CachedPathID.init in an 'append' mode, rather than starting over from scratch. This avoids problems like ====================================================================== ERROR: Should not be able to add children to non-directories. ---------------------------------------------------------------------- Traceback (most recent call last): File ".../be.wtk/libbe/storage/base.py", line 680, in test_add_invalid_directory self.s.add('child', 'parent', directory=False) File ".../be.wtk/libbe/storage/base.py", line 248, in add self._add(id, *args, **kwargs) File ".../be.wtk/libbe/storage/vcs/base.py", line 737, in _add path = self._cached_path_id.add_id(id, parent) File ".../be.wtk/libbe/storage/vcs/base.py", line 267, in add_id parent_path = self.path(parent, relpath=True) File ".../be.wtk/libbe/storage/vcs/base.py", line 246, in path raise InvalidID(uuid) InvalidID: parent in revision None and similar.
* Don't print 'Multiple paths' message on cache regenW. Trevor King2010-01-251-3/+3
|
* Fixed #bea/8fc# : be crashes on outdated id-cacheW. Trevor King2010-01-243-2/+10
| | | | Also explicitly avoid loading or saving settings for root comments.
* Added bug #bea/8fc# : be crashes on outdated id-cacheW. Trevor King2010-01-245-0/+78
|
* Merged be.doc documentation rewrite + bugfixes + new bugsW. Trevor King2010-01-2427-105/+700
|\ | | | | | | | | | | | | | | | | Highlights: * Fix broken Diff.comment_body_change_string implementation. * Fix List --severity handling, added --important * Fix `be target --help` * Fix non-text/plain `be comment` code and added 'Created comment...' output
| * Rewrote documentationW. Trevor King2010-01-247-86/+560
| |
| * Added some bugs (and fixed typo) noticed while rewriting documentationW. Trevor King2010-01-249-7/+100
| |
| * Fix Diff.comment_body_change_string's difflib.unified_diff callW. Trevor King2010-01-241-1/+4
| |
| * Fixed List --severity handling, added --importantW. Trevor King2010-01-231-2/+3
| |
| * Fix vars call for `be target --help`W. Trevor King2010-01-231-1/+1
| |
| * Update --subscriber option help string for SubscribeW. Trevor King2010-01-231-1/+1
| |
| * Modern ID format in `be list` _long_helpW. Trevor King2010-01-231-5/+5
| |
| * Fix broken handling of non-text/plain commentsW. Trevor King2010-01-232-3/+10
| |
| * Added "Created comment..." output to `be comment`W. Trevor King2010-01-232-0/+12
| |
| * Reorganized documentation to clean doc/ for user-readable filesW. Trevor King2010-01-237-3/+11
| |
* | Fixed some bugs in settings_object handling and got test_usage.sh working.W. Trevor King2010-01-2313-229/+441
|\| | | | | | | | | | | | | | | | | Highlights: * clarified settings_object handling and improved unittests * added `be list --mine` * fixed some bugs in List, Import_XML, Init * added Storage.exists() (haven't implemented it in all VCS backends though). * added VCS.path()
| * Update test_usage.shW. Trevor King2010-01-231-36/+41
| |
| * Fix typos in untested parts of List and Import_XML for test_usage.pyW. Trevor King2010-01-232-4/+4
| |
| * Added `be list --mine`W. Trevor King2010-01-231-6/+10
| |
| * Init should tell the UI about its connected storage and bugdir.W. Trevor King2010-01-231-0/+2
| |
| * Move BugDir, Bug, and Comment to new _setup_saved_settingsW. Trevor King2010-01-223-8/+8
| |
| * Added testSimplePropertySetStorageSave and relavant rewrites to settings_objectW. Trevor King2010-01-221-10/+45
| | | | | | | | | | | | | | It hadn't been handling the "attach storage after initializing" technique that BugDir, Bug, and Comment use when from_memory==True. Now it does, by refusing to overwrite self.settings with the newly-loaded settings.
| * Add Bzr._vcs_exists() anyway :pW. Trevor King2010-01-221-1/+8
| |