aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/import_xml.py
Commit message (Collapse)AuthorAgeFilesLines
* Used PyCharms inspectors.Matěj Cepl2024-03-301-10/+10
|
* WIP plenty of clean-ups and porting to Python 3.Matěj Cepl2024-01-211-3/+3
|
* 2to3 conversion of the repo.Matěj Cepl2024-01-181-78/+78
|
* Transition to libbe.LOG for loggingW. Trevor King2013-01-241-3/+3
| | | | | | | This makes it easier to tweak log verbosity and redirect logs to other handlers. For example, the WSGI servers are unstable with stderr closed, and crash with an IOError if they try to print a warning to stderr.
* Ran update-copyright.py.W. Trevor King2012-10-161-1/+1
|
* command:import_xml: fix `--r` -> `-r` in long help.W. Trevor King2012-09-031-2/+2
|
* command:import_xml: fix be-mbox-to-xml -> be-mail-to-xml.W. Trevor King2012-09-031-3/+3
| | | | | | | | | | This catches the doc up with misc/xml/be-mail-to-xml: commit c8985785eb741ff646082879f1ca5e9cfe3873b0 Author: W. Trevor King <wking@drexel.edu> Date: Wed Jan 20 15:22:28 2010 -0500 'be-mbox-to-xml' -> 'be-mail-to-xml' + support for several formats.
* Rewrite commands to use bugdirs instead of a single bugdir.W. Trevor King2012-08-291-169/+243
| | | | | | | The bulk of the work is in regard to XML, with new BugDir.xml and .from_xml methods to support the new <bugdir> entity. I also split the guts import_xml's ._run method into sub-methods to make the import logic more obvious.
* Ran update-copyright.py.W. Trevor King2012-02-161-10/+10
|
* Run update_copyright.py.W. Trevor King2011-05-251-1/+3
|
* Add --preserve-uuids to `be import-xml`.W. Trevor King2011-04-161-2/+4
|
* Fix bd->bugdir typo in import_xml.Valtteri Kokkoniemi2011-04-161-1/+1
|
* Bumped to version 1.0.01.0.0Chris Ball2011-01-081-1/+1
|
* Ran update_copyright.pyW. Trevor King2010-06-221-11/+12
|
* Created a bug (wontfix) for Anton Batenev's default-EDITOR comments.W. Trevor King2010-03-191-1/+1
| | | | Also fixed a UserError typo in import_xml.py.
* Fix typos in untested parts of List and Import_XML for test_usage.pyW. Trevor King2010-01-231-1/+1
|
* Improve `be import-xml` handling of root comments + tests.W. Trevor King2010-01-201-7/+105
|
* Updated copyright informationW. Trevor King2010-01-011-1/+1
|
* Added UserInterface and other improved abstractions for command handlingW. Trevor King2009-12-311-12/+15
|
* Fixed libbe.command.diff + ugly BugDir.duplicate_bugdir implementationW. Trevor King2009-12-151-6/+6
| | | | | | | | | | | | | | | | | | | | | duplicate_bugdir() works, but for the vcs backends, it could require shelling out for _every_ file read. This could, and probably will, be horribly slow. Still it works ;). I'm not sure what a better implementation would be. The old implementation checked out the entire earlier state into a temporary directory pros: single shell out, simple upgrade implementation cons: wouldn't work well for HTTP backens I think a good solution would run along the lines of the currently commented out code in duplicate_bugdir(), where a VersionedStorage.changed_since(revision) call would give you a list of changed files. diff could work off of that directly, without the need to generate a whole duplicate bugdir. I'm stuck on how to handle upgrades though... Also removed trailing whitespace from all python files.
* Transitioned severity to Command-format, also added Command._get_*()W. Trevor King2009-12-141-5/+7
| | | | | | | | | | | | | | The old .requires_* thing was rediculous. The new ._get_*() callbacks allow the caller to provide a means for getting the expensive structures, which the command can use, or not, as required. This will also make it easier to implement the completion callbacks. The callbacks should probably have matching .set_*() methods, to avoid the current cache tweaking cmd._storage = ... etc. But that can wait for now...
* Transitioned import_xml to Command-formatW. Trevor King2009-12-141-180/+184
|
* Initial directory restructuring to clarify dependenciesW. Trevor King2009-12-071-0/+434