summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/http/httpd.hpp
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-09-07 01:40:04 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-09-07 01:40:04 +0000
commit8a21fca095cf96601db69cb719e7f94b73bc7744 (patch)
treee26cc102b5e75d62a631b01fd1a52633137d0f0e /sca-cpp/trunk/modules/http/httpd.hpp
parentf75296a86350e41c01a355c945ca348082260cf9 (diff)
Minor tweaks to make the OAuth support work with Github.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@993192 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/http/httpd.hpp')
-rw-r--r--sca-cpp/trunk/modules/http/httpd.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/sca-cpp/trunk/modules/http/httpd.hpp b/sca-cpp/trunk/modules/http/httpd.hpp
index f407e1012e..870aed71b7 100644
--- a/sca-cpp/trunk/modules/http/httpd.hpp
+++ b/sca-cpp/trunk/modules/http/httpd.hpp
@@ -204,7 +204,7 @@ const string url(const string& uri, request_rec* r) {
/**
* Escape a URI.
*/
-const char escape_c2x[] = "0123456789abcdef";
+const char escape_c2x[] = "0123456789ABCDEF";
const string escape(const string& uri) {
debug(uri, "httpd::escape::uri");
char* copy = (char*)apr_palloc(gc_current_pool(), 3 * length(uri) + 3);
@@ -248,8 +248,15 @@ const list<value> queryArg(const string& s) {
return mklist<value>(c_str(car(t)), cadr(t));
}
+const string fixupQueryArgs(const string& a) {
+ const list<string> t = tokenize("?", a);
+ if (isNil(t) || isNil(cdr(t)))
+ return a;
+ return join("&", t);
+}
+
const list<list<value> > queryArgs(const string& a) {
- return map<string, list<value>>(queryArg, tokenize("&", a));
+ return map<string, list<value>>(queryArg, tokenize("&", fixupQueryArgs(a)));
}
/**