Home
last modified time | relevance | path

Searched refs:encoded (Results 101 – 121 of 121) sorted by path

12345

/plugin/remotescript/lib/JsHttpRequest/
H A Dprotocol.txt107 Each character of a key/value is encoded by JavaScript standard escape()
110 - Unicode non-ASCII character (e.g. with code 0x1234) is encoded to e.g. %u1234.
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DURI.Munge.txt
/plugin/securelogin/
H A DREADME.md145 * fix escaping encoded data (now supports non ascii passwords)
/plugin/selfmeasurement/
H A Ddescription.txt61 * The attached textual file is not correctly encoded in UTF8 ?
/plugin/socialshareprivacy2/JC/
H A DREADME.md53 By default the cookie value is encoded/decoded when writing/reading, using `encodeURIComponent`/`de…
/plugin/socialshareprivacy2/SSP/
H A DREADME.md1214 The length is the number of UTF-8 encoded bytes, not the number of unicode code
/plugin/stlviewer/
H A DREADME.md8 Options are URL encoded a=1&b=2 etc
/plugin/swiftmail/Swift/Message/
H A DHeaders.php503 …$encoded = Swift_Message_Encoder::instance()->rfc2047Encode($att_value, $this->charset, $this->lan…
504 $lines = explode($this->LE, $encoded);
510 $encoded = implode($this->LE, $lines);
513 if ((strlen($encoded) + $used_len + strlen($attribute) + 4) < 74)
515 if (strpos($encoded, "'") !== false) $attribute .= "*";
516 $append = "; " . $attribute . "=" . $encoded;
531 if ($add_asterisk || strpos($encoded, "'") !== false)
546 if (strpos($encoded, "'") !== false) $attribute .= "*";
547 $append = $this->LE . " " . $attribute . "=" . $encoded;
/plugin/textinsert/
H A Dadmin.php96 $encoded = $_REQUEST['encoded'];
97 $encoded = array_map('urldecode',$encoded);
98 foreach($encoded AS $k=>$val) {
131 $encoded = urlencode($subst);
132 if($subst != $encoded) {
133 ptln("<input type = 'hidden' name='encoded[$macro]' value='$encoded'>");
/plugin/tuxquote/
H A Dquotes.txt3178 The information encoded in your DNA determines your unique biological characteristics, such as sex,…
/plugin/txtconf/lang/en/
H A Dintro_interwiki.txt7 …* ''{URL}'' is replaced by the URL encoded representation of the wikiname this is the right thing …
/plugin/txtconf/lang/fr/
H A Dintro_interwiki.txt7 …* ''{URL}'' is replaced by the URL encoded representation of the wikiname this is the right thing …
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md210 * #703: PropPatch in client is not correctly encoded.
302 * #703: PropPatch in client is not correctly encoded.
376 * Some uris were not correctly encoded in notifications.
571 * #651: Double-encoded path in the browser plugin. Should fix a few broken
1268 * Fixed: Marking both the text/calendar and text/x-vcard as UTF-8 encoded.
1542 * Fixed: VObject properties are now always encoded before components.
1827 * Fixed: Issue with certain encoded paths in Browser Plugin.
1921 * Fixed: Issue 26: Workaround for broken GVFS behaviour with encoded special
2030 * Fixed: Issue 26: Workaround for broken GVFS behaviour with encoded special
2057 * Fixed: Issue 27: Entities not being encoded in PROPFIND responses.
/plugin/webdav/vendor/sabre/uri/
H A DCHANGELOG.md17 * #9: Fix support for relative URI's that have a non-uri encoded colon `:` in
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md25 * #441: Repairing BASE64 encoded vCard version 3
117 * #302: `UNTIL` was not encoded correctly when converting to jCal.
119 * #303: `COUNT` is now encoded as an int in jCal instead of a string. (@strokyl)
496 * Added: Fixing badly encoded URL's from google contacts vcards.
542 2.1 quoted printable-encoded properties.
627 * Fixed: Multiple parameters with the same name are now correctly encoded.
654 * Fixed: QUOTED-PRINTABLE is now correctly encoded as well as encoded, for
/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md270 * Added: Fixing badly encoded URL's from google contacts vcards.
316 2.1 quoted printable-encoded properties.
401 * Fixed: Multiple parameters with the same name are now correctly encoded.
428 * Fixed: QUOTED-PRINTABLE is now correctly encoded as well as encoded, for
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf5_connector.cfm26 * FCKeditor requires that the connector responds with UTF-8 encoded XML.
29 * encoded response - code points under 127 in UTF-8 are stored using a
H A Dcf5_upload.cfm26 * FCKeditor requires that the connector responds with UTF-8 encoded XML.
29 * encoded response - code points under 127 in UTF-8 are stored using a
/plugin/wysiwyg/fckeditor/
H A Dfckeditor.cfc211 hint="Create configuration string: Key1=Value1&Key2=Value2&... (Key/Value:HTML encoded)"
H A Dfckeditor.cfm131 // create configuration string: Key1=Value1&Key2=Value2&... (Key/Value:HTML encoded)
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs1923 …case "base64": /*:: if(typeof blob !== 'string') throw "Must pass a base64-encoded binary string w…
2985 - space or tab at end of line must be encoded
2997 var encoded = text.replace(/[\x00-\x08\x0B\x0C\x0E-\x1F\x7E-\xFF=]/g, function(c) {
3002 encoded = encoded.replace(/ $/mg, "=20").replace(/\t$/mg, "=09");
3004 if(encoded.charAt(0) == "\n") encoded = "=0D" + encoded.slice(1);
3005encoded = encoded.replace(/\r(?!\n)/mg, "=0D").replace(/\n\n/mg, "\n=0A").replace(/([^\r\n])\n/mg,…
3007 var o/*:Array<string>*/ = [], split = encoded.split("\r\n");
12178 var encoded = encode_range(range);
12179 if (encoded !== sheet["!ref"]) sheet["!ref"] = encoded;

12345