skip to navigation
skip to content

ipdasite.theme 2.0.1

International Planetary Data Alliance Site Theme

Latest Version: 2.1.1

This package provides the look and feel for the the International Planetary Data Alliance (IPDA) web site.

Although intended for the web site of the IPDA, this package may be installed on any Plone 4 site. It was developed by the Planetary Data System (PDS).

Installation

Use Buildout with the plone.recipe.zope2instance recipe.

  • Add ipdasite.theme to the list of eggs to install, e.g.:

    [buildout]
    ...
    eggs =
        ...
        ipdasite.theme
    
  • Tell the plone.recipe.zope2instance recipe to install a ZCML slug:

    [instance]
    recipe = plone.recipe.zope2instance
    ...
    zcml =
        ipdasite.theme
    
  • Re-run buildout, e.g. with:

    $ ./bin/buildout
    

You can skip the ZCML slug if you are going to explicitly include the package from another package's configure.zcml file.

Changelog

2.0.1 - Workaround TinyMCE

This release works around some of the problems with TinyMCE. Notably, the IPDA theme includes a background image on the html element so it can fill the entire page regardless of scrolling. However, the inner html in the TinyMCE iframe picks that up as well, leaving an ugly navy blue block in your text editing area. Secondly, Products.TinyMCE includes a link "Edit without visual editor" that's contained in a div with a hard-coded style block set to a -1em margin. That makes the link land badly in our theme. Sadly, there's no CSS classes or IDs we can use on that link (or its div) so we sneak some invisible content just above it to space it out. (Ugly yes, but that should be fixed in Products.TinyMCE.)

2.0.0 - Plone 4

This release of the IPDA Site Policy brings about Plone 4 compatibility.