Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 999 → Rev 994

/backpath/trunk/src/ak/backpath/taglib/ForwardLinkTag.java
13,7 → 13,6
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 char URL_PARAM_SEPARATOR = '&';
public static final String URL_PARAM_SEPARATOR = "&";
public static final char URL_PARAM_VALUE = '=';
public static final char URL_PARAM_VALUE_SEP = ',';
 
/backpath/trunk/build.xml
1,5 → 1,7
<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" />