mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
Core: UrlDecode option not to convert + to space, UrlEncode now converts space to %20, CtrlCore: Gtk files clip fixed
This commit is contained in:
parent
fbeef84f75
commit
1e4974dc8b
4 changed files with 33 additions and 30 deletions
|
|
@ -7,9 +7,9 @@ String MIMECharsetName(byte charset);
|
|||
String UrlEncode(const char *s, const char *end);
|
||||
String UrlEncode(const char *s, int len);
|
||||
String UrlEncode(const String& s);
|
||||
String UrlDecode(const char *s, const char *end);
|
||||
String UrlDecode(const char *s, int len);
|
||||
String UrlDecode(const String& s);
|
||||
String UrlDecode(const char *s, const char *end, bool plus_is_space = true);
|
||||
String UrlDecode(const char *s, int len, bool plus_is_space = true);
|
||||
String UrlDecode(const String& s, bool plus_is_space = true);
|
||||
|
||||
String QPEncode(const char* s);
|
||||
String QPDecode(const char *s, bool undescore_to_space = false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue