* src/docgen/PdfDoc.py: add the ability to open the document in the

default viewer
* src/docgen/AbiWord2Doc.py: add the ability to open the document in AbiWord
* src/docgen/OpenOfficeDoc.py: fixed the search for default viewer
* src/docgen/RTFDoc.py: add the ability to open the document in the default viewer
* src/docgen/HtmlDoc.py: add the ability to open the document in the default viewer
* src/docgen/KwordDoc.py: add comment


svn: r2575
This commit is contained in:
Don Allingham
2004-01-01 18:17:47 +00:00
parent ca0ac5c951
commit e047ea7aba
6 changed files with 118 additions and 12 deletions

View File

@@ -476,4 +476,10 @@ class KwordDoc(BaseDoc.BaseDoc):
self.text = self.text + text
#------------------------------------------------------------------------
#
# Register the document generator with the GRAMPS plugin system
#
#------------------------------------------------------------------------
Plugins.register_text_doc(_("KWord"),KwordDoc,1,1,1,".kwd")