============================
Future features and bugfixes
============================

Features
========

Support for standard mimetypes module
-------------------------------------

Add our mime types to standard Python module.

Support for URLs
----------------

>>> from openxmllib import openXmlDocument
>>> doc = openXmlDocument('http://www.mydomain.com/mydoc.docx')

Human readable plain text conversion
------------------------------------

>>> from openxmllib import openXmlDocument
>>> doc = openXmlDocument(...)
>>> doc.textDocument(target_directory)

(this may be not possible for spreadsheets)

HTML conversions
----------------

>>> from openxmllib import openXmlDocument
>>> doc = openXmlDocument(...)
>>> doc.htmlDocument(target_directory)

This requires to find open source XSLT stylesheets.

Document generation
-------------------

FIXME: more to say here

Bugfixes
========

...Waiting for feedback ;o)
