antonio | 1 Jan 2005 20:13
Picon
Favicon

svn commit: r123850 - /forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java

Author: antonio
Date: Sat Jan  1 11:13:33 2005
New Revision: 123850

URL: http://svn.apache.org/viewcvs?view=rev&rev=123850
Log:
Use Map.Entry
Modified:
   forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java

Modified: forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java
Url: http://svn.apache.org/viewcvs/forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java?view=diff&rev=123850&p1=forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java&r1=123849&p2=forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java&r2=123850
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java	(original)
+++ forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java	Sat Jan  1 11:13:33 2005
 <at>  <at>  -94,13 +94,11  <at>  <at> 
     }

     public synchronized void putAll(Map arg0) {
-        Set keys = arg0.keySet();
-        Iterator i = keys.iterator();
+        Iterator i = arg0.entrySet().iterator();
         while (i.hasNext()) {
-            String currentKey = i.next().toString();
-            this.put(currentKey, arg0.get(currentKey));
+            Map.Entry me = (Map.Entry)i.next();
+            this.put(me.getKey(), me.getValue());
         }
-
     }
(Continue reading)

antonio | 1 Jan 2005 20:19
Picon
Favicon

svn commit: r123851 - /forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java

Author: antonio
Date: Sat Jan  1 11:19:46 2005
New Revision: 123851

URL: http://svn.apache.org/viewcvs?view=rev&rev=123851
Log:
Fix trim()
Modified:
   forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java

Modified: forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java
Url: http://svn.apache.org/viewcvs/forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java?view=diff&rev=123851&p1=forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java&r1=123850&p2=forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java&r2=123851
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java	(original)
+++ forrest/trunk/main/java/org/apache/forrest/util/IdGeneratorTransformer.java	Sat Jan  1
11:19:46 2005
 <at>  <at>  -168,8 +168,7  <at>  <at> 
                 getLogger().debug("## Using id XPath "+idXPath);
                 String id = null;
                 try {
-                  id = processor.evaluateAsString(sect, idXPath);
-                  id.trim();
+                  id = processor.evaluateAsString(sect, idXPath).trim();
                 } catch (Exception e) {
                     throw new SAXException("'id' XPath expression '"+idXPath+"' does not return a text node: "+e, e);
                 }

antonio | 1 Jan 2005 20:27
Picon
Favicon

svn commit: r123852 - /forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java

Author: antonio
Date: Sat Jan  1 11:27:19 2005
New Revision: 123852

URL: http://svn.apache.org/viewcvs?view=rev&rev=123852
Log:
Make static constant final
Modified:
   forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java

