Author: jukka
Date: Fri Feb 12 20:50:07 2010
New Revision: 909602
URL: http://svn.apache.org/viewvc?rev=909602&view=rev
Log:
site: Fix broken javadoc links.
Modified:
pdfbox/trunk/src/site/xdoc/userguide/bookmarks.xml
pdfbox/trunk/src/site/xdoc/userguide/file_references.xml
pdfbox/trunk/src/site/xdoc/userguide/highlighting.xml
pdfbox/trunk/src/site/xdoc/userguide/metadata.xml
pdfbox/trunk/src/site/xdoc/userguide/text_extraction.xml
Modified: pdfbox/trunk/src/site/xdoc/userguide/bookmarks.xml
URL:
http://svn.apache.org/viewvc/pdfbox/trunk/src/site/xdoc/userguide/bookmarks.xml?rev=909602&r1=909601&r2=909602&view=diff
==============================================================================
--- pdfbox/trunk/src/site/xdoc/userguide/bookmarks.xml (original)
+++ pdfbox/trunk/src/site/xdoc/userguide/bookmarks.xml Fri Feb 12 20:50:07 2010
@@ -22,8 +22,8 @@
<body>
<section name="Accessing PDF Bookmarks">
<p>
- See package:<a
href="../javadoc/org/apache/pdfbox/pdmodel/interactive/documentnavigation/outline/package-summary.html">org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline</a>
<br/>
- See example:<a
href="../javadoc/org/apache/pdfbox/examples/pdmodel/PrintBookmarks.html">PrintBookmarks</a>
+ See package:<a
href="../apidocs/org/apache/pdfbox/pdmodel/interactive/documentnavigation/outline/package-summary.html">org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline</a>
<br/>
+ See example:<a
href="../apidocs/org/apache/pdfbox/examples/pdmodel/PrintBookmarks.html">PrintBookmarks</a>
</p>
<p>
A PDF can contain an outline of a document and jump to pages within a
PDF document.
@@ -32,7 +32,7 @@
<p>
To access the root of the outline you go through the
- <a
href="../javadoc/org/apache/pdfbox/pdmodel/PDDocumentCatalog.html">PDDocumentOutline</a>
+ <a
href="../apidocs/org/apache/pdfbox/pdmodel/PDDocumentCatalog.html">PDDocumentOutline</a>
</p>
<source>
PDDocument doc = PDDocument.load( ... );
@@ -60,7 +60,7 @@
<title>Creating Bookmarks</title>
<p>
<p>
- See example:<a
href="../javadoc/org/apache/pdfbox/examples/pdmodel/CreateBookmarks.html">CreateBookmarks</a>
+ See example:<a
href="../apidocs/org/apache/pdfbox/examples/pdmodel/CreateBookmarks.html">CreateBookmarks</a>
</p>
Creating bookmarks is just as easy. You first need to create the
PDDocumentOutline and then
add some PDOutlineItem objects to it.
Modified: pdfbox/trunk/src/site/xdoc/userguide/file_references.xml
URL:
http://svn.apache.org/viewvc/pdfbox/trunk/src/site/xdoc/userguide/file_references.xml?rev=909602&r1=909601&r2=909602&view=diff
==============================================================================
--- pdfbox/trunk/src/site/xdoc/userguide/file_references.xml (original)
+++ pdfbox/trunk/src/site/xdoc/userguide/file_references.xml Fri Feb 12
20:50:07 2010
@@ -22,8 +22,8 @@
<body>
<section name="PDF File Specification">
<p>
- See package:<a
href="../javadoc/org/apache/pdfbox/pdmodel/common/filespecification/package-summary.html">org.apache.pdfbox.pdmodel.common.filespecification</a>
<br/>
- See example:<a
href="../javadoc/org/apache/pdfbox/examples/pdmodel/EmbeddedFiles.html">EmbeddedFiles</a>
+ See package:<a
href="../apidocs/org/apache/pdfbox/pdmodel/common/filespecification/package-summary.html">org.apache.pdfbox.pdmodel.common.filespecification</a>
<br/>
+ See example:<a
href="../apidocs/org/apache/pdfbox/examples/pdmodel/EmbeddedFiles.html">EmbeddedFiles</a>
</p>
<p>
A PDF can contain references to external files via the file system or a
URL to a remote location.
@@ -31,9 +31,9 @@
</p>
<p>
There are two classes that can be used when referencing a file.
- <a
href="../javadoc/org/apache/pdfbox/examples/pdmodel/common/filespecification/PDSimpleFileSpecification.html">PDSimpleFileSpecification</a>
+ <a
href="../apidocs/org/apache/pdfbox/examples/pdmodel/common/filespecification/PDSimpleFileSpecification.html">PDSimpleFileSpecification</a>
is a simple string reference to a file(e.g. "./movies/BigMovie.avi").
The simple file specification does not allow for any parameters to be
- set. The <a
href="../javadoc/org/apache/pdfbox/examples/pdmodel/common/filespecification/PDComplexFileSpecification.html">PDComplexFileSpecification</a>
+ set. The <a
href="../apidocs/org/apache/pdfbox/examples/pdmodel/common/filespecification/PDComplexFileSpecification.html">PDComplexFileSpecification</a>
is more feature rich and allows for advanced settings on the file
reference.
</p>
Modified: pdfbox/trunk/src/site/xdoc/userguide/highlighting.xml
URL:
http://svn.apache.org/viewvc/pdfbox/trunk/src/site/xdoc/userguide/highlighting.xml?rev=909602&r1=909601&r2=909602&view=diff
==============================================================================
--- pdfbox/trunk/src/site/xdoc/userguide/highlighting.xml (original)
+++ pdfbox/trunk/src/site/xdoc/userguide/highlighting.xml Fri Feb 12 20:50:07
2010
@@ -49,7 +49,7 @@
<br/>
Basically the document allows you to tell it the characters to
highlight in the PDF by using character
offsets on a page. As this is just an XML document, there are many
ways you could create it but PDFBox does have a utility to make it
- easier. Take a look at the javadoc for the <a
href="../javadoc/org/apache/pdfbox/util/PDFHighlighter.html">PDFHighlighter</a>
class. This will
+ easier. Take a look at the javadoc for the <a
href="../apidocs/org/apache/pdfbox/util/PDFHighlighter.html">PDFHighlighter</a>
class. This will
allow you specify a set of words that you want have highlighted and
generate the XML document for you. <br/>
<br/>
PDFBox also ships with a complete
Modified: pdfbox/trunk/src/site/xdoc/userguide/metadata.xml
URL:
http://svn.apache.org/viewvc/pdfbox/trunk/src/site/xdoc/userguide/metadata.xml?rev=909602&r1=909601&r2=909602&view=diff
==============================================================================
--- pdfbox/trunk/src/site/xdoc/userguide/metadata.xml (original)
+++ pdfbox/trunk/src/site/xdoc/userguide/metadata.xml Fri Feb 12 20:50:07 2010
@@ -23,8 +23,8 @@
<body>
<section name="Accessing PDF Metadata">
<p>
- See class:<a
href="../javadoc/org/apache/pdfbox/pdmodel/common/PDMetadata.html">org.apache.pdfbox.pdmodel.common.PDMetadata</a>
<br/>
- See example:<a
href="../javadoc/org/apache/pdfbox/examples/pdmodel/AddMetadataFromDocInfo.html">AddMetadataFromDocInfo</a>
<br/>
+ See class:<a
href="../apidocs/org/apache/pdfbox/pdmodel/common/PDMetadata.html">org.apache.pdfbox.pdmodel.common.PDMetadata</a>
<br/>
+ See example:<a
href="../apidocs/org/apache/pdfbox/examples/pdmodel/AddMetadataFromDocInfo.html">AddMetadataFromDocInfo</a>
<br/>
See Adobe Documentation:<a
href="http://partners.adobe.com/public/developer/en/xmp/sdk/xmpspecification.pdf">XMP
Specification</a>
</p>
<p>
Modified: pdfbox/trunk/src/site/xdoc/userguide/text_extraction.xml
URL:
http://svn.apache.org/viewvc/pdfbox/trunk/src/site/xdoc/userguide/text_extraction.xml?rev=909602&r1=909601&r2=909602&view=diff
==============================================================================
--- pdfbox/trunk/src/site/xdoc/userguide/text_extraction.xml (original)
+++ pdfbox/trunk/src/site/xdoc/userguide/text_extraction.xml Fri Feb 12
20:50:07 2010
@@ -23,14 +23,14 @@
<body>
<section name="Extracting Text">
<p>
- See class:<a
href="../javadoc/org/apache/pdfbox/util/PDFTextStripper.html">org.apache.pdfbox.util.PDFTextStripper</a>
<br/>
- See class:<a
href="../javadoc/org/apache/pdfbox/searchengine/lucene/LucenePDFDocument.html">org.apache.pdfbox.searchengine.lucene.LucenePDFDocument</a>
<br/>
+ See class:<a
href="../apidocs/org/apache/pdfbox/util/PDFTextStripper.html">org.apache.pdfbox.util.PDFTextStripper</a>
<br/>
+ See class:<a
href="../apidocs/org/apache/pdfbox/searchengine/lucene/LucenePDFDocument.html">org.apache.pdfbox.searchengine.lucene.LucenePDFDocument</a>
<br/>
See command line app:<a
href="../commandlineutilities/ExtractText.html">ExtractText</a> <br/>
</p>
<p>
One of the main features of PDFBox is its ability to quickly and
accurately extract text from a variety of PDF documents.
- This functionality is encapsulated in the <a
href="../javadoc/org/apache/pdfbox/util/PDFTextStripper.html">org.apache.pdfbox.util.PDFTextStripper</a>
and
- can be easily executed on the command line with <a
href="../javadoc/org/apache/pdfbox/ExtractText.html">org.apache.pdfbox.ExtractText</a>.
+ This functionality is encapsulated in the <a
href="../apidocs/org/apache/pdfbox/util/PDFTextStripper.html">org.apache.pdfbox.util.PDFTextStripper</a>
and
+ can be easily executed on the command line with <a
href="../apidocs/org/apache/pdfbox/ExtractText.html">org.apache.pdfbox.ExtractText</a>.
</p>
<section name="Lucene Integration">
<p><a
href="http://lucene.apache.org/java/docs/index.html">Lucene</a> is an open
source text search library from the Apache Jakarta Project.
@@ -42,7 +42,7 @@
<p>
Now that you hava a Lucene Document object, you can add it to the
Lucene index just like you would if it had been
created from a text or HTML file.
- The <a
href="../javadoc/org/apache/pdfbox/searchengine/lucene/LucenePDFDocument.html">LucenePDFDocument</a>
automatically extracts
+ The <a
href="../apidocs/org/apache/pdfbox/searchengine/lucene/LucenePDFDocument.html">LucenePDFDocument</a>
automatically extracts
a variety of metadata fields from the PDF to be added to the index,
the javadoc shows details on those fields.
This approach is very simple and should be sufficient for most
users, if not then you can use some of the advanced text extraction
techniques described in the next section.
@@ -51,7 +51,7 @@
<section name="Advanced Text Extraction">
<p>Some applications will have complex text extraction requiments
and neither the command line application nor the LucenePDFDocument
will be able to fulfill those requirements. It is possible for
users to utilize or extend the
- <a
href="../javadoc/org/apache/pdfbox/util/PDFTextStripper.html">PDFTextStripper</a>
class to meet some of these requirements.</p>
+ <a
href="../apidocs/org/apache/pdfbox/util/PDFTextStripper.html">PDFTextStripper</a>
class to meet some of these requirements.</p>
<section>
<title>Limiting The Extracted Text</title>
<p>
@@ -135,7 +135,7 @@
<p>Some PDF files need to map between glyph names and Unicode
values during text extraction. PDFBox comes with an <a
href="http://partners.adobe.com/public/developer/en/opentype/glyphlist.txt">Adobe
Glyph List</a>, but you may encounter files with glyph names that are not in
that map. To use your own glyphlist file, supply the file name to the
<tt>glyphlist_ext</tt> JVM property. </p>
</section>
<section name="Right to Left Text">
- <p>Extracting text in languages whose text goes from right to
left (such as Arabic and Hebrew) in PDF files can result in text that is
backwards. PDFBox can normalize and reverse the text if the <a
href="http://icu-project.org/">ICU4J</a> jar file has been placed on the
classpath (it is an optional dependency). Note that you should also enable
sorting with either <a
href="../javadoc/org/apache/pdfbox/util/PDFTextStripper.html">org.apache.pdfbox.util.PDFTextStripper</a>
or <a
href="../javadoc/org/apache/pdfbox/ExtractText.html">org.apache.pdfbox.ExtractText</a>
to ensure accurate output.</p>
+ <p>Extracting text in languages whose text goes from right to
left (such as Arabic and Hebrew) in PDF files can result in text that is
backwards. PDFBox can normalize and reverse the text if the <a
href="http://icu-project.org/">ICU4J</a> jar file has been placed on the
classpath (it is an optional dependency). Note that you should also enable
sorting with either <a
href="../apidocs/org/apache/pdfbox/util/PDFTextStripper.html">org.apache.pdfbox.util.PDFTextStripper</a>
or <a
href="../apidocs/org/apache/pdfbox/ExtractText.html">org.apache.pdfbox.ExtractText</a>
to ensure accurate output.</p>
</section>
</section>