Skip to content

Commit

Permalink
Merged changes from local branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan McGreggor duncan@canonical.com authored and Duncan McGreggor duncan@canonical.com committed Dec 18, 2009
1 parent 7374b2e commit 800de25
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
22 changes: 22 additions & 0 deletions ChangeLog
@@ -1,7 +1,29 @@
2009.12.18

* Updated the admin script to use the new bzr-svn plugin syntax.
* Renamed the exceptions module and updated one of the contained classes.

2009.11.18

* Updated TODO.

2009.10.27

* Convert merged_cells to unit tests.
* Fix test_pictures so that it doesn't save a temporary file.
* Remove duplicate code in test_pictures.
* Port picture test.
* Fix spelling of test_charaters.py to test_characters.py.
* Get header footer tests ported over and working.
* Remove debug statements.
* Write unicode test.

2009.10.22

* Make test_tables pass.
* Comment out empty test_headerfooter until it's ready.
* Complain on duplicate test method names in generateReferenceDocs.py.

2008.06.11

* Added Juanjo Conti's patch to support unicode.
Expand Down
2 changes: 1 addition & 1 deletion admin/commit.sh
Expand Up @@ -59,7 +59,7 @@ function localCommit {

function pushGoogleCode {
echo "Pushing to Subversion now ..."
bzr svn-push $SVN
bzr push $SVN
}

function pushLaunchpad {
Expand Down
7 changes: 5 additions & 2 deletions rtfng/ertf.py → rtfng/exceptions.py
Expand Up @@ -5,5 +5,8 @@
class RTFError(Exception):
pass

class RTFParseError(RTFError):
"Unable to parse RTF data."

class ParseError(RTFError):
"""
Unable to parse the RTF data.
"""

0 comments on commit 800de25

Please sign in to comment.