aboutsummaryrefslogtreecommitdiffstats
path: root/becommands
Commit message (Collapse)AuthorAgeFilesLines
* Merged bug.new_comment into bug.Bug.new_comment.W. Trevor King2008-11-191-2/+1
|
* Moved bug.new_bug code into bugdir.BugDir.new_bug.W. Trevor King2008-11-191-2/+1
| | | | | Also removed explicit comparisons from beweb/controllers.py, since they are now built into the Bug.__cmp__ method.
* Major rewrite of RCS backends. RCS now represented as a class.W. Trevor King2008-11-1813-58/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lots of changes and just one commit. This started with bug dac91856-cb6a-4f69-8c03-38ff0b29aab2, when I noticed that new bugs were not being added appropriately with the Git backend. I'd been working with Git trouble before with bug 0cad2ac6-76ef-4a88-abdf-b2e02de76f5c, and decided things would be better off if I just scrapped the current RCS architecture and went to a more object oriented setup. So I did. It's not clear how to add support for an RCS backend: * Create a new module that - defines an inheritor of rsc.RCS, overriding the _rcs_*() methods - provide a new() function for instantizating the new class - defines an inheritor of rcs.RCStestCase, overiding the Class attribute - defines 'suite' a unittest.TestSuite testing the module * Add your new module to the rest in rcs._get_matching_rcs() * Add your new module to the rest in libbe/tests.py Although I'm not sure libbe/tests.py is still usefull. The new framework clears out a bunch of hackery that used to be involved with supporting becommands/diff.py. There's still room for progress though. While implementing the new verision, I moved the testing framework over from doctest to a doctest/unittest combination. Longer tests that don't demonstrate a function's usage should be moved to unittests at the end of the module, since unittest has better support for setup/teardown, etc. The new framework also revealed some underimplented backends, most notably arch. These backends have now been fixed. I also tweaked the test_usage.sh script to run through all the backends if it is called with no arguments. The fix for the dac bug turned out to be an unflushed file write :p.
* Oops, I'd forgotten to tell bzr about my becommands/remove.py.W. Trevor King2008-11-161-0/+58
|
* Added 'remove' command to remove bugs. Use __desc__ for command help.W. Trevor King2008-11-1614-26/+36
| | | | | | | | | | | 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.
* Fixed '-' parsing bug for list --assigned option.W. Trevor King2008-11-151-1/+1
|
* Moved libbe.cmdutil.bug_summary() to libbe.bug.Bug.string().W. Trevor King2008-11-153-5/+3
| | | | This seems like a natual place for a function that only operates on Bugs.
* becommands/show.py gives more specific bug information.W. Trevor King2008-11-151-6/+0
|
* Generalized becommands/list.py to allow more specific bug searches.W. Trevor King2008-11-151-71/+120
|
* Fixed a few more Comment.date->time calls.W. Trevor King2008-11-141-1/+1
| | | | | Bug keeps timestamps in Bug.time, so working towards consitency for Comment.
* Split Bug and Comment class out to bug.py from bugdir.pyW. Trevor King2008-11-149-37/+71
| | | | | | | | | | | | | | | | | | | | | 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.
* Remove blank lines from `be list' outputW. Trevor King2008-11-141-1/+1
|
* Assume commit messages are in utf-8 for now...Aaron Bentley2007-07-301-0/+1
|
* Add support for VISUALAaron Bentley2007-07-161-1/+2
|
* Merge from other BEAaron Bentley2006-04-171-1/+2
|\
| * Fix help printing (Lee Braiden)Aaron Bentley2006-04-171-1/+2
| |
* | Added prompt to commentsAaron Bentley2006-04-161-1/+1
|/
* Merge remaining fixes from ZwartAaron Bentley2006-04-063-3/+6
|\
| * Friendlier error message on "inprogress" or "open" with no arguments.Marien Zwart2006-04-052-2/+4
| |
| * Friendlier error message on "close" with no arguments.Marien Zwart2006-04-051-1/+2
| |
* | Merge test case fixes without trailing commasAaron Bentley2006-04-067-12/+12
|\|
| * unbreak some tests.Marien Zwart2006-04-057-20/+20
| |
* | Fixed tests to use lists, so that optparse can mangle themAaron Bentley2006-04-047-20/+20
| |
* | Merge both linesAaron Bentley2006-04-0411-22/+113
|\|
| * Help cleanupAaron Bentley2006-04-035-7/+1
| |
| * Merge help updatesAaron Bentley2006-04-0310-14/+102
| |\
| | * added help to 'upgrade'.Thomas Gerigk2006-04-031-1/+12
| | |
| | * parsified 'target'-help.Thomas Gerigk2006-04-031-3/+9
| | | | | | | | | | | | (target or aim..)
| | * added help to 'show'.Thomas Gerigk2006-04-031-1/+14
| | |
| | * changed severity.py-help to parsing.Thomas Gerigk2006-04-031-3/+9
| | |
| | * changed set.py to parsing.Thomas Gerigk2006-04-031-2/+9
| | |
| | * added help to 'open'.Thomas Gerigk2006-04-031-0/+12
| | | | | | | | | | | | (errhh... what is the status of a new bug?)
| | * add help to 'inprogress'.Thomas Gerigk2006-04-031-0/+12
| | | | | | | | | | | | (What does 'in-progress' mean to a bug?)
| | * added help to 'close'Thomas Gerigk2006-04-031-0/+13
| | |
| | * changed assign.py to look similar to those commands using get_parser()-stuff.Thomas Gerigk2006-04-031-3/+8
| | | | | | | | | | | | (No, i don't really know what i'm doing |-)
| | * Catch AttributeError when a command has no help() def'd.Thomas Gerigk2006-04-031-1/+5
| | |
| * | Added reply handling to commentsAaron Bentley2006-04-032-8/+17
| |/
* / Refactored the command listingAaron Bentley2006-04-011-2/+1
|/
* Fixed test suite for the unicode switchAaron Bentley2006-04-016-11/+11
|
* Patch from Thomas Gerigk to add a 'help' commandAaron Bentley2006-04-011-0/+43
|
* Prevented RCS name being displayed when erroringAaron Bentley2005-05-181-6/+5
|
* Added tests for double-initAaron Bentley2005-05-181-2/+10
|
* Added inline help to set-root commandAaron Bentley2005-05-181-1/+20
|
* Better errors for bad bug rootsAaron Bentley2005-05-181-1/+7
|
* Normalized paths before use in rel_filenameAaron Bentley2005-05-181-1/+3
|
* Ensured .be is source for Arch (closes 381)Aaron Bentley2005-05-181-1/+1
| | | | | | | Modified bug reports: 381: Ensure .be is source in Arch status: open -> closed
* Fixed test case for newAaron Bentley2005-05-181-1/+1
|
* Improved command parsing for "new"Aaron Bentley2005-05-181-0/+12
|
* Added tests for missing $EDITORAaron Bentley2005-05-171-0/+4
| | | | | | | Modified bug reports: ecc: no tests for missing $EDITOR status: open -> closed
* Fixed bug handing missing $EDITORAaron Bentley2005-05-171-1/+5
|