You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by vh...@apache.org on 2014/09/22 20:47:13 UTC

svn commit: r1626867 - in /xmlgraphics/site/trunk: content/fop/index.mdtext content/fop/quickstartguide.mdtext content/fop/status.mdtext content/fop/trunk/compiling.mdtext content/fop/trunk/running.mdtext lib/path.pm

Author: vhennebert
Date: Mon Sep 22 18:47:13 2014
New Revision: 1626867

URL: http://svn.apache.org/r1626867
Log:
Added variables where appropriate

Modified:
    xmlgraphics/site/trunk/content/fop/index.mdtext
    xmlgraphics/site/trunk/content/fop/quickstartguide.mdtext
    xmlgraphics/site/trunk/content/fop/status.mdtext
    xmlgraphics/site/trunk/content/fop/trunk/compiling.mdtext
    xmlgraphics/site/trunk/content/fop/trunk/running.mdtext
    xmlgraphics/site/trunk/lib/path.pm

Modified: xmlgraphics/site/trunk/content/fop/index.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/index.mdtext?rev=1626867&r1=1626866&r2=1626867&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/index.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/index.mdtext Mon Sep 22 18:47:13 2014
@@ -13,7 +13,7 @@ The Apache™ FOP project is part of
 
 ![Render Diagram](images/document.jpg)
 
-The latest version of FOP is available at [FOP 1.1][fopLatest].
+The latest version of FOP is available at [FOP {{ fop_current_version }}][fopLatest].
 
 Support for each of the standard's objects and properties is detailed in [FOP Compliance](compliance.html). [Download](download.html) options include a precompiled version, source code, and many example files to get you started. [Resources](resources.html) include links to XSL-FO introductions and many other useful references. A checklist for [Getting Help](gethelp.html) will guide you toward maximizing the usefulness of FOP.
 
@@ -32,5 +32,3 @@ FOP uses the standard XSL-FO file format
 The goals of the Apache FOP project are to deliver an XSL-FO to PDF formatter that is compliant to at least the Basic conformance level described in the W3C Recommendation from 05 December 2006, and that complies with the November 2001 Portable Document Format Specification (Version 1.4) from Adobe Systems.
 
 Conformance to the XML 1.0 and 1.1 Recommendations, XSLT 1.0 and 2.0 Recommendations and the XML Namespaces Recommendation is understood. Other relevant documents, such as the XPath and XLink Working Drafts, are referenced as necessary. The FOP Project will attempt to use the latest version of evolving specifications.
-
-<note>The PDF files on this site are created using Apache FOP.</note>
\ No newline at end of file

Modified: xmlgraphics/site/trunk/content/fop/quickstartguide.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/quickstartguide.mdtext?rev=1626867&r1=1626866&r2=1626867&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/quickstartguide.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/quickstartguide.mdtext Mon Sep 22 18:47:13 2014
@@ -45,7 +45,7 @@ Once you've familiarized yourself with t
 
 ## Hello World with FOP { #hello-world}
 
