aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/html.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-06 17:20:39 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-06 17:20:39 -0500
commitba31b657c49649ee0b00663a32e907bb482270ac (patch)
tree31142a323cd8a9107563a273b7c15fd8e76eb2a1 /becommands/html.py
parentfc131e3acbf657f42959910c4f4483a09c871016 (diff)
downloadbugseverywhere-ba31b657c49649ee0b00663a32e907bb482270ac.tar.gz
be --dir DIR COMMAND now roots the bugdir in DIR without changing directories.
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
Diffstat (limited to 'becommands/html.py')
-rw-r--r--becommands/html.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/html.py b/becommands/html.py
index a031188..d9e0d73 100644
--- a/becommands/html.py
+++ b/becommands/html.py
@@ -21,7 +21,8 @@ import xml.sax.saxutils, htmlentitydefs
__desc__ = __doc__
-def execute(args, manipulate_encodings=True, restrict_file_access=False):
+def execute(args, manipulate_encodings=True, restrict_file_access=False,
+ dir="."):
"""
>>> import os
>>> bd = bugdir.SimpleBugDir()
@@ -50,7 +51,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
raise cmdutil.UsageError, 'Too many arguments.'
bd = bugdir.BugDir(from_disk=True,
- manipulate_encodings=manipulate_encodings)
+ manipulate_encodings=manipulate_encodings,
+ root=dir)
bd.load_all_bugs()
html_gen = HTMLGen(bd, template=options.template, verbose=options.verbose,