You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by bu...@apache.org on 2012/04/18 08:04:41 UTC

svn commit: r813485 [2/6] - in /websites/staging/xmlgraphics/trunk/content: ./ batik/ batik/dev/ batik/tools/ batik/using/ batik/using/scripting/ commons/ fop/ fop/0.95/ fop/1.0/ fop/dev/ fop/dev/design/ fop/trunk/

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/parsers.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/parsers.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/parsers.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Parser module</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p>SVG has a number of microsyntaxes that are used within attribute values, such as the <code>transform</code> attribute on <code>SVGTransformable</code> elements, and the path data <code>d</code> attribute on <code>path</code> elements. Since these are not trivial to parse, this functionality has been factored out into a separate package that can be used by other SVG-processing applications if needed.</p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></div>
+      	<div class="section-content"><p>SVG has a number of microsyntaxes that are used within attribute values, such as the <code>transform</code> attribute on <code>SVGTransformable</code> elements, and the path data <code>d</code> attribute on <code>path</code> elements. Since these are not trivial to parse, this functionality has been factored out into a separate package that can be used by other SVG-processing applications if needed.</p>
 <h1 id="parsersHandlersAndProducers">Parsers, handlers and producers</h1>
 <p>In the parser module, each microsyntax is supported by a pair of classes: a parser and a handler. The parser is a class that implements the <a href="../javadoc/org/apache/batik/parser/Parser.html">Parser</a> interface, which has methods to parse values from a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/io/Reader.html">Reader</a> or a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html">String</a> . The handler is an interface specific to the microsyntax that will have its methods called whenever the corresponding element in the input is parsed. For those handler interfaces that have more than one method, adapter classes are provided (named <code>Default</code> *).</p>
 <p>Parsers can also have an error handler associated with them, whose single method <code>error</code> will be called when there is a problem parsing the input. If an error handler is not associated with a parser, a <a href="../javadoc/org/apache/batik/parser/ParseException.html">ParseException</a> will be thrown if an error occurs.</p>
@@ -387,7 +403,9 @@ import org.apache.batik.parser.Transform
 </pre></div>
 
 
-<p>}</p></div></div>
+<p>}</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/scripting/ecmascript.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/scripting/ecmascript.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/scripting/ecmascript.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Scripting with ECMAScript</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a>&nbsp;&raquo&nbsp;<a href="/batik/using/scripting/">Scripting</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p>This page is a brief introduction to scripting SVG documents with ECMAScript, and how Batik’s ECMAScript environment can be extended.</p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a>&nbsp;&raquo&nbsp;<a href="/batik/using/scripting/">Scripting</a></div>
+      	<div class="section-content"><p>This page is a brief introduction to scripting SVG documents with ECMAScript, and how Batik’s ECMAScript environment can be extended.</p>
 <h1 id="scriptingBasics">Scripting basics</h1>
 <p>As the ECMAScript language (the standardised version of JavaScript) is one of the most popular scripting languages, and as the SVG specification states that an SVG conforming implementation must support it, SVG documents processed by Batik support scripting with ECMAScript using Mozilla’s ECMAScript interpreter, <a href="http://www.mozilla.org/rhino/">Rhino</a> .</p>
 <p>There are two places in an SVG file where you can put scripts.</p>
