You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2008/03/31 15:35:45 UTC

svn commit: r642989 [2/15] - in /cocoon/site/site: 2.2/blocks/ajax/1.0/ 2.2/blocks/ajax/1.0/apidocs/ 2.2/blocks/ajax/1.0/css/ 2.2/blocks/auth/1.0/ 2.2/blocks/auth/1.0/apidocs/ 2.2/blocks/auth/1.0/css/ 2.2/blocks/batik/1.0/ 2.2/blocks/batik/1.0/apidocs/...

Modified: cocoon/site/site/2.2/blocks/auth/1.0/1317_1_1.html
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/auth/1.0/1317_1_1.html?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/auth/1.0/1317_1_1.html (original)
+++ cocoon/site/site/2.2/blocks/auth/1.0/1317_1_1.html Mon Mar 31 06:35:20 2008
@@ -179,9 +179,9 @@
 Auth comes already with some implementations for a security handler, like a
 pipeline based one that uses a usual Cocoon pipeline to authenticate a user. So
 a security handler is a helper component that you have to write in order to
-integrate you database.</p><p>You will never directly use a security handler. The handler is tied to your
-<a href="1316_1_1.html">applications</a> and Cocoon Auth makes use of a security
-handler for login and logout operations of users.</p><h2 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Configuration</h2><p>Before you can use a security handler, you have to tell Cocoon Auth about it.
+integrate your database.</p><p>You will never use your security handler directly. The handler you write is
+tied to your <a href="1316_1_1.html">applications</a> and Cocoon Auth will use it
+for login and logout operations of users.</p><h2 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Configuration</h2><p>Before you can use a security handler, you have to tell Cocoon Auth about it.
 Technically, a security handler is a singleton component, so the configuration
 of a handler takes place in the bean configurations</p><p>Let's have a look at a simple security handler configuration:</p><pre>&lt;bean name=&quot;org.apache.cocoon.auth.SecurityHandler/shop-handler&quot;
            class=&quot;org.apache.cocoon.auth.impl.SimpleSecurityHandler&quot;

Modified: cocoon/site/site/2.2/blocks/auth/1.0/1318_1_1.html
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/auth/1.0/1318_1_1.html?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/auth/1.0/1318_1_1.html (original)
+++ cocoon/site/site/2.2/blocks/auth/1.0/1318_1_1.html Mon Mar 31 06:35:20 2008
@@ -173,15 +173,16 @@
               </ul>
     </li>
       </ul>
-         <div id="contentBody"><div id="bodyText"><h1 class="docTitle">Protection</h1><h2 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Protecting Documents</h2><p>One feature of Cocoon Auth is user authentication and protecting documents. A
+         <div id="contentBody"><div id="bodyText"><h1 class="docTitle">Protection</h1><h2 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Protecting Documents</h2><p>One feature of Cocoon Auth is user authentication and document protection. A
 document can be accessible for everyone, it can be accessible by authenticated
-users or the user needs more credentials than just being logged in to read it -
-for example she has to be in a specific role.</p><p>There are several ways of protecting a document:</p><ol type="1">
+users only, or it can be accessible only to users who supply additional
+credentials (apart from just being logged in) to read it - for example she has
+to be in a specific role.</p><p>There are several ways of protecting a document:</p><ol type="1">
 <li>The Servlet Specification: It is possible to define URI spaces that require
 an authenticated users.</li>
 <li>The Sitemap: Cocoon Auth provides some actions to protect pipelines. The
 checks range from testing if the user is authenticated, over if the user has a
-role to more specific, custom access checks.</li>
+role, to more specific, custom access checks.</li>
 <li>Cocoon Flow: Cocoon Auth provides some FlowScript functions that make the
 same checks that are possible in a sitemap available to the flow controller.
 </li>
@@ -193,7 +194,7 @@
 <li>Cocoon Auth checks (using one of the methods mentioned above) if this
 document is protected. If no protection is specified, the response is this
 original document.</li>
-<li>If the document is protected, Cocoon Auth checks, if the user is
+<li>If the document is protected, Cocoon Auth checks if the user is
 authenticated.</li>
 <li>If the user is authenticated, the response is the original document. If the
 user is not authenticated, the application logic has to deal with this. For
@@ -206,18 +207,17 @@
 corresponding security handler and tries to authenticate the user.</li>
 <li>In case of a successful authentication a redirect to the original document
 (or to any configured start document) can take place.</li>
-<li>If the authentication fails another page is invoked that might
-displays(error) information to the user. Again this is freely customizable.
-</li>
+<li>If the authentication fails, another page is invoked that might display
+(error) information to the user. Again this is freely customizable.</li>
 </ol>This process is only one example for a use-case of Cocoon Auth. It can be
 configured for any authentication scheme and any flow. Every aspect is freely
 configurable.<h2 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Controlling the user access</h2>An application can be used to protected documents. It's the task of the
 application developer to specifiy if a Cocoon pipeline is only accessible for
 authenticated users of an application. This can be done either in the sitemap
-using actions, or in flow using a component or in some custom code.<h3 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Using actions</h3>Cocoon Auth provides the <em>cauth-is-logged-in</em> action to check in the
+using actions, or in flow using a component, or in some custom code.<h3 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Using actions</h3>Cocoon Auth provides the <em>cauth-is-logged-in</em> action to check in the
 sitemap if the user is logged in. The name of the application is required as a
 parameter.<pre>&lt;map:act type=&quot;cauth-is-logged-in&quot;&gt;
-  &lt;map:parameter name=&quot;application&quot; value=&quot;WebShop&quot;&gt;
+  &lt;map:parameter name=&quot;application&quot; value=&quot;WebShop&quot; /&gt;
   // USER IS LOGGED IN
 &lt;/map:act&gt;
 // USER IS NOT LOGGED IN
@@ -235,7 +235,7 @@
 <em>ApplicationManager</em> as well and invoke the same methods.<h2 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Logging out</h2>Usually a web application supports logging out of the application to free any
 resources and information on the server of the current user.<h3 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Using actions</h3>The logout process can be triggered by the <em>cauth-logout</em> action which
 requires the application name as a parameter:<pre>&lt;map:act type=&quot;cowarp-logout&quot;&gt;
-  &lt;map:parameter name=&quot;application&quot; value=&quot;WebShop&quot;&gt;
+  &lt;map:parameter name=&quot;application&quot; value=&quot;WebShop&quot; /&gt;
 
 &lt;/map:act&gt;
       </pre><h3 xmlns:p="http://outerx.org/daisy/1.0#publisher" xmlns:ns="http://outerx.org/daisy/1.0">Using flow/Custom code</h3>Again, the application manager can be used to logout a user from an

Modified: cocoon/site/site/2.2/blocks/auth/1.0/apidocs/create-apidocs.sh
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/auth/1.0/apidocs/create-apidocs.sh?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/auth/1.0/apidocs/create-apidocs.sh (original)
+++ cocoon/site/site/2.2/blocks/auth/1.0/apidocs/create-apidocs.sh Mon Mar 31 06:35:20 2008
@@ -1,7 +1,7 @@
 echo "----------------------------------------------------------------"
-echo "Creating JavaDocs for cocoon-auth-impl:1.0.0-RC2"
-f=cocoon-auth-impl-1.0.0-RC2-javadoc.jar
-jd=org/apache/cocoon/cocoon-auth-impl/1.0.0-RC2/$f
+echo "Creating JavaDocs for cocoon-auth-impl:1.0.0"
+f=cocoon-auth-impl-1.0.0-javadoc.jar
+jd=org/apache/cocoon/cocoon-auth-impl/1.0.0/$f
 dl=0
 
 if [ -f $f ]

Modified: cocoon/site/site/2.2/blocks/auth/1.0/css/site.css
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/auth/1.0/css/site.css?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/auth/1.0/css/site.css (original)
+++ cocoon/site/site/2.2/blocks/auth/1.0/css/site.css Mon Mar 31 06:35:20 2008
@@ -17,21 +17,21 @@
  * under the License.
  */
 
-body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color: #4c4c4c;
}
a:link, a:visited {
	color: #0086b3;
}
a:hover {
	text-decoration: none;
}
h1 {
-	margin: 25px 0 15px 0;
	padding: 0 0 5px 17px;
	background: url(../images/h1-image.gif) no-repeat left 4px;
	font-size: 130%;
	color: #0086b3;
	border-bottom: 1px solid #0086b3;
}
+body {	font-family: Arial, Helvetica, sans-serif;	font-size: 0.8em;	color: #4c4c4c;}a:link, a:visited {	color: #0086b3;}a:hover {	text-decoration: none;}h1 {
+	margin: 25px 0 15px 0;	padding: 0 0 5px 17px;	background: url(../images/h1-image.gif) no-repeat left 4px;	font-size: 130%;	color: #0086b3;	border-bottom: 1px solid #0086b3;}
 h1.docTitle {
 	margin: 0 0 10px 0;
 	padding: 0 0 5px 0;
 	font-size: 150%;
 	background: none; 
 }
-
h2 {
	font-size: 120%;
}
+h2 {	font-size: 120%;}
 
 h3, h4, h5 {
    font-size: 100%;
    font-weight: bold;
 }
-
ul {
	margin: 5px 0 10px 0;
	padding: 0 0 0 20px;
	list-style: none;
}
li {
	padding-left: 15px;
	padding-bottom: 3px;
}
+ul {	margin: 5px 0 10px 0;	padding: 0 0 0 20px;	list-style: none;}li {	padding-left: 15px;	padding-bottom: 3px;}
 ul li {
 	background: url(../images/list.gif) no-repeat left 3px;   
 }
@@ -40,14 +40,14 @@
 }
 tt {
 	font-size: 130%;
-}
-pre {
	border:1px solid #aaaaaa;
	background: #efefef;
	font-size: 110%;
	padding:10px;
}
table {
	margin: 0 0 10px 0;
	width: 99.5%;
	border: 1px solid #cce7f0;
}
table th, table td {
	padding: 4px;
}
thead {
	background: #0086b3;
	color: #fff;
}
tbody {
	background: #e5f3f7;
}
table .alt {
	background: #cce7f0;
}
/* Header part
+}
+pre {	border:1px solid #aaaaaa;	background: #efefef;	font-size: 110%;	padding:10px;}table {	margin: 0 0 10px 0;	width: 99.5%;	border: 1px solid #cce7f0;}table th, table td {	padding: 4px;}thead {	background: #0086b3;	color: #fff;}tbody {	background: #e5f3f7;}table .alt {	background: #cce7f0;}/* Header part
 --------------------------------------*/
