Home
last modified time | relevance | path

Searched refs:url_decode (Results 1 – 25 of 658) sorted by relevance

12345678910>>...27

/dports/www/yaws/yaws-2.0.6/applications/mail/www/
H A Dreply.yaws10 From = yaws_api:url_decode(mail:get_val("from", L, "")),
11 Subject = yaws_api:url_decode(mail:get_val("subject", L, "")),
12 To = yaws_api:url_decode(mail:get_val("to", L, "")),
13 Cc = yaws_api:url_decode(mail:get_val("cc", L, "")),
14 Bcc = yaws_api:url_decode(mail:get_val("bcc", L, "")),
15 Quote = yaws_api:url_decode(mail:get_val("quote", L, "")),
/dports/devel/stringencoders/stringencoders-v3.10.3/src/
H A Dmodp_burl.h181 inline std::string& url_decode(std::string& s) in url_decode() function
188 inline std::string url_decode(const char* str) in url_decode() function
191 url_decode(s); in url_decode()
195 inline std::string url_decode(const char* str, size_t len) in url_decode() function
198 url_decode(s); in url_decode()
202 inline std::string url_decode(const std::string& s) in url_decode() function
205 url_decode(x); in url_decode()
/dports/graphics/aseprite/aseprite-1.2.9/laf/third_party/stringencoders/src/
H A Dmodp_burl.h201 inline std::string& url_decode(std::string& s) in url_decode() function
215 inline std::string url_decode(const char* str) in url_decode() function
218 url_decode(s); in url_decode()
229 inline std::string url_decode(const char* str, size_t len) in url_decode() function
232 url_decode(s); in url_decode()
243 inline std::string url_decode(const std::string& s) in url_decode() function
246 url_decode(x); in url_decode()
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/core/
H A Durl.cpp37 status_t url_decode(LSPString *dst, const LSPString *src) in url_decode() function
39 return url_decode(dst, src, 0, src->length()); in url_decode()
42 status_t url_decode(LSPString *dst, const LSPString *src, size_t first) in url_decode() function
44 return url_decode(dst, src, first, src->length()); in url_decode()
47 status_t url_decode(LSPString *dst, const LSPString *src, size_t first, size_t last) in url_decode() function
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/core/files/
H A Durl.h35 status_t url_decode(LSPString *dst, const LSPString *src);
44 status_t url_decode(LSPString *dst, const LSPString *src, size_t first);
54 status_t url_decode(LSPString *dst, const LSPString *src, size_t first, size_t last);
/dports/net/csync2/csync2-a8d38eb/
H A Dcsync2.c632 cfgname = strdup(url_decode(para)); in main()
713 textlist_add(&tl, url_decode(SQL_V(0)), in main()
792 char *filename = strdup(url_decode(SQL_V(0))); in main()
831 printf("%s\t%s\n", (char*)SQL_V(0), url_decode(SQL_V(1))); in main()
841 if (csync_find_next(0, url_decode(SQL_V(1)))) { in main()
842 printf("%s\t%s\n", url_decode(SQL_V(0)), url_decode(SQL_V(1))); in main()
853 if ( csync_match_file_host(url_decode(SQL_V(1)), argv[optind], argv[optind+1], 0) ) { in main()
854 printf("%s\t%s\n", url_decode(SQL_V(0)), url_decode(SQL_V(1))); in main()
905 if (csync_find_next(0, url_decode(SQL_V(3)))) { in main()
907 url_decode(SQL_V(1)), url_decode(SQL_V(2)), url_decode(SQL_V(3))); in main()
/dports/deskutils/zim/zim-0.74.3/tests/
H A Dparsing.py81 self.assertEqual(url_decode(url, mode=URL_ENCODE_READABLE), readable)
82 self.assertEqual(url_decode(readable, mode=URL_ENCODE_READABLE), readable)
91 self.assertEqual(url_decode(encoded, mode=URL_ENCODE_PATH), path)
94 self.assertEqual(url_decode('foo%3Fbar%2Fbaz', mode=URL_ENCODE_DATA), 'foo?bar/baz')
96 self.assertEqual(url_decode('%B4%FA%B8%D5%B0%CF', mode=URL_ENCODE_DATA), '%B4%FA%B8%D5%B0%CF')
101 decoded = url_decode(data)
104 self.assertEqual(url_decode(encoded), data)
/dports/www/civetweb/civetweb-1.15/test/
H A Dpage4.lua128 dec_mg_string = mg.url_decode(mg_string)
129 dec_ref_string = mg.url_decode(ref_string)
132 dec_mg_string = mg.url_decode(mg_string, false)
133 dec_ref_string = mg.url_decode(ref_string, false)
136 dec_mg_string = mg.url_decode(mg_string, true)
137 dec_ref_string = mg.url_decode(ref_string, true)
/dports/devel/cgit/cgit-1.2.3/filters/
H A Dsimple-authentication.lua150 function url_decode(str) function
173 tab[url_decode(key)] = url_decode(val)
180 return url_decode(string.match(cookies, ";" .. name .. "=(.-);"))
276 if url_decode(field) ~= expected_field then
280 return url_decode(value)
H A Dfile-authentication.lua195 function url_decode(str) function
218 tab[url_decode(key)] = url_decode(val)
225 return url_decode(string.match(cookies, ";" .. name .. "=(.-);"))
321 if url_decode(field) ~= expected_field then
325 return url_decode(value)
H A Dgentoo-ldap-authentication.lua196 function url_decode(str) function
219 tab[url_decode(key)] = url_decode(val)
322 if url_decode(field) ~= expected_field then
326 return url_decode(value)
/dports/www/p5-URL-Encode/URL-Encode-0.03/t/
H A D010_basic.t36 is(url_decode($encoded), $expected, "url_decode(): $name");
49 is(url_decode($enc), $dec, 'url_decode: native string');
63 is(url_decode($enc), $dec, 'mixed hexadecimal case');
/dports/www/p5-URL-Encode-XS/URL-Encode-XS-0.03/t/
H A D010_basic.t36 is(url_decode($encoded), $expected, "url_decode(): $name");
49 is(url_decode($enc), $dec, 'url_decode: native string');
63 is(url_decode($enc), $dec, 'mixed hexadecimal case');
/dports/www/p5-CGI-Lite/CGI-Lite-3.03/t/
H A Dbasic.t57 is ($cgi->url_decode($to[$i]), $from[$i], "url_decode $to[$i]");
136 @r = trap { url_decode ('a') };
138 qr/Non-method use of url_decode is deprecated/,
139 'Warning calling url_decode as non-method');
163 @r = trap { $child->url_decode ('a') };
165 qr/Non-method use of url_decode is deprecated/,
166 'No warning calling url_decode as child method');
/dports/www/yaws/yaws-2.0.6/applications/wiki/src/
H A Dwiki_yaws.erl60 Path = yaws_api:url_decode(P),
72 Path = yaws_api:url_decode(P),
86 Path = yaws_api:url_decode(P),
95 Path = yaws_api:url_decode(P),
102 Path = yaws_api:url_decode(P),
/dports/ftp/lftp/lftp-4.9.2/src/
H A Durl.cc189 user.url_decode(); in parse()
190 pass.url_decode(); in parse()
191 host.url_decode(); in parse()
192 path.url_decode(); in parse()
244 s.url_decode(); in valid_slot()
251 s.url_decode(); in valid_bm()
358 return xstring::get_tmp(p).url_decode(); in decode()
/dports/databases/p5-RRD-Simple/RRD-Simple-1.44/examples/rrd-server/cgi-bin/
H A Drrd-server.cgi119 $kv->{url_decode($k)} = url_decode($v);
124 sub url_decode {
/dports/www/p5-CGI-Minimal/CGI-Minimal-1.30/t/
H A D02_encodings.t92 my $decoded_char = CGI::Minimal->url_decode($encoded_char);
97 unless (CGI::Minimal->url_decode('+') eq '') {
104 my $null_string = CGI::Minimal->url_decode;
/dports/devel/stringencoders/stringencoders-v3.10.3/test/
H A Dcxx_test.cc301 url_decode(s); in test_url()
308 url_decode(s); in test_url()
326 const string s2(url_decode(s1)); in test_url_const()
333 const string r3(url_decode(s3)); in test_url_const()
345 const string s1(url_decode(data)); in test_url_cstr()
351 const string s2(url_decode(data, strlen(data))); in test_url_cstr()
/dports/graphics/aseprite/aseprite-1.2.9/laf/third_party/stringencoders/test/
H A Dcxx_test.cc301 url_decode(s); in test_url()
308 url_decode(s); in test_url()
326 const string s2(url_decode(s1)); in test_url_const()
333 const string r3(url_decode(s3)); in test_url_const()
345 const string s1(url_decode(data)); in test_url_cstr()
351 const string s2(url_decode(data, strlen(data))); in test_url_cstr()
/dports/databases/namazu2/namazu-2.0.21/filter/
H A Dapachecache.pl42 sub url_decode ($) { subroutine
51 &url_decode($1);
/dports/www/py-werkzeug/Werkzeug-2.0.2/tests/
H A Dtest_urls.py86 x = urls.url_decode(b"foo=42&bar=23&uni=H%C3%A4nsel")
91 x = urls.url_decode(b"foo=42;bar=23;uni=H%C3%A4nsel", separator=b";")
96 x = urls.url_decode(b"%C3%9Ch=H%C3%A4nsel")
101 x = urls.url_decode(b"foo=42&bar=23&uni=H%C3%A4nsel", charset=None)
318 x = urls.url_decode(ref, charset="euc-kr")
/dports/www/p5-URL-Encode-XS/URL-Encode-XS-0.03/dev/
H A Dbench.pl17 my $v = URL::Encode::XS::url_decode($s);
20 my $v = URL::Encode::PP::url_decode($s);
/dports/www/p5-URL-Encode-XS/URL-Encode-XS-0.03/
H A DXS.xs9 url_decode(pTHX_ const char *s, const STRLEN len, SV *dsv) { in url_decode() function
73 dsv = url_decode(aTHX_ s, len, dsv); in url_decode_utf8()
292 url_decode(octets)
295 URL::Encode::XS::url_decode = 0
312 url_decode(aTHX_ s, len, TARG);
360 u.decode = utf8 ? &url_decode_utf8 : &url_decode;
398 u.decode = utf8 ? &url_decode_utf8 : &url_decode;
/dports/net/p5-Twitter-API/Twitter-API-1.0006/lib/Twitter/API/Trait/
H A DAppAuth.pm52 my $token = url_decode $$r{access_token};
72 my $token_returned = url_decode $$r{access_token};

12345678910>>...27