It is hosted on a hand rolled CMS that is Apache Cocoon based.
My port is here.
Rather than install the template plugin, I'm hacking an application
default.html.erb.
I managed to mash together the Fckeditor support in Adva with the
Fckeditor plugin provided by Scott Rutherford. This implementation
uses a different skin, Silver, that looks better in the Adva CMS admin
section.
Scott's implementation provides a controller for file upload, so I'm
able to upload images, browse images, etc. in Adva CMS. Now Adva CMS
is comparable to any of the PHP implementations that I've evaluated. A
visual editor is a key feature for my projects.
I did need to hack the configuration, and in the process, I removed
the iconless "Cell" button from the toolbar. I'm not sure what "Cells"
are and would be happy to read up on documentation to understand them.
Here are some issues so far:
I'll be implementing Adva's events calendar.
The home page of Yreka will probably have a special template and
controller, since it appears to be aggregating from the events calendar.
The menu and breadcrumb link to a "Section". It is important that I
preserve the current hierarchy of the Yreka website. I'm linking to a
section by generating a link using the self_and_ancestors property of
a Section. This is because link_to_content links to an article in the
section.
Each of the content sections has different heading photograph that is
part of template. Currently, I have an ugly switch statement in the
default template that tests the top level section and if the URL
peramlink is "city" for example, it displays the photo header for the
"city" section of the website. It would be much nicer to make the
photograph a property of the section, by attaching it as meta data, a
property, or some such.
It seems that the "administration" permalink generates an error
because I can rename it to "snert" and the /city/administration
section will not error out.
http://yreka.blogometer.com/city/administration
There are some content elements that cannot easily be created in the
FCKEditor that would be a good candidate for "Cells", if they are what
I think they are, so I'm eager to develop that concept.
Alan Gutierrez