| Issue 1: | Javadoc references are not crosslinked |
1 of 5
Next ›
|
| 1 person starred this issue and may be notified of changes. | Back to list |
This is a "suggestion for enhancment", not really a bug... What steps will reproduce the problem? 1. Generate the javadoc with ant 2. Open the javadoc in the browser 3. References of e.g. PApplet will show as plain text What is the expected output? What do you see instead? It'd be nice if you could click on occurences of PApplet or core Java classes. Instead they will appear as plain text. What version of the product are you using? On what operating system? Doesn't matter. Suggested fix: Add these two lines inside the javadoc task in build.xml: <link href="http://java.sun.com/javase/6/docs/api/" /> <link href="http://dev.processing.org/reference/everything/javadoc/" /> For an example of a crosslinking to the Processing reference click here: http://tinyurl.com/bufwoz
Mar 1, 2009
#1
goo...@superduper.org
Sep 17, 2011
Took me a while to figure this out. In your build.properties file, last two lines should be: javadoc.java.href=http://download.oracle.com/javase/1,5.0/docs/api/ javadoc.processing.href=http://processing.googlecode.com/svn/trunk/processing/build/javadoc/everything/
Sep 17, 2011
wow, i'm amazed someone is still onto this :) |