Author: tomdz Date: Fri Nov 24 19:46:50 2006 New Revision: 479078 URL: http://svn.apache.org/viewvc?view=rev&rev=479078 Log: Fixed broken links
Modified: db/ddlutils/trunk/build.xml db/ddlutils/trunk/src/antdoc/templates/html/overview.vm db/ddlutils/trunk/src/antdoc/templates/html/task.vm db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/site.xml db/ddlutils/trunk/src/java/org/apache/ddlutils/task/CreateDatabaseCommand.java db/ddlutils/trunk/src/java/org/apache/ddlutils/task/DropDatabaseCommand.java db/ddlutils/trunk/src/java/org/apache/ddlutils/task/Parameter.java Modified: db/ddlutils/trunk/build.xml URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/build.xml?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/build.xml (original) +++ db/ddlutils/trunk/build.xml Fri Nov 24 19:46:50 2006 @@ -237,9 +237,9 @@ <arg line="-error"/> <arg line="-warn"/> <arg line="-out"/> - <arg line="linklint.org"/> + <arg line="linklint.log"/> <arg line="-root"/> - <arg line="${build.doc.dir}"/> + <arg line="${forrest.output.dir}"/> <arg line="/@"/> </exec> </target> Modified: db/ddlutils/trunk/src/antdoc/templates/html/overview.vm URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/antdoc/templates/html/overview.vm?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/src/antdoc/templates/html/overview.vm (original) +++ db/ddlutils/trunk/src/antdoc/templates/html/overview.vm Fri Nov 24 19:46:50 2006 @@ -83,7 +83,7 @@ <legend>Note</legend> <p> Not every database platform supports creation of new databases via JDBC. Please refer to the -documentation <a href="database-support.html">here</a> for details of what is supported +documentation <a href="../database-support.html">here</a> for details of what is supported with individual databases. </p> </fieldset> Modified: db/ddlutils/trunk/src/antdoc/templates/html/task.vm URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/antdoc/templates/html/task.vm?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/src/antdoc/templates/html/task.vm (original) +++ db/ddlutils/trunk/src/antdoc/templates/html/task.vm Fri Nov 24 19:46:50 2006 @@ -36,7 +36,7 @@ <h2>#if ($taskDoc.getAnyCategory().length() > 0) $!taskDoc.getAntCategory() : #end $taskDoc.getAntName()</h2> <fieldset class="taskDescription"> <legend><a class="anchor" name="description">Description</a></legend> -<p>Java type: <a href="../javadoc/${taskDoc.getFullClassName().replace(".", "/")}.html"><code>$taskDoc.getFullClassName()</code></a></p> +<p>Java type: <a href="../api/${taskDoc.getFullClassName().replace(".", "/")}.html"><code>$taskDoc.getFullClassName()</code></a></p> <p>$taskDoc.getComment()</p> </fieldset> <fieldset class="taskParameters"> @@ -82,7 +82,7 @@ #foreach ($element in $taskDoc.getNestedElements()) #set ($elementDoc = $taskDoc.getElementDoc($element)) #if ($elementDoc.sourceIncluded() && $elementDoc.isTagged()) - <p class="taskNestedElementRef">⇒ <a href="${elementDoc.getFullClassName()}.html"><code>$element</code></a></p> + <p class="taskNestedElementRef">⇒ <a href="../api/${elementDoc.getFullClassName().replace(".", "/")}.html"><code>$element</code></a></p> #end #end </fieldset> Modified: db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/site.xml URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/site.xml?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/site.xml (original) +++ db/ddlutils/trunk/src/doc/src/documentation/content/xdocs/site.xml Fri Nov 24 19:46:50 2006 @@ -173,7 +173,7 @@ </sqlserver> <sybase> <sqlserver href="http://www.sybase.com/products/archivedproducts/sqlserver"/> - <ase href="http://www.sybase.com/products/informationmanagement/adaptiveserverenterprise"/> + <ase href="http://www.sybase.com/products/databasemanagement/adaptiveserverenterprise"/> <manual-archive href="http://sybooks.sybase.com/onlinebooks/group-asarc/@Generic__CollectionView;pt=group-asarc"/> <manual href="http://sybooks.sybase.com/as.html"/> </sybase> Modified: db/ddlutils/trunk/src/java/org/apache/ddlutils/task/CreateDatabaseCommand.java URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/task/CreateDatabaseCommand.java?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/src/java/org/apache/ddlutils/task/CreateDatabaseCommand.java (original) +++ db/ddlutils/trunk/src/java/org/apache/ddlutils/task/CreateDatabaseCommand.java Fri Nov 24 19:46:50 2006 @@ -32,7 +32,7 @@ /** * The sub task for creating the target database. Note that this is only supported on some database - * platforms. See <a href="database-support.html">here</a> for details on which platforms support this.<br/> + * platforms. See the database support documentation for details on which platforms support this.<br/> * This sub task does not require schema files. Therefore the <code>fileset</code> subelement and * the <code>schemaFile</code> attribute of the enclosing task can be omitted. * Modified: db/ddlutils/trunk/src/java/org/apache/ddlutils/task/DropDatabaseCommand.java URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/task/DropDatabaseCommand.java?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/src/java/org/apache/ddlutils/task/DropDatabaseCommand.java (original) +++ db/ddlutils/trunk/src/java/org/apache/ddlutils/task/DropDatabaseCommand.java Fri Nov 24 19:46:50 2006 @@ -28,7 +28,7 @@ /** * Sub task for dropping the target database. Note that this is only supported on some database - * platforms. See <a href="database-support.html">here</a> for details on which platforms support this.<br/> + * platforms. See the database support documentation for details on which platforms support this.<br/> * This sub task does not require schema files. Therefore the <code>fileset</code> subelement and * the <code>schemaFile</code> attribute of the enclosing task can be omitted. * Modified: db/ddlutils/trunk/src/java/org/apache/ddlutils/task/Parameter.java URL: http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/task/Parameter.java?view=diff&rev=479078&r1=479077&r2=479078 ============================================================================== --- db/ddlutils/trunk/src/java/org/apache/ddlutils/task/Parameter.java (original) +++ db/ddlutils/trunk/src/java/org/apache/ddlutils/task/Parameter.java Fri Nov 24 19:46:50 2006 @@ -52,8 +52,8 @@ } /** - * Specifies the name of the parameter. See <a href="database-support.html">here</a> - * for the parameters supported by the individual platforms.</td> + * Specifies the name of the parameter. See the database support documentation + * for details on the parameters supported by the individual platforms.</td> * * @param name The name * @ant.required