-This section walks you through a "Hello World!" page with Apache FOP. We're assuming you download the binary distribution and that you have a Java Runtime Environment (version 1.4 or later) installed.
+This section walks you through a "Hello World!" page with Apache FOP. We're assuming you download the binary distribution and that you have a Java Runtime Environment (version {{ fop_minimal_java_requirement }} or later) installed.
 
 
 1. Unpack the downloaded binary distribution to a directory of your choice (for example, `C:\FOP` if you're on Windows). Let's call that directory <fop-home>.
@@ -96,4 +96,4 @@ Windows: `fop -xml name.xml -xsl name2fo
 
 Unix: `./fop -xml name.xml -xsl name2fo.xsl -pdf name.pdf`
 
-1. You've produced your first PDF with Apache FOP! Please open `name.pdf` in your favorite PDF viewer.
\ No newline at end of file
+1. You've produced your first PDF with Apache FOP! Please open `name.pdf` in your favorite PDF viewer.

Modified: xmlgraphics/site/trunk/content/fop/status.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/status.mdtext?rev=1626867&r1=1626866&r2=1626867&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/status.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/status.mdtext Mon Sep 22 18:47:13 2014
@@ -11,7 +11,7 @@ Apache&trade; FOP version {{ fop_current
 
 ## Development Status { #Development-Status}
 
-The FOP code base is gradually evolving, from Version 0.90 released on 22 November 2005, to Version 1.1, released on 20 October 2012. Further releases in the 1.x series and beyond are expected.
+The FOP code base is gradually evolving, from Version 0.90 released on 22 November 2005, to Version {{ fop_current_version }}, released on {{ fop_current_version_release_date }}. Further releases in the 1.x series and beyond are expected.
 
 FOP releases before version 0.90 were based on a different code base. The last release in that series was version 0.20.5, released on 18 July 2003. This series is no longer maintained.
 

Modified: xmlgraphics/site/trunk/content/fop/trunk/compiling.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/trunk/compiling.mdtext?rev=1626867&r1=1626866&r2=1626867&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/trunk/compiling.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/trunk/compiling.mdtext Mon Sep 22 18:47:13 2014
@@ -11,7 +11,7 @@ Apache&trade; FOP snapshots are either p
 
 ### JDK { #env-jdk}
 
-Building FOP requires a minimum Java Development Kit (JDK/SDK) of 1.6 (A Java Runtime Environment is not sufficient).
+Building FOP requires a minimum Java Development Kit (JDK/SDK) of {{ fop_minimal_java_requirement }} (A Java Runtime Environment is not sufficient).
 
 ### CLASSPATH { #env-classpath}
 

Modified: xmlgraphics/site/trunk/content/fop/trunk/running.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/trunk/running.mdtext?rev=1626867&r1=1626866&r2=1626867&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/trunk/running.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/trunk/running.mdtext Mon Sep 22 18:47:13 2014
@@ -8,7 +8,7 @@ Title: Running Apache&trade; FOP
 The following software must be installed:
 
 
-- Java 1.5.x or later Runtime Environment.
+- Java {{ fop_minimal_java_requirement }} or later Runtime Environment.
 
 
 - Apache&trade; FOP. The [FOP distribution](../download.html) includes all libraries that you will need to run a basic FOP installation. These can be found in the [fop-root]/lib directory. These libraries include the following:

Modified: xmlgraphics/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/lib/path.pm?rev=1626867&r1=1626866&r2=1626867&view=diff
==============================================================================
--- xmlgraphics/site/trunk/lib/path.pm (original)
+++ xmlgraphics/site/trunk/lib/path.pm Mon Sep 22 18:47:13 2014
@@ -3,6 +3,7 @@ package path;
 my %variables = (
     fop_current_version => "1.1",
     fop_current_version_release_date => "20 October 2012",
+    fop_minimal_java_requirement => "1.6",
 );
 
 
@@ -13,23 +14,27 @@ our @patterns = (
          header => "batik-top.html",
          sidenav => "batik-sidenav.mdtext",
          footer => "bottom.html",
-       template => "single_narrative.html",
+         template => "single_narrative.html",
+         preprocess => 1,
+         %variables,
     } ],
 
 	[ qr!^/fop/.*\.mdtext$!, single_narrative => {
          header => "fop-top.html",
          sidenav => "fop-sidenav.mdtext",
          footer => "bottom.html",
-       template => "single_narrative.html",
-       preprocess => 1,
-       %variables,
+         template => "single_narrative.html",
+         preprocess => 1,
+         %variables,
     } ],
 
 	[qr!\.mdtext$!, single_narrative => {
         header => "xgc-top.html",
         sidenav => "xgc-sidenav.mdtext",
         footer => "bottom.html",
-		template => "single_narrative.html"
+        template => "single_narrative.html",
+        preprocess => 1,
+        %variables,
 	} ],
 
 	[qr!/sitemap\.html$!, sitemap => {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org