@@ -435,7 +451,9 @@ pool.putInterpreterFactory("application/
 pool.putInterpreterFactory("application/javascript", f);
 ctx.setIntepreterPool(pool);
 For example if you are using the Batik SVG browser application you should be able to use the previous piece of code on a subclass of the <a href="../../javadoc/org/apache/batik/swing/JSVGCanvas.html">JSVGCanvas</a> class in the <code>createBridgeContext()</code> method.</p>
-<p>For further information on working with Rhino, consult the <a href="http://www.mozilla.org/rhino/">Rhino website</a> .</p></div></div>
+<p>For further information on working with Rhino, consult the <a href="http://www.mozilla.org/rhino/">Rhino website</a> .</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/scripting/java.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/scripting/java.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/scripting/java.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Scripting With Java</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a>&nbsp;&raquo&nbsp;<a href="/batik/using/scripting/">Scripting</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p>This page explains how to manipulate the DOM tree of an SVG document from a Java program.</p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a>&nbsp;&raquo&nbsp;<a href="/batik/using/scripting/">Scripting</a></div>
+      	<div class="section-content"><p>This page explains how to manipulate the DOM tree of an SVG document from a Java program.</p>
 <h1 id="Swing">How to manipulate a document in a JSVGCanvas</h1>
 <p>The follow code template demonstrates how to manipulate an SVG document displayed in a <a href="../../javadoc/org/apache/batik/swing/JSVGCanvas.html">JSVGCanvas</a> directly from a Java program.
 You don’t have to worry about graphics updates; after each event listener invocation the canvas is updated if needed.import java.awt.event.WindowAdapter;
@@ -473,7 +489,9 @@ cPt = cPt.matrixTransform(imat);</p>
 <p>The manifest of this jar file must contains an entry of the form:
 SVG-Handler-Class: classname
 where <em>classname</em> must be the name of a class that implements the <a href="../../javadoc/org/w3c/dom/svg/EventListenerInitializer.html">org.w3c.dom.svg.EventListenerInitializer</a> interface. Just before the document <code>SVGLoad</code> event is fired, an instance of this class is created, and this instance has its <code>initializeEventListeners</code> method invoked. Note that there is no way to specify Java handlers in event attributes on SVG elements, so having the <code>initializeEventListeners</code> call <code>addEventListener</code> on a node is the only way to attach a Java listener from within the document.</p>
-<p>The class specified by <code>SVG-Handler-Class</code> can be contained directly in the jar file, but it is also possible for it to be contained in a jar file added to the classpath using the <code>Class-Path</code> entry of the manifest.</p></div></div>
+<p>The class specified by <code>SVG-Handler-Class</code> can be contained directly in the jar file, but it is also possible for it to be contained in a jar file added to the classpath using the <code>Class-Path</code> entry of the manifest.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/scripting/security.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/scripting/security.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/scripting/security.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Script security</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a>&nbsp;&raquo&nbsp;<a href="/batik/using/scripting/">Scripting</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p>With the addition of scripting support in Batik 1.5, security features have also been added to enable users of the Batik toolkit to run scripts in a secure manner.</p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a>&nbsp;&raquo&nbsp;<a href="/batik/using/scripting/">Scripting</a></div>
+      	<div class="section-content"><p>With the addition of scripting support in Batik 1.5, security features have also been added to enable users of the Batik toolkit to run scripts in a secure manner.</p>
 <p>If you are using script, please make sure you have reviewed the <a href="../../index.html#SecurityWarning">Script Security Warning</a> with regards to the Batik 1.5 release.</p>
 <h1 id="sandbox">Running scripts securely</h1>
 <p>The Java platform offers a lot of options for running applications securely. Running an application securely requires that it runs in a so-called security sand-box which controls all the access the application makes to restricted resources (such as the file system).</p>
@@ -381,7 +397,9 @@ Batik provides the following set of <cod
 <dd>Embeded external resources (see above) and resources coming from the same location as the document referencing them are allowed.</dd>
 <dt>RelaxedExternalResourceSecurity</dt>
 <dd>Resources from any location can be loaded.</dd>
-</dl></div></div>
+</dl></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/svg-generator.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/svg-generator.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/svg-generator.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>SVG Generator: SVGGraphics2D</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><div class="figure"> ![Flow diagram illustrating that Java programs can have their graphics converted to SVG and then viewed in any SVG viewer](images/svggen.jpg "") </div>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></div>
+      	<div class="section-content"><div class="figure"> ![Flow diagram illustrating that Java programs can have their graphics converted to SVG and then viewed in any SVG viewer](images/svggen.jpg "") </div>
 
 <p>As SVG is emerging as a promising graphics format for a wide range of domains and applications, bridging it with Java becomes important. This page explains how Batik’s <a href="../javadoc/org/apache/batik/svggen/SVGGraphics2D.html">SVGGraphics2D</a> , referred to as the SVG Generator, makes this possible.</p>
 <h1 id="whatIsIt">The SVGGraphics2D class</h1>
@@ -644,7 +660,9 @@ import org.w3c.dom.svg.</em>;</p>
 </pre></div>
 
 
-<p>}</p></div></div>
+<p>}</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/swing.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/swing.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/swing.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Batik Swing components</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p>The goal of the Batik Swing component module is to provide a Swing component that can used to display SVG documents. With the <a href="../javadoc/org/apache/batik/swing/JSVGCanvas.html">JSVGCanvas</a> class, you can easily display an SVG document (from a URI or a DOM tree) and allow the user to manipulate it, such as rotating, zooming, panning, selecting text or activating hyperlinks. First this document explains how to create a <code>JSVGCanvas</code> and integrate it in to a Swing application. Then, it descibes some advanced features such as the listener mechanism used to track all events that occurred while displaying or manipulating an SVG document.</p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></div>
+      	<div class="section-content"><p>The goal of the Batik Swing component module is to provide a Swing component that can used to display SVG documents. With the <a href="../javadoc/org/apache/batik/swing/JSVGCanvas.html">JSVGCanvas</a> class, you can easily display an SVG document (from a URI or a DOM tree) and allow the user to manipulate it, such as rotating, zooming, panning, selecting text or activating hyperlinks. First this document explains how to create a <code>JSVGCanvas</code> and integrate it in to a Swing application. Then, it descibes some advanced features such as the listener mechanism used to track all events that occurred while displaying or manipulating an SVG document.</p>
 <h1 id="creatingJSVGCanvas">Creating a JSVGCanvas</h1>
 <p>The following example illustrates how to create a <code>JSVGCanvas</code> , which is a Swing component that follows the Swing design rule. This means that the component is not thread safe and all operations on the component or the document it is displaying must be performed as described in <a href="http://java.sun.com/docs/books/tutorial/uiswing/overview/threads.html">the Swing tutorial</a> . The <code>JSVGCanvas</code> is also a <a href="http://java.sun.com/products/javabeans/">JavaBean</a> , so it can be used in visual application builders.
 If you try this example, do not forget to set your <code>CLASSPATH</code> so that it contains the Batik classes and resources, as well as Xerces ( <code>lib/xerces_2_5_0.jar</code> ) and the XML APIs jars ( <code>lib/xml-apis.jar</code> and <code>lib/xml-apis-ext.jar</code> ).import java.awt.<em>;
