crossley | 1 Mar 2008 23:42
Picon
Favicon

svn commit: r632668 - in /forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets: document-to-fo.xsl helper-commonElements.xsl helper-pdfoutline.xsl

Author: crossley
Date: Sat Mar  1 14:42:09 2008
New Revision: 632668

URL: http://svn.apache.org/viewvc?rev=632668&view=rev
Log:
Many touchup issues. See notes in FOR-1072.
Contributed by: Jeremias Maerki
Issue: FOR-1072

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

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl?rev=632668&r1=632667&r2=632668&view=diff
==============================================================================
---
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl (original)
+++
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
Sat Mar  1 14:42:09 2008
 <at>  <at>  -254,7 +254,7  <at>  <at> 
         <xsl:call-template
                     name="insertPageNumber">
           <xsl:with-param
-                        name="text-align">start</xsl:with-param>
+                        name="text-align">end</xsl:with-param>
         </xsl:call-template>
(Continue reading)

crossley | 2 Mar 2008 02:48
Picon
Favicon

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

Author: crossley
Date: Sat Mar  1 17:48:09 2008
New Revision: 632692

URL: http://svn.apache.org/viewvc?rev=632692&view=rev
Log:
Only add table headers when present in source. Can someone do better xsl?
Issue: FOR-1072

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=632692&r1=632691&r2=632692&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
Sat Mar  1 17:48:09 2008
 <at>  <at>  -444,9 +444,11  <at>  <at> 
       </fo:table-column>
       <!-- End of hack for Fop support (if removing this hack, remember
       you need the <fo:table> element) -->
-      <fo:table-header font-size="10pt" font-family="serif">
-        <xsl:apply-templates select="tr[count(th) &gt; 0]"/>
-      </fo:table-header>
+      <xsl:if test="tr[count(th) &gt; 0]">
+        <fo:table-header font-size="10pt" font-family="serif">
+          <xsl:apply-templates select="tr[count(th) &gt; 0]"/>
(Continue reading)

crossley | 2 Mar 2008 06:46
Picon
Favicon

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

Author: crossley
Date: Sat Mar  1 21:46:17 2008
New Revision: 632714

URL: http://svn.apache.org/viewvc?rev=632714&view=rev
Log:
Fix handling of table-header and table-row to enable optional th in rows and allow missing table header.
Issue: FOR-1072

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=632714&r1=632713&r2=632714&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
Sat Mar  1 21:46:17 2008
 <at>  <at>  -444,13 +444,13  <at>  <at> 
       </fo:table-column>
       <!-- End of hack for Fop support (if removing this hack, remember
       you need the <fo:table> element) -->
-      <xsl:if test="tr[count(th) &gt; 0]">
+      <xsl:if test="tr[count(th) &gt; 0 and count(td) = 0]">
         <fo:table-header font-size="10pt" font-family="serif">
-          <xsl:apply-templates select="tr[count(th) &gt; 0]"/>
+          <xsl:apply-templates select="tr[count(th) &gt; 0 and count(td) = 0]"/>
         </fo:table-header>
(Continue reading)

crossley | 2 Mar 2008 11:44
Picon
Favicon

svn commit: r632734 - in /forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets: document-to-fo.xsl helper-pdfoutline.xsl

Author: crossley
Date: Sun Mar  2 02:44:01 2008
New Revision: 632734

URL: http://svn.apache.org/viewvc?rev=632734&view=rev
Log:
Fix warning about missing "__toc__". Remove some useless width properties on fo:block.
Contributed by: Jeremias Maerki
Issue: FOR-1072

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-pdfoutline.xsl

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl?rev=632734&r1=632733&r2=632734&view=diff
==============================================================================
---
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl (original)
+++
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
Sun Mar  2 02:44:01 2008
 <at>  <at>  -357,7 +357,6  <at>  <at> 
             text-align="center"
             space-before="20pt"
             space-after="25pt"
-            width="7.5in"
             font-family="serif"
             font-style="italic">
       <xsl:call-template
(Continue reading)

