Fixed libbe.utuil->libbe.util typo in be-handle-mail.
authorW. Trevor King <wking@drexel.edu>
Tue, 19 Jan 2010 15:09:12 +0000 (10:09 -0500)
committerW. Trevor King <wking@drexel.edu>
Tue, 19 Jan 2010 15:09:12 +0000 (10:09 -0500)
Also removed some references to the old XML interface.

interfaces/email/interactive/README
interfaces/email/interactive/be-handle-mail

index 20709739f98f59089a7d42ffa75097a6599fe7bb..b25054c1d9e7b418fdfbc72bb934ce226e535feb 100644 (file)
@@ -28,10 +28,8 @@ first place.  There are four parsing styles:
     creating bugs         [be-bug:submit] new bug summary
     commenting on bugs    [be-bug:<bug-id>] commit message
     control               [be-bug] commit message
-    xml                   [be-bug:xml] commit message
 These are analogous to submit@bugs.debian.org, nnn@bugs.debian.org,
-and control@bugs.debian.org respectively.  The xml style has no Debian
-analog.
+and control@bugs.debian.org respectively.
 
 Creating bugs
 =============
@@ -108,15 +106,6 @@ shlex.split().
     --
     Goofy tagline ignored.
 
-XML
-===
-
-This interface allows users without access to the versioned source of
-the program to conveniently submit bugs and comments using be.  You
-should not attempt to compose emails for this interface by hand.  See
-the documentation for the `email-bugs' and `import-xml' be commands
-for details.
-
 Example emails
 ==============
 
index 14ae6ac785ddeb0e01a96cd43124a8fdba1925c5..161e11825d922064285edbef5449e03e853aed2b 100755 (executable)
@@ -374,8 +374,8 @@ class Message (object):
     def _subject_tag_type(self):
         """
         Parse subject tag, return (type, value), where type is one of
-        None, "new", "comment", "control", or "xml"; and value is None
-        except in the case of "comment", in which case it's the bug
+        None, "new", "comment", or "control"; and value is None except
+        in the case of "comment", in which case it's the bug
         ID/shortname.
         """
         tag,subject = self._split_subject()
@@ -718,7 +718,7 @@ def open_logfile(logpath=None):
             LOGPATH = os.path.join(_THIS_DIR, logpath)
     if LOGFILE == None and LOGPATH != u'none':
         LOGFILE = codecs.open(LOGPATH, u'a+',
-            libbe.utuil.encoding.get_filesystem_encoding())
+            libbe.util.encoding.get_filesystem_encoding())
 
 def close_logfile():
     if LOGFILE != None and LOGPATH not in [u'stderr', u'none']: