Skip to main content

Extension for GenericSetup, adding support for import / export of mimetypes_registry

Project description

collective.mtrsetup

collective.mtrsetup provides a GenericSetup extension for importing and exporting mimetypes to / from the mimetypes registry.

How to use

  • Add collective.mtrsetup as dependency to your setup.py

  • Add a zcml-include to your configure.zcml or dependency.zcml

  • Add a dependency to profile-collective.mtrsetup:default to your metadata.xml in your generic setup profile

  • Create a mimetypes.xml as showed below in your generic setup profile

OpenOffice / Office 2007

There is a additional generic setup profile provided in this package (profile-collective.mtrsetup:default) which adds icons for OpenOffice (with backwards compatiblity to StarOffice) and adds the already used ms-office-icons to the new office 2007 mimetypes. The official Office 2007 icons are not added because of the license.

Examples

Here are some examples of how to use it.

Setup some testing stuff:

>>> from collective.mtrsetup.tests.base import purge_registry, import_mimetypes_registry, \
...                                            export_mimetypes_registry
>>> registry = self.portal.mimetypes_registry
>>> purge_registry(registry)
>>> len(registry.mimetypes())
0

We can add new mimetypes with a simple mimetype tag in a mimetypes.xml in our generic setup profile:

>>> filedata = """
... <?xml version="1.0"?>
... <object name="mimetypes_registry" meta_type="MimeTypes Registry">
...  <mimetype name="Any type" mimetypes="image/any"
...            extensions="any" globs="*.any" binary="True"
...            icon_path="any.png" />
... </object>
... """.strip()
>>> import_mimetypes_registry(registry, filedata)
[(20, 'mimetypes', 'Mimetype imported: <DOM Element: object at ...>')]

Now we should be able to export the current configuration:

>>> print export_mimetypes_registry(registry)
<?xml version="1.0"?>
<object name="mimetypes_registry" meta_type="MimeTypes Registry">
  <mimetype name="Any type" binary="True" extensions="any" globs="*.any"
      icon_path="any.png" mimetypes="image/any"/>
</object>

We can also just modify a existing one:

>>> filedata = """
... <object name="mimetypes_registry" meta_type="MimeTypes Registry">
...  <mimetype name="Any type" mimetypes="image/any image/another" />
... </object>
... """.strip()
>>> import_mimetypes_registry(registry, filedata)
[(20, 'mimetypes', 'Mimetype imported: <DOM Element: object at ...>')]

The above notiation just updates the mimetype record, where image/any is the first mimetype:

>>> print export_mimetypes_registry(registry)
<?xml version="1.0"?>
<object name="mimetypes_registry" meta_type="MimeTypes Registry">
  <mimetype name="Any type" binary="True" extensions="any" globs="*.any"
      icon_path="any.png" mimetypes="image/any image/another"/>
</object>

Finally we can delete a mimetype by just adding the delete flag: >>> filedata = “”” … <object name=”mimetypes_registry” meta_type=”MimeTypes Registry”> … <mimetype name=”Any type” mimetypes=”image/any” delete=”True” /> … </object> … “””.strip() >>> import_mimetypes_registry(registry, filedata) [(20, ‘mimetypes’, ‘Mimetype imported: <DOM Element: object at …>’)] >>> print export_mimetypes_registry(registry) <?xml version=”1.0”?> <object name=”mimetypes_registry” meta_type=”MimeTypes Registry”/>

You have to add at least one mimetype, otherwise the import will fail: >>> filedata = “”” … <object name=”mimetypes_registry” meta_type=”MimeTypes Registry”> … <mimetype mimetypes=”” /> … </object> … “””.strip() >>> import_mimetypes_registry(registry, filedata) [(30, ‘mimetypes’, u’Require attributes: “mimetypes” for <mimetype mimetypes=””/>’), (20, ‘mimetypes’, ‘Mimetype imported: <DOM Element: object at …>’)]

Changelog

1.0a1

  • Added updates for OpenOffice mimetypes (added new icons) and for Office 2007 mimetypes (using the old office-like icons). [12.04.2010, jbaumann]

  • Assuerd that the GS import/export adapter works on both, plone3 and plone4. Plone3’s getToolByName returns the Tool, with plone4 it returns the Utility. The Tool and the Utility do not have the same interfaces and plone3 crashes when using the old-style utility interfaces for adapter registration - so we need to use a zcml:condition. [12.04.2010, jbaumann]

  • Implemented exporting, added tests [09.04.2010, jbaumann]

  • Improved testing system [09.04.2010, jbaumann]

  • Initial implementation [08.04.2010, jbaumann]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

collective.mtrsetup-1.0a1.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

collective.mtrsetup-1.0a1-py2.4.egg (14.1 kB view details)

Uploaded Egg

File details

Details for the file collective.mtrsetup-1.0a1.tar.gz.

File metadata

File hashes

Hashes for collective.mtrsetup-1.0a1.tar.gz
Algorithm Hash digest
SHA256 7b998d5870f6b00c261ce310544d91d8a39686d34914ef70caea419adafcef40
MD5 b3aec80f526f0e54ca01411c585b2846
BLAKE2b-256 5c04dd49b8541cc194aeaa87f05a4442c4dec5d83c98b7d1cb7e96cb04fffccd

See more details on using hashes here.

File details

Details for the file collective.mtrsetup-1.0a1-py2.4.egg.

File metadata

File hashes

Hashes for collective.mtrsetup-1.0a1-py2.4.egg
Algorithm Hash digest
SHA256 c6416d4593c43dbcf2065009e04d597908a75b83cf486b09f48972e2929e8b58
MD5 01f094b4a295c60ce2cdb726574b5929
BLAKE2b-256 64ea1da0a8c2f07ef5217dabd774ea7f836a1537177597846e2258dd4c6c1de9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page