crossley | 2 Mar 2008 12:22
Picon
Favicon

svn commit: r632740 - in /forrest/trunk: main/fresh-site/src/documentation/content/xdocs/samples-b/ main/webapp/ main/webapp/resources/schema/ main/webapp/resources/schema/entity/ site-author/ site-author/content/xdocs/docs_0_90/ whiteboard/plugins/org...

Author: crossley
Date: Sun Mar  2 03:22:23 2008
New Revision: 632740

URL: http://svn.apache.org/viewvc?rev=632740&view=rev
Log:
Enable configuration of some Cocoon sitemap components, e.g. output html encoding and document type
declaration for html and xhtml serializers, JTidy properties file location for html generator.
Issue: FOR-1071

Added:
    forrest/trunk/main/webapp/resources/schema/entity/symbols-project-v10.ent
      - copied unchanged from r632666, forrest/trunk/main/fresh-site/src/documentation/resources/schema/symbols-project-v10.ent
Modified:
    forrest/trunk/main/fresh-site/src/documentation/content/xdocs/samples-b/xml-entities.xml
    forrest/trunk/main/webapp/resources/schema/catalog.forrest.xcat
    forrest/trunk/main/webapp/resources/schema/entity/symbols-core-v10.ent
    forrest/trunk/main/webapp/sitemap.xmap
    forrest/trunk/site-author/content/xdocs/docs_0_90/faq.xml
    forrest/trunk/site-author/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/internal.xmap

Modified: forrest/trunk/main/fresh-site/src/documentation/content/xdocs/samples-b/xml-entities.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/main/fresh-site/src/documentation/content/xdocs/samples-b/xml-entities.xml?rev=632740&r1=632739&r2=632740&view=diff
==============================================================================
---
forrest/trunk/main/fresh-site/src/documentation/content/xdocs/samples-b/xml-entities.xml (original)
+++
forrest/trunk/main/fresh-site/src/documentation/content/xdocs/samples-b/xml-entities.xml
Sun Mar  2 03:22:23 2008
(Continue reading)

crossley | 2 Mar 2008 12:40
Picon
Favicon

svn commit: r632741 - in /forrest/trunk/site-author: content/xdocs/site.xml status.xml

Author: crossley
Date: Sun Mar  2 03:40:46 2008
New Revision: 632741

URL: http://svn.apache.org/viewvc?rev=632741&view=rev
Log:
Link to FAQ about FOR-1071.

Modified:
    forrest/trunk/site-author/content/xdocs/site.xml
    forrest/trunk/site-author/status.xml

Modified: forrest/trunk/site-author/content/xdocs/site.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/content/xdocs/site.xml?rev=632741&r1=632740&r2=632741&view=diff
==============================================================================
--- forrest/trunk/site-author/content/xdocs/site.xml (original)
+++ forrest/trunk/site-author/content/xdocs/site.xml Sun Mar  2 03:40:46 2008
 <at>  <at>  -311,6 +311,7  <at>  <at> 
         <rawHTML href="#rawHTML"/>
         <run_port href="#run_port"/>
         <single-document href="#single-document"/>
+        <sitemap-entities href="#sitemap-entities"/>
         <tab-index href="#tab-index"/>
         <cli-xconf href="#cli-xconf"/>
         <pageBreaks href="#pageBreaks"/>

Modified: forrest/trunk/site-author/status.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/status.xml?rev=632741&r1=632740&r2=632741&view=diff
==============================================================================
--- forrest/trunk/site-author/status.xml (original)
(Continue reading)

crossley | 3 Mar 2008 02:41
Picon
Favicon

svn commit: r632916 - in /forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets: document-to-fo.xsl helper-commonElements.xsl helper-xmpMetadata.xsl

Author: crossley
Date: Sun Mar  2 17:41:18 2008
New Revision: 632916

URL: http://svn.apache.org/viewvc?rev=632916&view=rev
Log:
Fix pdf links (broken by previous patch). Better presentation of header/version. Now generates an XMP
metadata package from some minimal metadata (title, subject (project-name), authors) so this can be
accessed from the Properties/GetInfo dialog in the pdf viewer.
Contributed by: Jeremias Maerki
Issue: FOR-1072

