]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
fixed some broken links
authorKeiron Liddle <keiron@apache.org>
Wed, 20 Nov 2002 11:01:38 +0000 (11:01 +0000)
committerKeiron Liddle <keiron@apache.org>
Wed, 20 Nov 2002 11:01:38 +0000 (11:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195573 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/design/layout.xml
src/documentation/content/xdocs/dev/extensions.xml
src/documentation/content/xdocs/dev/faq.xml
src/documentation/content/xdocs/resources.xml

index 1d99728f34579bee735a7ad977d0935bf81aacaf..207abbd807e02bf93d4805902c6a9983bedfbb67 100644 (file)
@@ -120,7 +120,7 @@ n(orphans) + n(widows) in total. This will only be relevant for areas at
 the start or end of a particular reference area.
    </p>
   <p>
-   <img src="page.svg" alt="Diagram of Page Layout"/>
+   <!--img src="page.svg" alt="Diagram of Page Layout"/-->
   </p>
   <p>
 The spacing between the areas (including spacing in block areas inside
@@ -268,7 +268,7 @@ also effected as there must be enough space on the page to fit the
 side float.
   </p>
   <p>
-<img src="float.svg" alt="Diagram of Float"/>
+<!--img src="float.svg" alt="Diagram of Float"/-->
   </p>
   </section>
 <section>
index e49d8161f7dce00461710c215e3a7fb2be47ac26..3b7ab1bbf21f1a611bedf3fd86a6d5ab5774627d 100644 (file)
@@ -85,9 +85,9 @@ your element mappings class. This class must implement the
 </p>
 <p>
 Create your fo file with the extra xml data embedded in the file
-with the correct name space. The examples for svg and
-<link href="pdfoutline.pdf">pdfoutline.pdf</link>
-show how this can be done.
+with the correct name space. The pdf documents on the fob site
+use this extension, see <link href="examples.html">Examples</link>
+for more examples.
 </p>
 <p>
 Put your jar file in the classpath and then run fop over the fo file.
index f8553604850465e0dff865d59cba79b3a394e469..20c04de65924b574806637db20c596d3ab52bd89 100644 (file)
       <question>How can I contribute?</question>
       <answer>
         <p>
-          There is always plenty of things to do. See <link>limitations</link>
-          and <link>bugzilla</link>.
+          There is always plenty of things to do. See <link href="../limitations.html">limitations</link>
+          and <link href="../resources.html">bugzilla</link>.
         </p>
       </answer>
     </faq>
       <answer>
         <p>
           FOP was changed to be in accordance with the latest standard
-          (see <link href="resources.html#w3-xsl">XSL
+          (see <link href="../resources.html#w3-xsl">XSL
           standard</link>).The page master for a fo:page-sequence is
           now refereced by the master-reference attribute. Replace the
           master-name attributes of your fo:page-sequence elements by
           master definitions.
         </p>
         <p>
-          See also <link>release notes</link>.
+          See also <link href="../relnotes.html">release notes</link>.
         </p>
       </answer>
     </faq>
           The Jimi image library, which is used for processing images in PNG and
           other formats, was removed from the distribution for licensing
           reasons. You have to <fork href="http://java.sun.com">download</fork>
-          and <link>install</link> it by yourself.
+          and install it by yourself.
         </p>
       </answer>
     </faq>
     <faq>
       <question>I get a NoClassDefFound exception.</question>
       <answer>
-        <p>This is typically a problem with your <link>classpath</link>.</p>
+        <p>This is typically a problem with your classpath.</p>
         <p>If you are running FOP from the command line:</p>
         <ul>
           <li>
         </p>
         <ul>
           <li>
-            Avoid forward <link>references</link>. Forward references cause all
+            Avoid forward references. Forward references cause all
             pages from the page with the reference on to be held in memory until
             the page with the referenced element is encountered. Common forward
             references are table of contents at the beginning of the document
-            and the <link>"page N of TOTAL"</link> in footers. Forward
+            and the <link href="#pagenum">"page N of TOTAL"</link> in footers. Forward
             references may be required by the task, however, if you are getting
             a memory overflow you should at least check whether this is really
             as necessary as claimed. A TOC, for example, could often be placed
             possibly be freed after the page sequence has been rendered.
           </li>
           <li>
-            Increase <link>memory settings of the JVM</link>. Be aware that it
+            Increase memory settings of the JVM. Be aware that it
             is usually unwise to increase the memory allocated to the JVM beyond
             the amount of physical RAM, it will significantly slow down. YMMV.
           </li>
           in the available space, like big images and improperly specified width
           of nested block elements. Look for such stuff and correct it.
         </p>
-        <p>
-          Reducing memory consumption in general and squishing bugs is an
-          ongoing effort, partially addressed in the <link>redesign</link>.
-        </p>
       </answer>
     </faq>
     <faq>
       <question>I get a MalformedURLException.</question>
       <answer>
+        <anchor id="MalformedURL"/>
         <p>
           What you probably think of as "file names" are usually URLs, in
           particular the src attribute of fo:external-graphic.
           not a file name.
         </p>
         <p>
-          Relative URLs are resolved against the baseDir property of FOP. For
-          the command line FOP application, the baseDir is the directory of the
+          Relative URLs are resolved against a base url. For
+          the command line FOP application, the base is the directory of the
           input file, either the FO file or the XML source. If FOP is used
-          embedded in a servlet, <link>baseDir can be set explicitely</link>. If
-          it's not set, it is usually the current working directory of the
-          process which runs FOP.
+          embedded in a servlet you will need to set the base url on
+          the user agent.
         </p>
         <p>
           See <link>Understanding URIs and URLs</link> and <link>Understanding
@@ -624,14 +620,13 @@ transformer.transform(xmlsource, new SAXResult(driver.getContentHandler()));</so
       </answer>
     </faq>
     <faq>
-      <question>How do I set the baseDir property in a servlet environment?</question>
+      <question>How do I set the base URL in a servlet environment?</question>
       <answer>
         <p>
           Use:
         </p>
         <p>
           You need to use the FOUserAgent that contains a base url.
-          for caveats.
         </p>
       </answer>
     </faq>
@@ -797,7 +792,7 @@ transformer.transform(xmlsource, new SAXResult(driver.getContentHandler()));</so
           but also some effort by a standard committee in order to make the
           semantics of this kind of references in embedded SVG clearer.
         </p>
-        <p>See also <link>MalformedURLException</link></p>
+        <p>See also <link href="#MalformedURL">MalformedURLException</link></p>
       </answer>
     </faq>
   </part>
@@ -1181,6 +1176,7 @@ transformer.transform(xmlsource, new SAXResult(driver.getContentHandler()));</so
       <question>(FO) How do I print the total number of pages, like in "page 1
       of 12"</question>
       <answer>
+        <anchor id="pagenum"/>
         <p>
           (XSL FAQ)
         </p>
@@ -1334,7 +1330,7 @@ class rendtest {
           offending characters.
         </p>
         <p>
-          Refer to the <link>XML specification</link> or to a good tutorial for
+          Refer to the <link href="../resources.html">XML specification</link> or to a good tutorial for
           details of the XML file format.
         </p>
       </answer>
index c06f488393f864d1c102a913bc030af485d79133..289e68b14d4830c30173ab3c07e95cc2968eefd5 100644 (file)
@@ -52,7 +52,7 @@ To subscribe fully: Send email to <link href="mailto:fop-user-subscribe@xml.apac
 For standard help: Send email to <link href="mailto:fop-user-help@xml.apache.org">fop-user-help@xml.apache.org</link>.
             </li>
             <li>
-To unsubscribe: Send email to <link href="fop-user-unsubscribe@xml.apache.org">fop-user-unsubscribe@xml.apache.org</link>.
+To unsubscribe: Send email to <link href="mailto:fop-user-unsubscribe@xml.apache.org">fop-user-unsubscribe@xml.apache.org</link>.
             </li>
       </ul>
     </section>
@@ -86,7 +86,7 @@ To subscribe fully: Send email to <link href="mailto:fop-dev-subscribe@xml.apach
 For standard help: Send email to <link href="mailto:fop-dev-help@xml.apache.org">fop-dev-help@xml.apache.org</link>.
             </li>
             <li>
-To unsubscribe: Send email to <link href="fop-dev-unsubscribe@xml.apache.org">fop-dev-unsubscribe@xml.apache.org</link>.
+To unsubscribe: Send email to <link href="mailto:fop-dev-unsubscribe@xml.apache.org">fop-dev-unsubscribe@xml.apache.org</link>.
             </li>
       </ul>
     </section>