|
About
Overview
Features
Install
CVS
Mailing Lists
Manual
Files organisation
Compiling
Testing
Documenting
Going on inline
Documentation
Java classes
Stylesheets
| |
Going online
Going on-line |
All the configuration in the chello project is designed for easing your development, not for performance. Before putting your site on-line, your should modify some settings
|
cocoon.xconf |
Change
<sitemap file="sitemap.xmap" reload-method="synchron" check-reload="yes"/>
To:
<sitemap file="sitemap.xmap" reload-method="asynchron" check-reload="no"/>
|
web.xml |
modify
<init-param>
<param-name>log-level</param-name>
<param-value>DEBUG</param-value>
</init-param>
to
<init-param>
<param-name>log-level</param-name>
<param-value>ERROR</param-value>
</init-param>
|
Recompiling with optimization |
In build.xml change:
<property name="debug" value="on"/>
<property name="optimize" value="off"/>
<property name="debug" value="off"/>
<property name="optimize" value="on"/>
|
Building the Web Archive |
Rebuild the whole project
build clean
build dist
The war file is built under tomcat/webapps : you can do your final testing before giving the WAR file to your favorite system administrator
|
|