Added:

forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/helper-xmpMetadata.xsl
  (with props)
Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
    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/document-to-fo.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl?rev=632916&r1=632915&r2=632916&view=diff
==============================================================================
---
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl (original)
+++
forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
Sun Mar  2 17:41:18 2008
 <at>  <at>  -118,6 +118,8  <at>  <at> 
         href="helper-commonElements.xsl" />
(Continue reading)

crossley | 3 Mar 2008 02:55
Picon
Favicon

svn commit: r632919 - /forrest/trunk/site-author/skinconf.xml

Author: crossley
Date: Sun Mar  2 17:55:39 2008
New Revision: 632919

URL: http://svn.apache.org/viewvc?rev=632919&view=rev
Log:
Promote ApacheCon US 2008.

Modified:
    forrest/trunk/site-author/skinconf.xml

Modified: forrest/trunk/site-author/skinconf.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/skinconf.xml?rev=632919&r1=632918&r2=632919&view=diff
==============================================================================
--- forrest/trunk/site-author/skinconf.xml (original)
+++ forrest/trunk/site-author/skinconf.xml Sun Mar  2 17:55:39 2008
 <at>  <at>  -275,6 +275,13  <at>  <at> 
       <width>125</width>
       <height>125</height>
     </credit>
+    <credit box-location="alt2">
+      <name>ApacheCon US 2008</name>
+      <url>http://us.apachecon.com/</url>
+      <image>http://apache.org/ads/ApacheCon/2008-usa-125x125.png</image>
+      <width>125</width>
+      <height>125</height>
+    </credit>
 <!-- A credit with  <at> role='pdf' will have its name and url
       displayed in the PDF page's footer. -->
   </credits>
(Continue reading)

crossley | 3 Mar 2008 03:14
Picon
Favicon

svn commit: r632923 - /forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml

Author: crossley
Date: Sun Mar  2 18:14:33 2008
New Revision: 632923

URL: http://svn.apache.org/viewvc?rev=632923&view=rev
Log:
Add missing developer IDs.

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml?rev=632923&r1=632922&r2=632923&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml Sun Mar  2 18:14:33 2008
 <at>  <at>  -16,6 +16,14  <at>  <at> 
   limitations under the License.
 -->
 <status>
+  <developers>
+<!-- in fifo order -->
+    <person name="Ross Gardler" email="rgardler <at> apache.org" id="RDG"/>
+    <person name="Thorsten Scherler" email="thorsten <at> apache.org" id="TS"/>
+    <person name="Ferdinand Soethe" email="ferdinand <at> apache.org" id="FSO"/>
+    <person name="David Crossley" email="crossley <at> apache.org" id="DC" />
+    <person name="Volunteer needed" email="dev <at> forrest.apache.org" id="open"/>
+  </developers>
 <!-- Define here the Title of the Context you want to display in the Changes pages.
        id = the context value of actions
(Continue reading)

crossley | 3 Mar 2008 06:23
Picon
Favicon

svn commit: r632939 - /forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml

Author: crossley
Date: Sun Mar  2 21:23:12 2008
New Revision: 632939

URL: http://svn.apache.org/viewvc?rev=632939&view=rev
Log:
Refer to FOR-1072 for various changes.

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml?rev=632939&r1=632938&r2=632939&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml Sun Mar  2 21:23:12 2008
 <at>  <at>  -49,11 +49,15  <at>  <at> 
     <release
             version="0.3-dev"
             date="not-released">
+      <action context="code" type="update" dev="DC" fixes-bug="FOR-1072"
+        due-to="Jeremias Maerki" importance="high">
+        Various bugfixes and improvements for the fo stylesheets. See notes in FOR-1072.
+      </action>
       <action
                 type="update"
                 context="code"
                 dev="TS"
-                importance="high">Capsulizing the xsl methods in different
+                importance="high">Encapsulated the xsl methods in different
(Continue reading)


Gmane