Aissac / radiant-stereotype-extension

Define templates for Pages' children in Radiant CMS.

This URL has Read+Write access

name age message
file LICENSE Fri Mar 27 08:25:47 -0700 2009 Updated readme, description, version and added ... [Istvan Hoka]
file README.md Thu Oct 15 10:40:20 -0700 2009 cleanup and update readme [cristi]
file Rakefile Wed Mar 18 03:15:37 -0700 2009 initial commit [cristi]
directory app/ Wed Oct 14 05:52:31 -0700 2009 updated for 0.9 [cristi]
directory features/ Mon Jun 29 10:00:34 -0700 2009 added cucumber features [cristi]
directory lib/ Wed Oct 14 05:52:31 -0700 2009 updated for 0.9 [cristi]
directory spec/ Wed Oct 14 05:52:31 -0700 2009 updated for 0.9 [cristi]
file stereotype_extension.rb Thu Oct 15 10:40:20 -0700 2009 cleanup and update readme [cristi]
README.md

Radiant Stereotype Extension

About

An extension by Aissac that adds templating support to Radiant CMS.

Tested on Radiant 0.7.1, 0.8 and 0.9 RC1.

Features

  • Define named templates (stereotypes) for Pages;
  • Templates are assigned per-parent Page, making all children have the defined 'stereotype' by their parent;
  • You can specify the new page's parts, filters, layout, page type and status.

Instalation

Stereotype Extension has one dependency, the Radiant Custom Fields Extension.

git clone git://github.com/Aissac/radiant-custom-fields-extension.git vendor/extensions/custom_fields

Because Stereotype Extension keeps the settings in the Radiant::Config table it is highly recommended to install the Settings Extension

git clone git://github.com/Squeegy/radiant-settings.git vendor/extensions/settings

Finally, install the Stereotype Extension

git clone git://github.com/Aissac/radiant-stereotype-extension.git vendor/extensions/stereotype

Note

The git branches hold stable versions of the extension for older version of Radiant CMS. To checkout one of these branches:

git clone git://github.com/Aissac/radiant-stereotype-extension.git vendor/extensions/stereotype
cd vendor/extensions/stereotype
git checkout -b <branch-name> origin/<remote-branch-name>

Configuration

To add stereotypes you need to add fields to the Radiant::Config table. There are three types of settings for each stereotype:

1.) Page Parts (and filters)

The key has to look like: stereotype.<name_of_the_stereotype>.parts and the value body:markdown,sidebar:textile.

2.) Layout

The key has to look like: stereotype.<name_of_the_stereotype>.layout and the value has to be the name of a layout (case sensitive)

3.) Page type

The key should look like: stereotype.<name_of_the_stereotype>.page_type and the value has to be a valid class_name attribute of the Page class. (Examples: ArchivePage, FileNotFoundPage or ArchiveMonthIndexPage)

4.) Status

The key has to look like: stereotype.<name_of_stereotype>.status and the value has to be a valid status attribute of the page: draft, hidden, reviewed, published

5.) Stereotype

The key has to look like: stereotype.<name_of_stereotype>.stereotype and the value has to be a valid stereotype.

Usage

1.) Add stereotypes as described in the configuration section.

2.) Edit/create a new page that has children and select a stereotype from the dropdown labeled "Stereotype". Child pages added to this page will be created with their attributes set by default to the fields you configured.

3.) ...

4.) Profit!

Contributors