| Welcome to Apache LenyaYou have successfully installed Apache Lenya 2.0.2 (Revision: xxx). To start, click on any of the publications on the left, or create a new publication. About Apache Lenya is a Java-based open-source Content Management System. It is based on open standards such as XML and XSLT. It is based on Apache Cocoon. Lenya is a community project and is being developed under the aegis of the Apache Software Foundation (ASF). You are welcome to join our mailing lists and contribute! Features
            supports multi-lingual websitesincludes several client-side content editors, many of them WYSIWYGallows for complex workflows (edit/submit/review/publish)allows for arbitrary output, does not impose standard layouts or techniques (such as HTML tables) on the userprovides revision control, old page versions can be viewed and restored if necessarypowerful XML processing capabilities thanks to the underlying Cocoon engine... README: Apache LenyaImportant notes for users updating from an earlier 2.0 release2009-09-13: I18n catalogues require proper namespaceEver since some update in late 2008, all your custom I18n catalogues must be in the namespace xmlns="http://apache.org/cocoon/i18n/2.1", otherwise localization transformation will break globally when you migrate to a recent version.Symptoms are "untranslated" buttons and message keys displayed in place of the actual translation.
 Thanks to user Gerd for finding this out.
 2007-11-08: Redirection changesMost of our sitemap redirects have been changed to make them work with proxy environments. If you notice any regressions, please complain to the dev list immediately. 2007-11-08: New Proxy test scaffoldIf you are a developer or a user interested in proxying, please take a look at the proxy test scaffold in tools/proxytest and read the README. It's important to regularly test new code in proxied environments and non-root contexts. 2007-08-22: User names are now case insensitiveUser names are now case insensitive to better support Windows, user assumptions, auto form completion, and support. This is done by converting all user names to lower case. Any previously created accounts with upper case characters will no longer work. To fix delete and recreate the account using the built in tools. Or optionally, rename any *.iml files in your publication's config/access-control/passwddirectory so that the file names are all lower case. You will also have to edit theidattribute of theidentityelement to make it lower case in those files as well. 2007-08-13: Workflow schema validation fixedThe old XSD-based schema validation in workflow.xmlwas never used. It has now been ported to RNG for consistency and is applied to your custom workflows during deployment. You will need to remove thexsi:schemaLocationattribute (and you can then also remove thexmlns:xsideclaration) from your custom publications'config/workflow/workflow.xmlif you have defined one. 2007-08-12: Resource type configuration changedThe configuration syntax of resource types has been changed for consistency. Please apply the following changes to your custom resource type configurations: 
             <sample-name mime-type="baz" name="bar">fallback://foo</sample-name>becomes<sample mime-type="baz" name="bar" uri="fallback://foo"/> <schema src="fallback://foo.rng" language="http://relaxng.org/ns/structure/0.9"/>becomes<schema uri="fallback://foo.rng" namespace="http://relaxng.org/ns/structure/0.9"/> After that, you need to delete build/lenya/webapp/WEB-INF/cocoon.xconfand rebuild Lenya to deploy the changes. 2007-07-27: PolicyAuthorizer removedThe access control for Lenya documents is now also handled by the UsecaseAuthorizer via a newly introduced usecase "ac.visit". For your custom publications, you will need to give your users the appropriate permissions. We suggest copying the visit.rmlrole from the default publication.Moreover, be sure to remove the
 <authorizer type="policy"/>line from your publications'config/access-control/access-control.xml. 2007-07-27: new generic editor usecasesA new generic set of editor helper usecases has been introduced: 
            editors.insertLinkeditors.insertImageeditors.insertAsseteditors.createResource These are now re-used by all editors, which got us rid of a lot of code duplication. Internet Explorer users watch out: if you have problems with selections not working properly when using those new usecases, please complain on the dev list. 2007-07-19: mime-typeattribute for resource type samplesThe <sample-name>elements of the resource type declaration must have amime-typeattribute. This allows the Create usecase to initialize the MIME type of the document correctly. 2007-07-12: publication.xml/proxieswrapper element re-introducedThe <proxies>wrapper element is now required again for consistency reasons. 2007-07-03: publication.xml/proxiesreplaced bycocoon.xconf/GlobalProxiesThe <proxies>element inpublication.xmlis not supported anymore. Instead, you have to configure theGlobalProxiesservice entry incocoon.xconf. For more information, see [Proposal] Global proxy configuration. 2007-06-26: base-urlandproxy-urlinput modules replaced byproxymoduleThe base-urlandproxy-urlinput modules have been replaced by theproxymodule. The functionality of this module corresponds to the ProxyTransformer with one exception: If the webappUrl parameter is an empty string, the root proxy URL (or the context prefix, resp.) is returned. Usage: {proxy:{webappUrl}}. 2007-06-13: Apply ProxyTransformer after UuidToUrlTransformerThe uuid2url and proxy transformers now complement each other. You have to apply the proxy transformer right after the uuid2url transformer: 
            <map:transform type="uuid2url"/> <map:transform type="proxy"/> ... Internal links (to documents, CSS, etc.) don't need to contain the context path anymore, this is now handled by the proxy transformer. 2007-05-29: Using UUID-based URLs for navigation elementsNow the sitetree module uses lenya-document:{uuid}URLs for navigation elements. Because no HTTP URLs are evaluated anymore, you need to pass the document's path instead of URL to the navigation element calls, i.e. the step/{6}in the following call has to be the document's path in the site structure: 
            <map:generate src="cocoon://modules/sitetree/{1}/{2}/{3}/{4}/{5}/{6}.xml> 2007-05-25: Converted "About Lenya" page to usecaseTo enable the "About Lenya" usecase, please set the permissions for the admin.aboutLenyausecase in yourconfig/access-control/usecase-policies.xmlfile, or use the tab "Usecases" in the administration GUI. 2007-05-08: Fixed create-use-caseattributeThe value of the create-use-caseattribute of theuser-typeelement inaccess-control.xmlwas invalid. The admin area didn't use this attribute yet. Since this has been fixed, you have to update your$PUB_HOME/config/access-control/access-control.xmlfiles: 
            <user-type class="org.apache.lenya.ac.file.FileUser" create-use-case="admin.addUser">Local User</user-type> 2007-05-05: Introduced workflow.multiWorkflowInvokeusecasePlease add the permissions for this usecase to your config/access-control/usecase-policies.xmlfile, or use the tab "Usecases" in the administration GUI. 2007-04-30: Renamed $PUB_HOME/config/publication.xconftopublication.xmlPlease rename your $PUB_HOME/config/publication.xconffile to$PUB_HOME/config/publication.xml. This change was done to preserve consistency with the other configuration file names. 2007-04-23: Moved and renamed $PUB_HOME/config/lucene_index.xconfPlease move and rename your $PUB_HOME/config/lucene_index.xconffile to$PUB_HOME/config/search/lucene_index.xml. This change was done to preserve consistency with the other configuration file names and locations. 2007-04-23: Moved $MODULE_HOME/module.xmlIf you are using custom modules, please move your module.xmlfile into theconfig/directory of the module (create one if necessary). This change was done to preserve consistency with thepublication.xmllocation. 2007-04-18: ac/is nowaccess-control/In order to make the Lenya publication configuration more self-explanatory, the directory $PUB_HOME/config/achas been renamed to$PUB_HOME/config/access-control. Additionally, the access control configuration file has been renamed fromac.xconftoaccess-control.xml.You will have to change your custom publications accordingly. Don't forget to change the path settings in
 access-control.xmlas well! 
            Note the new suffix! From now on, "xconf" will only be used for patchfiles that are integrated into cocoon.xconf at build time. All other configuration files that are parsed directly should end in .xml.
           2007-04-13: You need to update your custom publication.xconffiles!As of revision 528490, the file $PUB_HOME/publication.xmlis no longer used. Its contents should be merged into$PUB_HOME/config/publication.xconf.To accomodate this, the format ofpublication.xconfhas changed a bit (see below).Sorry for the breakage, but we were able to eliminate a lot of old ad-hoc code and duplication with this change, and the new xconf file looks a lot nicer and more intuitive.
  Most important changes: All elements in publication.xconfmust now be in the namespacehttp://apache.org/cocoon/lenya/publication/1.1, and<module/>,<proxy/>, and<resource-type>elements must now be grouped in<modules/>,<proxies/>, and<resource-types/>. See the default publication for an example.You can use the RNG schema at
 src/resources/build/publication.rngto verify that your file is correct: 
            cd $LENYA_HOMEjava -jar lib/jing-20030619.jar \
 src/resources/build/publication.rng \
 $YOURPUB/config/publication.xconf
 New per-publication readme.xmlIf you want to provide a custom README for your publication (maybe you have used the old <lenya:readme/> in the now gone publication.xconf), you can put it in $YOURPUB/readme.xml. It is now a standard Lenya CMS page in thehttp://apache.org/cocoon/lenya/cms-page/1.0namespace. |