Home
last modified time | relevance | path

Searched refs:percent_encode (Results 1 – 25 of 442) sorted by relevance

12345678910>>...18

/dports/textproc/py-pymdown-extensions/pymdown-extensions-9.1/pymdownx/
H A Dslugs.py36 def _uslugify(text, sep, case="none", percent_encode=False, normalize='NFC'): argument
56 return quote(slug.encode('utf-8')) if percent_encode else slug
65 return functools.partial(_uslugify, case=case, percent_encode=percent, normalize=normalize)
85 return slugify(case='lower', percent_encode=True)(text, sep)
105 return slugify(percent_encode=True)(text, sep)
125 return slugify(case='lower-ascii', percent_encode=True)(text, sep)
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/http/src/uri/
H A Dencoding.rs67 '/' => percent_encode::<UNSAFE_ENCODE_SET<Path>>(string), in unsafe_percent_encode()
68 '&' => percent_encode::<UNSAFE_ENCODE_SET<Query>>(string), in unsafe_percent_encode()
69 _ => percent_encode::<DEFAULT_ENCODE_SET>(string) in unsafe_percent_encode()
73 pub fn percent_encode<S: EncodeSet + Default>(string: &str) -> Cow<'_, str> { in percent_encode() function
H A Duri.rs10 use crate::uri::encoding::{percent_encode, DEFAULT_ENCODE_SET};
175 pub fn percent_encode(string: &str) -> Cow<'_, str> { in percent_encode() method
176 percent_encode::<DEFAULT_ENCODE_SET>(string) in percent_encode()
/dports/lang/parrot/parrot-8.1.0/t/library/
H A Duri_escape.t30 $S0 = percent_encode('Hello')
36 $S0 = percent_encode('Hello?world')
42 $S0 = percent_encode(iso-8859-1:"A\x{D1}O#a")
/dports/ftp/libfilezilla/libfilezilla-0.31.1/lib/
H A Duri.cpp134 ret += percent_encode(path_, true); in to_string()
150 std::string ret = percent_encode(path_, true); in get_request()
164 ret += percent_encode(user_); in get_authority()
167 ret += percent_encode(pass_); in get_authority()
173 ret += percent_encode(host_); in get_authority()
300 ret += percent_encode(segment.first, !encode_slashes); in to_string()
302 ret += percent_encode(segment.second, !encode_slashes); in to_string()
/dports/textproc/py-pymdown-extensions/pymdown-extensions-9.1/tests/test_extensions/
H A Dtest_slugs.py32 "slugify": slugs.slugify(case="lower", percent_encode=True)
71 "slugify": slugs.slugify(percent_encode=True)
110 "slugify": slugs.slugify(case="lower-ascii", percent_encode=True)
/dports/lang/parrot/parrot-8.1.0/runtime/parrot/library/URI/
H A DEscape.pir84 =item percent_encode
86 $S0 = 'percent_encode'(source)
93 .sub percent_encode
117 Prints the percent_encode and percent_encode_component of the command line
132 encoded = 'percent_encode'(arg)
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/inets/src/http_server/
H A Dmod_dir.erl175 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",
184 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",Entry,
202 RequestURI ++ "/" ++ percent_encode(InitEntry),
212 … RequestURI ++ "/" ++ percent_encode(InitEntry), Entry, 23-EntryLength,
222 percent_encode(URI) when is_list(URI) -> function
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/inets/src/http_server/
H A Dmod_dir.erl175 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",
184 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",Entry,
202 RequestURI ++ "/" ++ percent_encode(InitEntry),
212 … RequestURI ++ "/" ++ percent_encode(InitEntry), Entry, 23-EntryLength,
222 percent_encode(URI) when is_list(URI) -> function
/dports/lang/erlang/otp-OTP-24.1.7/lib/inets/src/http_server/
H A Dmod_dir.erl175 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",
184 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",Entry,
202 RequestURI ++ "/" ++ percent_encode(InitEntry),
212 … RequestURI ++ "/" ++ percent_encode(InitEntry), Entry, 23-EntryLength,
222 percent_encode(URI) when is_list(URI) -> function
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/inets/src/http_server/
H A Dmod_dir.erl175 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",
184 RequestURI ++ "/" ++ percent_encode(InitEntry) ++ "/",Entry,
202 RequestURI ++ "/" ++ percent_encode(InitEntry),
212 … RequestURI ++ "/" ++ percent_encode(InitEntry), Entry, 23-EntryLength,
222 percent_encode(URI) when is_list(URI) -> function
/dports/devel/py-filedepot/filedepot-0.8.0/depot/
H A Dutils.py1 from ._compat import percent_encode, unicode_text
15 …rfc6266_part = "filename*=utf-8''%s" % (percent_encode(fname, safe='!#$&+-.^_`|~', encoding='utf-8…
H A D_compat.py27 def percent_encode(string, safe, encoding): function
47 def percent_encode(string, **kwargs): function
/dports/net/proby/proby-1.0.2/cargo-crates/awc-1.0.1/src/
H A Dtest.rs10 use percent_encoding::percent_encode;
93 let name = percent_encode(c.name().as_bytes(), USERINFO); in finish()
94 let value = percent_encode(c.value().as_bytes(), USERINFO); in finish()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/data-url-0.1.1/src/
H A Dlib.rs111 percent_encode(byte, &mut string) in to_percent_encoded()
189 b'\0'..=b'\x1F' | b'\x7F'..=b'\xFF' => percent_encode(byte, &mut string), in parse_header()
195 b' ' | b'"' | b'<' | b'>' if in_query => percent_encode(byte, &mut string), in parse_header()
242 fn percent_encode(byte: u8, string: &mut String) { in percent_encode() function
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/data-url/src/
H A Dlib.rs111 percent_encode(byte, &mut string) in to_percent_encoded()
189 b'\0'..=b'\x1F' | b'\x7F'..=b'\xFF' => percent_encode(byte, &mut string), in parse_header()
195 b' ' | b'"' | b'<' | b'>' if in_query => percent_encode(byte, &mut string), in parse_header()
242 fn percent_encode(byte: u8, string: &mut String) { in percent_encode() function
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/data-url-0.1.0/src/
H A Dlib.rs100 percent_encode(byte, &mut string) in to_percent_encoded()
176 b'\0'...b'\x1F' | b'\x7F'...b'\xFF' => percent_encode(byte, &mut string), in parse_header()
182 b' ' | b'"' | b'<' | b'>' if in_query => percent_encode(byte, &mut string), in parse_header()
228 fn percent_encode(byte: u8, string: &mut String) { in percent_encode() function
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/data-url-0.1.0/src/
H A Dlib.rs100 percent_encode(byte, &mut string) in to_percent_encoded()
176 b'\0'...b'\x1F' | b'\x7F'...b'\xFF' => percent_encode(byte, &mut string), in parse_header()
182 b' ' | b'"' | b'<' | b'>' if in_query => percent_encode(byte, &mut string), in parse_header()
228 fn percent_encode(byte: u8, string: &mut String) { in percent_encode() function
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/lib/tests/
H A Duri-percent-encoding-issue-808.rs17 Redirect::to(format!("/hello/{}", Uri::percent_encode(NAME))) in raw_redirect()
54 let name = Uri::percent_encode(NAME); in uri_percent_encoding_get()
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/inets/src/http_server/
H A Dmod_dir.erl207 percent_encode(URI).
209 percent_encode(URI) when is_list(URI) -> function
212 percent_encode(URI) when is_binary(URI) -> function
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/net/rusoto/src/
H A Ds3url.rs11 use percent_encoding::{percent_decode, percent_encode, AsciiSet, CONTROLS};
36 percent_encode(self.object.as_bytes(), PATH_SEGMENT), in to_string()
/dports/net/proby/proby-1.0.2/cargo-crates/actix-http-1.0.1/src/
H A Dtest.rs13 use percent_encoding::percent_encode;
168 let name = percent_encode(c.name().as_bytes(), USERINFO); in finish()
169 let value = percent_encode(c.value().as_bytes(), USERINFO); in finish()
/dports/security/vaultwarden/vaultwarden-1.23.1/src/
H A Dmail.rs4 use percent_encoding::{percent_encode, NON_ALPHANUMERIC};
134 "email": percent_encode(address.as_bytes(), NON_ALPHANUMERIC).to_string(), in send_delete_account()
151 "email": percent_encode(address.as_bytes(), NON_ALPHANUMERIC).to_string(), in send_verify_email()
233 "email": percent_encode(address.as_bytes(), NON_ALPHANUMERIC).to_string(), in send_invite()
264 "email": percent_encode(address.as_bytes(), NON_ALPHANUMERIC).to_string(), in send_emergency_access_invite()
/dports/databases/py-pgxnclient/pgxnclient-1.3.2/pgxnclient/utils/
H A Duri.py50 values = percent_encode(values)
120 def percent_encode(values): function
/dports/net/oha/oha-0.4.7/cargo-crates/headers-0.3.4/src/disabled/util/
H A Dextended_value.rs86 … percent_encoding::percent_encode(&self.value[..], self::percent_encoding_http::HTTP_VALUE); in fmt()
100 let encoded = percent_encoding::percent_encode(bytes, self::percent_encoding_http::HTTP_VALUE); in http_percent_encode()

12345678910>>...18