You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by le...@apache.org on 2002/04/07 13:49:10 UTC

cvs commit: jakarta-avalon/src/proposal/site/screenshots internetexplorer5.5.gif mozilla0.9.9.gif netscape3.0.2.gif netscape4.0.8.gif opera60.1.gif

leosimons    02/04/07 04:49:10

  Modified:    src/proposal/site common.css index.html
               src/proposal/site/anakia/build velocity.log
               src/proposal/site/anakia/docs common.css index.html
               src/proposal/site/anakia/docs/about index.html
               src/proposal/site/anakia/xdocs common.css
               src/proposal/site/anakia/xdocs/stylesheets site.vsl
  Added:       src/proposal/site/screenshots internetexplorer5.5.gif
                        mozilla0.9.9.gif netscape3.0.2.gif
                        netscape4.0.8.gif opera60.1.gif
  Log:
  some small changes to make things work with most browsers, plus screenshots of tests.
  
  Revision  Changes    Path
  1.3       +28 -5     jakarta-avalon/src/proposal/site/common.css
  
  Index: common.css
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/common.css,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- common.css	6 Apr 2002 15:03:49 -0000	1.2
  +++ common.css	7 Apr 2002 11:49:09 -0000	1.3
  @@ -1,3 +1,18 @@
  +html body, body div, body p, body th, body td, body li, body dl, body dd, input, select, textarea {
  + font-family: Arial, Helvetica, sans-serif;
  + }
  +p, ul, ol, dl {
  + margin-top: .67em;
  + margin-bottom: .67em;
  + }
  +table, th, td {
  + border: none
  + }
  +form {
  + margin-top: 0;
  + margin-bottom: 0;
  + }
  +
   body {
   	margin: 0px;
   	padding: 10px;
  @@ -22,6 +37,7 @@
   	font-weight: bold;
   	padding: 0px;
   	margin: 0px;
  +	margin-left: 40px;
   }
   h1 {
   	border: 1px solid #003366;
  @@ -30,20 +46,18 @@
   	margin-bottom: 10px;
   	text-align: center;
   	background-color: #EEEEFF;
  +	margin-left: 0px;
   }
   
   h2 {
   	font-size: 16pt;
  -	margin-left: 40px;
   }
   h3 {
   	font-size: 14pt;
  -	margin-left: 80px;
   	color: #000033;
   }
   h4 {
   	font-size: 12pt;
  -	margin-left: 120px;
   	color: #000066;
   }
   h5 {
  @@ -51,12 +65,14 @@
   	font-style: italic;
   	text-align: center;
   	color: #333399;
  +	margin-left: 0px;
   }
   h6 {
   	font-size: 10pt;
   	text-align: center;
   	font-weight: normal;
   	color: #3333CC;
  +	margin-left: 0px;
   }
   a, a:visited {
   	color: #336699;
  @@ -64,7 +80,6 @@
   a:hover, a:active {
   	color: #003366;;
   }
  -#contents div { margin-left: 40px; }
   #breadcrumbs {
   	border-top: 1px solid #003366;
   	border-bottom: 1px solid #003366;
  @@ -105,7 +120,6 @@
   #submenu ul {
   	margin-top: 5px;
   	margin-bottom: 5px;
  -	margin-left: 25px;
   }
   #authors {
   	font-size: 10px;
  @@ -127,13 +141,22 @@
   a.breadcrumbs:hover, a.breadcrumbs:active, a.menu:hover, a.menu:active {
   	text-decoration: underline;
   }
  +.section {
  +	margin-left: 40px;
  +}
   .code {
   	font-family: Courier, Courier New, monospace;
   	padding: 4px;
   	border: 1px solid #003366;
   }
  +.code, pre {
  +	font-size: 11px;
  +}
   .section .code {
   	margin-left: -40px;
  +}
  +.section .section .code {
  +	margin-left: -80px;
   }
   @media print {
   	body td {
  
  
  
  1.2       +13 -127   jakarta-avalon/src/proposal/site/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/index.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html	6 Apr 2002 14:36:30 -0000	1.1
  +++ index.html	7 Apr 2002 11:49:09 -0000	1.2
  @@ -7,7 +7,7 @@
   			<meta name="author" value="Leo Simons" />
   			<meta name="email" value="leosimons@apache.org" />
   			
  -			<link rel="stylesheet" type="text/css" href="./common.css" />
  +			<link rel="stylesheet" type="text/css" href="common.css" />
   </head>
   <body>
   			<!-- header -->
  @@ -23,14 +23,14 @@
   						<a href="http://www.apache.org" class="menu">Apache.org</a> &gt;
   						<a href="http://jakarta.apache.org" class="menu">Jakarta</a> &gt; 
   						<a href="http://jakarta.apache.org/avalon" class="menu">Avalon</a> &gt; 
  -				<script language="JavaScript" type="text/javascript">
  +				<script language="JavaScript1.2" type="text/javascript">
   				<!--
   					function sentenceCase(str) {
   						var lower = str.toLowerCase();
   						return lower.substr(0,1).toUpperCase() + lower.substr(1);
   					}
   					function getDirsAsArray() {
  -						var trail = document.location.pathname.split("\\");
  +						var trail = document.location.pathname.split("/");
   						var lastdir = (trail[trail.length-1].indexOf(".html") != -1)? trail.length-2 : trail.length-1;
   						var urlprefix = "/avalon/";
   						var postfix = " &gt"; 
  @@ -99,7 +99,7 @@
   									<!-- contents column -->
   <div id="title"><h1>Title</h1></div>
   <div id="contents">
  -			<h2>Section 1</h2>
  +					<h2>Section 1</h2>
   						<div class="section">
   						<p>The Avalon framework consists of interfaces that define
   						relationships between commonly used application components,
  @@ -139,7 +139,7 @@
   						<h3>Some place with a code block</h3>
   									<div class="section">
   									<p>Here is the code I mentioned:</p>
  -									<pre class="code">
  +									<div class="code"><pre>
   package jsp;
   
   import javax.servlet.*;
  @@ -159,7 +159,7 @@
       public final void _jspx_init() throws org.apache.jasper.JasperException {
       }
   
  -    public void _jspService(HttpServletRequest request, HttpServletResponse  response)
  +    public void _jspService(HttpServletRequest request, HttpServletResponse  res
           throws java.io.IOException, ServletException {
   
           JspFactory _jspxFactory = null;
  @@ -186,7 +186,7 @@
               session = pageContext.getSession();
               out = pageContext.getOut();
   
  -            out.write("&lt;html&gt;\r\n&lt;head&gt;&lt;title&gt;Hello&lt;/title&gt;&lt;/head&gt;\r\n&lt;body&gt;\r\n&lt;h2&gt;\r\n");
  +            out.write("&lt;html&gt;\r\n&lt;head&gt;&lt;title&gt;Hello&lt;/title
               if (request.getParameter("name") == null) 
                 out.write("\r\n          Hello World\r\n");
               else 
  @@ -202,11 +202,11 @@
               if (out instanceof org.apache.jasper.runtime.JspWriterImpl) { 
                   ((org.apache.jasper.runtime.JspWriterImpl)out).flushBuffer();
               }
  -            if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
  +            if (_jspxFactory != null) _jspxFactory.releasePageContext(pageConte
           }
       }
   }
  -									</pre>
  +									</pre></div>
   									</div>
   						</div>
   			<h2>Overview</h2>
  @@ -249,7 +249,7 @@
   						<h3>Some place with a code block</h3>
   									<div class="section">
   									<p>Here is the code I mentioned:</p>
  -									<pre class="code">
  +									<div class="code"><pre>
   package jsp;
   
   import javax.servlet.*;
  @@ -258,65 +258,8 @@
   import javax.servlet.jsp.tagext.*;
   
   public class helloworld_1 extends org.apache.jasper.runtime.HttpJspBase {
  -
  -    static {
  -    }
  -    public helloworld_1( ) {
  -    }
  -
  -    private static boolean _jspx_inited = false;
  -
  -    public final void _jspx_init() throws org.apache.jasper.JasperException {
  -    }
  -
  -    public void _jspService(HttpServletRequest request, HttpServletResponse  response)
  -        throws java.io.IOException, ServletException {
  -
  -        JspFactory _jspxFactory = null;
  -        PageContext pageContext = null;
  -        HttpSession session = null;
  -        ServletContext application = null;
  -        ServletConfig config = null;
  -        JspWriter out = null;
  -        Object page = this;
  -        String  _value = null;
  -        try {
  -
  -            if (_jspx_inited == false) {
  -                _jspx_init();
  -                _jspx_inited = true;
  -            }
  -            _jspxFactory = JspFactory.getDefaultFactory();
  -            response.setContentType("text/html;charset=8859_1");
  -            pageContext = _jspxFactory.getPageContext(this, request, response,
  -			"", true, 8192, true);
  -
  -            application = pageContext.getServletContext();
  -            config = pageContext.getServletConfig();
  -            session = pageContext.getSession();
  -            out = pageContext.getOut();
  -
  -            out.write("&lt;html&gt;\r\n&lt;head&gt;&lt;title&gt;Hello&lt;/title&gt;&lt;/head&gt;\r\n&lt;body&gt;\r\n&lt;h2&gt;\r\n");
  -            if (request.getParameter("name") == null) 
  -              out.write("\r\n          Hello World\r\n");
  -            else 
  -              out.write("\r\n          Hello, ");
  -            request.getParameter("name"); 
  -              out.write("\r\n&lt;/h2&gt;\r\n&lt;/body&gt;&lt;/html&gt;\r\n");
  -
  -        } catch (Exception ex) {
  -            if (out != null && out.getBufferSize() != 0)
  -                out.clearBuffer();
  -            if (pageContext != null) pageContext.handlePageException(ex);
  -        } finally {
  -            if (out instanceof org.apache.jasper.runtime.JspWriterImpl) { 
  -                ((org.apache.jasper.runtime.JspWriterImpl)out).flushBuffer();
  -            }
  -            if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
  -        }
  -    }
   }
  -									</pre>
  +									</pre></div>
   									</div>
   						</div>
   			<h2>Overview</h2>
  @@ -359,7 +302,7 @@
   						<h3>Some place with a code block</h3>
   									<div class="section">
   									<p>Here is the code I mentioned:</p>
  -									<pre class="code">
  +									<div class="code"><pre>
   package jsp;
   
   import javax.servlet.*;
  @@ -368,65 +311,8 @@
   import javax.servlet.jsp.tagext.*;
   
   public class helloworld_1 extends org.apache.jasper.runtime.HttpJspBase {
  -
  -    static {
  -    }
  -    public helloworld_1( ) {
  -    }
  -
  -    private static boolean _jspx_inited = false;
  -
  -    public final void _jspx_init() throws org.apache.jasper.JasperException {
  -    }
  -
  -    public void _jspService(HttpServletRequest request, HttpServletResponse  response)
  -        throws java.io.IOException, ServletException {
  -
  -        JspFactory _jspxFactory = null;
  -        PageContext pageContext = null;
  -        HttpSession session = null;
  -        ServletContext application = null;
  -        ServletConfig config = null;
  -        JspWriter out = null;
  -        Object page = this;
  -        String  _value = null;
  -        try {
  -
  -            if (_jspx_inited == false) {
  -                _jspx_init();
  -                _jspx_inited = true;
  -            }
  -            _jspxFactory = JspFactory.getDefaultFactory();
  -            response.setContentType("text/html;charset=8859_1");
  -            pageContext = _jspxFactory.getPageContext(this, request, response,
  -			"", true, 8192, true);
  -
  -            application = pageContext.getServletContext();
  -            config = pageContext.getServletConfig();
  -            session = pageContext.getSession();
  -            out = pageContext.getOut();
  -
  -            out.write("&lt;html&gt;\r\n&lt;head&gt;&lt;title&gt;Hello&lt;/title&gt;&lt;/head&gt;\r\n&lt;body&gt;\r\n&lt;h2&gt;\r\n");
  -            if (request.getParameter("name") == null) 
  -              out.write("\r\n          Hello World\r\n");
  -            else 
  -              out.write("\r\n          Hello, ");
  -            request.getParameter("name"); 
  -              out.write("\r\n&lt;/h2&gt;\r\n&lt;/body&gt;&lt;/html&gt;\r\n");
  -
  -        } catch (Exception ex) {
  -            if (out != null && out.getBufferSize() != 0)
  -                out.clearBuffer();
  -            if (pageContext != null) pageContext.handlePageException(ex);
  -        } finally {
  -            if (out instanceof org.apache.jasper.runtime.JspWriterImpl) { 
  -                ((org.apache.jasper.runtime.JspWriterImpl)out).flushBuffer();
  -            }
  -            if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
  -        }
  -    }
   }
  -									</pre>
  +									</pre></div>
   									</div>
   						</div>
   <div id="authors">by <a href="mailto:leosimons@apache.org">Leo Simons</a>, <a href="mailto:jon">Jon Stevens</a>, <a href="mailto:paul">Paul Hammant</a></div>
  
  
  
  1.2       +113 -59   jakarta-avalon/src/proposal/site/anakia/build/velocity.log
  
  Index: velocity.log
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/anakia/build/velocity.log,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- velocity.log	6 Apr 2002 14:36:30 -0000	1.1
  +++ velocity.log	7 Apr 2002 11:49:09 -0000	1.2
  @@ -1,59 +1,113 @@
  -Sat Apr 06 16:01:27 CEST 2002  [debug] AvalonLogSystem initialized using logfile 'velocity.log'
  -Sat Apr 06 16:01:27 CEST 2002   [info] ************************************************************** 
  -Sat Apr 06 16:01:27 CEST 2002   [info] Starting Jakarta Velocity v1.4-dev
  -Sat Apr 06 16:01:27 CEST 2002   [info] RuntimeInstance initializing.
  -Sat Apr 06 16:01:27 CEST 2002   [info] Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
  -Sat Apr 06 16:01:27 CEST 2002   [info] Trying to use logger class org.apache.velocity.runtime.log.AvalonLogSystem
  -Sat Apr 06 16:01:27 CEST 2002   [info] Using logger class org.apache.velocity.runtime.log.AvalonLogSystem
  -Sat Apr 06 16:01:27 CEST 2002   [info] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl)
  -Sat Apr 06 16:01:27 CEST 2002   [info] Resource Loader Instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
  -Sat Apr 06 16:01:27 CEST 2002   [info] FileResourceLoader : initialization starting.
  -Sat Apr 06 16:01:27 CEST 2002   [info] FileResourceLoader : adding path 'F:\Sources\cvs\jakarta\jakarta-avalon\src\proposal\site\anakia\xdocs\stylesheets'
  -Sat Apr 06 16:01:27 CEST 2002   [info] FileResourceLoader : initialization complete.
  -Sat Apr 06 16:01:27 CEST 2002   [info] ResourceCache : initialized. (class org.apache.velocity.runtime.resource.ResourceCacheImpl)
  -Sat Apr 06 16:01:27 CEST 2002   [info] Default ResourceManager initialization complete.
  -Sat Apr 06 16:01:27 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Literal
  -Sat Apr 06 16:01:27 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
  -Sat Apr 06 16:01:27 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
  -Sat Apr 06 16:01:27 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Include
  -Sat Apr 06 16:01:27 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
  -Sat Apr 06 16:01:28 CEST 2002   [info] Created: 20 parsers.
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : initialization starting.
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : adding VMs from VM library template : VM_global_library.vm
  -Sat Apr 06 16:01:28 CEST 2002  [error] ResourceManager : unable to find resource 'VM_global_library.vm' in any resource loader.
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : error using  VM library template VM_global_library.vm : org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'VM_global_library.vm'
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro :  VM library template macro registration complete.
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : allowInline = true : VMs can be defined inline in templates
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : allowInlineLocal = false : VMs defined inline will be  global in scope if allowed.
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : messages on  : VM system will output logging messages
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : autoload off  : VM system will not automatically reload global library macros
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocimacro : initialization complete.
  -Sat Apr 06 16:01:28 CEST 2002   [info] Velocity successfully started.
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #table( table ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #tr( tr ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #td( value ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #th( value ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #image( value ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #source( value ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #subsection( subsection ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #section( section ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #projectAnchor( name value ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #metaAuthor( author email ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #printMeta( metaElement ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getTitle( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getAuthors( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getMetas( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getStylesheet( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getHeader( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getBreadCrumbs( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getMain( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getMenu( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getContents( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getAuthorList( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #getFooter( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002   [info] Velocimacro : added new VM : #document( ) : source = ./site.vsl
  -Sat Apr 06 16:01:29 CEST 2002  [error] VM #tr: error : too few arguments to macro. Wanted 1 got 0
  -Sat Apr 06 16:01:29 CEST 2002  [error] VM #td: error : too few arguments to macro. Wanted 1 got 0
  -Sat Apr 06 16:01:29 CEST 2002  [error] VM #th: error : too few arguments to macro. Wanted 1 got 0
  -Sat Apr 06 16:01:30 CEST 2002   [info] ResourceManager : found ./site.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
  +Sun Apr 07 13:44:28 CEST 2002  [debug] AvalonLogSystem initialized using logfile 'velocity.log'
  +Sun Apr 07 13:44:28 CEST 2002   [info] ************************************************************** 
  +Sun Apr 07 13:44:28 CEST 2002   [info] Starting Jakarta Velocity v1.4-dev
  +Sun Apr 07 13:44:28 CEST 2002   [info] RuntimeInstance initializing.
  +Sun Apr 07 13:44:28 CEST 2002   [info] Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties
  +Sun Apr 07 13:44:28 CEST 2002   [info] Trying to use logger class org.apache.velocity.runtime.log.AvalonLogSystem
  +Sun Apr 07 13:44:28 CEST 2002   [info] Using logger class org.apache.velocity.runtime.log.AvalonLogSystem
  +Sun Apr 07 13:44:28 CEST 2002   [info] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl)
  +Sun Apr 07 13:44:28 CEST 2002   [info] Resource Loader Instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader
  +Sun Apr 07 13:44:28 CEST 2002   [info] FileResourceLoader : initialization starting.
  +Sun Apr 07 13:44:28 CEST 2002   [info] FileResourceLoader : adding path 'F:\Sources\cvs\jakarta\jakarta-avalon\src\proposal\site\anakia\xdocs\stylesheets'
  +Sun Apr 07 13:44:28 CEST 2002   [info] FileResourceLoader : initialization complete.
  +Sun Apr 07 13:44:28 CEST 2002   [info] ResourceCache : initialized. (class org.apache.velocity.runtime.resource.ResourceCacheImpl)
  +Sun Apr 07 13:44:28 CEST 2002   [info] Default ResourceManager initialization complete.
  +Sun Apr 07 13:44:28 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Literal
  +Sun Apr 07 13:44:28 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
  +Sun Apr 07 13:44:28 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
  +Sun Apr 07 13:44:28 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Include
  +Sun Apr 07 13:44:28 CEST 2002   [info] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
  +Sun Apr 07 13:44:29 CEST 2002   [info] Created: 20 parsers.
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : initialization starting.
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : adding VMs from VM library template : VM_global_library.vm
  +Sun Apr 07 13:44:29 CEST 2002  [error] ResourceManager : unable to find resource 'VM_global_library.vm' in any resource loader.
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : error using  VM library template VM_global_library.vm : org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'VM_global_library.vm'
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro :  VM library template macro registration complete.
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : allowInline = true : VMs can be defined inline in templates
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : allowInlineLocal = false : VMs defined inline will be  global in scope if allowed.
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : messages on  : VM system will output logging messages
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : autoload off  : VM system will not automatically reload global library macros
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocimacro : initialization complete.
  +Sun Apr 07 13:44:29 CEST 2002   [info] Velocity successfully started.
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #table( table ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #tr( tr ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #td( value ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #th( value ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #image( value ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #source( value ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #subsection( subsection ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #section( section ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #projectAnchor( name value ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #metaAuthor( author email ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #printMeta( metaElement ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getTitle( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getAuthors( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getMetas( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getStylesheet( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getHeader( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getBreadCrumbs( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getMain( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getMenu( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getContents( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getAuthorList( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #getFooter( ) : source = ./site.vsl
  +Sun Apr 07 13:44:30 CEST 2002   [info] Velocimacro : added new VM : #document( ) : source = ./site.vsl
  +Sun Apr 07 13:44:31 CEST 2002  [error] VM #tr: error : too few arguments to macro. Wanted 1 got 0
  +Sun Apr 07 13:44:31 CEST 2002  [error] VM #td: error : too few arguments to macro. Wanted 1 got 0
  +Sun Apr 07 13:44:31 CEST 2002  [error] VM #th: error : too few arguments to macro. Wanted 1 got 0
  +Sun Apr 07 13:44:31 CEST 2002   [info] ResourceManager : found ./site.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : table : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : tr : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : td : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : th : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : image : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : source : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : subsection : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : section : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : projectAnchor : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : metaAuthor : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : printMeta : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getTitle : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getAuthors : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getMetas : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getStylesheet : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getHeader : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getBreadCrumbs : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getMain : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getMenu : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getContents : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getAuthorList : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : getFooter : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [warn] Velocimacro : VM addition rejected : document : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:32 CEST 2002   [info] ResourceManager : found ./site.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
  +Sun Apr 07 13:44:33 CEST 2002   [warn] org.apache.velocity.runtime.exception.ReferenceException: reference : template = ./site.vsl [line 1,column 18] : $subsection.getAttributeValue("name") is not a valid reference.
  +Sun Apr 07 13:44:33 CEST 2002   [warn] org.apache.velocity.runtime.exception.ReferenceException: reference : template = ./site.vsl [line 1,column 18] : $subsection.getAttributeValue("name") is not a valid reference.
  +Sun Apr 07 13:44:33 CEST 2002   [warn] org.apache.velocity.runtime.exception.ReferenceException: reference : template = ./site.vsl [line 1,column 18] : $subsection.getAttributeValue("name") is not a valid reference.
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : table : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : tr : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : td : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : th : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : image : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : source : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : subsection : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : section : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : projectAnchor : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : metaAuthor : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : printMeta : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getTitle : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getAuthors : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getMetas : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getStylesheet : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getHeader : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getBreadCrumbs : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getMain : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getMenu : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getContents : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getAuthorList : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : getFooter : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [warn] Velocimacro : VM addition rejected : document : inline not allowed to replace existing VM
  +Sun Apr 07 13:44:33 CEST 2002   [info] ResourceManager : found ./site.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader
  +Sun Apr 07 13:44:33 CEST 2002   [warn] org.apache.velocity.runtime.exception.ReferenceException: reference : template = ./site.vsl [line 1,column 18] : $subsection.getAttributeValue("name") is not a valid reference.
  +Sun Apr 07 13:44:33 CEST 2002   [warn] org.apache.velocity.runtime.exception.ReferenceException: reference : template = ./site.vsl [line 1,column 18] : $subsection.getAttributeValue("name") is not a valid reference.
  +Sun Apr 07 13:44:33 CEST 2002   [warn] org.apache.velocity.runtime.exception.ReferenceException: reference : template = ./site.vsl [line 1,column 18] : $subsection.getAttributeValue("name") is not a valid reference.
  
  
  
  1.3       +28 -5     jakarta-avalon/src/proposal/site/anakia/docs/common.css
  
  Index: common.css
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/anakia/docs/common.css,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- common.css	6 Apr 2002 15:03:49 -0000	1.2
  +++ common.css	7 Apr 2002 11:49:09 -0000	1.3
  @@ -1,3 +1,18 @@
  +html body, body div, body p, body th, body td, body li, body dl, body dd, input, select, textarea {
  + font-family: Arial, Helvetica, sans-serif;
  + }
  +p, ul, ol, dl {
  + margin-top: .67em;
  + margin-bottom: .67em;
  + }
  +table, th, td {
  + border: none
  + }
  +form {
  + margin-top: 0;
  + margin-bottom: 0;
  + }
  +
   body {
   	margin: 0px;
   	padding: 10px;
  @@ -22,6 +37,7 @@
   	font-weight: bold;
   	padding: 0px;
   	margin: 0px;
  +	margin-left: 40px;
   }
   h1 {
   	border: 1px solid #003366;
  @@ -30,20 +46,18 @@
   	margin-bottom: 10px;
   	text-align: center;
   	background-color: #EEEEFF;
  +	margin-left: 0px;
   }
   
   h2 {
   	font-size: 16pt;
  -	margin-left: 40px;
   }
   h3 {
   	font-size: 14pt;
  -	margin-left: 80px;
   	color: #000033;
   }
   h4 {
   	font-size: 12pt;
  -	margin-left: 120px;
   	color: #000066;
   }
   h5 {
  @@ -51,12 +65,14 @@
   	font-style: italic;
   	text-align: center;
   	color: #333399;
  +	margin-left: 0px;
   }
   h6 {
   	font-size: 10pt;
   	text-align: center;
   	font-weight: normal;
   	color: #3333CC;
  +	margin-left: 0px;
   }
   a, a:visited {
   	color: #336699;
  @@ -64,7 +80,6 @@
   a:hover, a:active {
   	color: #003366;;
   }
  -#contents div { margin-left: 40px; }
   #breadcrumbs {
   	border-top: 1px solid #003366;
   	border-bottom: 1px solid #003366;
  @@ -105,7 +120,6 @@
   #submenu ul {
   	margin-top: 5px;
   	margin-bottom: 5px;
  -	margin-left: 25px;
   }
   #authors {
   	font-size: 10px;
  @@ -127,13 +141,22 @@
   a.breadcrumbs:hover, a.breadcrumbs:active, a.menu:hover, a.menu:active {
   	text-decoration: underline;
   }
  +.section {
  +	margin-left: 40px;
  +}
   .code {
   	font-family: Courier, Courier New, monospace;
   	padding: 4px;
   	border: 1px solid #003366;
   }
  +.code, pre {
  +	font-size: 11px;
  +}
   .section .code {
   	margin-left: -40px;
  +}
  +.section .section .code {
  +	margin-left: -80px;
   }
   @media print {
   	body td {
  
  
  
  1.2       +3 -3      jakarta-avalon/src/proposal/site/anakia/docs/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/anakia/docs/index.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html	6 Apr 2002 14:36:30 -0000	1.1
  +++ index.html	7 Apr 2002 11:49:09 -0000	1.2
  @@ -18,19 +18,19 @@
   				<a href="http://www.apache.org" class="breadcrumbs">Apache.org</a> &gt;
   				<a href="/" class="breadcrumbs">Jakarta</a> &gt; 
   				<a href="/avalon" class="breadcrumbs">Avalon</a> &gt; 
  -																<script language="JavaScript" type="text/javascript">
  +																<script language="JavaScript1.2" type="text/javascript">
   				<!--
   					function sentenceCase(str) {
   						var lower = str.toLowerCase();
   						return lower.substr(0,1).toUpperCase() + lower.substr(1);
   					}
   					function getDirsAsArray() {
  -						var trail = document.location.pathname.split("\\");
  +						var trail = document.location.pathname.split("/");
   						var lastdir = (trail[trail.length-1].indexOf(".html") != -1)? trail.length-2 : trail.length-1;
   						var urlprefix = "/avalon/";
   						var postfix = " &gt"; 
   						for(var i = 1; i <= lastdir; i++) {
  -							document.writeln('<a href=' + urlprefix + trail[i] + ' class="menu">' + sentenceCase(trail[i]) + '</a>'+postfix);
  +							document.writeln('<a href=' + urlprefix + trail[i] + ' class="breadcrumbs">' + sentenceCase(trail[i]) + '</a>'+postfix);
   							urlprefix += trail[i] + "/";
   							if(i == lastdir-1) postfix = ":";
   						}
  
  
  
  1.2       +3 -3      jakarta-avalon/src/proposal/site/anakia/docs/about/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/anakia/docs/about/index.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html	6 Apr 2002 14:36:30 -0000	1.1
  +++ index.html	7 Apr 2002 11:49:09 -0000	1.2
  @@ -18,19 +18,19 @@
   				<a href="http://www.apache.org" class="breadcrumbs">Apache.org</a> &gt;
   				<a href="/" class="breadcrumbs">Jakarta</a> &gt; 
   				<a href="/avalon" class="breadcrumbs">Avalon</a> &gt; 
  -																<script language="JavaScript" type="text/javascript">
  +																<script language="JavaScript1.2" type="text/javascript">
   				<!--
   					function sentenceCase(str) {
   						var lower = str.toLowerCase();
   						return lower.substr(0,1).toUpperCase() + lower.substr(1);
   					}
   					function getDirsAsArray() {
  -						var trail = document.location.pathname.split("\\");
  +						var trail = document.location.pathname.split("/");
   						var lastdir = (trail[trail.length-1].indexOf(".html") != -1)? trail.length-2 : trail.length-1;
   						var urlprefix = "/avalon/";
   						var postfix = " &gt"; 
   						for(var i = 1; i <= lastdir; i++) {
  -							document.writeln('<a href=' + urlprefix + trail[i] + ' class="menu">' + sentenceCase(trail[i]) + '</a>'+postfix);
  +							document.writeln('<a href=' + urlprefix + trail[i] + ' class="breadcrumbs">' + sentenceCase(trail[i]) + '</a>'+postfix);
   							urlprefix += trail[i] + "/";
   							if(i == lastdir-1) postfix = ":";
   						}
  
  
  
  1.3       +28 -5     jakarta-avalon/src/proposal/site/anakia/xdocs/common.css
  
  Index: common.css
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/anakia/xdocs/common.css,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- common.css	6 Apr 2002 15:03:49 -0000	1.2
  +++ common.css	7 Apr 2002 11:49:09 -0000	1.3
  @@ -1,3 +1,18 @@
  +html body, body div, body p, body th, body td, body li, body dl, body dd, input, select, textarea {
  + font-family: Arial, Helvetica, sans-serif;
  + }
  +p, ul, ol, dl {
  + margin-top: .67em;
  + margin-bottom: .67em;
  + }
  +table, th, td {
  + border: none
  + }
  +form {
  + margin-top: 0;
  + margin-bottom: 0;
  + }
  +
   body {
   	margin: 0px;
   	padding: 10px;
  @@ -22,6 +37,7 @@
   	font-weight: bold;
   	padding: 0px;
   	margin: 0px;
  +	margin-left: 40px;
   }
   h1 {
   	border: 1px solid #003366;
  @@ -30,20 +46,18 @@
   	margin-bottom: 10px;
   	text-align: center;
   	background-color: #EEEEFF;
  +	margin-left: 0px;
   }
   
   h2 {
   	font-size: 16pt;
  -	margin-left: 40px;
   }
   h3 {
   	font-size: 14pt;
  -	margin-left: 80px;
   	color: #000033;
   }
   h4 {
   	font-size: 12pt;
  -	margin-left: 120px;
   	color: #000066;
   }
   h5 {
  @@ -51,12 +65,14 @@
   	font-style: italic;
   	text-align: center;
   	color: #333399;
  +	margin-left: 0px;
   }
   h6 {
   	font-size: 10pt;
   	text-align: center;
   	font-weight: normal;
   	color: #3333CC;
  +	margin-left: 0px;
   }
   a, a:visited {
   	color: #336699;
  @@ -64,7 +80,6 @@
   a:hover, a:active {
   	color: #003366;;
   }
  -#contents div { margin-left: 40px; }
   #breadcrumbs {
   	border-top: 1px solid #003366;
   	border-bottom: 1px solid #003366;
  @@ -105,7 +120,6 @@
   #submenu ul {
   	margin-top: 5px;
   	margin-bottom: 5px;
  -	margin-left: 25px;
   }
   #authors {
   	font-size: 10px;
  @@ -127,13 +141,22 @@
   a.breadcrumbs:hover, a.breadcrumbs:active, a.menu:hover, a.menu:active {
   	text-decoration: underline;
   }
  +.section {
  +	margin-left: 40px;
  +}
   .code {
   	font-family: Courier, Courier New, monospace;
   	padding: 4px;
   	border: 1px solid #003366;
   }
  +.code, pre {
  +	font-size: 11px;
  +}
   .section .code {
   	margin-left: -40px;
  +}
  +.section .section .code {
  +	margin-left: -80px;
   }
   @media print {
   	body td {
  
  
  
  1.2       +7 -5      jakarta-avalon/src/proposal/site/anakia/xdocs/stylesheets/site.vsl
  
  Index: site.vsl
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/proposal/site/anakia/xdocs/stylesheets/site.vsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- site.vsl	6 Apr 2002 14:36:31 -0000	1.1
  +++ site.vsl	7 Apr 2002 11:49:10 -0000	1.2
  @@ -73,11 +73,13 @@
   #end
   
   #macro (source $value)
  -	<pre class="code">$escape.getText($value.getText())</pre>
  +	<div class="code"><pre class="code">
  +$escape.getText($value.getText())
  +	</pre></div>
   #end
   
   #macro (subsection $subsection)
  -		<a name="$subsection.getAttributeValue("name")"><h2>$subsection.getAttributeValue("name")</h2></a>
  +		<a name="$subsection.getAttributeValue("name")"><h3>$subsection.getAttributeValue("name")</h3></a>
   		<div class="subsection">
           #foreach ($items in $subsection.getChildren())
               #if ($items.getName().equals("img"))
  @@ -194,19 +196,19 @@
   				## $relativePath contains the info I need. How to extract it?
   				## the only option I know is to a) change anakia
   				##								b) use javascript
  -				<script language="JavaScript" type="text/javascript">
  +				<script language="JavaScript1.2" type="text/javascript">
   				<!--
   					function sentenceCase(str) {
   						var lower = str.toLowerCase();
   						return lower.substr(0,1).toUpperCase() + lower.substr(1);
   					}
   					function getDirsAsArray() {
  -						var trail = document.location.pathname.split("\\");
  +						var trail = document.location.pathname.split("/");
   						var lastdir = (trail[trail.length-1].indexOf(".html") != -1)? trail.length-2 : trail.length-1;
   						var urlprefix = "/avalon/";
   						var postfix = " &gt"; 
   						for(var i = 1; i <= lastdir; i++) {
  -							document.writeln('<a href=' + urlprefix + trail[i] + ' class="menu">' + sentenceCase(trail[i]) + '</a>'+postfix);
  +							document.writeln('<a href=' + urlprefix + trail[i] + ' class="breadcrumbs">' + sentenceCase(trail[i]) + '</a>'+postfix);
   							urlprefix += trail[i] + "/";
   							if(i == lastdir-1) postfix = ":";
   						}
  
  
  
  1.1                  jakarta-avalon/src/proposal/site/screenshots/internetexplorer5.5.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-avalon/src/proposal/site/screenshots/mozilla0.9.9.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-avalon/src/proposal/site/screenshots/netscape3.0.2.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-avalon/src/proposal/site/screenshots/netscape4.0.8.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-avalon/src/proposal/site/screenshots/opera60.1.gif
  
  	<<Binary file>>
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>