@@ -450,7 +466,9 @@ import org.apache.batik.swing.svg.GVTTre
 <p>For static documents, you can assume that the JSVGCanvas has completed its job (parsing, building and rendering) when the <code>gvtRenderingCompleted</code> method call is called, following a <code>setURI</code> or a <code>setSVGDocument</code> method call.</p>
 <p>In the case of dynamic documents, the end of the computation (parsing, building, SVGLoad dispatch, initial rendering and updates) is marked by a call to the <code>updateManagerStopped</code> method.</p>
 <h1 id="interactor">Adding an Interactor</h1>
-<p>The <code>JSVGCanvas</code> provides a set of build-in interactors that let the users manipulate the displayed document, including ones for zooming, panning and rotating. Interactors catch user input to the <code>JSVGCanvas</code> component and translate them into behaviour. If you want to add new behaviors to the <code>JSVGCanvas</code> , you can implement the <a href="../javadoc/org/apache/batik/swing/gvt/Interactor.html">Interactor</a> interface. Then, you can register this new interactor to the component by adding an element to the <code>List</code> returned by the <code>getInteractors()</code> method of the canvas.</p></div></div>
+<p>The <code>JSVGCanvas</code> provides a set of build-in interactors that let the users manipulate the displayed document, including ones for zooming, panning and rotating. Interactors catch user input to the <code>JSVGCanvas</code> component and translate them into behaviour. If you want to add new behaviors to the <code>JSVGCanvas</code> , you can implement the <a href="../javadoc/org/apache/batik/swing/gvt/Interactor.html">Interactor</a> interface. Then, you can register this new interactor to the component by adding an element to the <code>List</code> returned by the <code>getInteractors()</code> method of the canvas.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/batik/using/transcoder.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/batik/using/transcoder.html (original)
+++ websites/staging/xmlgraphics/trunk/content/batik/using/transcoder.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Transcoder API</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p>The goal of the transcoder API (package <code>org.apache.batik.transcoder</code> ) is to provide a generic API for transcoding an input to an output. First, this document explains the basic transcoder API that <a href="../javadoc/org/apache/batik/transcoder/Transcoder.html">Transcoder</a> , <a href="../javadoc/org/apache/batik/transcoder/TranscoderInput.html">TranscoderInput</a> and <a href="../javadoc/org/apache/batik/transcoder/TranscoderOutput.html">TranscoderOutput</a> define, and thus all transcoders have in common. Next, it describes how to use the image transcoder API (package <code>org.apache.batik.transcoder.image</code> ), which lets you rasterize an SVG document fragment to a raster image such as JPEG, PNG or TIFF.</p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/batik/">Batik</a>&nbsp;&raquo&nbsp;<a href="/batik/using/">Using</a></div>
+      	<div class="section-content"><p>The goal of the transcoder API (package <code>org.apache.batik.transcoder</code> ) is to provide a generic API for transcoding an input to an output. First, this document explains the basic transcoder API that <a href="../javadoc/org/apache/batik/transcoder/Transcoder.html">Transcoder</a> , <a href="../javadoc/org/apache/batik/transcoder/TranscoderInput.html">TranscoderInput</a> and <a href="../javadoc/org/apache/batik/transcoder/TranscoderOutput.html">TranscoderOutput</a> define, and thus all transcoders have in common. Next, it describes how to use the image transcoder API (package <code>org.apache.batik.transcoder.image</code> ), which lets you rasterize an SVG document fragment to a raster image such as JPEG, PNG or TIFF.</p>
 <h1 id="transcoderAPI">The transcoder API</h1>
 <p>The <code>org.apache.batik.transcoder</code> package defines 5 major classes:</p>
 <dl>
@@ -585,7 +601,9 @@ java DOMRasterizer</p>
 <li>
 <p>Inspect the output file <code>out.jpg</code> .</p>
 </li>
-</ol></div></div>
+</ol></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/charter.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/charter.html (original)
+++ websites/staging/xmlgraphics/trunk/content/charter.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>The Apache™ XML Graphics Project - Charter</h1>
       </div>
-        <p><a href="/">Home</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><notice></notice><abstract></abstract></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a></div>
+      	<div class="section-content"><p><notice></notice><abstract></abstract></p>
 <h1 id="the-apache-xml-graphics-project-charter">The Apache XML Graphics Project - Charter</h1>
 <ul>
 <li><a href="/">Home</a></li>
@@ -521,7 +537,9 @@ at least as a basic integration test.</p
 <h1 id="13-relationship-to-other-apache-projects">13 RELATIONSHIP TO OTHER APACHE PROJECTS</h1>
 <p>13.1 The Apache XML Graphics project should work closely with other Apache 
 projects, such as XML, Jakarta and the Apache Server, to avoid redundancy and 
-achieve a coherent architecture among Apache XML Graphics and these projects.</p></div></div>
+achieve a coherent architecture among Apache XML Graphics and these projects.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/commons/bugs.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/commons/bugs.html (original)
+++ websites/staging/xmlgraphics/trunk/content/commons/bugs.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ XML Graphics Commons: Bugs and Other Trackable Issues</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 911792 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></div>
+      	<div class="section-content"><p><version>$Revision: 911792 $</version></p>
 <p>Information on this page applies to enhancement requests and other trackable issues as well as bugs.</p>
 <h1 id="issues_existing">Reported Issues</h1>
 <p>A list of unresolved reported bugs can be found at <a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=XMLGraphicsCommons&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">XML Graphics Commons Open Bugs (Bugzilla)</a> . If you have an interest in an issue already reported, please consider the following:</p>
@@ -338,7 +354,9 @@
 <li>
 <p>After submission, a copy of your bug report will be automatically sent to the <a href="http://xmlgraphics.apache.org/mail.html#xmlgraphics-general">XML Graphics General discussion list</a> .</p>
 </li>
-</ul></div></div>
+</ul></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/commons/changes.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/commons/changes.html (original)
+++ websites/staging/xmlgraphics/trunk/content/commons/changes.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>History of Changes</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><a href="changes.rss"></a> </p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></div>
+      	<div class="section-content"><p><a href="changes.rss"></a> </p>
 <h1 id="introduction">Introduction and explanation of symbols</h1>
 <p>Changes are sorted by "type" and then chronologically with the most recent at the top. These symbols denote the various action types:<icon alt="add" src="images/add.jpg"></icon>=add,<icon alt="fix" src="images/fix.jpg"></icon>=fix,<icon alt="remove" src="images/remove.jpg"></icon>=remove,<icon alt="update" src="images/update.jpg"></icon>=update</p>
 <h1 id="version_Trunk">Version Trunk (n/a)</h1>
@@ -630,7 +646,9 @@
 <li>
 <p>Volunteer needed (open)</p>
 </li>
-</ul></div></div>
+</ul></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/commons/download.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/commons/download.html (original)
+++ websites/staging/xmlgraphics/trunk/content/commons/download.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Download Apache™ XML Graphics Commons</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><h1 id="release">Download a Release</h1>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></div>
+      	<div class="section-content"><h1 id="release">Download a Release</h1>
 <p>Source ("-src") and binary ("-bin") distributions can be downloaded from a <a href="http://www.apache.org/dyn/closer.cgi/xmlgraphics/commons">Apache™ XML Graphics Commons Distribution Mirror</a> .</p>
 <h1 id="svn">Download from Subversion</h1>
 <p>The latest source code is available directly from the Subversion repository:</p>
@@ -335,7 +351,9 @@
 <td>Committers need to replace " <code>http</code> " with " <code>https</code> " and then log in so they can gain write access!</td>
 </tr>
 </tbody>
-</table></div></div>
+</table></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/commons/image-loader.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/commons/image-loader.html (original)
+++ websites/staging/xmlgraphics/trunk/content/commons/image-loader.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ XML Graphics Commons: Image Loader Framework</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><h1 id="overview">Overview</h1>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></div>
+      	<div class="section-content"><h1 id="overview">Overview</h1>
 <p>Apache™ XML Graphics Commons contains a unified framework for loading and processing images (bitmap and vector). The package name is <code>org.apache.xmlgraphics.image.loader</code> . Key features:</p>
 <ul>
 <li>
@@ -447,7 +463,9 @@ ImageImplRegistry registry = imageManage
 registry.setAdditionalPenalty(
     "org.apache.xmlgraphics.image.loader.impl.ImageLoaderRawCCITTFax",
     Penalty.toPenalty(10000));
-This increases the penalty for the raw CCITT loader significantly so it will only be used if no other solutions exist. You can also set <code>Penalty.INFINITE_PENALTY</code> to disable the plug-in altogether. Negative penalties are possible to promote a plug-in but a negative penalty sum will be treated as zero penalty in most cases.</p></div></div>
+This increases the penalty for the raw CCITT loader significantly so it will only be used if no other solutions exist. You can also set <code>Penalty.INFINITE_PENALTY</code> to disable the plug-in altogether. Negative penalties are possible to promote a plug-in but a negative penalty sum will be treated as zero penalty in most cases.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/commons/index.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/commons/index.html (original)
+++ websites/staging/xmlgraphics/trunk/content/commons/index.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ XML Graphics Commons</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><h1 id="Overview">Overview</h1>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></div>
+      	<div class="section-content"><h1 id="Overview">Overview</h1>
 <p>Apache™ XML Graphics Commons is a library that consists of several reusable components used by <a href="http://xmlgraphics.apache.org/batik/">Apache Batik</a> and <a href="http://xmlgraphics.apache.org/fop/">Apache FOP</a> . Many of these components can easily be used separately outside the domains of SVG and XSL-FO. You will find components such as a PDF library, an RTF library, Graphics2D implementations that let you generate PDF &amp; PostScript files, and much more.</p>
 <p>The Apache™ XML Graphics Commons project is part of the <a href="http://www.apache.org">Apache™</a> Software Foundation, which is a wider community of users and developers of open source projects.</p>
 <p>In the Wiki, we have a <a href="http://wiki.apache.org/xmlgraphics/XmlGraphicsCommonComponents">Roadmap for Apache XML Graphics Commons</a> . This roadmap is the place to describe new ideas for the project.</p>
@@ -404,7 +420,9 @@ This release adds an XMP metadata framew
 <h2 id="news-2006-04-17">17 Apr 2006: Version 1.0 Released</h2>
 <p><item date="2006-04-17" title="Version 1.0 Released">
 This is the first release of Apache XML Graphics Commons. There are currently no known issues with the code.
-</item></p></div></div>
+</item></p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/commons/postscript.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/commons/postscript.html (original)
+++ websites/staging/xmlgraphics/trunk/content/commons/postscript.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Tools for Adobe PostScript</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><h1 id="overview">Overview</h1>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/commons/">Commons</a></div>
+      	<div class="section-content"><h1 id="overview">Overview</h1>
 <p>Apache™ XML Graphics Commons contains various tools for writing and processing Adobe PostScript files. This includes:</p>
 <ul>
 <li>
@@ -368,7 +384,9 @@ g2d.setupDocument(out, 400, 200); //400p
 </ul>
 <p>The DSC parser (DSCParser) was designed as a pull parser, i.e. you fetch new events from the parser inspecting them and acting on them as they are found. If you prefer to work with a push parser, you can pass the DSCParser a DSCHandler implementation and the parser will send you all the events.</p>
 <p>The best example to understand how to use the DSC parser is the PageExtractor class that implements the page extraction functionality mentioned above.
-The DSC parser is not considered feature-complete. The basic infrastructure is there but, for example, not all DSC comments are available as concrete Java classes. If you need to extend the DSC parser for your own use cases, please send us your patches.</p></div></div>
+The DSC parser is not considered feature-complete. The basic infrastructure is there but, for example, not all DSC comments are available as concrete Java classes. If you need to extend the DSC parser for your own use cases, please send us your patches.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/anttask.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/anttask.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/anttask.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Ant task</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <p>Apache™ FOP provides an Ant task for automating the document build process.</p>
 <h1 id="basics">Description</h1>
 <p>The FOP Ant task will convert XSL-FO documents to PDF, PS, PCL etc. output (see <a href="output.html">Output formats</a> for available formats).</p>
@@ -375,7 +391,9 @@ This example converts all XSL-FO files w
            <include name="*.fo"/>
         </fileset>
    </fop>
-</target></div></div>
+</target></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/changes_0.95.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/changes_0.95.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/changes_0.95.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>History of Changes 0.95</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><a href="changes_0.95.rss"></a> </p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><a href="changes_0.95.rss"></a> </p>
 <h1 id="introduction">Introduction and explanation of symbols</h1>
 <p>Changes are sorted by "type" and then chronologically with the most recent at the top. These symbols denote the various action types:<icon alt="add" src="../images/add.jpg"></icon>=add,<icon alt="fix" src="../images/fix.jpg"></icon>=fix,<icon alt="remove" src="../images/remove.jpg"></icon>=remove,<icon alt="update" src="../images/update.jpg"></icon>=update</p>
 <h1 id="version_0.95">Version 0.95 (05 August 2008)</h1>
@@ -392,7 +408,9 @@
 <h2 id="contributors_0.95">Contributors to this release</h2>
 <p>We thank the following people for their contributions to this release.</p>
 <p>This is a list of all people who participated as committers:<br></br>Andreas Delmelle (AD), Jeremias Märki (JM), Vincent Hennebert (VH).</p>
-<p>This is a list of other contributors:<br></br>Maximilian Aster.</p></div></div>
+<p>This is a list of other contributors:<br></br>Maximilian Aster.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/changes_0.95beta.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/changes_0.95beta.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/changes_0.95beta.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>History of Changes 0.95beta</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><a href="changes_0.95beta.rss"></a> </p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><a href="changes_0.95beta.rss"></a> </p>
 <h1 id="introduction">Introduction and explanation of symbols</h1>
 <p>Changes are sorted by "type" and then chronologically with the most recent at the top. These symbols denote the various action types:<icon alt="add" src="../images/add.jpg"></icon>=add,<icon alt="fix" src="../images/fix.jpg"></icon>=fix,<icon alt="remove" src="../images/remove.jpg"></icon>=remove,<icon alt="update" src="../images/update.jpg"></icon>=update</p>
 <h1 id="version_0.95beta">Version 0.95beta (26 March 2008)</h1>
@@ -578,7 +594,9 @@
 <h2 id="contributors_0.95beta">Contributors to this release</h2>
 <p>We thank the following people for their contributions to this release.</p>
 <p>This is a list of all people who participated as committers:<br></br>Adrian Cumiskey (AC), Andreas Delmelle (AD), Jeremias Märki (JM), Max Berger (MB), Vincent Hennebert (VH).</p>
-<p>This is a list of other contributors:<br></br>Adrian Cumiskey, Andrejus Chaliapinas, Bruno Feurer, ckohrn.at.tng.de, David Churavy, David Delbecq, Gordon Cooke, Justus Piater, Max Berger, Patrick Jaromin, Stefan Ziel, V. Schappert.</p></div></div>
+<p>This is a list of other contributors:<br></br>Adrian Cumiskey, Andrejus Chaliapinas, Bruno Feurer, ckohrn.at.tng.de, David Churavy, David Delbecq, Gordon Cooke, Justus Piater, Max Berger, Patrick Jaromin, Stefan Ziel, V. Schappert.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/compiling.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/compiling.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/compiling.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Building from Source Code</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <h1 id="build-needed">Do You Need To Build?</h1>
 <p>Apache™ FOP distributions are either pre-compiled binary or source. If you are using a binary distribution, it is already built and there is no need to build it again. See the <a href="../download.html">Download Instructions</a> for information about whether a binary or source distribution is best for your needs.</p>
 <p>If you got the source code from a repository snapshot or via Subversion you will need to build FOP in any case.</p>
@@ -367,7 +383,9 @@ ant clean allIf you want to shorten the 
 <li>
 <p>If the build still fails, see the <a href="../gethelp.html">Getting Help</a> page for further help.</p>
 </li>
-</ul></div></div>
+</ul></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/configuration.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/configuration.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/configuration.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Configuration</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <h1 id="general">Configuration File Basics</h1>
 <p>The FOP configuration file is an XML file containing a variety of settings that are useful for controlling FOP's behavior, and for helping it find resources that you wish it to use.</p>
 <p>The easiest way to get started using a FOP configuration file is to copy the sample found at <code>{fop-dir}/conf/fop.xconf</code> to a location of your choice, and then to edit it according to your needs. It contains templates for the various configuration options, most of which are commented out. Remove the comments and change the settings for entries that you wish to use. Be sure to follow any instructions, including comments which specify the value range. Also, since the configuration file is XML, be sure to keep it well-formed.</p>
@@ -542,7 +558,9 @@ and run the configuration file through a
 <li>
 <p>Run FOP in debug mode (command line option <code>-d</code> ). This makes FOP report which configuration information it finds. Check if FOP finds what you expect.</p>
 </li>
-</ul></div></div>
+</ul></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/embedding.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/embedding.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/embedding.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Embedding</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><subtitle>How to Embed Apache™ FOP in a Java application</subtitle><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><subtitle>How to Embed Apache™ FOP in a Java application</subtitle><version>$Revision: 1298724 $</version></p>
 <h1 id="overview">Overview</h1>
 <p>Review <a href="running.html">Running Apache™ FOP</a> for important information that applies to embedded applications as well as command-line use, such as options and performance.</p>
 <p>To embed Apache™ FOP in your application, first create a new org.apache.fop.apps.FopFactory instance. This object can be used to launch multiple rendering runs. For each run, create a new org.apache.fop.apps.Fop instance through one of the factory methods of FopFactory. In the method call you specify which output format (i.e. Renderer) to use and, if the selected renderer requires an OutputStream, which OutputStream to use for the results of the rendering. You can customize FOP's behaviour in a rendering run by supplying your own FOUserAgent instance. The FOUserAgent can, for example, be used to set your own Renderer instance (details below). Finally, you retrieve a SAX DefaultHandler instance from the Fop object and use that as the SAXResult of your transformation.
@@ -570,7 +586,9 @@ For this example we've created two class
 <h2 id="ExampleSVG2PDF">ExampleSVG2PDF.java (PDF Transcoder example)</h2>
 <p>This <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleSVG2PDF.java?view=markup">example</a> shows the usage of the PDF Transcoder, a sub-application within FOP. It is used to generate a PDF document from an SVG file.</p>
 <h2 id="example-notes">Final notes</h2>
-<p>These examples should give you an idea of what's possible. It should be easy to adjust these examples to your needs. Also, if you have other examples that you think should be added here, please let us know via either the fop-users or fop-dev mailing lists. Finally, for more help please send your questions to the fop-users mailing list.</p></div></div>
+<p>These examples should give you an idea of what's possible. It should be easy to adjust these examples to your needs. Also, if you have other examples that you think should be added here, please let us know via either the fop-users or fop-dev mailing lists. Finally, for more help please send your questions to the fop-users mailing list.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/extensions.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/extensions.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/extensions.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Standard Apache™ FOP Extensions</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <p>By "extension", we mean any data that can be placed in the input XML document that is not addressed by the XSL-FO standard. By having a mechanism for supporting extensions, FOP is able to add features that are not covered in the specification.</p>
 <p>The extensions documented here are included with FOP, and are automatically available to you. If you wish to add an extension of your own to FOP, please see the <a href="../dev/extensions.html">Developers' Extension Page</a> .
 All extensions require the correct use of an appropriate namespace in your input document.</p>
@@ -412,7 +428,9 @@ This extension attribute doesn't work fo
 <p>XSL-FO supports specifying color using the rgb(), rgb-icc() and system-color() functions. Apache FOP provides additional color functions for special use cases. Please note that using these functions compromises the interoperability of an FO document.</p>
 <h3 id="color-function-cmyk">cmyk()</h3>
 <p><code>color cmyk(numeric, numeric, numeric, numeric)</code> </p>
-<p>This function will construct a color in device-specific CMYK color space. The numbers must be between 0.0 and 1.0. For output formats that don't support device-specific color space the CMYK value is converted to an sRGB value.</p></div></div>
+<p>This function will construct a color in device-specific CMYK color space. The numbers must be between 0.0 and 1.0. For output formats that don't support device-specific color space the CMYK value is converted to an sRGB value.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/fonts.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/fonts.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/fonts.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Fonts</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version><authors><person email="" name="Jeremias Märki"></person><person email="" name="Tore Engvig"></person><person email="" name="Adrian Cumiskey"></person><person email="" name="Max Berger"></person></authors></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version><authors><person email="" name="Jeremias Märki"></person><person email="" name="Tore Engvig"></person><person email="" name="Adrian Cumiskey"></person><person email="" name="Max Berger"></person></authors></p>
 <h1 id="intro">Summary</h1>
 <p>The following table summarizes the font capabilities of the various FOP renderers:</p>
 <table>
@@ -563,7 +579,9 @@ Font embedding is enabled in the usercon
 <warning>Omitting the embed-url attribute for CID-encoded TrueType fonts will currently produce invalid PDF files! If you create the XML font metric file using the "-enc ansi" option, you can omit the embed-url attribute for TrueType fonts but you're restricted to the WinAnsi character set.</warning>
 When FOP embeds a font, it adds a prefix to the fontname to ensure that the name will not match the fontname of an installed font. This is helpful with older versions of Acrobat Reader that preferred installed fonts over embedded fonts.</p>
 <p>When embedding PostScript fonts, the entire font is always embedded.</p>
-<p>When embedding TrueType fonts (ttf) or TrueType Collections (ttc), a subset of the original font, containing only the glyphs used, is embedded in the output document.</p></div></div>
+<p>When embedding TrueType fonts (ttf) or TrueType Collections (ttc), a subset of the original font, containing only the glyphs used, is embedded in the output document.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/graphics.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/graphics.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/graphics.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Graphics Formats</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <h1 id="introduction">Introduction</h1>
 <p>After the Apache™ FOP 0.94 release, the image handling subsystem has been rewritten in order to improve the range of supported images and image subtypes, to lower the overall memory consumption when handling images, to produce smaller output files and to increase the performance in certain areas. Of course, this causes a few changes most of which the user will probably not notice. The most important changes are:</p>
 <ul>
@@ -596,7 +612,9 @@ Batik's SVG Rasterizer utility may also 
 <h1 id="caching">Image caching</h1>
 <p>FOP caches images between runs. There is one cache per FopFactory instance. The URI is used as a key to identify images which means that when a particular URI appears again, the image is taken from the cache. If you have a servlet that generates a different image each time it is called with the same URI you need to use a constantly changing dummy parameter on the URI to avoid caching.</p>
 <p>The image cache has been improved considerably in the redesigned code. Therefore, resetting the image cache should be a thing of the past. If you still experience OutOfMemoryErrors, please notify us.</p>
-<p>If all else fails, the image cache can be cleared like this: <code>fopFactory.getImageManager().getCache().clearCache();</code> </p></div></div>
+<p>If all else fails, the image cache can be cleared like this: <code>fopFactory.getImageManager().getCache().clearCache();</code> </p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/hyphenation.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/hyphenation.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/hyphenation.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,12 +323,14 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP: Hyphenation</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <h1 id="support">Hyphenation Support</h1>
 <h2 id="intro">Introduction</h2>
 <p>Apache™ FOP uses Liang's hyphenation algorithm, well known from TeX. It needs language specific pattern and other data for operation.</p>
