aboutsummaryrefslogtreecommitdiffstats
path: root/be
Commit message (Collapse)AuthorAgeFilesLines
* Ran update-copyright.py.W. Trevor King2012-10-161-1/+1
|
* Ran update-copyright.py.W. Trevor King2012-02-161-10/+10
|
* Bumped to version 1.0.01.0.0Chris Ball2011-01-081-1/+1
|
* Ran update_copyright.pyW. Trevor King2010-06-221-12/+17
|
* Updated copyright informationW. Trevor King2010-01-011-1/+15
|
* Moved be to libbe.ui.command_line and transitioned to Command format.W. Trevor King2009-12-121-99/+3
|
* Added libbe.command.base (with Command class) and moved list command to new ↵W. Trevor King2009-12-121-0/+5
| | | | format.
* Added --paginate and --no-pager to beW. Trevor King2009-12-071-2/+16
|
* be --dir DIR COMMAND now roots the bugdir in DIR without changing directories.W. Trevor King2009-12-061-5/+3
| | | | | | | | | | | | | | | | | 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
* Fix cmdutil.help() calls in be to use args not sys.argv.W. Trevor King2009-12-051-2/+2
| | | | | sys.argv won't work if there are any options in the be call, e.g. be -d DIR diff
* Ran the new update_copyright.pyW. Trevor King2009-11-191-0/+1
|
* Added `be --verbose-version' option to print full version information.W. Trevor King2009-09-151-2/+4
|
* Added libbe.version, wrapping the auto-generated libbe._version.W. Trevor King2009-09-151-2/+2
| | | | | | | | | | | | | | | | Two major benefits: 1) Programatic access to the BE version. Previously the version-string logic was internal to the commandline interface ./be, which left the other interfaces hanging. 2) Simple to override auto-generated revision id version with any string you like (by setting libbe.version._VERSION, if that's the way you want to run things or the way your packaging system requires. Note that other modules should never read libbe.version._VERSION, since it may not be defined. Instead they should use the output of libbe.version.version().
* Updated GPLv2 to current GPLv2.W. Trevor King2009-07-141-12/+11
| | | | | | | | | | | | | | | | | | | | | | | | Fixes Ben's bug 00f26f04-9202-4288-8744-b29abc2342d6. I also tweaked update_copyright.sh to make possible future copyright-blurb revision easier. The new algorithm is greedier, overwriting _all_ consecutive comments after a '^# Copyright' line, so do # Copyright # GPL ... GPL ... GPL # Your comment here... not # Copyright # GPL ... GPL ... GPL # # Your comment here... Without the blank line, your comment would get overwritten by the next run of update_copyright.sh. Note that catmutt is ignored by update_copyright.sh because Moritz Barsnick has only licensed his grepm code under the GPLv2 (not GPLv>=2). See the initial catmutt commit for details.
* Fixed "be --dir --complete"W. Trevor King2009-07-131-0/+7
|
* Added --dir option to "be"W. Trevor King2009-07-131-1/+6
|
* Use CmdOptionParser in "be".W. Trevor King2009-07-131-29/+45
| | | | | | All the becommands have been using cmdutil CmdOptionParser for a long time, but "be" parsed its options by hand. Now it used CmdOptionParser, which makes adding new options much easier.
* Simplified error handling in ./beW. Trevor King2009-07-101-15/+15
| | | | | | | | | | Removed superfluous nesting in ./be's error catching. Also replaced KeyErrors due to unknown commands with the more specific cmdutil.UnknownCommand, since all sorts of programming errors can raise KeyErrors. Untested, since my working tree is a mess at the moment, but what could go wrong? ;)
* Updated copyright blurbs and AUTHORS and included script for future updatesW. Trevor King2009-07-011-1/+4
|
* Updated help strings, man page, and completionsW. Trevor King2009-06-251-1/+1
|
* Added auto-generated version info. (be --version)W. Trevor King2009-06-251-1/+3
|
* Merged --commands and --options into --complete. Simpler that way.W. Trevor King2008-11-271-3/+2
|
* Basic bash completion is now supported.W. Trevor King2008-11-271-0/+5
| | | | I'm still working on a clean implementation though...
* Added --commands option to be to help with bash completion.W. Trevor King2008-11-271-0/+3
| | | | | | | | A'la ditz http://gitorious.org/projects/ditz See also this good intro to bash completion http://www.debian-administration.org/articles/317
* Added libbe/encoding.py to wrap input/output/file access appropriately.W. Trevor King2008-11-251-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | I borrowed most of the code for this. get_encoding() is from Trac http://trac.edgewall.org/browser/trunk/trac/util/datefmt.py format_datetime() Trac has a BSD license http://trac.edgewall.org/wiki/TracLicense I don't know if such a small snippet requires us to "reproduce the above copyright" or where we need to reproduce it if it is needed. The stdout/stdin replacement code follows http://wiki.python.org/moin/ShellRedirectionFails Because of the stdout replacement, the doctests executes now need an optional 'test' argument to turn off replacement during the doctests, otherwise doctest flips out (since it had set up stdout to catch output, and then we clobbered it's setup). References: http://wiki.python.org/moin/Unicode http://www.amk.ca/python/howto/unicode http://www.python.org/dev/peps/pep-0100/ I also split libbe/editor.py off from libbe.utility.py and started explaining the motivation for the BugDir init flags in it's docstring.
* Another major rewrite. Now BugDir, Bug, and Comment are more distinct.W. Trevor King2008-11-211-7/+3
| | | | | | | | | | | | | | | I pushed a lot of the little helper functions into the main classes, which makes it easier for me to keep track of what's going on. I'm now at the point where I can run through `python test.py` with each of the backends (by changing the search order in rcs.py _get_matching_rcs) without any unexpected errors for each backend (except Arch). I can also run `test_usage.sh` without non-Arch errors either. However, don't consider this a stable commit yet. The bzr backend is *really*slow*, and the other's aren't blazingly fast either. I think I'm rewriting the entire database every time I save it :p. Still, it passes the checks. and I don't like it when zounds of changes build up.
* Added 'remove' command to remove bugs. Use __desc__ for command help.W. Trevor King2008-11-161-27/+4
| | | | | | | | | | | Using the __desc__ reduces documentation duplication. It's also better than using __doc__, because __doc__ could (should?) be more than one-line long, and we just want a short description to jog our memories in the complete command list. Also moved unique_name from cmdutil.py to names.py to avoid the bug->cmdutil->bugdir->bug cyclic include.
* Split Bug and Comment class out to bug.py from bugdir.pyW. Trevor King2008-11-141-2/+4
| | | | | | | | | | | | | | | | | | | | | Comment should probably have it's own file too... I also tried to clean up the interface for setting status and severity. Both attributes involve selecting strings from predefined lists. The lists of valid strings (and descriptions of each string) are now defined in bug.py. The bug.py lists are then used to generate appropriate help strings in becommands/status.py and severity.py. This should make it easier to keep the help strings in synch with the validation information. The original status strings weren't documented, and I didn't know what they all ment, so I elimanted some of them. 'in-progress' and 'disabled' are no longer with us. Of course, it would be simple to add them back in if people don't agree with me on that. Due to the loss of 'disabled' I had to change the status of two bugs (11e and 597) to 'closed'. I removed becommands/inprogress.py as well. It's functionality was replaced by the more general status.py command, which mimics the severity.py command.
* Don't require python2.4 for "be".Chris Ball2008-05-161-1/+1
|
* Fix help printing (Lee Braiden)Aaron Bentley2006-04-171-1/+1
|
* Refactored the command listingAaron Bentley2006-04-011-8/+1
|
* Patch from Thomas Gerigk to add a 'help' commandAaron Bentley2006-04-011-1/+1
|
* be now uses subprocess, so it requires Python 2.4Aaron Bentley2005-12-231-1/+1
|
* Made -h, help, --help workAaron Bentley2005-05-171-1/+1
|
* Added appropriate copyright notices, GPLed.Aaron Bentley2005-05-161-0/+18
|
* Added new status - "in-progress"Oleg Romanyshyn2005-04-221-0/+1
|
* Switched to exception help handlingAaron Bentley2005-03-221-1/+7
|
* Changed help format to look like bzr'sAaron Bentley2005-03-171-1/+1
|
* Removed unused codeAaron Bentley2005-03-111-1/+0
|
* Added exceptions for missing commands, handled -, plugin command execAaron Bentley2005-03-111-9/+1
|
* Implemented plugin system for viewing commandsAaron Bentley2005-03-111-2/+9
|
* Modularized commands into filesAaron Bentley2005-03-111-57/+17
|
* Added severity commandAaron Bentley2005-03-111-7/+11
|
* Removed friendly bug nameAaron Bentley2005-03-111-1/+0
|
* Ensured bug list shows unique idsAaron Bentley2005-03-101-3/+3
|
* Implemented show commandAaron Bentley2005-03-091-8/+10
|
* Added creator to bug listingAaron Bentley2005-03-091-2/+3
|
* Fixed up Bugs Everywhere command listingsAaron Bentley2005-03-091-4/+9
|
* Implemented set-root commandAaron Bentley2005-03-091-1/+6
|
* Added ability to create, close, open bugsAaron Bentley2005-03-091-5/+27
|