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 2010/11/08 12:59:38 UTC

svn commit: r1032553 [12/12] - in /xmlgraphics/site/deploy/fop: ./ 0.95/ 1.0/ dev/ dev/design/ dev/fo/ dev/svg/ fo/ skin/ trunk/

Modified: xmlgraphics/site/deploy/fop/trunk/servlets.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/servlets.html?rev=1032553&r1=1032552&r2=1032553&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/servlets.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/servlets.html Mon Nov  8 11:59:27 2010
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9-dev">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Servlets</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -200,6 +200,7 @@ document.write("Last Published: " + docu
 </div>
 <h1>Servlets</h1>
 <h3>How to use Apache FOP in a Servlet</h3>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -247,8 +248,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10014"></a><a name="overview"></a>
+<a name="N10015"></a><a name="overview"></a>
 <h2 class="underlined_10">Overview</h2>
 <div class="section">
 <p>
@@ -256,7 +258,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N1001E"></a><a name="example-servlets"></a>
+<a name="N1001F"></a><a name="example-servlets"></a>
 <h2 class="underlined_10">Example Servlets in the FOP distribution</h2>
 <div class="section">
 <p>
@@ -287,7 +289,7 @@ document.write("Last Published: " + docu
 </div>
 </div>
     
-<a name="N1003C"></a><a name="servlet"></a>
+<a name="N1003D"></a><a name="servlet"></a>
 <h2 class="underlined_10">Create your own Servlet</h2>
 <div class="section">
 <div class="note">
@@ -296,7 +298,7 @@ document.write("Last Published: " + docu
         This section assumes you are familiar with <a href="embedding.html">embedding FOP</a>.
       </div>
 </div>
-<a name="N10049"></a><a name="minimal-servlet"></a>
+<a name="N1004A"></a><a name="minimal-servlet"></a>
 <h3 class="underlined_5">A minimal Servlet</h3>
 <p>
           Here is a minimal code snippet to demonstrate the basics:
@@ -325,7 +327,7 @@ public void doGet(HttpServletRequest req
           See below for details.
         </div>
 </div>
-<a name="N1005A"></a><a name="xslt"></a>
+<a name="N1005B"></a><a name="xslt"></a>
 <h3 class="underlined_5">Adding XSL tranformation (XSLT)</h3>
 <p>
           A common requirement is to transform an XML source to
@@ -389,12 +391,12 @@ public void init() throws ServletExcepti
           Because you have an explicit <span class="codefrag">Transformer</span> object, you can also use it to 
           explicitely set parameters for the transformation run.
         </p>
-<a name="N1007A"></a><a name="cfg"></a>
+<a name="N1007B"></a><a name="cfg"></a>
 <h3 class="underlined_5">Custom configuration</h3>
 <p>
           You can easily set up your own FOUserAgent as demonstrated on the <a href="embedding.html">Embedding page</a>.
         </p>
-<a name="N10088"></a><a name="performance"></a>
+<a name="N10089"></a><a name="performance"></a>
 <h3 class="underlined_5">Improving performance</h3>
 <p>
           There are several options to consider:
@@ -421,7 +423,7 @@ public void init() throws ServletExcepti
           <a href="embedding.html#performance">performance hints from the Embedding page</a>
           apply here, too.
         </p>
-<a name="N100A9"></a><a name="uriresolver"></a>
+<a name="N100AA"></a><a name="uriresolver"></a>
 <h3 class="underlined_5">Accessing resources in your web application</h3>
 <p>
           Often, you will want to use resources (stylesheets, images etc.) which are bundled with
@@ -491,7 +493,7 @@ Transformer transformer = this.transFact
 transformer.setURIResolver(this.uriResolver);</pre>
 </div>
     
-<a name="N100D7"></a><a name="ie"></a>
+<a name="N100D8"></a><a name="ie"></a>
 <h2 class="underlined_10">Notes on Microsoft Internet Explorer</h2>
 <div class="section">
 <p>
@@ -538,7 +540,7 @@ transformer.setURIResolver(this.uriResol
 </ul>
 </div>
     
-<a name="N10108"></a><a name="servlet-engine"></a>
+<a name="N10109"></a><a name="servlet-engine"></a>
 <h2 class="underlined_10">Servlet Engines</h2>
 <div class="section">
 <p>
@@ -546,13 +548,13 @@ transformer.setURIResolver(this.uriResol
         with existing XML/XSLT libraries. Servlet containers also often use their own classloaders 
         for loading webapps, which can cause bugs and security problems.
       </p>
-<a name="N10111"></a><a name="tomcat"></a>
+<a name="N10112"></a><a name="tomcat"></a>
 <h3 class="underlined_5">Tomcat</h3>
 <p>
           Check Tomcat's documentation for detailed instructions about installing FOP and Cocoon.
           There are known bugs that must be addressed, particularly for Tomcat 4.0.3.
         </p>
-<a name="N1011B"></a><a name="websphere"></a>
+<a name="N1011C"></a><a name="websphere"></a>
 <h3 class="underlined_5">WebSphere 3.5</h3>
 <p>
           Put a copy of a working parser in some directory where WebSphere can access it.
@@ -568,7 +570,7 @@ transformer.setURIResolver(this.uriResol
         </p>
 </div>
     
-<a name="N10126"></a><a name="complex-usecases"></a>
+<a name="N10127"></a><a name="complex-usecases"></a>
 <h2 class="underlined_10">Handling complex use cases</h2>
 <div class="section">
 <p>

Modified: xmlgraphics/site/deploy/fop/trunk/servlets.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/servlets.pdf?rev=1032553&r1=1032552&r2=1032553&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/servlets.pdf (original) and xmlgraphics/site/deploy/fop/trunk/servlets.pdf Mon Nov  8 11:59:27 2010 differ

Modified: xmlgraphics/site/deploy/fop/trunk/servlets.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/servlets.xml?rev=1032553&r1=1032552&r2=1032553&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/servlets.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/servlets.xml Mon Nov  8 11:59:27 2010
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Servlets</title>
     <subtitle>How to use Apache FOP in a Servlet</subtitle>
@@ -319,4 +319,4 @@ transformer.setURIResolver(this.uriResol
       </p>
     </section>
   </body>
-</document>
+</document>
\ No newline at end of file

Modified: xmlgraphics/site/deploy/fop/trunk/upgrading.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/upgrading.html?rev=1032553&r1=1032552&r2=1032553&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/upgrading.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/upgrading.html Mon Nov  8 11:59:27 2010
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9-dev">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Upgrading from an Earlier Version of Apache FOP</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -199,6 +199,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Upgrading from an Earlier Version of Apache FOP</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -209,8 +210,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10011"></a><a name="important"></a>
+<a name="N10012"></a><a name="important"></a>
 <h2 class="underlined_10">Important!</h2>
 <div class="section">
 <p>
@@ -291,7 +293,7 @@ document.write("Last Published: " + docu
 </ul>
 </div>
     
-<a name="N10054"></a><a name="issues"></a>
+<a name="N10055"></a><a name="issues"></a>
 <h2 class="underlined_10">What you need to know when you upgrade!</h2>
 <div class="section">
 <p>

Modified: xmlgraphics/site/deploy/fop/trunk/upgrading.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/upgrading.pdf?rev=1032553&r1=1032552&r2=1032553&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/upgrading.pdf (original) and xmlgraphics/site/deploy/fop/trunk/upgrading.pdf Mon Nov  8 11:59:27 2010 differ

Modified: xmlgraphics/site/deploy/fop/trunk/upgrading.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/upgrading.xml?rev=1032553&r1=1032552&r2=1032553&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/upgrading.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/upgrading.xml Mon Nov  8 11:59:27 2010
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Upgrading from an Earlier Version of Apache FOP</title>
     <version>$Revision: 911800 $</version>
@@ -122,4 +122,4 @@
       </ul>
     </section>
   </body>
-</document>
+</document>
\ No newline at end of file



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