-#breadtrail {
	background: #2698be url(../images/breadtrail-bg.gif) repeat-x bottom left;
}
#breadtrail p {
	margin: 0;
	padding: 2px 0 5px 20px;
	color: #fff;
}
#breadtrail a {
	color: #fff;
	text-decoration: none;
}
#breadtrail a:hover {
	text-decoration: underline;
}
#top {
	background: url(../images/top-background.jpg) repeat-x;
}
#header {
	height: 129px;
	background: url(../images/logo-background.jpg) no-repeat;
}
.projectlogo {
	float: left;
}
.logoImage {
	margin: 30px 0 0 34px;
}
.grouplogo {
	margin: 10px 10px 0 0;
	float: right;
}
.grouptitle {
	margin: 0;
	padding-bottom: 5px;
	background: url(../images/group-title-line.gif) repeat-x bottom;
}
.grouptitle a:link, .grouptitle a:visited {
	color: #545454;
	text-decoration: none;
}
.searchbox {
	margin: 3px 0;
	padding: 0;
}
.searchbox input {
	padding: 3px;
	font-size: 11px;
	border: 1px solid #626262;
	color: #626262;
}
.searchbox .searchboxsubmit {
	background: #626262;
	border: none;
	color: #fff;
}

#projectBar
  {
	margin-bottom: 10px;
	height: 25px;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
}
#projectBar .projectTitle {
	margin: 0;
	padding: 6px 0 0 5px;
	background: none;
	border: none;
	float: left;
	font-size: 100%;
	color: #0086b3;
}
.projectTitle a {
	text-decoration: none;
}
.projectTitle a:hover {
	text-decoration: underline;
}
#projectBar .projectList {
	margin: 5px 15px 0 0;
	padding: 0;
	list-style: none;
	float: right;
}
#projectBar .projectList li {
	padding: 0 8px;
	background: none;
	float: left;
	border-right: 1px solid #f2f2f2;
}
#projectBar .projectList a {
	color: #acacac;
	text-decoration: none;
}
#projectBar .projectList a:hover {
	text-decoration: underline;
}
.projectList img {
	padding-top: 2px;
}
.cocoonHome {
	margin: 0;
	padding: 4px 0 0 10px;
	float: left;
}
.projectBarClear {
	height: 1%;
	clear: both;
}
+#breadtrail {	background: #2698be url(../images/breadtrail-bg.gif) repeat-x bottom left;}#breadtrail p {	margin: 0;	padding: 2px 0 5px 20px;	color: #fff;}#breadtrail a {	color: #fff;	text-decoration: none;}#breadtrail a:hover {	text-decoration: underline;}#top {	background: url(../images/top-background.jpg) repeat-x;}#header {	height: 129px;	background: url(../images/logo-background.jpg) no-repeat;}.projectlogo {	float: left;}.logoImage {	margin: 30px 0 0 34px;}.grouplogo {	margin: 10px 10px 0 0;	float: right;}.grouptitle {	margin: 0;	padding-bottom: 5px;	background: url(../images/group-title-line.gif) repeat-x bottom;}.grouptitle a:link, .grouptitle a:visited {	color: #545454;	text-decoration: none;}.searchbox {	margin: 3px 0;	padding: 0;}.searchbox input {	padding: 3px;	font-size: 11px;	border: 1px solid #626262;	color: #626262;}.searchbox .searchboxsubmit {	background: #626262;	border: none;	color: #fff;}#projectBar {	margin-bottom: 10px;	height: 25px;	border-top: 1px sol
 id #f2f2f2;	border-bottom: 1px solid #f2f2f2;}#projectBar .projectTitle {	margin: 0;	padding: 6px 0 0 5px;	background: none;	border: none;	float: left;	font-size: 100%;	color: #0086b3;}.projectTitle a {	text-decoration: none;}.projectTitle a:hover {	text-decoration: underline;}#projectBar .projectList {	margin: 5px 15px 0 0;	padding: 0;	list-style: none;	float: right;}#projectBar .projectList li {	padding: 0 8px;	background: none;	float: left;	border-right: 1px solid #f2f2f2;}#projectBar .projectList a {	color: #acacac;	text-decoration: none;}#projectBar .projectList a:hover {	text-decoration: underline;}.projectList img {	padding-top: 2px;}.cocoonHome {	margin: 0;	padding: 4px 0 0 10px;	float: left;}.projectBarClear {	height: 1%;	clear: both;}
 /* Menu
---------------------------------------*/
#menu {
	margin: 0;
	padding: 0;
	width: 170px;
	list-style: none;
	font-weight: bold;
	float: left;
}
#menu li {
	margin-left: 10px;
	padding: 3px 5px 3px 10px;
	background: url(../images/menu-title.gif) no-repeat left 8px;
	color: #7c7c7c;
}
#menu li ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: normal;
}
#menu li ul li {
	margin: 0;
	padding: 3px 0 0 10px;
	background: url(../images/menu-list.gif) no-repeat left 7px;
	border-bottom: 1px solid #ebebeb;
}
#menu li ul .menuCollapse {
	background: url(../images/menu-collapse.gif) no-repeat left 7px;
}
#menu li ul li a {
	color: #7c7c7c;
	text-decoration: none;
}
#menu li ul li a:hover {
	text-decoration: underline;
}
#menu .menuVersions {
	color: #2e93b5;
}
+--------------------------------------*/#menu {	margin: 0;	padding: 0;	width: 170px;	list-style: none;	font-weight: bold;	float: left;}#menu li {	margin-left: 10px;	padding: 3px 5px 3px 10px;	background: url(../images/menu-title.gif) no-repeat left 8px;	color: #7c7c7c;}#menu li ul {	margin: 0;	padding: 0;	list-style: none;	font-weight: normal;}#menu li ul li {	margin: 0;	padding: 3px 0 0 10px;	background: url(../images/menu-list.gif) no-repeat left 7px;	border-bottom: 1px solid #ebebeb;}#menu li ul .menuCollapse {	background: url(../images/menu-collapse.gif) no-repeat left 7px;}#menu li ul li a {	color: #7c7c7c;	text-decoration: none;}#menu li ul li a:hover {	text-decoration: underline;}#menu .menuVersions {	color: #2e93b5;}
 /* Content
---------------------------------------*/
#contentBody {
	margin: 0 20px 0 185px;
	padding: 0;
}
+--------------------------------------*/#contentBody {	margin: 0 20px 0 185px;	padding: 0;}
 #contentBody.withSidebar {
    margin-right: 190px;
 }
@@ -57,7 +57,7 @@
    margin: 0;
 }
 .includedDoc h1.docTitle {
- 	margin: 0;
	padding: 0 0 0 17px;
	background: url(../images/h1-image.gif) no-repeat bottom left;
	font-size: 130%;
	color: #0086b3;
	border-bottom: 1px solid #0086b3;  
+ 	margin: 0;	padding: 0 0 0 17px;	background: url(../images/h1-image.gif) no-repeat bottom left;	font-size: 130%;	color: #0086b3;	border-bottom: 1px solid #0086b3;  
 }
 /* hide the link to Daisy for included documents */
 .includedDoc .editUrl {
@@ -66,18 +66,18 @@
 
 /* Intro on home page
 --------------------------------------*/
-
#intro {
	width: 180px;
	float: right;
	background: #ebebeb;
}
#intro div {
	margin: 2px;
	border: 1px solid #fff;
}
#intro h2 {
	color: #0086b3;
}
#intro p, #intro h2 {
	margin: 8px;
}
+#intro {	width: 180px;	float: right;	background: #ebebeb;}#intro div {	margin: 2px;	border: 1px solid #fff;}#intro h2 {	color: #0086b3;}#intro p, #intro h2 {	margin: 8px;}
 /* Green + blue getting boxes on 
  * home page
---------------------------------------*/
#getting {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}
/* Hide from IE-mac \*/
* html #getting {
	height: 1%;
	width: auto;
}
#getting {
	display: table;
}
/* End hide from IE-mac */
#getting div {
	margin: 0 5px 5px 0;
	padding: 0;
	width: 150px;
	height: 16em;
	background: #9bcd52 url(../images/getting-bottom.gif) no-repeat bottom;
	border: none;
	float: left;
}
#getting div div {
	margin: 0;
-	height: auto;
	padding: 10px 0 0 10px;
	background: url(../images/getting-top.gif) no-repeat;
}
#getting h2 {
	margin: 0 10px;
	padding: 4px 0;
	font-size: 120%;
	color: #fff;
	border-bottom: 1px solid #fff;
}
#getting ul {
	margin: 0 10px 10px 10px;
	padding: 0;
	color: #fff;
	list-style: none;
}
#getting ul li {
	padding: 2px 0 2px 7px;
	background: url(../images/getting-list.gif) no-repeat left 6px;
}
#getting ul li a {
	color: #fff;
}
#getting ul li a:hover {
	text-decoration: none;
}
#getting #gettingDownload {
-	background: #2e93b5 url(../images/download-bottom.gif) no-repeat bottom left;
}
#gettingDownload .downloadVersion {
	margin: 0;
-	height: auto;
	padding: 83px 0 25px 0;
	background: url(../images/download-bg.jpg) no-repeat;
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}
#getting .moreDownload {
	height: auto;
