jeremias | 1 May 2008 11:47
Picon
Favicon

svn commit: r652463 - /forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl

Author: jeremias
Date: Thu May  1 02:47:35 2008
New Revision: 652463

URL: http://svn.apache.org/viewvc?rev=652463&view=rev
Log:
Further image handling fixes for PDF output:
- Added support for "icon" element (implemented as an inline image, defaulting to the image's intrinsic size)
- Normalized relative URIs as "cocoon://something/../images/myimage.png" didn't work but
""cocoon://images/myimage.png" does. Happened on FOP's website on the per-release changes page which
is in a subdirectory.

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl?rev=652463&r1=652462&r2=652463&view=diff
==============================================================================
---
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl (original)
+++
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-commonElements.xsl
Thu May  1 02:47:35 2008
 <at>  <at>  -17,6 +17,9  <at>  <at> 
 -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
+
+  <xsl:include href="lm://transform.xml.pathutils"/>
+
(Continue reading)

jeremias | 1 May 2008 11:49
Picon
Favicon

svn commit: r652464 - /forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl

Author: jeremias
Date: Thu May  1 02:49:45 2008
New Revision: 652464

URL: http://svn.apache.org/viewvc?rev=652464&view=rev
Log:
SourceForge doesn't offer a simple bug ID to web page mapping. So I added code that doesn't generate a link if
the bugtracking-url is set to an empty string.

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl?rev=652464&r1=652463&r2=652464&view=diff
==============================================================================
---
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl (original)
+++
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl
Thu May  1 02:49:45 2008
 <at>  <at>  -294,15 +294,30  <at>  <at> 
     <xsl:param name="buglist"/>
     <xsl:choose>
       <xsl:when test="contains($buglist, ',')">
-        <xsl:variable name="current" select="substring-before($buglist, ',')"/><link
href="{concat($bugtracking-url, $current)}">
-        <xsl:value-of select="$current"/></link>
+        <xsl:variable name="current" select="substring-before($buglist, ',')"/>
+        <xsl:call-template name="print-bug">
+          <xsl:with-param name="bug-id" select="$current"/>
(Continue reading)

crossley | 3 May 2008 06:15
Picon
Favicon

svn commit: r652997 - /forrest/trunk/site-author/content/xdocs/procedures/release/How_to_release.xml

Author: crossley
Date: Fri May  2 21:15:28 2008
New Revision: 652997

URL: http://svn.apache.org/viewvc?rev=652997&view=rev
Log:
Add a step to ensure that signatures are okay using Henk's pgp signature checker.

Modified:
    forrest/trunk/site-author/content/xdocs/procedures/release/How_to_release.xml

Modified: forrest/trunk/site-author/content/xdocs/procedures/release/How_to_release.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/content/xdocs/procedures/release/How_to_release.xml?rev=652997&r1=652996&r2=652997&view=diff
==============================================================================
--- forrest/trunk/site-author/content/xdocs/procedures/release/How_to_release.xml (original)
+++ forrest/trunk/site-author/content/xdocs/procedures/release/How_to_release.xml Fri May  2
21:15:28 2008
 <at>  <at>  -193,6 +193,8  <at>  <at> 
                 about how to create and manage PGP keys, and see the notes about
                 encouraging a strong
                 <a href="http://www.apache.org/dev/release-signing.html#web-of-trust">web of trust</a>.
+                See these tools to ensure that signatures and keys are okay:
+                <a href="http://people.apache.org/~henkp/checker/sig.html">pgp signature checker</a>
               </li>
         <li>
           Be familiar with our <a href="site:guidelines/voting">voting guidelines</a> and
 <at>  <at>  -953,6 +955,10  <at>  <at> 
             group.
           </p>
           <p>
(Continue reading)

thorsten | 6 May 2008 11:09
Picon
Favicon
Gravatar

svn commit: r653716 - /forrest/trunk/main/java/org/apache/forrest/locationmap/lm/ActNode.java

Author: thorsten
Date: Tue May  6 02:09:56 2008
New Revision: 653716

URL: http://svn.apache.org/viewvc?rev=653716&view=rev
Log:
Adding javadoc and cleaning up the class with obsolete code.

Modified:
    forrest/trunk/main/java/org/apache/forrest/locationmap/lm/ActNode.java

Modified: forrest/trunk/main/java/org/apache/forrest/locationmap/lm/ActNode.java
URL: http://svn.apache.org/viewvc/forrest/trunk/main/java/org/apache/forrest/locationmap/lm/ActNode.java?rev=653716&r1=653715&r2=653716&view=diff
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/locationmap/lm/ActNode.java (original)
+++ forrest/trunk/main/java/org/apache/forrest/locationmap/lm/ActNode.java Tue May  6 02:09:56 2008
 <at>  <at>  -36,7 +36,21  <at>  <at> 

 
 /**
- * Locationmap select statement.
+ * Locationmap act statement.
+ * 
+ * <p>
+ * The &lt;act&gt; element has one optional <code>type</code> attribute
+ * which identifies the type the associated <code>{ <at> link Action}<code> should act.
+ * If no <code>type</code> attribute is used the default action is used.
+ * </p>
+ * 
+ * Action statements can contain <code>&lt;act&gt;</code>,
(Continue reading)

thorsten | 6 May 2008 11:30
Picon
Favicon
Gravatar

svn commit: r653722 - /forrest/trunk/main/java/org/apache/forrest/locationmap/lm/SelectNode.java

Author: thorsten
Date: Tue May  6 02:30:07 2008
New Revision: 653722

URL: http://svn.apache.org/viewvc?rev=653722&view=rev
Log:
Adding javadoc.

Modified:
    forrest/trunk/main/java/org/apache/forrest/locationmap/lm/SelectNode.java

Modified: forrest/trunk/main/java/org/apache/forrest/locationmap/lm/SelectNode.java
URL: http://svn.apache.org/viewvc/forrest/trunk/main/java/org/apache/forrest/locationmap/lm/SelectNode.java?rev=653722&r1=653721&r2=653722&view=diff
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/locationmap/lm/SelectNode.java (original)
+++ forrest/trunk/main/java/org/apache/forrest/locationmap/lm/SelectNode.java Tue May  6
02:30:07 2008
 <at>  <at>  -32,6 +32,20  <at>  <at> 

 /**
  * Locationmap select statement.
+ * 
+ * <p>
+ * The &lt;select&gt; element has one optional <code>type</code> attribute
+ * which identifies the <code>{ <at> link Selector}<code> that is to do the selection.
+ * If no <code>type</code> attribute is used the default selector is used.
+ * </p>
+ * 
+ * Select statements can contain <code>&lt;select&gt;</code>,
+ * <code>&lt;mount&gt;</code> and <code>&lt;location&gt;</code>
(Continue reading)

thorsten | 6 May 2008 11:44
Picon
Favicon
Gravatar

svn commit: r653724 - in /forrest/trunk/main/java/org/apache/forrest/locationmap: lm/MountNode.java source/impl/LocationmapSourceFactory.java

Author: thorsten
Date: Tue May  6 02:44:14 2008
New Revision: 653724

URL: http://svn.apache.org/viewvc?rev=653724&view=rev
Log:
Adding javadoc.

Modified:
    forrest/trunk/main/java/org/apache/forrest/locationmap/lm/MountNode.java
    forrest/trunk/main/java/org/apache/forrest/locationmap/source/impl/LocationmapSourceFactory.java

Modified: forrest/trunk/main/java/org/apache/forrest/locationmap/lm/MountNode.java
URL: http://svn.apache.org/viewvc/forrest/trunk/main/java/org/apache/forrest/locationmap/lm/MountNode.java?rev=653724&r1=653723&r2=653724&view=diff
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/locationmap/lm/MountNode.java (original)
+++ forrest/trunk/main/java/org/apache/forrest/locationmap/lm/MountNode.java Tue May  6 02:44:14 2008
 <at>  <at>  -29,7 +29,6  <at>  <at> 
 import org.apache.cocoon.components.treeprocessor.variables.VariableResolverFactory;
 import org.apache.cocoon.sitemap.PatternException;
 import org.apache.excalibur.source.SourceValidity;
-import org.apache.excalibur.source.SourceUtil;
 import org.apache.excalibur.source.SourceResolver;
 import org.apache.excalibur.source.Source;
 import org.apache.excalibur.xml.sax.SAXParser;
 <at>  <at>  -38,6 +37,12  <at>  <at> 

 /**
  * locationmap mount statement.
+ * <p>
(Continue reading)

thorsten | 6 May 2008 12:11
Picon
Favicon
Gravatar

svn commit: r653732 - in /forrest/trunk/main/java/org/apache/forrest/locationmap: AbstractWrappingModule.java LocationMapModule.java

Author: thorsten
Date: Tue May  6 03:11:26 2008
New Revision: 653732

URL: http://svn.apache.org/viewvc?rev=653732&view=rev
Log:
Adding javadoc.

Modified:
    forrest/trunk/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java
    forrest/trunk/main/java/org/apache/forrest/locationmap/LocationMapModule.java

Modified: forrest/trunk/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java
URL: http://svn.apache.org/viewvc/forrest/trunk/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java?rev=653732&r1=653731&r2=653732&view=diff
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java (original)
+++ forrest/trunk/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java Tue
May  6 03:11:26 2008
 <at>  <at>  -31,7 +31,15  <at>  <at> 
 import org.apache.avalon.framework.service.Serviceable;

 import org.apache.cocoon.components.modules.input.InputModule;
-
+/**
+ * Wrapper module that loads an input module for all 
+ * <code>component-instance</code> defined in the configuration.
+ * <p>
+ * After we created an instance we will check for the different possible
+ * implementations of some interfaces (such as e.g. { <at> link LogEnabled}) and
+ * invoke the corresponding methods 
(Continue reading)

thorsten | 6 May 2008 13:28
Picon
Favicon
Gravatar

svn commit: r653747 - in /forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting: RecursiveDirectoryTraversalAction.java ResourceTypeAction.java

Author: thorsten
Date: Tue May  6 04:28:53 2008
New Revision: 653747

URL: http://svn.apache.org/viewvc?rev=653747&view=rev
Log:
Adding javadoc.

Modified:
    forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting/RecursiveDirectoryTraversalAction.java
    forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting/ResourceTypeAction.java

Modified: forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting/RecursiveDirectoryTraversalAction.java
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting/RecursiveDirectoryTraversalAction.java?rev=653747&r1=653746&r2=653747&view=diff
==============================================================================
---
forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting/RecursiveDirectoryTraversalAction.java (original)
+++
forrest/trunk/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/acting/RecursiveDirectoryTraversalAction.java
Tue May  6 04:28:53 2008
 <at>  <at>  -32,35 +32,32  <at>  <at> 
 import org.apache.excalibur.source.SourceResolver;

 /**
- * Selects the first of a set of Sources that exists in the context.
+ * Calculates which location to return for a given directory.
+ * Here we are traversing the tree till we reach its root. 
  * <p>
- * For example, we could define a SourceExistsSelector with:
- * 
(Continue reading)

gmcdonald | 18 May 2008 13:30
Picon
Favicon

svn commit: r657539 - /forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/content-txt-link.ft

Author: gmcdonald
Date: Sun May 18 04:30:55 2008
New Revision: 657539

URL: http://svn.apache.org/viewvc?rev=657539&view=rev
Log:
Refactor to latest dispatcher FOR-797

Modified:
    forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/content-txt-link.ft

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/content-txt-link.ft
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/content-txt-link.ft?rev=657539&r1=657538&r2=657539&view=diff
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/content-txt-link.ft (original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/content-txt-link.ft
Sun May 18 04:30:55 2008
 <at>  <at>  -15,7 +15,7  <at>  <at> 
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
-<forrest:contract name="content-txt-link" type="nugget"
+<forrest:contract name="content-txt-link"
   xmlns:forrest="http://apache.org/forrest/templates/1.0">
   <description>
     content-txt-link will output the TXT link with image to the content.
 <at>  <at>  -24,14 +24,22  <at>  <at> 
 <![CDATA[<forrest:contract name="content-txt-link"/>]]>
(Continue reading)

gmcdonald | 18 May 2008 13:33
Picon
Favicon

svn commit: r657540 - /forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/siteinfo-last-published-net.ft

Author: gmcdonald
Date: Sun May 18 04:33:18 2008
New Revision: 657540

URL: http://svn.apache.org/viewvc?rev=657540&view=rev
Log:
Refactor to latest dispatcher FOR-797

Modified:
    forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/siteinfo-last-published-net.ft

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/siteinfo-last-published-net.ft
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/siteinfo-last-published-net.ft?rev=657540&r1=657539&r2=657540&view=diff
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/siteinfo-last-published-net.ft (original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/html/siteinfo-last-published-net.ft
Sun May 18 04:33:18 2008
 <at>  <at>  -16,7 +16,7  <at>  <at> 
 limitations under the License.
 -->
 <forrest:contract xmlns:forrest="http://apache.org/forrest/templates/1.0" 
-  name="siteinfo-last-published-net" type="nugget">
+  name="siteinfo-last-published-net">
   <description>
     <p>
       siteinfo-last-published-net
 <at>  <at>  -35,18 +35,21  <at>  <at> 
 <![CDATA[<forrest:contract name="siteinfo-last-published-net"/>]]>
(Continue reading)


Gmane