Author: djones Date: Tue Apr 7 13:54:37 2015 New Revision: 1671849 URL: http://svn.apache.org/r1671849 Log: Fixed links to Javadoc (closes CLI-248).
Modified: commons/proper/cli/trunk/src/changes/changes.xml commons/proper/cli/trunk/src/site/xdoc/introduction.xml Modified: commons/proper/cli/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/changes/changes.xml?rev=1671849&r1=1671848&r2=1671849&view=diff ============================================================================== --- commons/proper/cli/trunk/src/changes/changes.xml (original) +++ commons/proper/cli/trunk/src/changes/changes.xml Tue Apr 7 13:54:37 2015 @@ -23,6 +23,9 @@ <body> <release version="1.3" date="in SVN" description="This is a feature and maintenance bug fix release."> + <action type="fix" dev="djones" issue="CLI-248"> + Fixed broken Javadoc links on Introduction page. + </action> <action type="fix" dev="tn" issue="CLI-234" due-to="Greg Thomas"> Fixed code example in javadoc of "Option#Builder#valueSeparator(char)". </action> Modified: commons/proper/cli/trunk/src/site/xdoc/introduction.xml URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/site/xdoc/introduction.xml?rev=1671849&r1=1671848&r2=1671849&view=diff ============================================================================== --- commons/proper/cli/trunk/src/site/xdoc/introduction.xml (original) +++ commons/proper/cli/trunk/src/site/xdoc/introduction.xml Tue Apr 7 13:54:37 2015 @@ -39,9 +39,9 @@ to define the interface to the application. </p> <p> - CLI uses the <a href="api-release/org/apache/commons/cli/Options.html"> + CLI uses the <a href="javadocs/api-release/org/apache/commons/cli/Options.html"> Options</a> class, as a container for - <a href="api-release/org/apache/commons/cli/Option.html"> + <a href="javadocs/api-release/org/apache/commons/cli/Option.html"> Option</a> instances. There are two ways to create <code>Option</code>s in CLI. One of them is via the constructors, the other way is via the factory methods defined in @@ -66,11 +66,11 @@ </p> <p> The <code>parse</code> method defined on - <a href="api-release/org/apache/commons/cli/CommandLineParser.html"> + <a href="javadocs/api-release/org/apache/commons/cli/CommandLineParser.html"> CommandLineParser</a> takes an <code>Options</code> instance and a <code>String[]</code> of arguments and returns a - <a href="api-release/org/apache/commons/cli/CommandLine.html"> + <a href="javadocs/api-release/org/apache/commons/cli/CommandLine.html"> CommandLine</a>. </p> <p>