aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/lluri.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:56 -0500
committerJacek Antonelli2008-08-15 23:44:56 -0500
commitc07901e29ed545bbb02e3bddf148fe1104b94e9f (patch)
treef1ada64ce834acd7d92a425efb96c4b86bcf16b1 /linden/indra/llcommon/lluri.h
parentSecond Life viewer sources 1.15.0.2 (diff)
downloadmeta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.zip
meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.gz
meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.bz2
meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.xz
Second Life viewer sources 1.15.1.3
Diffstat (limited to 'linden/indra/llcommon/lluri.h')
-rw-r--r--linden/indra/llcommon/lluri.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/linden/indra/llcommon/lluri.h b/linden/indra/llcommon/lluri.h
index 77de595..d1499b8 100644
--- a/linden/indra/llcommon/lluri.h
+++ b/linden/indra/llcommon/lluri.h
@@ -90,9 +90,11 @@ public:
90 std::string query() const; // ex.: "x=34", section after "?" 90 std::string query() const; // ex.: "x=34", section after "?"
91 LLSD queryMap() const; // above decoded into a map 91 LLSD queryMap() const; // above decoded into a map
92 static LLSD queryMap(std::string escaped_query_string); 92 static LLSD queryMap(std::string escaped_query_string);
93 static std::string mapToQueryString(const LLSD& queryMap);
93 94
94 // Escaping Utilities 95 // Escaping Utilities
95 // Escape a string by urlencoding all the characters that aren't in the allowed string. 96 // Escape a string by urlencoding all the characters that aren't in the allowed string.
97 static std::string escape(const std::string& str);
96 static std::string escape(const std::string& str, const std::string & allowed); 98 static std::string escape(const std::string& str, const std::string & allowed);
97 static std::string unescape(const std::string& str); 99 static std::string unescape(const std::string& str);
98 100