Subversion Repositories eFlore/Applications.del

Rev

Rev 1552 | Rev 1559 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1552 Rev 1557
Line 397... Line 397...
397
		// remplacements batards pour corriger l'url
397
		// remplacements batards pour corriger l'url
398
		// TODO: factoriser toute la fonction 
398
		// TODO: factoriser toute la fonction 
399
		url = url.replaceAll("&#", "#");
399
		url = url.replaceAll("&#", "#");
400
		url = url.replaceAll("&&", "&");
400
		url = url.replaceAll("&&", "&");
401
		url = url.replaceAll("\\?&", "?");
401
		url = url.replaceAll("\\?&", "?");
-
 
402
		if(url.endsWith("&")) {
-
 
403
			url = url.substring(0, url.length()-1);
-
 
404
		}
Line 402... Line 405...
402
		
405
		
Line 403... Line 406...
403
		GWT.log("URL de sortie:"+url);
406
		GWT.log("URL de sortie:"+url);
404
		
407