On 7/24/06, Patrick Lightbody <[EMAIL PROTECTED]> wrote:
The snippet binary is attached with a comment indicating the source and date.
Assuming the Java.net source is current, could we patch it for the latest (and hopefully) last changes - org.apache.struts.action2. + org.apache.struts2. - https://svn.apache.org/repos/asf/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/ + https://svn.apache.org/repos/asf/struts/struts2/trunk/core/src/main/java/org/apache/struts2/ - action2 + struts2 (twice) - https://svn.apache.org/repos/asf/struts/action2/trunk/ + https://svn.apache.org/repos/asf/struts/struts2/trunk/ } else if (urlParam.startsWith("org.apache.struts.action2.")) { // ex: https://svn.apache.org/repos/asf/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/ // support for SAF 2.0 String url = "https://svn.apache.org/repos/asf/struts/action2/trunk/core/src/main/java/"; urlParam = url + urlParam.replaceAll("\\.", "/") + ".java"; } if (!urlParam.startsWith("http")) { if (urlParam.startsWith("action2")) { // cut out the action2 part urlParam = urlParam.substring("action2".length()); urlParam = "https://svn.apache.org/repos/asf/struts/action2/trunk/" + urlParam; } else { urlParam = "https://opensymphony.dev.java.net/source/browse/*checkout*/" + urlParam; } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]