* src/docgen/OpenOfficeDoc.py: Escape special XML characters.
svn: r1720
This commit is contained in:
parent
4670d84ab1
commit
dad0cc144e
@ -1,3 +1,6 @@
|
||||
2003-06-13 Tim Waugh <twaugh@redhat.com>
|
||||
* src/docgen/OpenOfficeDoc.py: Escape special XML characters.
|
||||
|
||||
2003-06-12 Tim Waugh <twaugh@redhat.com>
|
||||
* src/docgen/OpenOfficeDoc.py: Surround images by paragraph tags
|
||||
when inside the table cell.
|
||||
|
@ -521,6 +521,9 @@ class OpenOfficeDoc(TextDoc.TextDoc):
|
||||
self.new_cell = 1
|
||||
|
||||
def write_text(self,text):
|
||||
text = string.replace(text,'&','&'); # Must be first
|
||||
text = string.replace(text,'<','<');
|
||||
text = string.replace(text,'>','>');
|
||||
text = string.replace(text,'\n','<text:line-break/>')
|
||||
self.f.write(text)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user