-	width: auto;
	margin: 0;
	padding: 0 10px;
	background: #2e93b5;
	color: #fff;
}
#getting .moreDownload a {
	color: #fff;
}
/* News section
---------------------------------------*/
.news {
	margin: 10px 0 0 0;
	padding: 0;
}
.news dt {
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 110%;
}
.news dd {
	margin: 0;
	padding: 0;
}
.news .newsMeta {
	margin: 5px 0 15px 0;
	padding-left: 8px;
	background: url(../images/news-meta.gif) no-repeat left 4px;
	font-size: 90%;
	color: #959595;
}
-
.errors, .fixme, .warning, .note {
    margin: 10px 0;
    padding: 0 0 0 45px;
    border: 1px solid #9bcd52;
}
.errors div, .fixme div, .warning div, .note div {
    margin: 5px;
    padding: 8px 0;
}
.errors {
    background: url(../images/errors.gif) no-repeat 10px 7px;
}
.fixme {
    background: url(../images/fixme.gif) no-repeat 10px 7px;
}
.warning {
    background: url(../images/warning.gif) no-repeat 10px 7px;
}
.note {
    background: url(../images/note.gif) no-repeat 10px 7px;
}
+--------------------------------------*/#getting {	margin: 0;	padding: 0;	display: inline-block;	width: 100%;}/* Hide from IE-mac \*/* html #getting {	height: 1%;	width: auto;}#getting {	display: table;}/* End hide from IE-mac */#getting div {	margin: 0 5px 5px 0;	padding: 0;	width: 150px;	height: 16em;	background: #9bcd52 url(../images/getting-bottom.gif) no-repeat bottom;	border: none;	float: left;}#getting div div {	margin: 0;
+	height: auto;	padding: 10px 0 0 10px;	background: url(../images/getting-top.gif) no-repeat;}#getting h2 {	margin: 0 10px;	padding: 4px 0;	font-size: 120%;	color: #fff;	border-bottom: 1px solid #fff;}#getting ul {	margin: 0 10px 10px 10px;	padding: 0;	color: #fff;	list-style: none;}#getting ul li {	padding: 2px 0 2px 7px;	background: url(../images/getting-list.gif) no-repeat left 6px;}#getting ul li a {	color: #fff;}#getting ul li a:hover {	text-decoration: none;}#getting #gettingDownload {
+	background: #2e93b5 url(../images/download-bottom.gif) no-repeat bottom left;}#gettingDownload .downloadVersion {	margin: 0;
+	height: auto;	padding: 83px 0 25px 0;	background: url(../images/download-bg.jpg) no-repeat;	font-size: 120%;	font-weight: bold;	text-align: center;}#getting .moreDownload {	height: auto;
+	width: auto;	margin: 0;	padding: 0 10px;	background: #2e93b5;	color: #fff;}#getting .moreDownload a {	color: #fff;}/* News section
+--------------------------------------*/.news {	margin: 10px 0 0 0;	padding: 0;}.news dt {	margin-bottom: 5px;	font-weight: bold;	font-size: 110%;}.news dd {	margin: 0;	padding: 0;}.news .newsMeta {	margin: 5px 0 15px 0;	padding-left: 8px;	background: url(../images/news-meta.gif) no-repeat left 4px;	font-size: 90%;	color: #959595;}
+.errors, .fixme, .warning, .note {    margin: 10px 0;    padding: 0 0 0 45px;    border: 1px solid #9bcd52;}.errors div, .fixme div, .warning div, .note div {    margin: 5px;    padding: 8px 0;}.errors {    background: url(../images/errors.gif) no-repeat 10px 7px;}.fixme {    background: url(../images/fixme.gif) no-repeat 10px 7px;}.warning {    background: url(../images/warning.gif) no-repeat 10px 7px;}.note {    background: url(../images/note.gif) no-repeat 10px 7px;}
 /* Bottom link to Daisy page
---------------------------------------*/
.editUrl {
-	margin-top: 1em;
	padding: 0 0 0 45px;
	background: url(../images/errors.gif) no-repeat 10px 7px;
	border: 1px solid #9bcd52;
}
.editUrl div {
	margin: 5px;
	padding: 8px 0;
}
+--------------------------------------*/.editUrl {
+	margin-top: 1em;	padding: 0 0 0 45px;	background: url(../images/errors.gif) no-repeat 10px 7px;	border: 1px solid #9bcd52;}.editUrl div {	margin: 5px;	padding: 8px 0;}
 /* Footer
---------------------------------------*/
#footer {
	border-top: 1px solid #f2f2f2;
	text-align: center;
	clear: both;
}
\ No newline at end of file
+--------------------------------------*/#footer {	border-top: 1px solid #f2f2f2;	text-align: center;	clear: both;}
\ No newline at end of file

Modified: cocoon/site/site/2.2/blocks/auth/1.0/dependencies.html
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/auth/1.0/dependencies.html?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/auth/1.0/dependencies.html (original)
+++ cocoon/site/site/2.2/blocks/auth/1.0/dependencies.html Mon Mar 31 06:35:20 2008
@@ -25,17 +25,17 @@
 
 
 
-
 <html>
   <head>
-    <title>            Cocoon Authentication
-      </title>
+    <title>      Cocoon Authentication Block Implementation - Project Dependencies
+  </title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+    <script src="./js/getBlank.js" language="javascript" type="text/javascript"></script>
         <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
   </head>
   <body>
@@ -60,12 +60,16 @@
                       </div>
          </div>
          <div id="projectBar">
-           <p class="cocoonHome"><a href="../../../../"><img
+           <p class="cocoonHome"><a href="./index.html"><img
            src="images/pmc-home.gif"
-           alt="Back to Apache Cocoon homepage"
-           border="0" title="Back to Apache Cocoon homepage" /></a></p>
-           <h1 class="projectTitle"><a href="../../../../">              Cocoon Authentication
-            1.0
+           alt="  Cocoon Authentication
+      1.0
+   homepage"
+           border="0" title="  Cocoon Authentication
+      1.0
+   homepage" /></a></p>
+           <h1 class="projectTitle"><a href="./index.html">  Cocoon Authentication
+      1.0
   </a></h1>
                          <ul class="projectList">
                 <li><strong><a href="../../../../2.2/">Cocoon 2.2</a></em></strong></li>
@@ -77,7 +81,7 @@
                      </div>
          <div class="projectBarClear"><!-- --></div>
       </div>
-<!-- end of top -->
+    <!-- end of top -->
 
     <div id="content">
          <ul id="menu">
@@ -186,78 +190,28 @@
               </ul>
     </li>
       </ul>
-<!--
-                                     <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
-            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
-          </a>
-                   <div id="lastPublished">
-                    
-                   Last Published: 25/09/2007 21:25
-       </div>
--->
-         <div class="section"><h2>Project Dependencies</h2><div class="section"><h3>compile</h3><p>The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:</p><table class="bodyTable"><tr class="a"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-auth-api</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-core</td><td>2.2.0-RC2</td><td>-</td><td>jar</td><td> </td></tr></table></div><div class="section"><h3>provided</h3><p>The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:</p><table class="bodyTable"><tr class="b"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Option
 al</th></tr><tr class="a"><td>javax.servlet</td><td>servlet-api</td><td>2.4</td><td>-</td><td>jar</td><td> </td></tr></table></div></div><div class="section"><h2>Project Transitive Dependencies</h2><p>The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.</p><div class="section"><h3>compile</h3><p>The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:</p><table class="bodyTable"><tr class="b"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="a"><td>aopalliance</td><td>aopalliance</td><td>1.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>commons-collections</td><td>commons-collections</td><td>3.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>commons-io</td><td>commons-io</td><td>1.3.1</td><td>-</td><td>jar</td><td> </td><
 /tr><tr class="b"><td>commons-jexl</td><td>commons-jexl</td><td>1.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>commons-jxpath</td><td>commons-jxpath</td><td>1.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>commons-lang</td><td>commons-lang</td><td>2.3</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>commons-logging</td><td>commons-logging</td><td>1.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>concurrent</td><td>concurrent</td><td>1.3.4</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>jakarta-regexp</td><td>jakarta-regexp</td><td>1.4</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>junit</td><td>junit</td><td>3.8.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>log4j</td><td>log4j</td><td>1.2.14</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.avalon.framework</td><td>avalon-framework-api</td><td>4.3.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apac
 he.avalon.framework</td><td>avalon-framework-impl</td><td>4.3.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-configuration-api</td><td>1.0.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-expression-language-api</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-expression-language-impl</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-pipeline-api</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-pipeline-components</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-pipeline-impl</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-sitemap-api</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </
 td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-sitemap-components</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-sitemap-impl</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-spring-configurator</td><td>1.0.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-thread-api</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-util</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-xml-api</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-xml-impl</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-xml-resolver</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr cla
 ss="a"><td>org.apache.cocoon</td><td>cocoon-xml-util</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.excalibur.components</td><td>excalibur-pool-api</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.excalibur.components</td><td>excalibur-sourceresolve</td><td>2.2.3</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.excalibur.components</td><td>excalibur-store</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.excalibur.components</td><td>excalibur-xmlutil</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.excalibur.containerkit</td><td>excalibur-instrument-api</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.excalibur.containerkit</td><td>excalibur-logger</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.springframework</td><td>spring-aop</td><td>2.0.6</td><
 td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.springframework</td><td>spring-beans</td><td>2.0.6</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.springframework</td><td>spring-context</td><td>2.0.6</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.springframework</td><td>spring-core</td><td>2.0.6</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.springframework</td><td>spring-web</td><td>2.0.6</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>rhino</td><td>js</td><td>1.6R7</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>xalan</td><td>xalan</td><td>2.7.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>xerces</td><td>xercesImpl</td><td>2.8.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>xml-apis</td><td>xml-apis</td><td>1.3.02</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>xml-resolver</td><td>xml-resolver</td><td>1.2</td><td>-</td><td>jar</td><td> </td></tr></table></d
 iv><div class="section"><h3>runtime</h3><p>The following is a list of runtime dependencies for this project. These dependencies are required to run the application:</p><table class="bodyTable"><tr class="b"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="a"><td>net.sf.ehcache</td><td>ehcache</td><td>1.2.4</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-store-impl</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-thread-impl</td><td>1.0.0-RC2</td><td>-</td><td>jar</td><td> </td></tr></table></div></div><div class="section"><h2>Project Dependency Graph</h2><div class="section"><h3>Dependency Tree</h3><p><ul><li><a href="#org.apache.cocoon:cocoon-auth-impl:jar">org.apache.cocoon:cocoon-auth-impl:jar</a><ul><li><a href="#javax.servlet:servlet-api:jar">javax.servlet:servlet-api:jar</a></li><li><a href="#org.apa
 che.cocoon:cocoon-core:jar">org.apache.cocoon:cocoon-core:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-spring-configurator:jar">org.apache.cocoon:cocoon-spring-configurator:jar</a><ul><li><a href="#org.springframework:spring-core:jar">org.springframework:spring-core:jar</a></li><li><a href="#org.springframework:spring-context:jar">org.springframework:spring-context:jar</a><ul><li><a href="#aopalliance:aopalliance:jar">aopalliance:aopalliance:jar</a></li></ul></li><li><a href="#org.springframework:spring-beans:jar">org.springframework:spring-beans:jar</a></li><li><a href="#org.springframework:spring-aop:jar">org.springframework:spring-aop:jar</a></li><li><a href="#org.springframework:spring-web:jar">org.springframework:spring-web:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-configuration-api:jar">org.apache.cocoon:cocoon-configuration-api:jar</a></li><li><a href="#org.apache.cocoon:cocoon-pipeline-components:jar">org.apache.cocoon:cocoon-pipeline-componen
 ts:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-pipeline-impl:jar">org.apache.cocoon:cocoon-pipeline-impl:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-pipeline-api:jar">org.apache.cocoon:cocoon-pipeline-api:jar</a><ul><li><a href="#org.apache.excalibur.components:excalibur-xmlutil:jar">org.apache.excalibur.components:excalibur-xmlutil:jar</a></li></ul></li><li><a href="#org.apache.excalibur.components:excalibur-sourceresolve:jar">org.apache.excalibur.components:excalibur-sourceresolve:jar</a></li><li><a href="#org.apache.excalibur.containerkit:excalibur-instrument-api:jar">org.apache.excalibur.containerkit:excalibur-instrument-api:jar</a></li><li><a href="#jakarta-regexp:jakarta-regexp:jar">jakarta-regexp:jakarta-regexp:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-util:jar">org.apache.cocoon:cocoon-util:jar</a><ul><li><a href="#commons-lang:commons-lang:jar">commons-lang:commons-lang:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-xml-a
 pi:jar">org.apache.cocoon:cocoon-xml-api:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-sitemap-impl:jar">org.apache.cocoon:cocoon-sitemap-impl:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-sitemap-api:jar">org.apache.cocoon:cocoon-sitemap-api:jar</a></li><li><a href="#org.apache.cocoon:cocoon-expression-language-impl:jar">org.apache.cocoon:cocoon-expression-language-impl:jar</a><ul><li><a href="#rhino:js:jar">rhino:js:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-expression-language-api:jar">org.apache.cocoon:cocoon-expression-language-api:jar</a></li><li><a href="#commons-collections:commons-collections:jar">commons-collections:commons-collections:jar</a></li><li><a href="#commons-jxpath:commons-jxpath:jar">commons-jxpath:commons-jxpath:jar</a><ul><li><a href="#junit:junit:jar">junit:junit:jar</a></li></ul></li></ul></li><li><a href="#org.apache.cocoon:cocoon-sitemap-components:jar">org.apache.cocoon:cocoon-sitemap-components:jar</a></li><l
 i><a href="#org.apache.cocoon:cocoon-xml-resolver:jar">org.apache.cocoon:cocoon-xml-resolver:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-xml-impl:jar">org.apache.cocoon:cocoon-xml-impl:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-thread-api:jar">org.apache.cocoon:cocoon-thread-api:jar</a><ul><li><a href="#concurrent:concurrent:jar">concurrent:concurrent:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-xml-util:jar">org.apache.cocoon:cocoon-xml-util:jar</a></li><li><a href="#org.apache.excalibur.components:excalibur-pool-api:jar">org.apache.excalibur.components:excalibur-pool-api:jar</a><ul><li><a href="#org.apache.avalon.framework:avalon-framework-api:jar">org.apache.avalon.framework:avalon-framework-api:jar</a></li></ul></li><li><a href="#org.apache.excalibur.containerkit:excalibur-logger:jar">org.apache.excalibur.containerkit:excalibur-logger:jar</a></li><li><a href="#org.apache.excalibur.components:excalibur-store:jar">org.apache.excalibu
 r.components:excalibur-store:jar</a></li><li><a href="#org.apache.avalon.framework:avalon-framework-impl:jar">org.apache.avalon.framework:avalon-framework-impl:jar</a></li><li><a href="#commons-io:commons-io:jar">commons-io:commons-io:jar</a></li><li><a href="#commons-logging:commons-logging:jar">commons-logging:commons-logging:jar</a></li><li><a href="#commons-jexl:commons-jexl:jar">commons-jexl:commons-jexl:jar</a></li><li><a href="#xalan:xalan:jar">xalan:xalan:jar</a></li><li><a href="#xerces:xercesImpl:jar">xerces:xercesImpl:jar</a></li><li><a href="#xml-apis:xml-apis:jar">xml-apis:xml-apis:jar</a></li><li><a href="#xml-resolver:xml-resolver:jar">xml-resolver:xml-resolver:jar</a></li><li><a href="#log4j:log4j:jar">log4j:log4j:jar</a></li><li><a href="#org.apache.cocoon:cocoon-store-impl:jar">org.apache.cocoon:cocoon-store-impl:jar</a><ul><li><a href="#net.sf.ehcache:ehcache:jar">net.sf.ehcache:ehcache:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-thread-im
 pl:jar">org.apache.cocoon:cocoon-thread-impl:jar</a></li></ul></li><li><a href="#org.apache.cocoon:cocoon-auth-api:jar">org.apache.cocoon:cocoon-auth-api:jar</a></li></ul></li></ul></p></div><div class="section"><h3>Dependency Listings</h3><p><a name="org.apache.cocoon:cocoon-auth-impl:jar"><b>Cocoon Authentication Block Implementation</b></a></p><p>The Apache Software Foundation provides support for the Apache community of open-source software projects.
+         <div class="section"><h2>Project Dependencies</h2><div class="section"><h3>compile</h3><p>The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:</p><table class="bodyTable"><tr class="a"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-auth-api</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr></table></div></div><div class="section"><h2>Project Transitive Dependencies</h2><p>The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.</p><div class="section"><h3>compile</h3><p>The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:</p><table class="bodyTable"><tr class="a"><th>GroupId</th><th>ArtifactId</th><th>Version</
 th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="b"><td>aopalliance</td><td>aopalliance</td><td>1.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>commons-collections</td><td>commons-collections</td><td>3.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>commons-io</td><td>commons-io</td><td>1.3.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>commons-jexl</td><td>commons-jexl</td><td>1.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>commons-jxpath</td><td>commons-jxpath</td><td>1.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>commons-lang</td><td>commons-lang</td><td>2.3</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>commons-logging</td><td>commons-logging</td><td>1.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>concurrent</td><td>concurrent</td><td>1.3.4</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>jakarta-regexp</td><td>jakarta-regexp</td><td>1.4</td><t
 d>-</td><td>jar</td><td> </td></tr><tr class="a"><td>log4j</td><td>log4j</td><td>1.2.14</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.avalon.framework</td><td>avalon-framework-api</td><td>4.3.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.avalon.framework</td><td>avalon-framework-impl</td><td>4.3.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-configuration-api</td><td>1.0.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-core</td><td>2.2.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-expression-language-api</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-expression-language-impl</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-pipeline-api</td><td>1.0.0</td><td>-</td><td>jar</td
 ><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-pipeline-components</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-pipeline-impl</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-sitemap-api</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-sitemap-components</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-sitemap-impl</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-spring-configurator</td><td>1.0.2</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-thread-api</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-util</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="
 a"><td>org.apache.cocoon</td><td>cocoon-xml-api</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-xml-impl</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-xml-resolver</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-xml-util</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.excalibur.components</td><td>excalibur-pool-api</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.excalibur.components</td><td>excalibur-sourceresolve</td><td>2.2.3</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.excalibur.components</td><td>excalibur-store</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.excalibur.components</td><td>excalibur-xmlutil</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr clas
 s="a"><td>org.apache.excalibur.containerkit</td><td>excalibur-instrument-api</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.excalibur.containerkit</td><td>excalibur-logger</td><td>2.2.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.springframework</td><td>spring-aop</td><td>2.5.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.springframework</td><td>spring-beans</td><td>2.5.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.springframework</td><td>spring-context</td><td>2.5.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.springframework</td><td>spring-core</td><td>2.5.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.springframework</td><td>spring-web</td><td>2.5.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>rhino</td><td>js</td><td>1.6R7</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>xalan</td><td>xalan</td><td>2.7.0</td><td>-</td><t
 d>jar</td><td> </td></tr><tr class="b"><td>xerces</td><td>xercesImpl</td><td>2.8.1</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>xml-apis</td><td>xml-apis</td><td>1.3.02</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>xml-resolver</td><td>xml-resolver</td><td>1.2</td><td>-</td><td>jar</td><td> </td></tr></table></div><div class="section"><h3>runtime</h3><p>The following is a list of runtime dependencies for this project. These dependencies are required to run the application:</p><table class="bodyTable"><tr class="a"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="b"><td>net.sf.ehcache</td><td>ehcache</td><td>1.2.4</td><td>-</td><td>jar</td><td> </td></tr><tr class="a"><td>org.apache.cocoon</td><td>cocoon-store-impl</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></tr><tr class="b"><td>org.apache.cocoon</td><td>cocoon-thread-impl</td><td>1.0.0</td><td>-</td><td>jar</td><td> </td></t
 r></table></div><div class="section"><h3>test</h3><p>The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:</p><table class="bodyTable"><tr class="a"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="b"><td>junit</td><td>junit</td><td>3.8.2</td><td>-</td><td>jar</td><td> </td></tr></table></div><div class="section"><h3>provided</h3><p>The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:</p><table class="bodyTable"><tr class="a"><th>GroupId</th><th>ArtifactId</th><th>Version</th><th>Classifier</th><th>Type</th><th>Optional</th></tr><tr class="b"><td>javax.servlet</td><td>servlet-api</td><td>2.4</td><td>-</td><td>jar</td><td> </td></tr></table></div></div><div class="section"><h2>Project 
 Dependency Graph</h2><div class="section"><h3>Dependency Tree</h3><p><ul><li><a href="#org.apache.cocoon:cocoon-auth-impl:jar">org.apache.cocoon:cocoon-auth-impl:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-auth-api:jar">org.apache.cocoon:cocoon-auth-api:jar</a><ul><li><a href="#org.apache.cocoon:cocoon-core:jar">org.apache.cocoon:cocoon-core:jar</a></li></ul></li></ul></li></ul></p></div><div class="section"><h3>Dependency Listings</h3><p><a name="org.apache.cocoon:cocoon-auth-impl:jar"><b>Cocoon Authentication Block Implementation</b></a></p><p>The Apache Software Foundation provides support for the Apache community of open-source software projects.
     The Apache projects are characterized by a collaborative, consensus based development process, an open and
     pragmatic software license, and a desire to create high quality software that leads the way in its field.
     We consider ourselves not simply a group of projects sharing a server, but rather a community of developers
-    and users.</p><p><a href="http://cocoon.apache.org/2.2/blocks/auth/1.0/">http://cocoon.apache.org/2.2/blocks/auth/1.0/</a></p><p><a name="javax.servlet:servlet-api:jar"><b>Unnamed - javax.servlet:servlet-api:jar:2.4</b></a></p><p><a name="org.apache.cocoon:cocoon-core:jar"><b>Cocoon Core</b></a></p><p>Module that contains dependencies to all modules normally needed for a basic
-    Cocoon webapp. Cocoon blocks should normally depend on this modules, as the
-    exact content of the more fine grained sitemap, pipeline and support modules
-    is not stable yet. This module also contains some classes, configuration
-    files and tests that we not have decided where to move yet.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/core/2.2/">http://cocoon.apache.org/2.2/core-modules/core/2.2/</a></p><p><a name="org.apache.cocoon:cocoon-spring-configurator:jar"><b>Cocoon Spring Configurator</b></a></p><p>The Cocoon Spring Configurator is an extension for the Spring framework.
-    It provides a standardized way of handling various configuration issues when using Spring.
-    The feature list includes automatic property handling and inclusion of configuration files.</p><p><a href="http://cocoon.apache.org/core/cocoon-configuration/cocoon-spring-configurator">http://cocoon.apache.org/core/cocoon-configuration/cocoon-spring-configurator</a></p><p><a name="org.springframework:spring-core:jar"><b>Spring Framework: Core</b></a></p><p>Spring Framework: Core</p><p><a href="http://www.springframework.org">http://www.springframework.org</a></p><p><a name="org.springframework:spring-context:jar"><b>Spring Framework: Context</b></a></p><p>Spring Framework: Context</p><p><a href="http://www.springframework.org">http://www.springframework.org</a></p><p><a name="aopalliance:aopalliance:jar"><b>AOP alliance</b></a></p><p>AOP Alliance</p><p><a href="http://aopalliance.sourceforge.net">http://aopalliance.sourceforge.net</a></p><p><a name="org.springframework:spring-beans:jar"><b>Spring Framework: Beans</b></a></p><p>Spring Framework: Beans</p><p><a href="http
 ://www.springframework.org">http://www.springframework.org</a></p><p><a name="org.springframework:spring-aop:jar"><b>Spring Framework: AOP</b></a></p><p>Spring Framework: AOP</p><p><a href="http://www.springframework.org">http://www.springframework.org</a></p><p><a name="org.springframework:spring-web:jar"><b>Spring Framework: Web</b></a></p><p>Spring Framework: Web</p><p><a href="http://www.springframework.org">http://www.springframework.org</a></p><p><a name="org.apache.cocoon:cocoon-configuration-api:jar"><b>Cocoon Configuration API</b></a></p><p>The Cocoon Configuration API is a library providing beans for various configuration issues.
-    It describes a mechanism for handling properties in an standardized way.</p><p><a href="http://cocoon.apache.org/subprojects/configuration/configuration-api/1.0/">http://cocoon.apache.org/subprojects/configuration/configuration-api/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-pipeline-components:jar"><b>Cocoon Pipeline Components</b></a></p><p>Implementations of a number of basic generators, transformers, serializers,
-    and readers that are needed in most Cocoon webapps as well as some basic
-    sources and the XPointer and XSLT components.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/pipeline-components/1.0/">http://cocoon.apache.org/2.2/core-modules/pipeline-components/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-pipeline-impl:jar"><b>Cocoon Pipeline Implementation</b></a></p><p>Several implementations of the ProcessingPipeline interface together with
-    needed classes and components. Abstract classes for making it easier to
-    write sitemap components.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/pipeline-impl/1.0/">http://cocoon.apache.org/2.2/core-modules/pipeline-impl/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-pipeline-api:jar"><b>Cocoon Pipeline API</b></a></p><p>Interfaces for SAX pipelines: ProcessingPipeline, sitemap components
-    and basic XML interfaces, the environment abstraction, caching interfaces
-    and needed exceptions.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/pipeline-api/1.0/">http://cocoon.apache.org/2.2/core-modules/pipeline-api/1.0/</a></p><p><a name="org.apache.excalibur.components:excalibur-xmlutil:jar"><b>Excalibur XML Utilities</b></a></p><p>Excalibur's XML Utilities provide simplified wrappers for XML parsers, transformers and XPath evaluators.
-    It also provides interfaces and classes useful for constructing a pipeline of XML components by defining
-    interfaces for consuming and producing XML in either SAX or DOM formats.</p><p><a href="http://www.apache.org/excalibur/excalibur-components-modules/excalibur-xmlutil">http://www.apache.org/excalibur/excalibur-components-modules/excalibur-xmlutil</a></p><p><a name="org.apache.excalibur.components:excalibur-sourceresolve:jar"><b>Excalibur Sourceresolve</b></a></p><p>A very common problem is resolving a source, which means finding a source using a URI. The source resolver of
-        Avalon Excalibur is a component helping you in this task. It resolves sources from a given URI. The URI can use
-        all available protocols of the JRE. In addition own protocols can be plugged-in. So using the standard protocols
-        like HTTP, FTP or file can be handled in the same way, like dealing with custom, self-build protocols such as
-        myxmldatabase://root/documents/test.xml.</p><p><a href="http://www.apache.org/excalibur/excalibur-sourceresolve">http://www.apache.org/excalibur/excalibur-sourceresolve</a></p><p><a name="org.apache.excalibur.containerkit:excalibur-instrument-api:jar"><b>Excalibur Instrument API</b></a></p><p>Excalibur Instrument is an instrumentation utility that allows you to attach a separate JVM to your running
-        application to determine its health. Instrumentation is the process of exposing the internal state in a way that
-        is easy for an administrator or help desk personell to digest. Excalibur Instrumentation is such a package that
-        you can use for your Avalon based projects.</p><p><a href="http://www.apache.org/excalibur/excalibur-containerkit/excalibur-instrument-modules/excalibur-instrument-api">http://www.apache.org/excalibur/excalibur-containerkit/excalibur-instrument-modules/excalibur-instrument-api</a></p><p><a name="jakarta-regexp:jakarta-regexp:jar"><b>Unnamed - jakarta-regexp:jakarta-regexp:jar:1.4</b></a></p><p><a name="org.apache.cocoon:cocoon-util:jar"><b>Cocoon Util</b></a></p><p>Utility classes.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/util/1.0/">http://cocoon.apache.org/2.2/core-modules/util/1.0/</a></p><p><a name="commons-lang:commons-lang:jar"><b>Lang</b></a></p><p>Commons.Lang, a package of Java utility classes for the
-        classes that are in java.lang's hierarchy, or are considered to be so
-        standard as to justify existence in java.lang.</p><p><a href="http://jakarta.apache.org/commons/lang/">http://jakarta.apache.org/commons/lang/</a></p><p><a name="org.apache.cocoon:cocoon-xml-api:jar"><b>Cocoon XML API</b></a></p><p>DOMParser and SAXParser interface.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/xml-api/1.0/">http://cocoon.apache.org/2.2/core-modules/xml-api/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-sitemap-impl:jar"><b>Cocoon Sitemap Implementation</b></a></p><p>The tree processor implementation of the sitemap with dependencies.
-    The Spring packages for Avalon support. Abstract base classes
-    and support classes for making it easier to write sitemap components.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/sitemap-impl/1.0/">http://cocoon.apache.org/2.2/core-modules/sitemap-impl/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-sitemap-api:jar"><b>Cocoon Sitemap API</b></a></p><p>Interfaces for the sitemap: Processor, actions, modules, flow, matching,
-    selection and some support interfaces for classloading, notification,
-    processing and various support interfaces.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/sitemap-api/1.0/">http://cocoon.apache.org/2.2/core-modules/sitemap-api/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-expression-language-impl:jar"><b>Cocoon Expression Language Implementation.</b></a></p><p>Implementation of several expressions languages like: JXPath, JEXL, Javascript and implementation of unified Object Model.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/expression-language-impl/1.0/">http://cocoon.apache.org/2.2/core-modules/expression-language-impl/1.0/</a></p><p><a name="rhino:js:jar"><b>Rhino</b></a></p><p>Rhino: JavaScript for Java</p><p><a href="http://www.mozilla.org/rhino/">http://www.mozilla.org/rhino/</a></p><p><a name="org.apache.cocoon:cocoon-expression-language-api:jar"><b>Cocoon Expression Language API</b></a></p><p>Interfaces for expression language and object model.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/e
 xpression-language-api/1.0/">http://cocoon.apache.org/2.2/core-modules/expression-language-api/1.0/</a></p><p><a name="commons-collections:commons-collections:jar"><b>Collections</b></a></p><p>Types that extend and augment the Java Collections Framework.</p><p><a href="http://jakarta.apache.org/commons/collections/">http://jakarta.apache.org/commons/collections/</a></p><p><a name="commons-jxpath:commons-jxpath:jar"><b>JXPath</b></a></p><p>A package of Java utility methods for accessing and modifying object properties</p><p><a href="http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/">http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</a></p><p><a name="junit:junit:jar"><b>JUnit</b></a></p><p>JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.</p><p><a href="http://junit.org">http://junit.org</a></p><p><a name="org.apache.cocoon:cocoon-sitemap-components:jar">
 <b>Cocoon Sitemap Components</b></a></p><p>Implementation of basic actions, modules, some sources, matchers
-    and selectors that are used in most Cocoon webapps.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/sitemap-components/1.0/">http://cocoon.apache.org/2.2/core-modules/sitemap-components/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-xml-resolver:jar"><b>Cocoon XML Resolver</b></a></p><p>The Cocoon system resolver component together with default enteties.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/xml-resolver/1.0/">http://cocoon.apache.org/2.2/core-modules/xml-resolver/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-xml-impl:jar"><b>Cocoon XML Implementation</b></a></p><p>Implementation of the DOMParser and SAXParser.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/xml-impl/1.0/">http://cocoon.apache.org/2.2/core-modules/xml-impl/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-thread-api:jar"><b>Cocoon Thread API</b></a></p><p>Interfaces for thread factories and pools and for execution of background tasks.</p><p><a href="http://cocoon.
 apache.org/2.2/core-modules/thread-api/1.0/">http://cocoon.apache.org/2.2/core-modules/thread-api/1.0/</a></p><p><a name="concurrent:concurrent:jar"><b>Dough Lea's util.concurrent package</b></a></p><p><a name="org.apache.cocoon:cocoon-xml-util:jar"><b>Cocoon XML Utilities</b></a></p><p>Various utilities classes.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/xml-util/1.0/">http://cocoon.apache.org/2.2/core-modules/xml-util/1.0/</a></p><p><a name="org.apache.excalibur.components:excalibur-pool-api:jar"><b>Excalibur Pool API</b></a></p><p>Excalibur Pool API</p><p><a href="http://www.apache.org/excalibur/excalibur-components-modules/excalibur-pool-modules/excalibur-pool-api">http://www.apache.org/excalibur/excalibur-components-modules/excalibur-pool-modules/excalibur-pool-api</a></p><p><a name="org.apache.avalon.framework:avalon-framework-api:jar"><b>Avalon Framework API</b></a></p><p>Avalon Framework API</p><p><a href="http://www.apache.org/excalibur/avalon-framewor
 k/avalon-framework-api">http://www.apache.org/excalibur/avalon-framework/avalon-framework-api</a></p><p><a name="org.apache.excalibur.containerkit:excalibur-logger:jar"><b>Excalibur Logger</b></a></p><p>Excalibur-Logger integrates neatly into Avalon-ECM and Excalibur Fortress. The main goal is to be able to define
-    the log categories on a component basis by specifying a 'logger' attribute which denotes the log category to use
-    for a particular component (given the component is LogEnabled or Loggable).</p><p><a href="http://www.apache.org/excalibur/excalibur-containerkit/excalibur-logger">http://www.apache.org/excalibur/excalibur-containerkit/excalibur-logger</a></p><p><a name="org.apache.excalibur.components:excalibur-store:jar"><b>Excalibur Store</b></a></p><p>The Store Package provides a way to store named objects without taking care about where and how they are
-    stored. You can choose between different implementations that store the data e.g. in memory or on the file
-    system etc.</p><p><a href="http://www.apache.org/excalibur/excalibur-components-modules/excalibur-store">http://www.apache.org/excalibur/excalibur-components-modules/excalibur-store</a></p><p><a name="org.apache.avalon.framework:avalon-framework-impl:jar"><b>Avalon Framework Implementation</b></a></p><p>Avalon Framework Implementation</p><p><a href="http://www.apache.org/excalibur/avalon-framework/avalon-framework-impl">http://www.apache.org/excalibur/avalon-framework/avalon-framework-impl</a></p><p><a name="commons-io:commons-io:jar"><b>IO</b></a></p><p>Commons-IO contains utility classes, stream implementations, file filters, and endian classes.</p><p><a href="http://jakarta.apache.org/commons/io/">http://jakarta.apache.org/commons/io/</a></p><p><a name="commons-logging:commons-logging:jar"><b>Logging</b></a></p><p>Commons Logging is a thin adapter allowing configurable bridging to other,
-    well known logging systems.</p><p><a href="http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/">http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</a></p><p><a name="commons-jexl:commons-jexl:jar"><b>Unnamed - commons-jexl:commons-jexl:jar:1.0</b></a></p><p><a name="xalan:xalan:jar"><b>Unnamed - xalan:xalan:jar:2.7.0</b></a></p><p><a name="xerces:xercesImpl:jar"><b>Xerces2 Java Parser</b></a></p><p>Xerces2 is the next generation of high performance, fully
-		compliant XML parsers in the Apache Xerces family. This new
-		version of Xerces introduces the Xerces Native Interface (XNI),
-		a complete framework for building parser components and
-		configurations that is extremely modular and easy to program.</p><p><a href="http://xerces.apache.org/xerces2-j/">http://xerces.apache.org/xerces2-j/</a></p><p><a name="xml-apis:xml-apis:jar"><b>Unnamed - xml-apis:xml-apis:jar:1.3.02</b></a></p><p><a href="http://xml.apache.org/commons/#external">http://xml.apache.org/commons/#external</a></p><p><a name="xml-resolver:xml-resolver:jar"><b>XML Commons Resolver Component</b></a></p><p>xml-commons provides an Apache-hosted set of DOM, SAX, and 
-    JAXP interfaces for use in other xml-based projects. Our hope is that we 
-    can standardize on both a common version and packaging scheme for these 
-    critical XML standards interfaces to make the lives of both our developers 
-    and users easier.</p><p><a href="http://xml.apache.org/commons/components/resolver/">http://xml.apache.org/commons/components/resolver/</a></p><p><a name="log4j:log4j:jar"><b>Log4j</b></a></p><p>Log4j</p><p><a href="http://logging.apache.org/log4j/docs/">http://logging.apache.org/log4j/docs/</a></p><p><a name="org.apache.cocoon:cocoon-store-impl:jar"><b>Cocoon Store Implementation</b></a></p><p>Several components implementing of the Excalibur Store interface.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/store-impl/1.0/">http://cocoon.apache.org/2.2/core-modules/store-impl/1.0/</a></p><p><a name="net.sf.ehcache:ehcache:jar"><b>ehcache</b></a></p><p>Ehcache is a widely used pure Java, distributed in-process cache</p><p><a href="http://ehcache.sf.net">http://ehcache.sf.net</a></p><p><a name="org.apache.cocoon:cocoon-thread-impl:jar"><b>Cocoon Thread Implementation</b></a></p><p>Implementation of thread pool and factory components.
-   Implementation of a component for execution of background tasks.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/thread-impl/1.0/">http://cocoon.apache.org/2.2/core-modules/thread-impl/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-auth-api:jar"><b>Cocoon Authentication Block API</b></a></p><p>The Apache Software Foundation provides support for the Apache community of open-source software projects.
+    and users.</p><p><a href="http://cocoon.apache.org/2.2/blocks/auth/1.0/">http://cocoon.apache.org/2.2/blocks/auth/1.0/</a></p><p><a name="org.apache.cocoon:cocoon-auth-api:jar"><b>Cocoon Authentication Block API</b></a></p><p>The Apache Software Foundation provides support for the Apache community of open-source software projects.
     The Apache projects are characterized by a collaborative, consensus based development process, an open and
     pragmatic software license, and a desire to create high quality software that leads the way in its field.
     We consider ourselves not simply a group of projects sharing a server, but rather a community of developers
-    and users.</p><p><a href="http://cocoon.apache.org/cocoon-blocks-modules/cocoon-auth-api">http://cocoon.apache.org/cocoon-blocks-modules/cocoon-auth-api</a></p></div></div>
+    and users.</p><p><a href="http://cocoon.apache.org/cocoon-blocks-modules/cocoon-auth-api">http://cocoon.apache.org/cocoon-blocks-modules/cocoon-auth-api</a></p><p><a name="org.apache.cocoon:cocoon-core:jar"><b>Cocoon Core</b></a></p><p>Module that contains dependencies to all modules normally needed for a basic
+    Cocoon webapp. Cocoon blocks should normally depend on this modules, as the
+    exact content of the more fine grained sitemap, pipeline and support modules
+    is not stable yet. This module also contains some classes, configuration
+    files and tests that we not have decided where to move yet.</p><p><a href="http://cocoon.apache.org/2.2/core-modules/core/2.2/">http://cocoon.apache.org/2.2/core-modules/core/2.2/</a></p></div></div>
     </div>
+
     <!-- end of content -->
     <div id="footer">
       <p>&#169;  
-          1999-2007
+          1999-2008
     
           The Apache Software Foundation
-        <br/>
-    
-    Last Published: 25/09/2007 21:25
-</p>
+      </p>
     </div>
     <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
     </script>
@@ -265,5 +219,6 @@
       _uacct = "UA-1740622-3";
       urchinTracker();
     </script>
+
   </body>
-</html>
+</html>
\ No newline at end of file

Modified: cocoon/site/site/2.2/blocks/auth/1.0/project-summary.html
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/auth/1.0/project-summary.html?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/auth/1.0/project-summary.html (original)
+++ cocoon/site/site/2.2/blocks/auth/1.0/project-summary.html Mon Mar 31 06:35:20 2008
@@ -25,17 +25,17 @@
 
 
 
-
 <html>
   <head>
-    <title>            Cocoon Authentication
-      </title>
+    <title>      Cocoon Authentication Block Implementation - Project Summary
+  </title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+    <script src="./js/getBlank.js" language="javascript" type="text/javascript"></script>
         <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
   </head>
   <body>
@@ -60,12 +60,16 @@
                       </div>
          </div>
          <div id="projectBar">
-           <p class="cocoonHome"><a href="../../../../"><img
+           <p class="cocoonHome"><a href="./index.html"><img
            src="images/pmc-home.gif"
-           alt="Back to Apache Cocoon homepage"
-           border="0" title="Back to Apache Cocoon homepage" /></a></p>
-           <h1 class="projectTitle"><a href="../../../../">              Cocoon Authentication
-            1.0
+           alt="  Cocoon Authentication
+      1.0
+   homepage"
+           border="0" title="  Cocoon Authentication
+      1.0
+   homepage" /></a></p>
+           <h1 class="projectTitle"><a href="./index.html">  Cocoon Authentication
+      1.0
   </a></h1>
                          <ul class="projectList">
                 <li><strong><a href="../../../../2.2/">Cocoon 2.2</a></em></strong></li>
@@ -77,7 +81,7 @@
                      </div>
          <div class="projectBarClear"><!-- --></div>
       </div>
-<!-- end of top -->
+    <!-- end of top -->
 
     <div id="content">
          <ul id="menu">
@@ -186,31 +190,20 @@
               </ul>
     </li>
       </ul>
-<!--
-                                     <a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy">
-            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
-          </a>
-                   <div id="lastPublished">
-                    
-                   Last Published: 25/09/2007 21:25
-       </div>
--->
          <div class="section"><h2>Project Summary</h2><div class="section"><h3>Project Information</h3><table class="bodyTable"><tr class="a"><th>Field</th><th>Value</th></tr><tr class="b"><td>Name</td><td>Cocoon Authentication Block Implementation</td></tr><tr class="a"><td>Description</td><td>The Apache Software Foundation provides support for the Apache community of open-source software projects.
     The Apache projects are characterized by a collaborative, consensus based development process, an open and
     pragmatic software license, and a desire to create high quality software that leads the way in its field.
     We consider ourselves not simply a group of projects sharing a server, but rather a community of developers
-    and users.</td></tr><tr class="b"><td>Homepage</td><td><a href="http://cocoon.apache.org/2.2/blocks/auth/1.0/">http://cocoon.apache.org/2.2/blocks/auth/1.0/</a></td></tr></table></div><div class="section"><h3>Project Organization</h3><table class="bodyTable"><tr class="a"><th>Field</th><th>Value</th></tr><tr class="b"><td>Name</td><td>The Apache Software Foundation</td></tr><tr class="a"><td>URL</td><td><a href="http://www.apache.org/">http://www.apache.org/</a></td></tr></table></div><div class="section"><h3>Build Information</h3><table class="bodyTable"><tr class="b"><th>Field</th><th>Value</th></tr><tr class="a"><td>GroupId</td><td>org.apache.cocoon</td></tr><tr class="b"><td>ArtifactId</td><td>cocoon-auth-impl</td></tr><tr class="a"><td>Version</td><td>1.0.0-RC2</td></tr><tr class="b"><td>Type</td><td>jar</td></tr></table></div></div>
+    and users.</td></tr><tr class="b"><td>Homepage</td><td><a href="http://cocoon.apache.org/2.2/blocks/auth/1.0/">http://cocoon.apache.org/2.2/blocks/auth/1.0/</a></td></tr></table></div><div class="section"><h3>Project Organization</h3><table class="bodyTable"><tr class="a"><th>Field</th><th>Value</th></tr><tr class="b"><td>Name</td><td>The Apache Software Foundation</td></tr><tr class="a"><td>URL</td><td><a href="http://www.apache.org/">http://www.apache.org/</a></td></tr></table></div><div class="section"><h3>Build Information</h3><table class="bodyTable"><tr class="b"><th>Field</th><th>Value</th></tr><tr class="a"><td>GroupId</td><td>org.apache.cocoon</td></tr><tr class="b"><td>ArtifactId</td><td>cocoon-auth-impl</td></tr><tr class="a"><td>Version</td><td>1.0.0</td></tr><tr class="b"><td>Type</td><td>jar</td></tr></table></div></div>
     </div>
+
     <!-- end of content -->
     <div id="footer">
       <p>&#169;  
-          1999-2007
+          1999-2008
     
           The Apache Software Foundation
-        <br/>
-    
-    Last Published: 25/09/2007 21:25
-</p>
+      </p>
     </div>
     <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
     </script>
@@ -218,5 +211,6 @@
       _uacct = "UA-1740622-3";
       urchinTracker();
     </script>
+
   </body>
-</html>
+</html>
\ No newline at end of file

Modified: cocoon/site/site/2.2/blocks/batik/1.0/apidocs/create-apidocs.sh
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/batik/1.0/apidocs/create-apidocs.sh?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/batik/1.0/apidocs/create-apidocs.sh (original)
+++ cocoon/site/site/2.2/blocks/batik/1.0/apidocs/create-apidocs.sh Mon Mar 31 06:35:20 2008
@@ -1,7 +1,7 @@
 echo "----------------------------------------------------------------"
-echo "Creating JavaDocs for cocoon-batik-impl:1.0.0-RC2"
-f=cocoon-batik-impl-1.0.0-RC2-javadoc.jar
-jd=org/apache/cocoon/cocoon-batik-impl/1.0.0-RC2/$f
+echo "Creating JavaDocs for cocoon-batik-impl:1.0.0"
+f=cocoon-batik-impl-1.0.0-javadoc.jar
+jd=org/apache/cocoon/cocoon-batik-impl/1.0.0/$f
 dl=0
 
 if [ -f $f ]

Modified: cocoon/site/site/2.2/blocks/batik/1.0/css/site.css
URL: http://svn.apache.org/viewvc/cocoon/site/site/2.2/blocks/batik/1.0/css/site.css?rev=642989&r1=642988&r2=642989&view=diff
==============================================================================
--- cocoon/site/site/2.2/blocks/batik/1.0/css/site.css (original)
+++ cocoon/site/site/2.2/blocks/batik/1.0/css/site.css Mon Mar 31 06:35:20 2008
@@ -17,21 +17,21 @@
  * under the License.
  */
 
-body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color: #4c4c4c;
}
a:link, a:visited {
	color: #0086b3;
}
a:hover {
	text-decoration: none;
}
h1 {
-	margin: 25px 0 15px 0;
	padding: 0 0 5px 17px;
	background: url(../images/h1-image.gif) no-repeat left 4px;
	font-size: 130%;
	color: #0086b3;
	border-bottom: 1px solid #0086b3;
}
+body {	font-family: Arial, Helvetica, sans-serif;	font-size: 0.8em;	color: #4c4c4c;}a:link, a:visited {	color: #0086b3;}a:hover {	text-decoration: none;}h1 {
+	margin: 25px 0 15px 0;	padding: 0 0 5px 17px;	background: url(../images/h1-image.gif) no-repeat left 4px;	font-size: 130%;	color: #0086b3;	border-bottom: 1px solid #0086b3;}
 h1.docTitle {
 	margin: 0 0 10px 0;
 	padding: 0 0 5px 0;
 	font-size: 150%;
 	background: none; 
 }
-
h2 {
	font-size: 120%;
}
+h2 {	font-size: 120%;}
 
 h3, h4, h5 {
    font-size: 100%;
    font-weight: bold;
 }
-
ul {
	margin: 5px 0 10px 0;
	padding: 0 0 0 20px;
	list-style: none;
}
li {
	padding-left: 15px;
	padding-bottom: 3px;
}
+ul {	margin: 5px 0 10px 0;	padding: 0 0 0 20px;	list-style: none;}li {	padding-left: 15px;	padding-bottom: 3px;}
 ul li {
 	background: url(../images/list.gif) no-repeat left 3px;   
 }
@@ -40,14 +40,14 @@
 }
 tt {
 	font-size: 130%;
-}
-pre {
	border:1px solid #aaaaaa;
	background: #efefef;
	font-size: 110%;
	padding:10px;
}
table {
	margin: 0 0 10px 0;
	width: 99.5%;
	border: 1px solid #cce7f0;
}
table th, table td {
	padding: 4px;
}
thead {
	background: #0086b3;
	color: #fff;
}
tbody {
	background: #e5f3f7;
}
table .alt {
	background: #cce7f0;
}
/* Header part
+}
+pre {	border:1px solid #aaaaaa;	background: #efefef;	font-size: 110%;	padding:10px;}table {	margin: 0 0 10px 0;	width: 99.5%;	border: 1px solid #cce7f0;}table th, table td {	padding: 4px;}thead {	background: #0086b3;	color: #fff;}tbody {	background: #e5f3f7;}table .alt {	background: #cce7f0;}/* Header part
 --------------------------------------*/
-#breadtrail {
	background: #2698be url(../images/breadtrail-bg.gif) repeat-x bottom left;
}
#breadtrail p {
	margin: 0;
	padding: 2px 0 5px 20px;
	color: #fff;
}
#breadtrail a {
	color: #fff;
	text-decoration: none;
}
#breadtrail a:hover {
	text-decoration: underline;
}
#top {
	background: url(../images/top-background.jpg) repeat-x;
}
#header {
	height: 129px;
	background: url(../images/logo-background.jpg) no-repeat;
}
.projectlogo {
	float: left;
}
.logoImage {
	margin: 30px 0 0 34px;
}
.grouplogo {
	margin: 10px 10px 0 0;
	float: right;
}
.grouptitle {
	margin: 0;
	padding-bottom: 5px;
	background: url(../images/group-title-line.gif) repeat-x bottom;
}
.grouptitle a:link, .grouptitle a:visited {
	color: #545454;
	text-decoration: none;
}
.searchbox {
	margin: 3px 0;
	padding: 0;
}
.searchbox input {
	padding: 3px;
	font-size: 11px;
	border: 1px solid #626262;
	color: #626262;
}
.searchbox .searchboxsubmit {
	background: #626262;
	border: none;
	color: #fff;
}

