aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/test/lluri_tut.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:04 -0500
committerJacek Antonelli2008-08-15 23:45:04 -0500
commit117e22047c5752352342d64e3fb7ce00a4eb8113 (patch)
treee32de2cfba0dda8705ae528fcd1fbe23ba075685 /linden/indra/test/lluri_tut.cpp
parentSecond Life viewer sources 1.18.0.6 (diff)
downloadmeta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.zip
meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.gz
meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.bz2
meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.xz
Second Life viewer sources 1.18.1.2
Diffstat (limited to 'linden/indra/test/lluri_tut.cpp')
-rw-r--r--linden/indra/test/lluri_tut.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/test/lluri_tut.cpp b/linden/indra/test/lluri_tut.cpp
index a08fe4e..b49f6dd 100644
--- a/linden/indra/test/lluri_tut.cpp
+++ b/linden/indra/test/lluri_tut.cpp
@@ -165,8 +165,8 @@ namespace tut
165 query["123"] = "12"; 165 query["123"] = "12";
166 query["abcd"] = "abc"; 166 query["abcd"] = "abc";
167 checkParts(LLURI::buildHTTP("host", path, query), 167 checkParts(LLURI::buildHTTP("host", path, query),
168 "http", "//host/x/123?123=12&abcd=abc&", 168 "http", "//host/x/123?123=12&abcd=abc",
169 "host", "/x/123", "123=12&abcd=abc&"); 169 "host", "/x/123", "123=12&abcd=abc");
170 } 170 }
171 171
172 template<> template<> 172 template<> template<>
@@ -191,8 +191,8 @@ namespace tut
191 query["123"] = "?&*#//"; 191 query["123"] = "?&*#//";
192 query["**@&?//"] = "abc"; 192 query["**@&?//"] = "abc";
193 checkParts(LLURI::buildHTTP("host", path, query), 193 checkParts(LLURI::buildHTTP("host", path, query),
194 "http", "//host/x/123?**@&?//=abc&123=?&*#//&", 194 "http", "//host/x/123?**@&?//=abc&123=?&*#//",
195 "host", "/x/123", "**@&?//=abc&123=?&*#//&"); 195 "host", "/x/123", "**@&?//=abc&123=?&*#//");
196 } 196 }
197 197
198 template<> template<> 198 template<> template<>
@@ -206,8 +206,8 @@ namespace tut
206 query["123"] = "12"; 206 query["123"] = "12";
207 query["abcd"] = "abc"; 207 query["abcd"] = "abc";
208 checkParts(LLURI::buildHTTP("hi123*33--}{:portstuffs", path, query), 208 checkParts(LLURI::buildHTTP("hi123*33--}{:portstuffs", path, query),
209 "http", "//hi123*33--}{:portstuffs/x/123?123=12&abcd=abc&", 209 "http", "//hi123*33--}{:portstuffs/x/123?123=12&abcd=abc",
210 "hi123*33--}{:portstuffs", "/x/123", "123=12&abcd=abc&"); 210 "hi123*33--}{:portstuffs", "/x/123", "123=12&abcd=abc");
211 } 211 }
212 212
213 template<> template<> 213 template<> template<>