aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Don't require new revisions on empty commits.W. Trevor King2009-12-131-4/+7
| | | | | | | | | | | | | | | | | | | For example, hg can't: $ mkdir x; cd x; x$ hg init; x$ echo a> b; hg add b; x$ hg commit -m 'r1'; x$ hg commit -m 'r2'; nothing changed x$ hg log; changeset: 0:e30558c36fca tag: tip user: W. Trevor King <wking@drexel.edu> date: Sun Dec 13 19:48:47 2009 -0500 summary: hi x$ cd ..; rm -rf x We shouldn't need this functionality anyway ;).
* Work around mercurial (hg) issue 618.W. Trevor King2009-12-131-1/+13
|
* Don't regexp out the short-revid in Git._vcs_commit()W. Trevor King2009-12-131-8/+2
| | | | | | | | | | | The output version strings change: Version 1.5.4.3: Created initial commit 217efa7: MESSAGE Created commit acb3066: MESSAGE Version 1.6.4.4: [master (root-commit) c5b48cf] MESSAGE [master 66a48c1] MESSAGE Instead, get the full revid, and look for its beginning in the output.
* Fix Git._vcs_revision_id() offset bug.W. Trevor King2009-12-133-6/+13
|
* Handle non-int args to VCS.revision_id at the VCS level.W. Trevor King2009-12-132-4/+5
|
* Adjust Hg._vcs_revision_id to bail cleanly on non-int revidsW. Trevor King2009-12-132-0/+5
|
* Use detect rather than catching errors in _vcs_root().W. Trevor King2009-12-132-56/+11
|
* .bzr transition.W. Trevor King2009-12-133-37/+58
|
* More fixes for libbe.storage.vcs.hg + .git transition.W. Trevor King2009-12-134-64/+78
|
* Fixes to get libbe.storage.vcs.hg passing tests.W. Trevor King2009-12-131-2/+3
|
* Converted libbe.storage.vcs.hg to new Storage format.W. Trevor King2009-12-133-64/+82
|
* Rearrange libbe.ui.command_line.CmdOptionParser._add_option() for Python 2.5W. Trevor King2009-12-131-14/+15
| | | | | | | | | | | | | | Python 2.6 doesn't mind, but 2.5 doesn't like kwargs after a * expansion: $ ./be list Traceback (most recent call last): File "./be", line 5, in <module> import libbe.ui.command_line File "/home/wking/src/fun/be/be.restructure/libbe/ui/command_line.py", line 63 *opt_strings, action='callback', dest=dest, ^ SyntaxError: invalid syntax
* Converted libbe.storage.vcs.base to new Storage format.W. Trevor King2009-12-13499-680/+709
|
* Moved be to libbe.ui.command_line and transitioned to Command format.W. Trevor King2009-12-1214-268/+375
|
* Use get_input/output_encoding() in libbe.command.base.CommandW. Trevor King2009-12-121-2/+3
|
* Added libbe.ui.util.user for managing user ids.W. Trevor King2009-12-125-57/+99
|
* Moved command completion from libbe.ui.util to libbe.command.utilW. Trevor King2009-12-124-80/+79
|
* Added libbe.command.base (with Command class) and moved list command to new ↵W. Trevor King2009-12-1212-320/+579
| | | | format.
* Moved bugdir, bug, and comment over to new id implementation.W. Trevor King2009-12-104-296/+171
|
* Rethought libbe.util.id moduleW. Trevor King2009-12-091-40/+254
|
* Reworked test.py to handle deeper directory structureW. Trevor King2009-12-085-44/+69
|
* Moved properties.py and settings_object.py to libbe/storage/util/W. Trevor King2009-12-086-8/+21
|
* Transitioned bugdir.py to new storage format.W. Trevor King2009-12-088-625/+618
|
* Transitioned bug.py to new storage format.W. Trevor King2009-12-082-68/+57
|
* Transitioned comment.py to new storage format.W. Trevor King2009-12-083-73/+53
|
* Use .storage.is_read/writeable() rather than .sync_with_disk() in ↵W. Trevor King2009-12-081-8/+8
| | | | settings_object.py
* Use mapfile to only create & parse mapfile strings, not filesW. Trevor King2009-12-081-10/+0
|
* Extended libbe.storage.base for separate read/write control.W. Trevor King2009-12-081-36/+94
| | | | | | | | | | | | | | Rather than just having .read_only to set write permissions and assuming that read was always legal. We also added user and backend control of both readable and writeable: do you want to read/write? and can you read/write? Specialized NotSupported into NotWriteable and NotReadable. Added automatic unicode encoding on .set(), and decode option on .get().
* Extend libbe.util.id to handle id (path) creation.W. Trevor King2009-12-081-3/+46
|
* Added libbe.storage.base and test suite.W. Trevor King2009-12-083-0/+709
|
* Initial directory restructuring to clarify dependenciesW. Trevor King2009-12-0744-0/+0
|
* Reorganization bug createdW. Trevor King2009-12-073-0/+55
|
* Added libbe.pager and --paginate/--no-pager options to be.W. Trevor King2009-12-073-2/+82
|\
| * Updated NEWSW. Trevor King2009-12-071-1/+2
| |
| * Added --paginate and --no-pager to beW. Trevor King2009-12-071-2/+16
| |
| * Use 'auto' for run_pager default rather than NoneW. Trevor King2009-12-071-1/+1
| |
| * Update libbe.pager copyrightW. Trevor King2009-12-071-1/+15
| |
| * Added libbe.pagerW. Trevor King2009-12-071-0/+51
| |
| * be --dir DIR COMMAND now roots the bugdir in DIR without changing directories.W. Trevor King2009-12-0630-65/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, for the directory structure A |-- X `-- Y You could do something like A$ be --dir X diff --dir ../Y Now it's A$ be --dir X diff --dir Y The --root option to `be init` has been removed as redundant. Replace calls like be init --root DIR with be --dir DIR init
* | be --dir DIR COMMAND now roots the bugdir in DIR without changing directories.W. Trevor King2009-12-0730-65/+145
|/ | | | | | | | | | | | | | | | | Previously, for the directory structure A |-- X `-- Y You could do something like A$ be --dir X diff --dir ../Y Now it's A$ be --dir X diff --dir Y The --root option to `be init` has been removed as redundant. Replace calls like be init --root DIR with be --dir DIR init
* Set BugDir(root=X) instead of os.chdir(X) in W. Trevor King2009-12-061-4/+2
|
* becommands.target.bug_target(TARGET-BUG) now returns TARGET-BUGW. Trevor King2009-12-061-0/+2
|
* Merged be.target-as-bugW. Trevor King2009-12-0624-132/+506
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Highlights: * targets are now a special type of bug (severity 'target'), so you can do all the things you do with normal bugs to them as well (e.g. comment on them, link them into dependency trees, etc.) * new command `be due` to get/set bug due dates. * changes to `be depend` * added options --status, --severity * changes to `be list` * added blacklist capability to --status, --severity, --assigned * removed options --target, --cur-target Replace: 'be list --target TARGET' with 'be depend --status -closed,fixed,wontfix --severity -target \ $(be target --resolve TARGET)' 'be list --cur-target' with 'be depend --status -closed,fixed,wontfix --severity -target \ $(be target --resolve)' * changes to `be target` * added option --resolve * removed option --list Replace: 'be target --list' with 'be list --status all --severity target' * new function cmdutil.select_values() for whitelist/blacklist selection. * assorted cleanups and bugfixes
| * Marked as fixed 22b: Sorting targets chronologicallyW. Trevor King2009-12-063-1/+20
| |
| * Updated NEWS.W. Trevor King2009-12-061-0/+26
| |
| * Updated becommands/due.py copyright.W. Trevor King2009-12-061-1/+15
| |
| * Added becommands/due.py to manage bug due dates.W. Trevor King2009-12-061-0/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fulfills the following part of 22b:7 * "due_by" We could add "due-by" to Bug.extra_strings as well, so that anyone could set due dates for any issue they wanted. Currently there's not much going on, but perhaps other people will have ideas for useful extensions. Maybe be due --sort BUG-ID [BUG-ID ...] or be --due-in-days 7
| * `be target` gains --resolve and loses --list.W. Trevor King2009-12-051-29/+98
| | | | | | | | `be target` now works with bug-style targets.
| * Docstring clarification in becommands.depend.get_blocked_by()W. Trevor King2009-12-051-1/+1
| |
| * Removed target stuff from becommands/list.py and tweaked options.W. Trevor King2009-12-052-37/+26
| | | | | | | | | | Now --status, --severity, and --assigned all use cmdutil.select_values() for nice whitelist/blacklist selection.