App-Mxpress-PDF
view release on metacpan or search on metacpan
public/javascripts/ace/mode-php.js view on Meta::CPAN
"imap_mail_move": [
"bool imap_mail_move(resource stream_id, string sequence, string mailbox [, int options])",
"Move specified message to a mailbox"
],
"imap_mailboxmsginfo": [
"object imap_mailboxmsginfo(resource stream_id)",
"Returns info about the current mailbox"
],
"imap_mime_header_decode": [
"array imap_mime_header_decode(string str)",
"Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text'"
],
"imap_msgno": [
"int imap_msgno(resource stream_id, int unique_msg_id)",
"Get the sequence number associated with a UID"
],
"imap_mutf7_to_utf8": [
"string imap_mutf7_to_utf8(string in)",
"Decode a modified UTF-7 string to UTF-8"
],
"imap_num_msg": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"imap_mail_move": [
"bool imap_mail_move(resource stream_id, string sequence, string mailbox [, int options])",
"Move specified message to a mailbox"
],
"imap_mailboxmsginfo": [
"object imap_mailboxmsginfo(resource stream_id)",
"Returns info about the current mailbox"
],
"imap_mime_header_decode": [
"array imap_mime_header_decode(string str)",
"Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text'"
],
"imap_msgno": [
"int imap_msgno(resource stream_id, int unique_msg_id)",
"Get the sequence number associated with a UID"
],
"imap_mutf7_to_utf8": [
"string imap_mutf7_to_utf8(string in)",
"Decode a modified UTF-7 string to UTF-8"
],
"imap_num_msg": [
public/javascripts/ace/worker-html.js view on Meta::CPAN
return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
}
function isDecimalDigit(c) {
return (c >= '0' && c <= '9');
}
var EntityParser = {};
EntityParser.consumeEntity = function(buffer, tokenizer, additionalAllowedCharacter) {
var decodedCharacter = '';
var consumedCharacters = '';
var ch = buffer.char();
if (ch === InputStream.EOF)
return false;
consumedCharacters += ch;
if (ch == '\t' || ch == '\n' || ch == '\v' || ch == ' ' || ch == '<' || ch == '&') {
buffer.unget(consumedCharacters);
return false;
}
if (additionalAllowedCharacter === ch) {
public/javascripts/ace/worker-html.js view on Meta::CPAN
code = parseInt(code, radix);
var replacement = this.replaceEntityNumbers(code);
if (replacement) {
tokenizer._parseError("invalid-numeric-entity-replaced");
code = replacement;
}
if (code > 0xFFFF && code <= 0x10FFFF) {
code -= 0x10000;
var first = ((0xffc00 & code) >> 10) + 0xD800;
var second = (0x3ff & code) + 0xDC00;
decodedCharacter = String.fromCharCode(first, second);
} else
decodedCharacter = String.fromCharCode(code);
if (ch !== ';') {
tokenizer._parseError("numeric-entity-without-semicolon");
buffer.unget(ch);
}
return decodedCharacter;
}
buffer.unget(consumedCharacters);
tokenizer._parseError("expected-numeric-entity");
return false;
}
if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')) {
var mostRecentMatch = '';
while (namedEntityPrefixes[consumedCharacters]) {
if (entities[consumedCharacters]) {
mostRecentMatch = consumedCharacters;
public/javascripts/ace/worker-html.js view on Meta::CPAN
ch = buffer.char();
if (ch === InputStream.EOF)
break;
consumedCharacters += ch;
}
if (!mostRecentMatch) {
tokenizer._parseError("expected-named-entity");
buffer.unget(consumedCharacters);
return false;
}
decodedCharacter = entities[mostRecentMatch];
if (ch === ';' || !additionalAllowedCharacter || !(isAlphaNumeric(ch) || ch === '=')) {
if (consumedCharacters.length > mostRecentMatch.length) {
buffer.unget(consumedCharacters.substring(mostRecentMatch.length));
}
if (ch !== ';') {
tokenizer._parseError("named-entity-without-semicolon");
}
return decodedCharacter;
}
buffer.unget(consumedCharacters);
return false;
}
};
EntityParser.replaceEntityNumbers = function(c) {
switch(c) {
case 0x00: return 0xFFFD; // REPLACEMENT CHARACTER
case 0x13: return 0x0010; // Carriage return
( run in 0.231 second using v1.01-cache-2.11-cpan-26ccb49234f )