lenya/src/webapp/lenya/pubs/docs/resources/html blank.html,NONE,1.1 displayToc.js,NONE,1.1 introduction.html,NONE,1.1 style.js,NONE,1.1 toc.html,NONE,1.1 toc.js,NONE,1.1 welcome.html,NONE,1.1
Michael Wechner <[email protected]> Wed, 14 May 2003 17:48:20 +0200
| Newsgroups | gmane.comp.cms.wyona.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /repository/lenya/src/webapp/lenya/pubs/docs/resources/html
In directory erbium:/tmp/cvs-serv29476/src/webapp/lenya/pubs/docs/resources/html
Added Files:
blank.html displayToc.js introduction.html style.js toc.html
toc.js welcome.html
Log Message:
toc readded
--- NEW FILE: blank.html ---
<html>
<head>
<title>Untitled</title>
</head>
<body>
</body>
</html>
--- NEW FILE: displayToc.js ---
/*-------------------------------------------------------------------
Author's Statement:
This script is based on ideas of the author.
You may copy, modify and use it for any purpose. The only condition is that if you publish web pages that use this script you point to its author at a suitable place and don't remove this Statement from it.
It's your responsibility to handle possible bugs even if you didn't modify anything. I cannot promise any support.
Dieter Bungers
GMD (www.gmd.de) and infovation (www.infovation.de)
--------------------------------------------------------------------*/
if (navigator.appName.toLowerCase().indexOf("explorer") > -1) {
var mdi=textSizes[1], sml=textSizes[2];
}
else {
var mdi=textSizes[3], sml=textSizes[4];
}
function reDisplay(currentNumber,currentIsExpanded) {
toc.document.open();
toc.document.write("<html>\n<head>\n<title>ToC</title>\n</head>\n<body bgcolor=\"#003366\">\n<table border=0 cellspacing=1 cellpadding=0>\n<tr>");
var currentNumArray = currentNumber.split(".");
var currentLevel = currentNumArray.length-1;
var scrollY=0, addScroll=true, theHref="";
for (i=0; i<tocTab.length; i++) {
thisNumber = tocTab[i][0];
var isCurrentNumber = (thisNumber == currentNumber);
if (isCurrentNumber) theHref=tocTab[i][2];
var thisNumArray = thisNumber.split(".");
var thisLevel = thisNumArray.length-1;
var toDisplay = true;
if (thisLevel > 0) {
for (j=0; j<thisLevel; j++) {
toDisplay = (j>currentLevel)?false:toDisplay && (thisNumArray[j] == currentNumArray[j]);
}
}
thisIsExpanded = toDisplay && (thisNumArray[thisLevel] == currentNumArray[thisLevel])
if (currentIsExpanded) {
toDisplay = toDisplay && (thisLevel<=currentLevel);
if (isCurrentNumber) thisIsExpanded = false;
}
if (toDisplay) {
if (i==0) {
toc.document.writeln("\n<td colspan=" + (nCols+1) + "><a href=\"javaScript:\parent.reDisplay('" + thisNumber + "'," + thisIsExpanded + ")\" style=\"font-family: " + fontTitle + "; font-weight:bold; font-size:" + textSizes[0] + "em; color: " + titleColor + "; text-decoration:none\">" + tocTab[i][1] + "</a></td></tr>");
for (k=0; k<nCols; k++) {
toc.document.write("<td> </td>");
}
toc.document.write("<td width=240> </td></tr>");
}
else {
if (addScroll) scrollY+=((thisLevel<2)?mdi:sml)*25;
if (isCurrentNumber) addScroll=false;
var isLeaf = (i==tocTab.length-1) || (thisLevel >= tocTab[i+1][0].split(".").length-1);
img = (isLeaf)?"leaf":(thisIsExpanded)?"minus":"plus";
toc.document.writeln("<tr>");
for (k=1; k<=thisLevel; k++) {
toc.document.writeln("<td> </td>");
}
toc.document.writeln("<td valign=top><a href=\"javaScript:parent.reDisplay('" + thisNumber + "'," + thisIsExpanded + ");\"><img src=\"images/" + img + ".gif\" width=13 height=12 border=0></a></td> <td colspan=" + (nCols-thisLevel) + "><a href=\"javaScript:\parent.reDisplay('" + thisNumber + "'," + thisIsExpanded + ")\" style=\"font-family: " + fontLines + ";" + ((thisLevel<=mLevel)?"font-weight:bold":"") + "; font-size:" + ((thisLevel<=mLevel)?mdi:sml) + "em; color: " + ((isCurrentNumber)?currentColor:normalColor) + "; text-decoration:none\">" + ((showNumbers)?(thisNumber+" "):"") + tocTab[i][1] + "</a></td></tr>");
}
}
}
toc.document.writeln("</table>\n</body>");
toc.document.close();
toc.scroll(0,scrollY);
if (theHref != "") content.location.href = theHref;
}
--- NEW FILE: introduction.html ---
<html>
<head>
<title>Lenya CMS Documentation</title>
</head>
<body bgcolor="#ffffff">
<h2>Generic Website</h2>
<h1>Lenya CMS Documentation</h1>
<p>
The "Editor's View (Authoring)" is still in an experimental version. Please use the
"Reader's View (Live)".
</p>
<ol>
<li><a href="index.html">Reader`s View</a> (Live)</li>
<li><a href="authoring/index.html">Editor`s View</a> (Authoring)</li>
</ol>
</body>
</html>
--- NEW FILE: style.js ---
/* These are the parameters to define the appearance of the ToC. */
var
showNumbers = true, // display the ordering strings: yes=true | no=false
backColor = "#003366", // background color of the ToC
normalColor = "#FFFFFF", // text color of the ToC headlines
currentColor = "#F0FFFF", // text color of the actual line just clicked on
titleColor = "#FFFFFF", // text color of the title "Table of Contents"
mLevel = 1, // number of levels minus 1 the headlines of which are presentet with large and bold fonts
textSizes = new Array(1, 0.7, 0.6, 0.8, 0.7), // font-size factors for: [0] the title "Table of Contents", [1] larger and bold fonts [2] smaller fonts if MS Internet Explorer [3] larger and bold fonts [4] smaller fonts if Netscape Navigator.
fontTitle = "Helvetica,Arial", // font-family of the title "Table of Contents"
fontLines = "Helvetica,Arial"; // font-family of the headlines
--- NEW FILE: toc.html ---
<html>
<head>
<title>Lenya Documentation</title>
<script language="JavaScript" src="inhalt.txt"></script>
<!--
<script language="JavaScript" src="toc.js"></script>
-->
<script language="JavaScript" src="style.js"></script>
<script language="JavaScript" src="displayToc.js"></script>
</head>
<frameset cols="250,*" border=0 onload="reDisplay('0',true);">
<frame src="blank.html" name="toc">
<frame src="welcome.html" name="content">
</frameset>
</html>
--- NEW FILE: toc.js ---
var tocTab = new Array();
tocTab[0] = new Array("0", "Documentation","/menu/welcome.html");
tocTab[1]=
new Array("1",
"Lenya Basics",
"/lenya/docs/xdocs/bas-guide.html");
tocTab[2]=
new Array("1.1",
"Lenya Concepts",
"/lenya/docs/xdocs/");
tocTab[3]=
new Array("1.1.1",
"Roles of the Lenya CMS",
"/lenya/docs/xdocs/bas-roles.html");
tocTab[4]=
new Array("1.1.2",
"Configuration and Customization",
"/lenya/docs/xdocs/bas-config.html");
tocTab[5]=
new Array("1.1.3",
"Making Content editable",
"/lenya/docs/xdocs/bas-edit.html");
tocTab[6]=
new Array("1.2",
"Lenya Implementation",
"/lenya/docs/xdocs/");
tocTab[7]=
new Array("1.2.1",
"Directory Structure",
"/lenya/docs/xdocs/bas-dir.html");
tocTab[8]=
new Array("2",
"User's Guide",
"/lenya/docs/xdocs/user-guide.html");
tocTab[9]=
new Array("2.1",
"Strange Effects",
"/lenya/docs/xdocs/usr-glitches.html");
tocTab[10]=
new Array("2.1.1",
"Redirect Problems with IE5 on Mac",
"/lenya/docs/xdocs/usr-glitches.html#redirect");
tocTab[11]=
new Array("2.2",
"Authorization and Authentication",
"/lenya/docs/xdocs/usr-authorization.html");
tocTab[12]=
new Array("2.2.1",
"Logging in",
"/lenya/docs/xdocs/usr-authorization.html#login");
tocTab[13]=
new Array("2.2.2",
"Switching Users",
"/lenya/docs/xdocs/usr-authorization.html#switch");
tocTab[14]=
new Array("2.2.3",
"Logging Out",
"/lenya/docs/xdocs/usr-authorization.html#logout");
tocTab[15]=
new Array("2.2.4",
"Changing Password",
"/lenya/docs/xdocs/usr-authorization.html#chgpwd");
tocTab[16]=
new Array("2.3",
"Authoring",
"/lenya/docs/xdocs/authoring");
tocTab[17]=
new Array("2.3.1",
"Creating Content",
"/lenya/docs/xdocs/usr-create.html");
tocTab[18]=
new Array("2.3.1.1",
"Parent Child",
"/lenya/docs/xdocs/usr-create.html#pc");
tocTab[19]=
new Array("2.3.1.2",
"Document Collection",
"/lenya/docs/xdocs/usr-create.html#dc");
tocTab[20]=
new Array("2.3.2",
"Importing Content",
"/lenya/docs/xdocs/usr-import.html");
tocTab[21]=
new Array("2.3.2.1",
"HTTP Upload",
"/lenya/docs/xdocs/");
tocTab[22]=
new Array("2.3.2.2",
"Text",
"/lenya/docs/xdocs/");
tocTab[23]=
new Array("2.3.2.3",
"Multimedia (Image, Audio, Video)",
"/lenya/docs/xdocs/");
tocTab[24]=
new Array("2.3.3",
"Editing Content",
"/lenya/docs/xdocs/edit");
tocTab[25]=
new Array("2.3.3.1",
"Lenya's HTML Form Editor",
"/lenya/docs/xdocs/usr-edit-html.html");
tocTab[26]=
new Array("2.3.3.2",
"Q42's Xopus (IE5.5 or later)",
"/lenya/docs/xdocs/usr-edit-xopus.html");
tocTab[27]=
new Array("2.3.3.3",
"bitflux's Editor (Netscape6.2)",
"/lenya/docs/xdocs/usr-edit-bitflux.html");
tocTab[28]=
new Array("2.3.3.4",
"RealObjects edit-on Pro",
"/lenya/docs/xdocs/usr-edit-eonpro.html");
tocTab[29]=
new Array("2.3.4",
"Publishing Content",
"/lenya/docs/xdocs/usr-publish.html");
tocTab[30]=
new Array("3",
"Administrator's Guide",
"/lenya/docs/xdocs/administrator-guide.html");
tocTab[31]=
new Array("3.1",
"Authorization and Authentication",
"/lenya/docs/xdocs/adm-authorization.html");
tocTab[32]=
new Array("3.1.1",
"Creating and Editing Users (Browser Interface)",
"/lenya/docs/xdocs/");
tocTab[33]=
new Array("3.1.2",
"Creating and Editing Users (Command Line)",
"/lenya/docs/xdocs/adm-authorization.html#create_edit_user");
tocTab[34]=
new Array("3.1.3",
"Creating and Editing Authorization Policies (Browser Interface)",
"/lenya/docs/xdocs/");
tocTab[35]=
new Array("3.1.4",
"Creating and Editing Authorization Policies (Command Line)",
"/lenya/docs/xdocs/adm-authorization.html#edit_policies");
tocTab[36]=
new Array("3.1.5",
"Creating and Editing Groups/Roles",
"/lenya/docs/xdocs/");
tocTab[37]=
new Array("4",
"Integrator's Guide",
"/lenya/docs/xdocs/integrator-guide.html");
tocTab[38]=
new Array("4.1",
"Creating a new Publication",
"/lenya/docs/xdocs//lenya/docs/tutorial/index.html");
tocTab[39]=
new Array("4.2",
"Creating a new Document",
"/lenya/docs/xdocs/document");
tocTab[40]=
new Array("4.2.1",
"The definition of a Page",
"/lenya/docs/xdocs/");
tocTab[41]=
new Array("4.2.2",
"The definition of a Document",
"/lenya/docs/xdocs/");
tocTab[42]=
new Array("4.2.3",
"The various parts of a Page",
"/lenya/docs/xdocs/");
tocTab[43]=
new Array("4.2.4",
"Making a Page publishable",
"/lenya/docs/xdocs/int-filesystem-publisher.html");
tocTab[44]=
new Array("4.2.5",
"Making a Document publishable",
"/lenya/docs/xdocs/int-filesystem-publisher.html");
tocTab[45]=
new Array("4.2.6",
"Making a Document editable",
"/lenya/docs/xdocs/edit");
tocTab[46]=
new Array("4.2.6.1",
"With the HTML Form Editor",
"/lenya/docs/xdocs/int-html-form-editor.html");
tocTab[47]=
new Array("4.2.6.2",
"With Q42's Xopus",
"/lenya/docs/xdocs/xopus.html#hookers");
tocTab[48]=
new Array("4.3",
"Authorization and Authentication",
"/lenya/docs/xdocs/");
tocTab[49]=
new Array("4.3.1",
"Customizing Login- and Logout-Screen",
"/lenya/docs/xdocs/");
tocTab[50]=
new Array("4.3.2",
"Replace Default by Alternative Authenticator",
"/lenya/docs/xdocs/");
tocTab[51]=
new Array("4.3.3",
"Replace Default by Alternative Authorizer",
"/lenya/docs/xdocs/");
tocTab[52]=
new Array("4.4",
"Menus",
"/lenya/docs/xdocs/");
tocTab[53]=
new Array("4.4.1",
"Non-Collaborative (Authoring, Live)",
"/lenya/docs/xdocs/");
tocTab[54]=
new Array("4.4.2",
"Collaborative (Authoring, Staging, Live)",
"/lenya/docs/xdocs/");
tocTab[55]=
new Array("4.5",
"Server Architecture",
"/lenya/docs/xdocs/");
tocTab[56]=
new Array("4.5.1",
"One Server System (Authoring and Live on one machine)",
"/lenya/docs/xdocs/");
tocTab[57]=
new Array("4.5.2",
"Two Server System (One Authoring and one Live)",
"/lenya/docs/xdocs/");
tocTab[58]=
new Array("4.5.3",
"Three Server System (One Authoring and two or more Live)",
"/lenya/docs/xdocs/");
tocTab[59]=
new Array("4.5.4",
"Four Server System (Two Authoring and two or more Live)",
"/lenya/docs/xdocs/");
tocTab[60]=
new Array("4.6",
"Virtual Servers (mandantenfaehig)",
"/lenya/docs/xdocs/int-virtual-server.html");
tocTab[61]=
new Array("4.6.1",
"Apache as Proxy",
"/lenya/docs/xdocs/int-proxy-apache.html");
tocTab[62]=
new Array("4.7",
"Change Management",
"/lenya/docs/xdocs/");
tocTab[63]=
new Array("4.8",
"Performance",
"/lenya/docs/xdocs/int-performance.html");
tocTab[64]=
new Array("4.9",
"Scalability",
"/lenya/docs/xdocs/");
tocTab[65]=
new Array("4.10",
"My sidebar",
"http://developer.netscape.com/docs/manuals/browser/sidebar/");
tocTab[66]=
new Array("4.11",
"HSQL Database",
"/lenya/docs/xdocs/int-hsqldb.html");
tocTab[67]=
new Array("4.12",
"Servlet Engines",
"/lenya/docs/xdocs/");
tocTab[68]=
new Array("4.12.1",
"Tomcat",
"/lenya/docs/xdocs/int-tomcat.html");
tocTab[69]=
new Array("5",
"Developer's Guide",
"/lenya/docs/xdocs/developer-guide.html");
tocTab[70]=
new Array("5.1",
"Strange Effects",
"/lenya/docs/xdocs/");
tocTab[71]=
new Array("5.1.1",
"XSLT (Xalan) Problems with IBMJava2-13: Use another JDK (jdk1.3.1)",
"/lenya/docs/xdocs/");
tocTab[72]=
new Array("5.2",
"Pipeline Processor: Cocoon",
"http://xml.apache.org/cocoon");
tocTab[73]=
new Array("5.3",
"Authorization and Authentication",
"/lenya/docs/xdocs/access-controller.html");
tocTab[74]=
new Array("5.3.1",
"Abstract Authenticator",
"/lenya/docs/xdocs/");
tocTab[75]=
new Array("5.3.2",
"Abstract Authorizer",
"/lenya/docs/xdocs/");
tocTab[76]=
new Array("5.3.3",
"Concrete Authenticator",
"/lenya/docs/xdocs/");
tocTab[77]=
new Array("5.3.4",
"Concrete Authorizer",
"/lenya/docs/xdocs/");
tocTab[78]=
new Array("5.3.5",
"Default Authenticator: IML Authenticator",
"/lenya/docs/xdocs/");
tocTab[79]=
new Array("5.3.6",
"Default Authorizer: PML Authorizer ",
"/lenya/docs/xdocs/");
tocTab[80]=
new Array("5.4",
"Authoring",
"/lenya/docs/xdocs/authoring");
tocTab[81]=
new Array("5.4.1",
"Creating Content",
"/lenya/docs/xdocs/create");
tocTab[82]=
new Array("5.4.1.1",
"Parent Child",
"/lenya/docs/xdocs/parent-child.html");
tocTab[83]=
new Array("5.4.1.2",
"Parent Child Creator (xdoc)",
"/lenya/docs/xdocs/parent-child-creator.html");
tocTab[84]=
new Array("5.4.1.3",
"Document Collection",
"/lenya/docs/xdocs/document-collection.html");
tocTab[85]=
new Array("5.4.2",
"Importing Content",
"/lenya/docs/xdocs/");
tocTab[86]=
new Array("5.4.2.1",
"HTTP Upload",
"/lenya/docs/xdocs/");
tocTab[87]=
new Array("5.4.2.2",
"Text",
"/lenya/docs/xdocs/");
tocTab[88]=
new Array("5.4.2.3",
"Multimedia (Image, Audio, Video)",
"/lenya/docs/xdocs/");
tocTab[89]=
new Array("5.4.3",
"Editing Content",
"/lenya/docs/xdocs/edit");
tocTab[90]=
new Array("5.4.3.1",
"Lenya's HTML Form Editor (xdoc)",
"/lenya/docs/xdocs/html-form-editor.html");
tocTab[91]=
new Array("5.4.3.2",
"Q42's Xopus (IE5.5 or later) (xdoc)",
"/lenya/docs/xdocs/xopus.html");
tocTab[92]=
new Array("5.4.3.2.1",
"General Information",
"/lenya/docs/xdocs/xopus.html#general");
tocTab[93]=
new Array("5.4.3.2.2",
"Xopus request and responses (the interface)",
"/lenya/docs/xdocs/xopus.html#req-resp");
tocTab[94]=
new Array("5.4.3.2.3",
"Navigation Bar and Edit/Open Button",
"/lenya/docs/xdocs/xopus.html#navigation_bar");
tocTab[95]=
new Array("5.4.3.2.4",
"Configuration of requested URL by the client Xopus",
"/lenya/docs/xdocs/xopus.html#confRequestURL");
tocTab[96]=
new Array("5.4.3.2.5",
"Location of Xopus",
"/lenya/docs/xdocs/xopus.html#locationXopus");
tocTab[97]=
new Array("5.4.3.2.6",
"Setting up the Lenya CMS for Xopus",
"/lenya/docs/xdocs/xopus.html#setupCms");
tocTab[98]=
new Array("5.4.3.2.7",
"Hooking Xopus to an existing page",
"/lenya/docs/xdocs/xopus.html#hookers");
tocTab[99]=
new Array("5.4.3.2.8",
"Test Xopus",
"sample.html");
tocTab[100]=
new Array("5.4.3.3",
"bitflux's Editor (Netscape6.2) (xdoc)",
"/lenya/docs/xdocs/bitflux.html");
tocTab[101]=
new Array("5.4.3.4",
"RealObjects edit-on Pro (xdoc)",
"/lenya/docs/xdocs/editonpro.html");
tocTab[102]=
new Array("5.4.3.5",
"XML Web GUI",
"http://xmlwebgui.sourceforge.net/");
tocTab[103]=
new Array("5.4.3.6",
"XS DHTML Editor",
"http://sourceforge.net/projects/xsdheditor/");
tocTab[104]=
new Array("5.4.4",
"Dependency Manager",
"/lenya/docs/xdocs/");
tocTab[105]=
new Array("5.5",
"Content Management Markup Language",
"/lenya/docs/xdocs/cm-markup-language.html");
tocTab[106]=
new Array("5.6",
"Revision Controlling",
"/lenya/docs/xdocs/revision-controller.html");
tocTab[107]=
new Array("5.7",
"Workflow Management",
"/lenya/docs/xdocs/wf-markup-language.html");
tocTab[108]=
new Array("5.8",
"Publishing",
"/lenya/docs/xdocs/publishing.html");
tocTab[109]=
new Array("5.8.1",
"Filesystem Publisher",
"/lenya/docs/xdocs/filesystem-publisher.html");
tocTab[110]=
new Array("5.8.2",
"Command Line Interface",
"/lenya/docs/xdocs/command-line-interface.html");
tocTab[111]=
new Array("5.9",
"Replication",
"/lenya/docs/xdocs/");
tocTab[112]=
new Array("5.10",
"Event Handling",
"/lenya/docs/xdocs/");
tocTab[113]=
new Array("5.11",
"Services",
"/lenya/docs/xdocs/");
tocTab[114]=
new Array("5.11.1",
"Spell Checking",
"http://www.canoo.ch/online/germanspellingchecker.html");
tocTab[115]=
new Array("5.11.2",
"Related Content",
"/lenya/docs/xdocs/");
tocTab[116]=
new Array("5.11.3",
"Babel Fish",
"/lenya/docs/xdocs/");
tocTab[117]=
new Array("5.11.4",
"Highlighting and Linking (Companies, Persons, etc.)",
"/lenya/docs/xdocs/");
tocTab[118]=
new Array("5.11.5",
"Location and Showtime (Movies)",
"/lenya/docs/xdocs/");
tocTab[119]=
new Array("5.12",
"Data Abstraction Layer",
"/lenya/docs/xdocs/");
tocTab[120]=
new Array("5.13",
"Syndication/Aggregation",
"/lenya/docs/xdocs/");
tocTab[121]=
new Array("5.14",
"Monitoring",
"/lenya/docs/xdocs/");
tocTab[122]=
new Array("5.15",
"Scheduler",
"/lenya/docs/xdocs/scheduler.html");
tocTab[123]=
new Array("5.16",
"Testing",
"/lenya/docs/xdocs/");
tocTab[124]=
new Array("5.16.1",
"Webtest",
"http://webtest.canoo.com/webtest/manual/WebTestHome.html");
tocTab[125]=
new Array("5.16.2",
"Anteater",
"http://sourceforge.net/projects/aft/");
tocTab[126]=
new Array("5.16.3",
"Latka",
"http://jakarta.apache.org/commons/latka/index.html");
tocTab[127]=
new Array("5.16.4",
"HtmlUnit",
"http://htmlunit.sourceforge.net");
tocTab[128]=
new Array("5.16.5",
"HttpUnit",
"http://sourceforge.net/projects/httpunit");
tocTab[129]=
new Array("5.17",
"Servlet Proxy Generator",
"/lenya/docs/xdocs/servlet-proxy-generator.html");
tocTab[130]=
new Array("5.18",
"Scratchpad",
"/lenya/scratchpad/index.html");
tocTab[131]=
new Array("6",
"Javadoc",
"/lenya/docs/xdocs/javadoc");
tocTab[132]=
new Array("6.1",
"Lenya Overview",
"/lenya/docs/xdocs/index.html");
tocTab[133]=
new Array("6.2",
"Cocoon Overview",
"http://xml.apache.org/cocoon/apidocs/index.html");
tocTab[134]=
new Array("6.3",
"Javadoc Tool Home Page",
"http://java.sun.com/j2se/javadoc/index.html");
var nCols = 5;
--- NEW FILE: welcome.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<h2 align="left"><a name="0">Documentation Lenya</a> <br>
</h2>
<br>
<b>Lenya Basics:</b><br>
<br>
Here you will find a documentation about the basic concepts and
the implementation of Lenya.
<br>
<br>
<br>
<b>User's Guide:</b><br>
<br>
Here you will find a documentation about the handling of Lenya as a User.
Users typically are concerned with problems such as creating, editing
and
publishing articles.<br>
<br>
<br>
<b>Administrator's Guide:</b><br>
<br>
Here you will find a documentation about the administration of Lenya.
Administrators typically have to deal with problems arising from maintenance
concerning User's and their profiles or the site, publication and page
description.<br>
<br>
<br>
<b>Integrator's Guide:</b><br>
<br>
Here you will find a documentation about the integration of Lenya.
Integrators not only have to manage the installation, but are also responsible
for the design ond layout of the publication.<br>
<br>
<br>
<b>Developer's Guide:</b><br>
<br>
Here you will find a documentation about the development of Lenya.
Developers are concerned with the improvement of the source code of Lenya.
<br>
<br>
<br>
<b>Javadoc:</b><br>
<br>
Here you will find a documentation about the Java classes used in Lenya and Cocoon.
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</body>
</html>