#projectBar
  {
	margin-bottom: 10px;
	height: 25px;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
}
#projectBar .projectTitle {
	margin: 0;
	padding: 6px 0 0 5px;
	background: none;
	border: none;
	float: left;
	font-size: 100%;
	color: #0086b3;
}
.projectTitle a {
	text-decoration: none;
}
.projectTitle a:hover {
	text-decoration: underline;
}
#projectBar .projectList {
	margin: 5px 15px 0 0;
	padding: 0;
	list-style: none;
	float: right;
}
#projectBar .projectList li {
	padding: 0 8px;
	background: none;
	float: left;
	border-right: 1px solid #f2f2f2;
}
#projectBar .projectList a {
	color: #acacac;
	text-decoration: none;
}
#projectBar .projectList a:hover {
	text-decoration: underline;
}
.projectList img {
	padding-top: 2px;
}
.cocoonHome {
	margin: 0;
	padding: 4px 0 0 10px;
	float: left;
}
.projectBarClear {
	height: 1%;
	clear: both;
}
+#breadtrail {	background: #2698be url(../images/breadtrail-bg.gif) repeat-x bottom left;}#breadtrail p {	margin: 0;	padding: 2px 0 5px 20px;	color: #fff;}#breadtrail a {	color: #fff;	text-decoration: none;}#breadtrail a:hover {	text-decoration: underline;}#top {	background: url(../images/top-background.jpg) repeat-x;}#header {	height: 129px;	background: url(../images/logo-background.jpg) no-repeat;}.projectlogo {	float: left;}.logoImage {	margin: 30px 0 0 34px;}.grouplogo {	margin: 10px 10px 0 0;	float: right;}.grouptitle {	margin: 0;	padding-bottom: 5px;	background: url(../images/group-title-line.gif) repeat-x bottom;}.grouptitle a:link, .grouptitle a:visited {	color: #545454;	text-decoration: none;}.searchbox {	margin: 3px 0;	padding: 0;}.searchbox input {	padding: 3px;	font-size: 11px;	border: 1px solid #626262;	color: #626262;}.searchbox .searchboxsubmit {	background: #626262;	border: none;	color: #fff;}#projectBar {	margin-bottom: 10px;	height: 25px;	border-top: 1px sol
 id #f2f2f2;	border-bottom: 1px solid #f2f2f2;}#projectBar .projectTitle {	margin: 0;	padding: 6px 0 0 5px;	background: none;	border: none;	float: left;	font-size: 100%;	color: #0086b3;}.projectTitle a {	text-decoration: none;}.projectTitle a:hover {	text-decoration: underline;}#projectBar .projectList {	margin: 5px 15px 0 0;	padding: 0;	list-style: none;	float: right;}#projectBar .projectList li {	padding: 0 8px;	background: none;	float: left;	border-right: 1px solid #f2f2f2;}#projectBar .projectList a {	color: #acacac;	text-decoration: none;}#projectBar .projectList a:hover {	text-decoration: underline;}.projectList img {	padding-top: 2px;}.cocoonHome {	margin: 0;	padding: 4px 0 0 10px;	float: left;}.projectBarClear {	height: 1%;	clear: both;}
 /* Menu
---------------------------------------*/
#menu {
	margin: 0;
	padding: 0;
	width: 170px;
	list-style: none;
	font-weight: bold;
	float: left;
}
#menu li {
	margin-left: 10px;
	padding: 3px 5px 3px 10px;
	background: url(../images/menu-title.gif) no-repeat left 8px;
	color: #7c7c7c;
}
#menu li ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: normal;
}
#menu li ul li {
	margin: 0;
	padding: 3px 0 0 10px;
	background: url(../images/menu-list.gif) no-repeat left 7px;
	border-bottom: 1px solid #ebebeb;
}
#menu li ul .menuCollapse {
	background: url(../images/menu-collapse.gif) no-repeat left 7px;
}
#menu li ul li a {
	color: #7c7c7c;
	text-decoration: none;
}
#menu li ul li a:hover {
	text-decoration: underline;
}
#menu .menuVersions {
	color: #2e93b5;
}
+--------------------------------------*/#menu {	margin: 0;	padding: 0;	width: 170px;	list-style: none;	font-weight: bold;	float: left;}#menu li {	margin-left: 10px;	padding: 3px 5px 3px 10px;	background: url(../images/menu-title.gif) no-repeat left 8px;	color: #7c7c7c;}#menu li ul {	margin: 0;	padding: 0;	list-style: none;	font-weight: normal;}#menu li ul li {	margin: 0;	padding: 3px 0 0 10px;	background: url(../images/menu-list.gif) no-repeat left 7px;	border-bottom: 1px solid #ebebeb;}#menu li ul .menuCollapse {	background: url(../images/menu-collapse.gif) no-repeat left 7px;}#menu li ul li a {	color: #7c7c7c;	text-decoration: none;}#menu li ul li a:hover {	text-decoration: underline;}#menu .menuVersions {	color: #2e93b5;}
 /* Content
---------------------------------------*/
#contentBody {
	margin: 0 20px 0 185px;
	padding: 0;
}
+--------------------------------------*/#contentBody {	margin: 0 20px 0 185px;	padding: 0;}
 #contentBody.withSidebar {
    margin-right: 190px;
 }
