/backpath/trunk/build.xml |
---|
1,7 → 1,5 |
<project name="backpath" default="lib" basedir="."> |
<property name="build.compiler" value="jikes" /> |
<property name="src" location="src" /> |
<property name="classes" location="classes" /> |
<property name="lib" location="lib" /> |
/backpath/trunk/src/ak/backpath/taglib/ForwardLinkTag.java |
---|
13,6 → 13,7 |
String params = findBackPath().getForwardParams(); |
if(params == null) return url; |
params = params.replaceAll("&", "&"); |
if(url.indexOf("?") > 0) |
return url + "&" + backPathParam + "=" + params; |
else |
/backpath/trunk/src/ak/backpath/BackPath.java |
---|
35,7 → 35,7 |
public static final boolean DEFAULT_ZIP = true; |
public static final String[] METHODS_TO_SAVE_PARAMS = {"GET"}; |
public static final char URL_PARAM_START = '?'; |
public static final String URL_PARAM_SEPARATOR = "&"; |
public static final char URL_PARAM_SEPARATOR = '&'; |
public static final char URL_PARAM_VALUE = '='; |
public static final char URL_PARAM_VALUE_SEP = ','; |