Trac Wiki Macro for rendering links to Javadoc urls

Description

Original version by Matthew Good. Migrated to work with Trac 0.11

Accepts one or two arguments separated by a comma.

The first argument is the fully qualified Java class or package. Classes are assumed to begin with an uppercase letter and packages with a lowercase letter according to standard Java naming conventions.

The second optional argument is the link text. If the second argument is ommitted the class name is used, or in the case of a package the full package name is used.

Bugs/Feature Requests

Existing bugs and feature requests for JavadocWikiMacro are here.

If you have any issues, create a new ticket.

Download and Source

Download the zipped source from here. You can check out JavadocWikiMacro from here using Subversion, or browse the source with Trac.

Example

Just register the urls in the javadoc.py:

 commons_logging_url = 'http://commons.apache.org/logging/commons-logging-1.0.3/docs/api/index.html' 

and add a mapping to the urls:

urls = {
        'org.apache.commons.logging': commons_logging_url,
        ...
        }

Usage:

[[javadoc(org.apache.commons.logging.LogFactory, LogFactory)]]

Recent Changes

[4243] by Andi on 09/08/08 09:42:57

delete duplicata

[4242] by Andi on 09/08/08 09:41:46

Initial import

[4198] by Andi on 08/29/08 16:04:26

New hack JavadocWikiMacro, created by Andi

Author/Contributors

Author: Andi
Contributors:

Attachments