Author: jeremias
Date: Wed Jan 7 00:49:29 2009
New Revision: 732274
URL: http://svn.apache.org/viewvc?rev=732274&view=rev
Log:
Give javadoc utility some more memory to avoid OutOfMemoryErrors.
Some additional package description and better package grouping.
Handle @event.severity tag.
Added:
xmlgraphics/fop/trunk/src/java/org/apache/fop/events/model/package.html
(with props)
xmlgraphics/fop/trunk/src/java/org/apache/fop/events/package.html (with
props)
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/substitute/package.html
(with props)
xmlgraphics/fop/trunk/src/java/org/apache/fop/text/linebreak/package.html
(with props)
xmlgraphics/fop/trunk/src/java/org/apache/fop/util/text/package.html
(with props)
Modified:
xmlgraphics/fop/trunk/build.xml
Modified: xmlgraphics/fop/trunk/build.xml
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/build.xml?rev=732274&r1=732273&r2=732274&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/build.xml (original)
+++ xmlgraphics/fop/trunk/build.xml Wed Jan 7 00:49:29 2009
@@ -988,7 +988,7 @@
<property name="javadoc.level" value=""/>
<echo message="Producing the javadoc files${javadoc.level}"/>
<mkdir dir="${build.javadocs.dir}"/>
- <javadoc packagenames="${javadoc.packages}"
destdir="${build.javadocs.dir}" author="true" version="true"
windowtitle="${Name} ${version} API" doctitle="Apache Formatting Objects
Processor (FOP)" bottom="Copyright ${year} The Apache Software Foundation. All
Rights Reserved." overview="${src.dir}/java/org/apache/fop/overview.html"
use="true" failonerror="true" source="${javac.source}"
public="${javadoc.public}" package="${javadoc.package}"
private="${javadoc.private}">
+ <javadoc packagenames="${javadoc.packages}"
destdir="${build.javadocs.dir}" author="true" version="true"
windowtitle="${Name} ${version} API" doctitle="Apache Formatting Objects
Processor (FOP)" bottom="Copyright ${year} The Apache Software Foundation. All
Rights Reserved." overview="${src.dir}/java/org/apache/fop/overview.html"
use="true" failonerror="true" source="${javac.source}"
public="${javadoc.public}" package="${javadoc.package}"
private="${javadoc.private}" maxmemory="128M">
<header><![CDATA[${name} ${version}]]></header>
<footer><![CDATA[${name} ${version}]]></footer>
<classpath>
@@ -1001,6 +1001,7 @@
<pathelement path="${build.gensrc.dir}"/>
</sourcepath>
<tag name="todo" scope="all" description="To do:"/>
+ <tag name="event.severity" scope="all" description="Event severity
level:"/>
<group title="Control and Startup">
<package name="org.apache.fop"/>
<package name="org.apache.fop.apps"/>
@@ -1032,17 +1033,31 @@
<package name="org.apache.fop.render.rtf"/>
<package name="org.apache.fop.render.mif"/>
</group>
+ <group title="Fonts">
+ <package name="org.apache.fop.fonts"/>
+ <package name="org.apache.fop.fonts.*"/>
+ </group>
+ <group title="Events">
+ <package name="org.apache.fop.events"/>
+ <package name="org.apache.fop.events.*"/>
+ </group>
<group title="Utility">
<package name="org.apache.fop.hyphenation"/>
- <package name="org.apache.fop.pdf"/>
<package name="org.apache.fop.tools"/>
<package name="org.apache.fop.tools.*"/>
- <package name="org.apache.fop.svg"/>
<package name="org.apache.fop.image"/>
<package name="org.apache.fop.image.*"/>
- <package name="org.apache.fop.fonts"/>
- <package name="org.apache.fop.fonts.*"/>
+ <package name="org.apache.fop.text.*"/>
<package name="org.apache.fop.util"/>
+ <package name="org.apache.fop.util.*"/>
+ </group>
+ <group title="AFP library">
+ <package name="org.apache.fop.afp"/>
+ <package name="org.apache.fop.afp.*"/>
+ </group>
+ <group title="PDF library">
+ <package name="org.apache.fop.pdf"/>
+ <package name="org.apache.fop.svg"/>
</group>
<group title="RTFLib (formerly JFor) Subpackage Candidate">
<package name="org.apache.fop.render.rtf.rtflib"/>
Added: xmlgraphics/fop/trunk/src/java/org/apache/fop/events/model/package.html
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/events/model/package.html?rev=732274&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/events/model/package.html
(added)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/events/model/package.html Wed
Jan 7 00:49:29 2009
@@ -0,0 +1,23 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- $Id$ -->
+<HTML>
+<TITLE>org.apache.fop.events.model Package</TITLE>
+<BODY>
+<P>Model classes for the event subsystem.</P>
+</BODY>
+</HTML>
\ No newline at end of file
Propchange:
xmlgraphics/fop/trunk/src/java/org/apache/fop/events/model/package.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: xmlgraphics/fop/trunk/src/java/org/apache/fop/events/package.html
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/events/package.html?rev=732274&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/events/package.html (added)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/events/package.html Wed Jan
7 00:49:29 2009
@@ -0,0 +1,23 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- $Id$ -->
+<HTML>
+<TITLE>org.apache.fop.events Package</TITLE>
+<BODY>
+<P>Subsystem for reporting events inside FOP to client applications.</P>
+</BODY>
+</HTML>
\ No newline at end of file
Propchange: xmlgraphics/fop/trunk/src/java/org/apache/fop/events/package.html
------------------------------------------------------------------------------
svn:eol-style = native
Added:
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/substitute/package.html
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/substitute/package.html?rev=732274&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/substitute/package.html
(added)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/substitute/package.html
Wed Jan 7 00:49:29 2009
@@ -0,0 +1,23 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- $Id$ -->
+<HTML>
+<TITLE>org.apache.fop.fonts.substitute Package</TITLE>
+<BODY>
+<P>Font substitution facilities.</P>
+</BODY>
+</HTML>
\ No newline at end of file
Propchange:
xmlgraphics/fop/trunk/src/java/org/apache/fop/fonts/substitute/package.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: xmlgraphics/fop/trunk/src/java/org/apache/fop/text/linebreak/package.html
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/text/linebreak/package.html?rev=732274&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/text/linebreak/package.html
(added)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/text/linebreak/package.html
Wed Jan 7 00:49:29 2009
@@ -0,0 +1,23 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- $Id$ -->
+<HTML>
+<TITLE>org.apache.fop.text.linebreak Package</TITLE>
+<BODY>
+<P>Unicode linebreaking algorithm.</P>
+</BODY>
+</HTML>
\ No newline at end of file
Propchange:
xmlgraphics/fop/trunk/src/java/org/apache/fop/text/linebreak/package.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: xmlgraphics/fop/trunk/src/java/org/apache/fop/util/text/package.html
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/util/text/package.html?rev=732274&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/util/text/package.html (added)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/util/text/package.html Wed
Jan 7 00:49:29 2009
@@ -0,0 +1,23 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!-- $Id$ -->
+<HTML>
+<TITLE>org.apache.fop.util.text Package</TITLE>
+<BODY>
+<P>Message formatting classes.</P>
+</BODY>
+</HTML>
\ No newline at end of file
Propchange: xmlgraphics/fop/trunk/src/java/org/apache/fop/util/text/package.html
------------------------------------------------------------------------------
svn:eol-style = native
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]