@@ -57,7 +57,7 @@
    margin: 0;
 }
 .includedDoc h1.docTitle {
- 	margin: 0;
	padding: 0 0 0 17px;
	background: url(../images/h1-image.gif) no-repeat bottom left;
	font-size: 130%;
	color: #0086b3;
	border-bottom: 1px solid #0086b3;  
+ 	margin: 0;	padding: 0 0 0 17px;	background: url(../images/h1-image.gif) no-repeat bottom left;	font-size: 130%;	color: #0086b3;	border-bottom: 1px solid #0086b3;  
 }
 /* hide the link to Daisy for included documents */
 .includedDoc .editUrl {
@@ -66,18 +66,18 @@
 
 /* Intro on home page
 --------------------------------------*/
-
#intro {
	width: 180px;
	float: right;
	background: #ebebeb;
}
#intro div {
	margin: 2px;
	border: 1px solid #fff;
}
#intro h2 {
	color: #0086b3;
}
#intro p, #intro h2 {
	margin: 8px;
}
+#intro {	width: 180px;	float: right;	background: #ebebeb;}#intro div {	margin: 2px;	border: 1px solid #fff;}#intro h2 {	color: #0086b3;}#intro p, #intro h2 {	margin: 8px;}
 /* Green + blue getting boxes on 
  * home page
---------------------------------------*/
#getting {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}
/* Hide from IE-mac \*/
* html #getting {
	height: 1%;
	width: auto;
}
#getting {
	display: table;
}
/* End hide from IE-mac */
#getting div {
	margin: 0 5px 5px 0;
	padding: 0;
	width: 150px;
	height: 16em;
	background: #9bcd52 url(../images/getting-bottom.gif) no-repeat bottom;
	border: none;
	float: left;
}
#getting div div {
	margin: 0;
