Changeset 4142
- Timestamp:
- 08/14/08 12:26:03 (5 months ago)
- Files:
-
- page2docbookplugin/page2docbook/pagetodocbook/pagetodocbook.py (modified) (1 diff)
- page2docbookplugin/page2docbook/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
page2docbookplugin/page2docbook/pagetodocbook/pagetodocbook.py
r2539 r4142 29 29 30 30 def convert_content(self, req, input_type, source, output_type): 31 #extract all data resources 32 datadir = resource_filename(__name__, 'data') 33 31 34 html = wiki_to_html(source, self.env, req) 32 35 options = dict(output_xhtml=1, add_xml_decl=1, indent=1, tidy_mark=0, input_encoding='utf8', output_encoding='utf8', doctype='omit', wrap=0, char_encoding='utf8') page2docbookplugin/page2docbook/setup.py
r4138 r4142 2 2 3 3 PACKAGE = 'PageToDocbook' 4 VERSION = '0.6. 1'4 VERSION = '0.6.2' 5 5 6 6 setup(name=PACKAGE, … … 14 14 15 15 # dependencies 16 install_requires = ['setuptools', 17 ], 16 install_requires = ['setuptools'], 17 18 # automatically extract everything bellow 'data' 19 #eager_resources=['data'], 18 20 19 21 #extras_require = {'tidy':['ctypes','utidylib']},
