Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | be-mbox-to-xml is now better at message-id, in-reply-to, and references. | W. Trevor King | 2009-07-21 | 1 | -3/+26 |
| | | | | | | | | | | | | A previous "len(ret) >= 0" had been stripping the alt-id and in-reply-to from _all_ parts of multipart comments. Now it only strips them from parts after the first. The following parts do not specify and alt-id, and they all are in-reply-to the first part. I also added the KNOWN_IDS list for selecting amongst an array of possible in-reply-to or references ids. This works well enough for now, but would be more robust if we could import a list of previously known ids from BE... | ||||
* | be-mbox-to-xml handles emails without explicit transfer encodings. | W. Trevor King | 2009-07-21 | 1 | -1/+4 |
| | |||||
* | Reorganized directory structure, mostly to put all the interfaces in | W. Trevor King | 2009-07-14 | 81 | -0/+2503 |
one place and make things clearer to the uninitiated. Here's my current understanding: . |-- libbe (the guts of BE) |-- becommands (plugins for all "be *" commands) |-- doc (documentation, currently just the man page) |-- interfaces (non-commandline interface implementations) | |-- web | | |-- Bugs-Everywhere-Web (in Turbogears) | |-- gui | | |-- beg (in Tkinter) | | `-- wxbe (in WX) | |-- email | `-- xml (xml <-> whatever conversion) `-- misc (random odds and ends) `-- completion (shell completion scripts) Note that I haven't attempted to use the web or gui interfaces in a while, so I'm not sure how well they're holding vs the core development. |