-	height: auto;
	padding: 10px 0 0 10px;
	background: url(../images/getting-top.gif) no-repeat;
}
#getting h2 {
	margin: 0 10px;
	padding: 4px 0;
	font-size: 120%;
	color: #fff;
	border-bottom: 1px solid #fff;
}
#getting ul {
	margin: 0 10px 10px 10px;
	padding: 0;
	color: #fff;
	list-style: none;
}
#getting ul li {
	padding: 2px 0 2px 7px;
	background: url(../images/getting-list.gif) no-repeat left 6px;
}
#getting ul li a {
	color: #fff;
}
#getting ul li a:hover {
	text-decoration: none;
}
#getting #gettingDownload {
-	background: #2e93b5 url(../images/download-bottom.gif) no-repeat bottom left;
}
#gettingDownload .downloadVersion {
	margin: 0;
-	height: auto;
	padding: 83px 0 25px 0;
	background: url(../images/download-bg.jpg) no-repeat;
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}
#getting .moreDownload {
	height: auto;
-	width: auto;
	margin: 0;
	padding: 0 10px;
	background: #2e93b5;
	color: #fff;
}
#getting .moreDownload a {
	color: #fff;
}
/* News section
---------------------------------------*/
.news {
	margin: 10px 0 0 0;
	padding: 0;
}
.news dt {
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 110%;
}
.news dd {
	margin: 0;
	padding: 0;
}
.news .newsMeta {
	margin: 5px 0 15px 0;
	padding-left: 8px;
	background: url(../images/news-meta.gif) no-repeat left 4px;
	font-size: 90%;
	color: #959595;
}
-
.errors, .fixme, .warning, .note {
    margin: 10px 0;
    padding: 0 0 0 45px;
    border: 1px solid #9bcd52;
}
.errors div, .fixme div, .warning div, .note div {
    margin: 5px;
    padding: 8px 0;
}
.errors {
    background: url(../images/errors.gif) no-repeat 10px 7px;
}
.fixme {
    background: url(../images/fixme.gif) no-repeat 10px 7px;
}
.warning {
    background: url(../images/warning.gif) no-repeat 10px 7px;
}
.note {
    background: url(../images/note.gif) no-repeat 10px 7px;
}
+--------------------------------------*/#getting {	margin: 0;	padding: 0;	display: inline-block;	width: 100%;}/* Hide from IE-mac \*/* html #getting {	height: 1%;	width: auto;}#getting {	display: table;}/* End hide from IE-mac */#getting div {	margin: 0 5px 5px 0;	padding: 0;	width: 150px;	height: 16em;	background: #9bcd52 url(../images/getting-bottom.gif) no-repeat bottom;	border: none;	float: left;}#getting div div {	margin: 0;
+	height: auto;	padding: 10px 0 0 10px;	background: url(../images/getting-top.gif) no-repeat;}#getting h2 {	margin: 0 10px;	padding: 4px 0;	font-size: 120%;	color: #fff;	border-bottom: 1px solid #fff;}#getting ul {	margin: 0 10px 10px 10px;	padding: 0;	color: #fff;	list-style: none;}#getting ul li {	padding: 2px 0 2px 7px;	background: url(../images/getting-list.gif) no-repeat left 6px;}#getting ul li a {	color: #fff;}#getting ul li a:hover {	text-decoration: none;}#getting #gettingDownload {
+	background: #2e93b5 url(../images/download-bottom.gif) no-repeat bottom left;}#gettingDownload .downloadVersion {	margin: 0;
+	height: auto;	padding: 83px 0 25px 0;	background: url(../images/download-bg.jpg) no-repeat;	font-size: 120%;	font-weight: bold;	text-align: center;}#getting .moreDownload {	height: auto;
+	width: auto;	margin: 0;	padding: 0 10px;	background: #2e93b5;	color: #fff;}#getting .moreDownload a {	color: #fff;}/* News section
+--------------------------------------*/.news {	margin: 10px 0 0 0;	padding: 0;}.news dt {	margin-bottom: 5px;	font-weight: bold;	font-size: 110%;}.news dd {	margin: 0;	padding: 0;}.news .newsMeta {	margin: 5px 0 15px 0;	padding-left: 8px;	background: url(../images/news-meta.gif) no-repeat left 4px;	font-size: 90%;	color: #959595;}
+.errors, .fixme, .warning, .note {    margin: 10px 0;    padding: 0 0 0 45px;    border: 1px solid #9bcd52;}.errors div, .fixme div, .warning div, .note div {    margin: 5px;    padding: 8px 0;}.errors {    background: url(../images/errors.gif) no-repeat 10px 7px;}.fixme {    background: url(../images/fixme.gif) no-repeat 10px 7px;}.warning {    background: url(../images/warning.gif) no-repeat 10px 7px;}.note {    background: url(../images/note.gif) no-repeat 10px 7px;}
 /* Bottom link to Daisy page
---------------------------------------*/
.editUrl {
-	margin-top: 1em;
	padding: 0 0 0 45px;
	background: url(../images/errors.gif) no-repeat 10px 7px;
	border: 1px solid #9bcd52;
}
.editUrl div {
	margin: 5px;
	padding: 8px 0;
}
+--------------------------------------*/.editUrl {
+	margin-top: 1em;	padding: 0 0 0 45px;	background: url(../images/errors.gif) no-repeat 10px 7px;	border: 1px solid #9bcd52;}.editUrl div {	margin: 5px;	padding: 8px 0;}
 /* Footer
---------------------------------------*/
#footer {
	border-top: 1px solid #f2f2f2;
	text-align: center;
	clear: both;
}
\ No newline at end of file
+--------------------------------------*/#footer {	border-top: 1px solid #f2f2f2;	text-align: center;	clear: both;}
\ No newline at end of file