Home
last modified time | relevance | path

Searched refs:urldecode (Results 1 – 25 of 1507) sorted by relevance

12345678910>>...61

/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/cowlib/src/
H A Dcow_uri.erl17 -export([urldecode/1]).
23 urldecode(B) -> function
24 urldecode(B, <<>>).
29 urldecode(<< $!, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $! >>); function
30 urldecode(<< $$, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $$ >>); function
31 urldecode(<< $&, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $& >>); function
33 urldecode(<< $(, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $( >>); function
34 urldecode(<< $), Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $) >>); function
35 urldecode(<< $*, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $* >>); function
36 urldecode(<< $+, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $+ >>); function
[all …]
H A Dcow_qs.erl19 -export([urldecode/1]).
327 -spec urldecode(B) -> B when B::binary().
328 urldecode(B) -> function
329 urldecode(B, <<>>).
331 urldecode(<< $%, H, L, Rest/bits >>, Acc) -> function
333 urldecode(Rest, << Acc/bits, C >>);
334 urldecode(<< $+, Rest/bits >>, Acc) -> function
335 urldecode(Rest, << Acc/bits, " " >>);
337 urldecode(Rest, << Acc/bits, C >>);
338 urldecode(<<>>, Acc) -> function
[all …]
/dports/www/erlang-cowboy/cowboy-1.1.2/src/
H A Dcow_uri.erl17 -export([urldecode/1]).
23 urldecode(B) -> function
24 urldecode(B, <<>>).
29 urldecode(<< $!, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $! >>); function
30 urldecode(<< $$, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $$ >>); function
31 urldecode(<< $&, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $& >>); function
33 urldecode(<< $(, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $( >>); function
34 urldecode(<< $), Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $) >>); function
35 urldecode(<< $*, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $* >>); function
36 urldecode(<< $+, Rest/bits >>, Acc) -> urldecode(Rest, << Acc/bits, $+ >>); function
[all …]
/dports/www/fusionpbx/fusionpbx-4.4.1/app/xml_cdr/
H A Dv_xml_cdr_import.php137 $uuid = check_str(urldecode($xml->variables->uuid));
221 …$database->fields['pdd_ms'] = check_str(urldecode($xml->variables->progress_mediamsec) + urldecode
303 $record_path = urldecode($xml->variables->record_path);
304 $record_name = urldecode($xml->variables->record_name);
313 $record_path = urldecode($xml->variables->record_path);
314 $record_name = urldecode($xml->variables->record_name);
315 $record_length = urldecode($xml->variables->duration);
334 $record_length = urldecode($xml->variables->duration);
355 $bridge_uuid = urldecode($xml->variables->bridge_uuid);
360 $record_length = urldecode($xml->variables->duration);
[all …]
H A Dxml_cdr_details.php125 $uuid = check_str(urldecode($array["variables"]["uuid"]));
139 $billsec = check_str(urldecode($array["variables"]["billsec"]));
247 $value = urldecode($value);
275 $value = urldecode($value);
338 $app_data = urldecode($row["@attributes"]["app_data"]);
372 $value = urldecode($value);
398 $value = urldecode($value);
425 $app_data = urldecode($tmp_row["@attributes"]["app_data"]);
452 $value = urldecode($value);
456 $value = urldecode($value);
[all …]
/dports/www/fusionpbx/fusionpbx-4.4.1/app/xml_cdr/resources/classes/
H A Dxml_cdr.php246 $uuid = check_str(urldecode($xml->variables->uuid));
300 $uuid = check_str(urldecode($xml->variables->uuid));
364 …$this->array[$key]['pdd_ms'] = check_str(urldecode($xml->variables->progress_mediamsec) + urldecod…
432 $record_path = urldecode($xml->variables->record_path);
433 $record_name = urldecode($xml->variables->record_name);
434 $record_length = urldecode($xml->variables->billsec);
439 $record_length = urldecode($xml->variables->record_seconds);
444 $record_length = urldecode($xml->variables->record_seconds);
463 $record_length = urldecode($xml->variables->duration);
473 $record_length = urldecode($xml->variables->duration);
[all …]
/dports/lang/php73/php-7.3.33/ext/standard/tests/url/
H A Durldecode_error_001.phpt2 Test urldecode() function : error conditions
5 /* Prototype : proto string urldecode(string str)
13 echo "*** Testing urldecode() : error conditions ***\n";
16 echo "\n-- Testing urldecode() function with Zero arguments --\n";
17 var_dump( urldecode() );
19 //Test urldecode with one more than the expected number of arguments
23 var_dump( urldecode($str, $extra_arg) );
28 *** Testing urldecode() : error conditions ***
30 -- Testing urldecode() function with Zero arguments --
32 Warning: urldecode() expects exactly 1 parameter, 0 given in %s on line 14
[all …]
H A Durldecode_variation_001.phpt2 Test urldecode() function : usage variations - <type here specifics of this variation>
5 /* Prototype : proto string urldecode(string str)
18 echo "*** Testing urldecode() : usage variations ***\n";
77 var_dump( urldecode($value) );
83 *** Testing urldecode() : usage variations ***
116 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
121 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
126 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
131 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
136 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
[all …]
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/url/
H A Durldecode_error_001.phpt2 Test urldecode() function : error conditions
5 /* Prototype : proto string urldecode(string str)
13 echo "*** Testing urldecode() : error conditions ***\n";
16 echo "\n-- Testing urldecode() function with Zero arguments --\n";
17 var_dump( urldecode() );
19 //Test urldecode with one more than the expected number of arguments
23 var_dump( urldecode($str, $extra_arg) );
28 *** Testing urldecode() : error conditions ***
30 -- Testing urldecode() function with Zero arguments --
32 Warning: urldecode() expects exactly 1 parameter, 0 given in %s on line 14
[all …]
H A Durldecode_variation_001.phpt2 Test urldecode() function : usage variations - <type here specifics of this variation>
5 /* Prototype : proto string urldecode(string str)
18 echo "*** Testing urldecode() : usage variations ***\n";
77 var_dump( urldecode($value) );
83 *** Testing urldecode() : usage variations ***
116 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
121 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
126 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
131 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
136 Error: 2 - urldecode() expects parameter 1 to be string, array given, %s(74)
[all …]
/dports/net/urlendec/urlendec-1.0/
H A DMakefile8 all: urlencode urldecode
14 urldecode: urldecode.o target
15 ld -m elf_i386_fbsd -o urldecode urldecode.o
16 strip -s urldecode
21 urldecode.o: urldecode.asm
22 nasm -f elf32 urldecode.asm
/dports/security/py-oauthlib/oauthlib-1.1.2/tests/
H A Dtest_common.py16 from oauthlib.common import urldecode
33 self.assertItemsEqual(urldecode(''), [])
34 self.assertItemsEqual(urldecode('='), [('', '')])
35 self.assertItemsEqual(urldecode('%20'), [(' ', '')])
36 self.assertItemsEqual(urldecode('+'), [(' ', '')])
37 self.assertItemsEqual(urldecode('c2'), [('c2', '')])
40 self.assertItemsEqual(urldecode('foo_%20~=.bar-'),
49 self.assertRaises(ValueError, urldecode, '%R')
50 self.assertRaises(ValueError, urldecode, '%RA')
51 self.assertRaises(ValueError, urldecode, '%AR')
[all …]
/dports/www/rss-bridge/rss-bridge-2021-04-25/bridges/
H A DXPathBridge.php167 return urldecode($this->getInput('item'));
175 return urldecode($this->getInput('title'));
183 return urldecode($this->getInput('content'));
191 return urldecode($this->getInput('uri'));
199 return urldecode($this->getInput('author'));
207 return urldecode($this->getInput('timestamp'));
216 return urldecode($this->getInput('enclosures'));
224 return urldecode($this->getInput('categories'));
244 $uri = urldecode($uri);
/dports/databases/libcouchbase/libcouchbase-2.10.7/tests/basic/
H A Dt_urlencode.cc27 using lcb::strcodecs::urldecode;
110 ASSERT_TRUE(urldecode("%22", obuf)) << "Single character"; in TEST_F()
113 ASSERT_TRUE(urldecode("Hello World", obuf)) << "No pct encode"; in TEST_F()
116 ASSERT_TRUE(urldecode("Hello%20World", obuf)); in TEST_F()
119 ASSERT_TRUE(urldecode("%2Ffoo%2Fbar%2Fbaz%2F", obuf)); in TEST_F()
122 ASSERT_TRUE(urldecode("%01%02%03%04", obuf)) << "Multiple octets"; in TEST_F()
125 ASSERT_TRUE(urldecode("%FFFF", obuf)) << "Recognize only first two hex digits"; in TEST_F()
130 ASSERT_FALSE(urldecode("%", obuf)); in TEST_F()
131 ASSERT_FALSE(urldecode("%RR", obuf)) << "Invalid hex digits"; in TEST_F()
/dports/devel/monotone/monotone-1.1/test/unit/tests/
H A Duri.cc110 UNIT_TEST(urldecode) in UNIT_TEST() argument
112 UNIT_TEST_CHECK(urldecode("foo%20bar", origin::internal) == "foo bar"); in UNIT_TEST()
113 UNIT_TEST_CHECK(urldecode("foo+bar", origin::internal) == "foo bar"); in UNIT_TEST()
114 UNIT_TEST_CHECK(urldecode("%61", origin::user) == "a"); in UNIT_TEST()
115 UNIT_TEST_CHECK_THROW(urldecode("%xx", origin::internal), unrecoverable_failure); in UNIT_TEST()
116 UNIT_TEST_CHECK_THROW(urldecode("%", origin::user), recoverable_failure); in UNIT_TEST()
117 UNIT_TEST_CHECK_THROW(urldecode("%5", origin::user), recoverable_failure); in UNIT_TEST()
/dports/www/ilias/ILIAS-5.4.25/Services/WebServices/ECS/classes/
H A Dclass.ilECSUser.php156 $this->source = json_decode(urldecode($this->source));
175 $this->login = ilUtil::stripSlashes(urldecode($_GET['ecs_login']));
176 $this->firstname = ilUtil::stripSlashes(urldecode($_GET['ecs_firstname']));
177 $this->lastname = ilUtil::stripSlashes(urldecode($_GET['ecs_lastname']));
178 $this->email = ilUtil::stripSlashes(urldecode($_GET['ecs_email']));
179 $this->institution = ilUtil::stripSlashes(urldecode($_GET['ecs_institution']));
182 $this->uid_hash = ilUtil::stripSlashes(urldecode($_GET['ecs_uid_hash']));
184 $this->uid_hash = ilUtil::stripSlashes(urldecode($_GET['ecs_uid']));
/dports/www/ilias6/ILIAS-6.14/Services/WebServices/ECS/classes/
H A Dclass.ilECSUser.php156 $this->source = json_decode(urldecode($this->source));
175 $this->login = ilUtil::stripSlashes(urldecode($_GET['ecs_login']));
176 $this->firstname = ilUtil::stripSlashes(urldecode($_GET['ecs_firstname']));
177 $this->lastname = ilUtil::stripSlashes(urldecode($_GET['ecs_lastname']));
178 $this->email = ilUtil::stripSlashes(urldecode($_GET['ecs_email']));
179 $this->institution = ilUtil::stripSlashes(urldecode($_GET['ecs_institution']));
182 $this->uid_hash = ilUtil::stripSlashes(urldecode($_GET['ecs_uid_hash']));
184 $this->uid_hash = ilUtil::stripSlashes(urldecode($_GET['ecs_uid']));
/dports/www/erlang-hackney/hackney-1.8.6/src/
H A Dhackney_url.erl17 urldecode/1, urldecode/2,
229 -spec urldecode(binary()) -> binary().
230 urldecode(Bin) when is_binary(Bin) -> function
231 urldecode(Bin, <<>>, crash).
238 urldecode(Bin, OnError) when is_binary(Bin) -> function
239 urldecode(Bin, <<>>, OnError).
256 urldecode(<<C, Rest/binary>>, Acc, OnError) -> function
257 urldecode(Rest, <<Acc/binary, C>>, OnError);
258 urldecode(<<>>, Acc, _OnError) -> function
320 {urldecode(T), true};
[all …]
/dports/www/interchange/interchange-5.6.3/code/Filter/
H A Durldecode.filter9 # $Id: urldecode.filter,v 1.5 2007-09-21 16:15:48 kwalsh Exp $
12 CodeDef url Alias urldecode
15 CodeDef urld Alias urldecode
17 CodeDef urldecode Filter
18 CodeDef urldecode Description URL decode
19 CodeDef urldecode Routine <<EOR
/dports/shells/ohmyzsh/ohmyzsh-6babcbd8841335a3c25ec960ff57ab9a139c9073/plugins/urltools/
H A Durltools.plugin.zsh5 # https://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
13 alias urldecode='node -e "console.log(decodeURIComponent(process.argv[1]))"' alias
16 …alias urldecode='python3 -c "import sys; del sys.path[0]; import urllib.parse as up; print(up.unqu… alias
19 …alias urldecode='python2 -c "import sys; del sys.path[0]; import urllib as ul; print ul.unquote_pl… alias
22 …function urldecode() {printf $(echo -n $@ | sed 's/\\/\\\\/g;s/\(%\)\([0-9a-fA-F][0-9a-fA-F]\)/\\x… function
25 alias urldecode='ruby -r cgi -e "puts CGI.unescape(ARGV[0])"' alias
28 alias urldecode='php -r "echo rawurldecode(\$argv[1]); echo \"\\n\";"' alias
32 alias urldecode='perl -MURI::Encode -ep "uri_decode($ARGV[0]);"' alias
35 alias urldecode='perl -MURI::Escape -ep "uri_unescape($ARGV[0]);"' alias
38 …alias urldecode="perl -e '\$new=\$ARGV[0]; \$new =~ s/\%([A-Fa-f0-9]{2})/pack(\"C\", hex(\$1))/seg… alias
/dports/net-im/prosody/prosody-0.11.13/util/
H A Dhttp.lua15 local function urldecode(s) function
44 if not s:match("=") then return urldecode(s); end
48 k, v = urldecode(k), urldecode(v);
71 urlencode = urlencode, urldecode = urldecode;
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/doc/
H A Dconcierge.php93 $master_url = urldecode($master_url);
94 $project_name = urldecode($project_name);
95 if ($auth) $auth = urldecode($auth);
96 if ($user_name) $user_name = urldecode($user_name);
97 if ($project_desc) $project_desc = urldecode($project_desc);
98 if ($project_inst) $project_inst = urldecode($project_inst);
/dports/www/silicon/silicon-0.1-124-g91ca205/tests/
H A Durldecode.cc14 urldecode(s, obj); in is_error()
37 urldecode(iod::stringview(s), obj); in main()
45 urldecode(iod::stringview(s), obj); in main()
54 urldecode(iod::stringview(s), obj); in main()
66 urldecode(iod::stringview(s), obj); in main()
81 urldecode(iod::stringview(s), obj); in main()
93 urldecode(iod::stringview(s), obj); in main()
103 urldecode(iod::stringview(s), obj); in main()
/dports/www/erlang-cowlib/cowlib-1.0.2/src/
H A Dcow_qs.erl19 -export([urldecode/1]).
331 -spec urldecode(B) -> B when B::binary().
332 urldecode(B) -> function
333 urldecode(B, <<>>).
335 urldecode(<< $%, H, L, Rest/bits >>, Acc) -> function
337 urldecode(Rest, << Acc/bits, C >>);
338 urldecode(<< $+, Rest/bits >>, Acc) -> function
339 urldecode(Rest, << Acc/bits, " " >>);
341 urldecode(Rest, << Acc/bits, C >>);
342 urldecode(<<>>, Acc) -> function
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/core/
H A Dphotos_resize.php268 …port'))) $backtourl = DOL_URL_ROOT."/expensereport/document.php?id=".$id.'&file='.urldecode($file);
269 …iday'))) $backtourl = DOL_URL_ROOT."/holiday/document.php?id=".$id.'&file='.urldecode($file);
270 …r'))) $backtourl = DOL_URL_ROOT."/adherents/document.php?id=".$id.'&file='.urldecode($file);
271 …oject'))) $backtourl = DOL_URL_ROOT."/projet/document.php?id=".$id.'&file='.urldecode($file);
272 …))) $backtourl = DOL_URL_ROOT."/comm/propal/document.php?id=".$id.'&file='.urldecode($file);
273 …iete'))) $backtourl = DOL_URL_ROOT."/societe/document.php?id=".$id.'&file='.urldecode($file);
275 …cket'))) $backtourl = DOL_URL_ROOT."/ticket/document.php?id=".$id.'&file='.urldecode($file);
276 …user'))) $backtourl = DOL_URL_ROOT."/user/document.php?id=".$id.'&file='.urldecode($file);
281 …pta/bank/account_statement_document.php?id=".$id.'&num='.urlencode($num).'&file='.urldecode($file);
283 …p'))) $backtourl = DOL_URL_ROOT."/mrp/mo_document.php?id=".$id.'&file='.urldecode($file);
[all …]

12345678910>>...61