| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Tested with a single bug attribute change and comment addition.
|
|
|
|
|
| |
This cleans up Mathieu Clabaut's fix to the html_gen definition
problems in `be html -e`.
|
|\ |
|
| |
| |
| |
| | |
'html_gen' was referenced before assignment.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
You might not want the bug status displayed, e.g. if you were writing
a script that parsed the output of `be depend`.
The new implementation is better anyway since it avoids redundant
display definitions for blocks vs. blocked by.
|
| | |
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The previous implementation used
cwd=path
which would fail for non-directory paths.
The implementation before that was missing the not from
if not os.path.isdir(path):
dirname = os.path.dirname(path)
which meant it found the dirname when it didn't need to, and not when
it did ;).
|
|
|
|
|
|
|
| |
I'm not sure where the dirname manipulation came from, but it
was screwing things up ;).
Also some argument order and indentation cleanups.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This fixes Chris'
======================================================================
ERROR: Adding entries with the same ID should not increase the number
of children.
----------------------------------------------------------------------
Traceback (most recent call last):
...
CommandError: Command failed (1):
mtn: misuse: workspace required but not found
while executing
['mtn', 'automate', 'get_workspace_root']
|
|
|
|
| |
This closes #bea/c72# and its dependent tag #bea/e23#.
|
|
|
|
|
| |
`be html` is an HTML interface, but only CFBE (and `be serve`) use
HTTP.
|
| |
|
| |
|
|
|
|
| |
test_get_previous_children
|
|
|
|
|
|
|
|
| |
It had been catching exceptions from ._vcs_version, but ._vcs_version
should catch its own exceptions.
Also use cached results from .version in Darcs and
Bzr.version_cmp() rather than calling ._vcs_version directly.
|
|
|
|
|
|
|
|
|
|
|
| |
This repeats:
commit 5e769027075ce0f95d5cf9006d097f7fe7d8b38d
Author: W. Trevor King <wking@drexel.edu>
Date: Mon Dec 14 01:13:05 2009 -0500
Removed `be open` and `be close`. Alias `be status` instead.
...
which somehow was clobbered in a merge.
|
|
|
|
|
|
|
|
|
|
|
| |
This catches them up with the removal of UsageError in
commit bf3d434b244c57556bec979acbc658c30eb58221
Author: W. Trevor King <wking@drexel.edu>
Date: Sat Dec 12 00:31:55 2009 -0500
Added libbe.command.base (with Command class) and moved list
command to new format.
I guess I don't make many mistakes entering those commands ;).
|
| |
|
| |
|
|
|
|
|
| |
The previous implementation would not show them unless an explicitly
matching regexp was passed in with --extra-strings.
|
|\ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
During one of the recent merges, my updated update_copyright.py
from
commit bb382a6aba11eedeb380e2aaa9755bc0e47f9095
Author: W. Trevor King <wking@drexel.edu>
Date: Tue Jun 22 21:11:52 2010 -0400
Updated update_copyright to work with git/hg/bzr.
I'd added the extra VCS support when I took it over to Hooke.
was clobbered. I've restored it, and merged in the
intervening changes:
commit 2dde7664df85e91d0f914025fd66d147c508f6ab
Author: W. Trevor King <wking@drexel.edu>
Date: Thu Jun 24 21:51:20 2010 -0400
Add aliases to update_copyright.py for some recent commits
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Gour re-released _mailfilterrc under GPLv2+ following Chris'
suggestion:
Date: Fri, 25 Jun 2010 14:23:46 -0400
From: Chris Ball
Subject: Re: [Be-devel] procmail & maildrop
...
As an aside, the Public Domain license on it is mildly concerning,
but I think I'm willing to take it anyway since it's just a
standalone file. There are guidelines against using Public Domain
declarations for software, because they have different meaning in
different areas, and some areas are even thought to deny disclaiming
"moral rights" like this; I've heard that France is in this
situation.
...
Seems reasonable, so I'm doing that for my _procmailrc too.
This also means that _mailfilterrc no longer needs to be in
update_copyright.IGNORED_FILES, so I removed it. Actually,
since it lackes a '^# Copyright' line, it never had to be
there in the first place. Lazy me ;).
|
|\ |
|
| |
| |
| |
| | |
Gour released it to the Public Domain.
|
| |\ |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Previous implementation only matched if *every* regexp matched *every*
string. Current implementation matches is *any* regexp matches *any*
string.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
And broke out tagging functions in libbe.command.tag, so they are
accessible to other commands.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
|
| |/ |
|
| | |
|
|\ \ |
|
| | | |
|
| | | |
|
| | | |
|
|\| | |
|
| | | |
|
| |/ |
|
|/ |
|
|\
| |
| |
| |
| |
| |
| | |
Pull .be/ directory from cfbe.
Conflicts:
update_copyright.py
|