aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/comment.py
Commit message (Expand)AuthorAgeFilesLines
* Added libbe.TESTING (defaults to False).W. Trevor King2009-12-031-2/+5
* Avoid redundant Comment.alt_idsW. Trevor King2009-11-301-1/+3
* Changed Bug and Comment.merge() kwargs.W. Trevor King2009-11-301-9/+27
* Moved comment.list_to_root() to Bug.add_comments() with some cleanups.W. Trevor King2009-11-291-48/+3
* Added comment import to Bug.from_xml().W. Trevor King2009-11-281-1/+4
* Added Bug.merge() and Comment.merge().W. Trevor King2009-11-281-7/+75
* Broke `be comment --xml` out and extended into `be import-xml`.W. Trevor King2009-11-211-0/+6
* Added Bug.from_xml() + some .from_xml() fixups.W. Trevor King2009-11-201-49/+48
* Ran the new update_copyright.pyW. Trevor King2009-11-191-1/+1
* Don't attempt to convert unicode objects to strings in *._setting_attr_string()W. Trevor King2009-11-171-1/+3
* Pass content_type to Comment.new_reply() to fix error adding non-text/ commentsW. Trevor King2009-10-201-1/+3
* os.path.isdir() -> .exists() for check for "comments" file.W. Trevor King2009-09-211-1/+1
* Added docstrings to libbe submodules.W. Trevor King2009-08-311-0/+5
* RCS -> VCS, BUGDIR_DISK_VERSION -> v1.2W. Trevor King2009-08-311-17/+17
* Added libbe/upgrade.py to handle upgrading on-disk bugdirs.W. Trevor King2009-08-311-3/+0
* Made get_path() definitions consistent between bugdirs, bugs, and comments.W. Trevor King2009-08-311-6/+6
* Fixed comment.cmp_attr unittest because "o" > "a" so cmp("o", "a") == 1.W. Trevor King2009-07-311-2/+2
* Removed debugging exception from libbe/comment.py.W. Trevor King2009-07-271-1/+0
* Comment.remove() now ignores .sync_with_disk when removing the root comment.W. Trevor King2009-07-271-1/+1
* Added cmp functions to libbe.comment, and fleshed them out in libbe.bug.W. Trevor King2009-07-271-0/+58
* Hack Comment.load_settings() to work around From->Author change.W. Trevor King2009-07-271-0/+3
* .sync_with_disk fixes for libbe.bugdir and .comment.W. Trevor King2009-07-271-1/+2
* Added DiskAccessRequired errors to libbe.bug.Bug and .comment.Comment.W. Trevor King2009-07-261-74/+97
* Renamed Comment.From and .time_string to .author and .date respectively.W. Trevor King2009-07-251-27/+23
* I'll add Comment.extra_strings too, while I'm at it.W. Trevor King2009-07-211-0/+14
* Cleaned up saving/sync_with_disk.W. Trevor King2009-07-211-4/+16
* Cleaned up some outdated libbe.settings_object.EMPTY cruft.W. Trevor King2009-07-201-3/+2
* Updated GPLv2 to current GPLv2.W. Trevor King2009-07-141-12/+11
* Added "be comment --xml --ignore-missing-references ID COMMENT".W. Trevor King2009-07-121-3/+21
* Minor fixes to get unittests working again.W. Trevor King2009-07-121-2/+1
* Added be-mbox-to-xml.W. Trevor King2009-07-121-5/+19
* "be comment --xml" now translates comment uuids to alt_ids.W. Trevor King2009-07-111-1/+1
* Adjustments to new versioned_property behavior.W. Trevor King2009-07-111-9/+30
* seems to work ;)W. Trevor King2009-07-101-19/+67
* Updated copyright blurbs and AUTHORS and included script for future updatesW. Trevor King2009-07-011-1/+3
* Added ability to handle non text/* MIME types.W. Trevor King2009-06-261-4/+18
* Added Bug.extra_strings to support add-on functionality, e.g. `be tag`.W. Trevor King2009-06-231-4/+4
* Use Comment.content_type in xml output.W. Trevor King2009-06-221-0/+2
* Escape XML strings.W. Trevor King2009-06-221-10/+12
* Fixed libbe.settings_object.EMPTY output in bug/comment XML.W. Trevor King2009-06-221-1/+1
* Adjusted comment XML fields for consistency.W. Trevor King2009-06-221-4/+4
* Merged Thomas Habets 2009-01-07 XML output for "be show".W. Trevor King2009-06-191-3/+48
|\
| * XML output for "be show"Thomas Habets2009-01-071-0/+31
* | Fixed missing directory error when merging comments onto a bare bug.W. Trevor King2008-12-041-0/+2
* | Converted Comment to the settings_object system.W. Trevor King2008-12-021-56/+28
* | Added decorator-style properties to bugdir. Created settings_object module.W. Trevor King2008-12-021-1/+1
* | Added decorator-style properties to libbe/comment.py.W. Trevor King2008-12-011-66/+162
* | Added becommands/comment completion.W. Trevor King2008-11-271-2/+4
* | Added -a/n/m/r to becommands/diff.py.W. Trevor King2008-11-251-2/+2
* | Added libbe/encoding.py to wrap input/output/file access appropriately.W. Trevor King2008-11-251-3/+11