Changeset 257:6a341c60af17
- Timestamp:
- 09/02/09 12:41:28 (4 years ago)
- Author:
- tgambet
- Branch:
- default
- convert_revision:
- svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@258
- Message:
-
removed encoding
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r245
|
r257
|
|
| 1 | 1 | # UNICORN_HOME is a property set in the jvm parameters (ex: -Dunicorn.home="/var/lib/tomcat6/webapps/unicorn/"). Read the README file for more info. |
| 2 | 2 | UNICORN_URL = http://localhost:8080/unicorn/ |
| 3 | | UNICORN_ENCODING = UTF-8 |
| 4 | 3 | |
| 5 | 4 | UNICORN_PARAMETER_PREFIX = ucn_ |
-
|
r214
|
r257
|
|
| 1 | | // $Id: DirectRequestGET.java,v 1.2 2009-08-28 12:39:48 jean-gui Exp $ |
| | 1 | // $Id: DirectRequestGET.java,v 1.3 2009-09-02 12:41:28 tgambet Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 82 | 82 | } |
| 83 | 83 | this.sParameter += sName + "=" |
| 84 | | + URLEncoder.encode(sValue, Property.get("UNICORN_ENCODING")); |
| | 84 | + URLEncoder.encode(sValue, "UTF-8"); |
| 85 | 85 | Request.logger.debug("Parameters : " + this.sParameter + "."); |
| 86 | 86 | } |