Modified: forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java
Url: http://svn.apache.org/viewcvs/forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java?view=diff&rev=123852&p1=forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java&r1=123851&p2=forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java&r2=123852
==============================================================================
--- forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java	(original)
+++
forrest/trunk/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java	Sat
Jan  1 11:27:19 2005
 <at>  <at>  -46,7 +46,7  <at>  <at> 
     implements SourceFactory, ThreadSafe, Serviceable {

     protected ServiceManager manager;
-    public static String ZIP_SOURCE_SCHEME = "zip:";
+    public static final String ZIP_SOURCE_SCHEME = "zip:";

     public Source getSource(String location, Map parameters)
         throws IOException, MalformedURLException {

antonio | 1 Jan 2005 20:37
Picon
Favicon

svn commit: r123853 - /forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java

Author: antonio
Date: Sat Jan  1 11:37:54 2005
New Revision: 123853

URL: http://svn.apache.org/viewcvs?view=rev&rev=123853
Log:
Make static the inner class STATE
Modified:
   forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java

Modified: forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java
Url: http://svn.apache.org/viewcvs/forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java?view=diff&rev=123853&p1=forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java&r1=123852&p2=forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java&r2=123853
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java	(original)
+++ forrest/trunk/main/java/org/apache/forrest/conf/AntProperties.java	Sat Jan  1 11:37:54 2005
 <at>  <at>  -134,7 +134,7  <at>  <at> 
         return resultStringBuffer.toString();
     }

-    private class STATE
+    private static class STATE
     {

         final static int STRING_NOT_TO_FILTER = 0;

rgardler | 2 Jan 2005 02:39
Picon
Favicon
Gravatar

svn commit: r123863 - /forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl

Author: rgardler
Date: Sat Jan  1 17:39:23 2005
New Revision: 123863

URL: http://svn.apache.org/viewcvs?view=rev&rev=123863
Log:
clarification of the repository retrieval code
Modified:
   forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl

Modified: forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl
Url: http://svn.apache.org/viewcvs/forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl?view=diff&rev=123863&p1=forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl&r1=123862&p2=forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl&r2=123863
==============================================================================
--- forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl	(original)
+++ forrest/trunk/plugins/IMSManifest/resources/stylesheets/imsmanifest2site.xsl	Sat Jan  1
17:39:23 2005
 <at>  <at>  -95,11 +95,11  <at>  <at> 
     </xsl:variable>
 <sco><xsl:value-of select="$scoName"/></sco>
 <repository><xsl:value-of select="$repositoryURI"/></repository>
+<repositoryCommand><xsl:value-of select="$repositoryCommand"/></repositoryCommand>
     <xsl:choose>
       <xsl:when test="$repositoryCommand='getSCO'">
-        <xsl:variable name="scoName"><xsl:call-template name="getSCOName"><xsl:with-param
name="path"><xsl:value-of select="//ims:resources/ims:resource[ <at> identifier=$idref]/ <at> href"/></xsl:with-param></xsl:call-template></xsl:variable>
-        <xsl:variable name="sco">http://<xsl:value-of select="$repositoryURI"/>/<xsl:value-of select="$scoName"/>/src/documentation/content/xdocs/imsmanifest.xml</xsl:variable>
-        <xsl:apply-templates select="document($sco)/ims:manifest">
+        <xsl:variable name="repositoryHREF">http://<xsl:value-of
select="$repositoryURI"/>/<xsl:value-of select="$scoName"/>/src/documentation/content/xdocs/imsmanifest.xml</xsl:variable>
+        <xsl:apply-templates select="document($repositoryHREF)/ims:manifest">
(Continue reading)

rgardler | 2 Jan 2005 02:42
Picon
Favicon
Gravatar

svn commit: r123864 - /forrest/trunk/main/forrest.build.xml /forrest/trunk/plugins/build.xml

Author: rgardler
Date: Sat Jan  1 17:42:26 2005
New Revision: 123864

URL: http://svn.apache.org/viewcvs?view=rev&rev=123864
Log:
enable plugins to provide additional libraries and their own java classes
Modified:
   forrest/trunk/main/forrest.build.xml
   forrest/trunk/plugins/build.xml

Modified: forrest/trunk/main/forrest.build.xml
Url: http://svn.apache.org/viewcvs/forrest/trunk/main/forrest.build.xml?view=diff&rev=123864&p1=forrest/trunk/main/forrest.build.xml&r1=123863&p2=forrest/trunk/main/forrest.build.xml&r2=123864
==============================================================================
--- forrest/trunk/main/forrest.build.xml	(original)
+++ forrest/trunk/main/forrest.build.xml	Sat Jan  1 17:42:26 2005
 <at>  <at>  -336,6 +336,10  <at>  <at> 
          <pathelement location="${forrest.core.webapp}/WEB-INF/classes"/>
          <pathelement location="${forrest.build.lib-dir}/xml-forrest.jar"/>
          <pathelement location="${project.classes-dir}"/>
+         <fileset dir="${forrest.plugins-dir}" casesensitive="no">
+           <include name="**/lib/*.jar"/>
+           <include name="**/lib/*.zip"/>
+         </fileset>
          <fileset dir="${forrest.jetty.lib-dir}" casesensitive="no">
            <include name="*.jar"/>
            <include name="*.zip"/>

Modified: forrest/trunk/plugins/build.xml
Url: http://svn.apache.org/viewcvs/forrest/trunk/plugins/build.xml?view=diff&rev=123864&p1=forrest/trunk/plugins/build.xml&r1=123863&p2=forrest/trunk/plugins/build.xml&r2=123864
(Continue reading)

rgardler | 2 Jan 2005 03:37
Picon
Favicon
Gravatar

svn commit: r123873 - /forrest/site/plugins/docs /forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output /forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/changes.html /forrest/site/plugins/plugins.xml

Author: rgardler
Date: Sat Jan  1 18:37:12 2005
New Revision: 123873

URL: http://svn.apache.org/viewcvs?view=rev&rev=123873
Log:
Deployment of org.apache.forrest.plugin.pdf-output plugin (deployed by 'deploy' target of plugin
build script)
Added:
   forrest/site/plugins/docs/
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/changes.html
Modified:
   forrest/site/plugins/plugins.xml

Added: forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/changes.html
Url: http://svn.apache.org/viewcvs/forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/changes.html?view=auto&rev=123873
==============================================================================
--- (empty file)
+++ forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/changes.html	Sat Jan  1
18:37:12 2005
 <at>  <at>  -0,0 +1,179  <at>  <at> 
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<meta content="Apache Forrest" name="Generator">
+<meta name="Forrest-version" content="0.7-dev">
+<meta name="Forrest-skin-name" content="pelt">
+<title>History of Changes</title>
(Continue reading)

rgardler | 2 Jan 2005 16:27
Picon
Favicon
Gravatar

svn commit: r123888 - in forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output: . images skin skin/css skin/images skin/scripts

Author: rgardler
Date: Sun Jan  2 07:27:38 2005
New Revision: 123888

URL: http://svn.apache.org/viewcvs?view=rev&rev=123888
Log:
Deployment of org.apache.forrest.plugin.pdf-output plugin (deployed by 'deploy' target of plugin build script)
Added:
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/changes.pdf
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/add.jpg   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/built-with-forrest-button.png   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/group.png   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/instruction_arrow.png   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/project.png   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/images/rss.png   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/index.pdf
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/linkmap.pdf
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/breadcrumbs.js   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/css/
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/getMenu.js   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/README.txt   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/add.jpg   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/built-with-forrest-button.png   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/chapter.gif   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/chapter_open.gif   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/corner-imports.svg.xslt   (contents, props changed)
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/skin/images/current.gif   (contents, props changed)
(Continue reading)

rgardler | 2 Jan 2005 16:42
Picon
Favicon
Gravatar

svn commit: r123889 - /forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/index.html /forrest/site/plugins/org.apache.forrest.plugin.pdf-output.zip

Author: rgardler
Date: Sun Jan  2 07:42:24 2005
New Revision: 123889

URL: http://svn.apache.org/viewcvs?view=rev&rev=123889
Log:
Deployment of org.apache.forrest.plugin.pdf-output plugin (deployed by 'deploy' target of plugin
build script)
Added:
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/index.html
Modified:
   forrest/site/plugins/org.apache.forrest.plugin.pdf-output.zip

Added: forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/index.html
Url: http://svn.apache.org/viewcvs/forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/index.html?view=auto&rev=123889
==============================================================================
--- (empty file)
+++ forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/index.html	Sun Jan  2
07:42:24 2005
 <at>  <at>  -0,0 +1,183  <at>  <at> 
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<meta content="Apache Forrest" name="Generator">
+<meta name="Forrest-version" content="0.7-dev">
+<meta name="Forrest-skin-name" content="pelt">
+<title>Welcome to the org.apache.forrest.plugin.pdf-output Plugin</title>
+<link type="text/css" href="skin/basic.css" rel="stylesheet">
+<link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
(Continue reading)

rgardler | 2 Jan 2005 16:53
Picon
Favicon
Gravatar

svn commit: r123890 - /forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/linkmap.html /forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/todo.pdf

Author: rgardler
Date: Sun Jan  2 07:53:28 2005
New Revision: 123890

URL: http://svn.apache.org/viewcvs?view=rev&rev=123890
Log:
Deployment of org.apache.forrest.plugin.pdf-output plugin (deployed by 'deploy' target of plugin
build script)
Added:
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/linkmap.html
   forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/todo.pdf

Added: forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/linkmap.html
Url: http://svn.apache.org/viewcvs/forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/linkmap.html?view=auto&rev=123890
==============================================================================
--- (empty file)
+++ forrest/site/plugins/docs/org.apache.forrest.plugin.pdf-output/linkmap.html	Sun Jan  2
07:53:28 2005
 <at>  <at>  -0,0 +1,211  <at>  <at> 
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<meta content="Apache Forrest" name="Generator">
+<meta name="Forrest-version" content="0.7-dev">
+<meta name="Forrest-skin-name" content="pelt">
+<title>Site Linkmap</title>
+<link type="text/css" href="skin/basic.css" rel="stylesheet">
+<link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
+<link media="print" type="text/css" href="skin/print.css" rel="stylesheet">
(Continue reading)


Gmane