﻿ticket,summary,type,release,owner,status,created,modified,_description,_reporter
8864,Put URL definitions in trac.ini file,enhancement,0.11,Andi,new,2011-06-03T19:35:20+02:00,2011-06-03T19:35:20+02:00,Configure URL instead of modifing plugin code will help new project configuration and upgrade process.,anonymous
7900,Address nested classes,defect,0.11,Andi,new,2010-10-26T12:39:08+02:00,2010-10-26T12:39:08+02:00,"How can I address '''nested''' classes? e.g. I have defined a nested class leading to a javadoc URL like

{{{
public class BaseClass{

   static public NestedClass{
   }
}

leads to Javadoc:

{{{
http://myhost.de/doc/mypackage/BaseClass.NestedClass.html
}}}

How can I address this? This usual Java addressing scheme does not work:

{{{
[[javadoc(mypackage.BaseClass.NestedClass, NestedClass)]]
}}}

This leads to the wrong URL:
{{{
http://myhost.de/doc/mypackage/BaseClass/NestedClass.html
}}}
",haf@…
10019,Add support for function/member link targets,enhancement,0.11,Andi,new,2012-05-10T00:07:21+02:00,2012-05-10T00:14:44+02:00,"The attached patch adds support for javadoc macro targets that contain a function or member reference, using class#member syntax.  For example, to link to String#equals(Object), you would use {{{[[javadoc(java.util.String#equals(java.lang.Object)]]}}}.  (Unfortunately, the type signatures must match exactly.)  This would be linkified with the text {{{String#equals(java.lang.Object)}}} by default.",elb@…