@@ -418,7 +434,9 @@ Note that the algorithm that uses this d
 </ul>
 <p>If you want to convert a TeX hyphenation pattern file, you have to undo the TeX encoding for non-ASCII text. FOP uses Unicode, and the patterns must be proper Unicode too. You should be aware of the XML encoding issues, preferably use a good Unicode editor.</p>
 <p>Note that FOP does not do Unicode character normalization. If you use combining chars for accents and other character decorations, you must declare character classes for them, and use the same sequence of base character and combining marks in the XSLFO source, otherwise the pattern wouldn't match. Fortunately, Unicode provides precomposed characters for all important cases in common languages, until now nobody run seriously into this issue. Some dead languages and dialects, especially ancient ones, may pose a real problem though.</p>
-<p>If you want to generate your own patterns, an open-source utility called patgen is available on many Unix/Linux distributions and every TeX distribution which can be used to assist in creating pattern files from dictionaries. Pattern creation for languages like english or german is an art. If you can, read Frank Liang's original paper "Word Hy-phen-a-tion by Com-pu-ter" (yes, with hyphens). It is not available online. The original patgen.web source, included in the TeX source distributions, contains valuable comments, unfortunately technical details obscure often the high level issues. Another important source is <a href="http://www.ctan.org/tex-archive/systems/knuth/tex/texbook.tex">The TeX Book</a> , appendix H (either read the TeX source, or run it through TeX to typeset it). Secondary articles, for example the works by Petr Sojka, may also give some much needed insight into problems arising in automated hyphenation.</p></div></div>
+<p>If you want to generate your own patterns, an open-source utility called patgen is available on many Unix/Linux distributions and every TeX distribution which can be used to assist in creating pattern files from dictionaries. Pattern creation for languages like english or german is an art. If you can, read Frank Liang's original paper "Word Hy-phen-a-tion by Com-pu-ter" (yes, with hyphens). It is not available online. The original patgen.web source, included in the TeX source distributions, contains valuable comments, unfortunately technical details obscure often the high level issues. Another important source is <a href="http://www.ctan.org/tex-archive/systems/knuth/tex/texbook.tex">The TeX Book</a> , appendix H (either read the TeX source, or run it through TeX to typeset it). Secondary articles, for example the works by Petr Sojka, may also give some much needed insight into problems arising in automated hyphenation.</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">

Modified: websites/staging/xmlgraphics/trunk/content/fop/0.95/index.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/0.95/index.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/0.95/index.html Wed Apr 18 06:04:36 2012
@@ -11,7 +11,21 @@
 -->
     <link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css">
 
+    <style type="text/css">
+    
     </style>
+    <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
+    <script type="text/javascript">
+    $(document).ready(function(){
+        $('ul#navigation a').each(function() {
+		    if (this.href === window.location.href)
+			    { $(this). attr('id', 'forefront');} 
+        });
+        $('ul#navigation a#forefront').each(function() {
+        	
+        });
+    })
+    </script>
 
     
 
@@ -24,7 +38,7 @@
 	  </div>
 
 	  <div id="navigation">
-	  <h1 id="xml-graphics">XML Graphics</h1>
+	  <h1 id="xml-graphics-site">XML Graphics Site</h1>
 <ul>
 <li><a href="/">Overview</a></li>
 <li><a href="/team.html">Who We Are</a></li>
@@ -309,19 +323,23 @@
 	  </div>
 	
 	  <div id="bannertext">
-        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="220" heigh="51" /></a>
+        <a href="/"><img src="/images/apache-xml-graphics.gif" alt="The Apache XML Graphics Project" width="226" heigh="51" /></a>
         <h1>Apache™ FOP Version 0.95</h1>
       </div>
-        <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></p>
       </div>
-      <div id="content" class="grid_16"><div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      
+      <div id="content" class="grid_16">
+      	<div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/0.95/">0.95</a></div>
+      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
 <h1 id="intro">Introduction</h1>
 <p>The Apache™ FOP team is proud to present to you this production quality release. We're still in the process of adding new features. We welcome any feedback you might have and even more, any other form of help to get the project forward.</p>
 <p>This sixth release contains many bug fix release and new features compared to 0.94. To see what has changed since the last release, please visit the <a href="changes_0.95.html">Changes Page</a> and the <a href="releaseNotes_0.95.html">Release Notes</a> .</p>
 <h1 id="upgrading">Upgrading from an earlier version</h1>
 <p>If you're upgrading to this version from an earlier version of FOP, please read the information contained on the <a href="upgrading.html">Upgrading page</a> !</p>
 <h1 id="download">Download</h1>
-<p>To download this version, please visit the <a href="../download.html">download page</a> .</p></div></div>
+<p>To download this version, please visit the <a href="../download.html">download page</a> .</p></div>
+      </div>
+      
       <div class="clear"></div>
 
 	  <div id="footer">



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