Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--data/DefaultWsdlHelpGenerator.aspx3
-rw-r--r--data/browscap.ini.gzbin25826 -> 24798 bytes
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ed1462c05ce..b070289436b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * data/DefaultWsdlHelpGenerator.aspx: fixed querystring attribute
+ values. Now they are URlEncoded.
+
+ * data/browscap.ini.gz: updated.
+
2004-05-26 Raja R Harinath <rharinath@novell.com>
* Makefile.am (mcs-do-basic-build): No need to set MCS here.
diff --git a/data/DefaultWsdlHelpGenerator.aspx b/data/DefaultWsdlHelpGenerator.aspx
index 5c5cde4e22c..c067b4ef48e 100644
--- a/data/DefaultWsdlHelpGenerator.aspx
+++ b/data/DefaultWsdlHelpGenerator.aspx
@@ -316,7 +316,7 @@ string GetTestResult ()
{
if (fill) {
if (qs != "") qs += "&";
- qs += Request.QueryString.GetKey(n) + "=" + Request.QueryString [n];
+ qs += Request.QueryString.GetKey(n) + "=" + Server.UrlEncode (Request.QueryString [n]);
}
if (Request.QueryString.GetKey(n) == "ext") fill = true;
}
@@ -337,6 +337,7 @@ string GetTestResult ()
try
{
+ Console.WriteLine (location + "/" + CurrentOperationName + "?" + qs);
WebRequest req = WebRequest.Create (location + "/" + CurrentOperationName + "?" + qs);
HttpCookieCollection cookies = Request.Cookies;
int last = cookies.Count;
diff --git a/data/browscap.ini.gz b/data/browscap.ini.gz
index 37dd1e95094..7120b96c320 100644
--- a/data/browscap.ini.gz
+++ b/data/browscap.ini.gz
Binary files differ