/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | Barcode.php | 8 public function getBarcodeArray($code, $type, $pr = '', $quiet_zone_left = null, $quiet_zone_right = null) argument 10 $barcode = $this->getBarcode($code, $type, $pr, $quiet_zone_left, $quiet_zone_right); 14 public function getChecksum($code, $type) argument 16 $barcode = $this->getBarcode($code, $type); 21 * @param string $code 27 public function getBarcode($code, $type, $pr = 0.0, $quiet_zone_left = null, $quiet_zone_right = null) argument 33 return new Barcode\EanUpc($code, 13, 11, 7, 0.33, 25.93); 36 return new Barcode\EanUpc($code, 12, 9, 9, 0.33, 25.91); 39 return new Barcode\EanUpc($code, 6, 9, 7, 0.33, 25.93); 42 return new Barcode\EanUpc($code, 145 sanitizeCode($code) global() argument [all...] |
/plugin/code2/ |
H A D | style.css | 5 div.dokuwiki pre.code,pre.code{background:#fcfdfe none;color:#000;padding:0.4ex;} 9 .code .br0{background:inherit;color:#369;} 10 .code .co1,.code .co2,.code .coMULTI,.code .kw2,.code .lno{font-style:italic;} 11 .code .br0,.code .co2,.code .es0,.code .kw1,.code .kw2,.code .kw3,.code .lno{font-weight:600;} 12 .code .co1,.code .co2,.code .coMULTI{background:inherit;color:#666;} 13 .code .es0{background:inherit;color:#c09;} 14 .code .imp{background:inherit;color:#909;} 33 pre.code a{border:none;} 37 div.code pre.code{margin:0;} 45 div.code pre.codeHidden{display:none;} [all …]
|
H A D | syntax_plugin_code.css | 19 pre.code, 31 pre.code { 61 .code .co1, 62 .code .co2, 64 .code .kw2, 68 .code .br0, 69 .code .co2, 70 .code .es0, 71 .code .kw1, 72 .code .kw2, [all …]
|
/plugin/twofactorgoogleauth/ |
H A D | QRCode.php | 149 while (count($code) % 8) $code[] = 0; 238 return $code; 291 return $code; 321 $code[] = $ch & 0x80; 322 $code[] = $ch & 0x40; 323 $code[] = $ch & 0x20; 330 return $code; 382 return $code; 394 $code = array(); 416 $code[] = 0; [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | encoding.inc.php | 17 $code = 0; 21 $code = 28 $code = 35 $code = 43 return $code; 50 if ($code < 128) { 51 return chr($code); 54 if ($code < 2048) { 55 return chr(0xC0 | (($code >> 6) & 0x1F)) . chr(0x80 | ($code & 0x3F)); 58 if ($code < 65536) { [all …]
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | Barcode1D.php | 65 * <li>$arrcode['code'] code to be printed on text label</li> 73 * @param $code (string) code to print 74 * @param $type (string) type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128 : CODE 128</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extension</li><li>EAN5 : 5-Digits UPC-Based Extension</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul> 77 public function __construct($code, $type) { argument 78 $this->setBarcode($code, $type); 92 * @param $code (string) code to print 93 * @param $type (string) type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128 : CODE 128</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extension</li><li>EAN5 : 5-Digits UPC-Based Extension</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</l 97 setBarcode($code, $type) global() argument 241 barcode_code39($code, $extended = false, $checksum = false) global() argument 334 encode_code39_ext($code) global() argument 385 checksum_code39($code) global() argument 408 barcode_code93($code) global() argument 536 checksum_code93($code) global() argument 585 checksum_s25($code) global() argument 611 barcode_msi($code, $checksum = false) global() argument 670 barcode_s25($code, $checksum = false) global() argument 742 barcode_i25($code, $checksum = false) global() argument 806 barcode_c128($code, $type = '') global() argument 1136 get128ABsequence($code) global() argument 1175 barcode_eanupc($code, $len = 13) global() argument 1368 barcode_eanext($code, $len = 5) global() argument 1443 barcode_postnet($code, $planet = false) global() argument 1516 barcode_rms4cc($code, $kix = false) global() argument 1667 barcode_codabar($code) global() argument 1723 barcode_code11($code) global() argument 1814 barcode_pharmacode($code) global() argument 1840 barcode_pharmacode2t($code) global() argument 1902 barcode_imb($code) global() argument 2027 barcode_imb_pre($code) global() argument [all...] |
/plugin/gitbacked/lang/de/ |
H A D | mail_command_error.txt | 3 * **Repo Pfad:** <code>@GIT_REPO_PATH@</code> 5 * **Aktuelles Arbeitsverzeichnis:** <code>@GIT_CWD@</code> 7 * **Befehl:** <code>@GIT_COMMAND@</code> 9 * **Exitcode:** <code>@GIT_COMMAND_EXITCODE@</code> 11 * **Fehler:** <code>@GIT_ERROR_MESSAGE@</code> 13 * **Anwender:** <code>@NAME@</code> 15 * **eMail:** <code>@MAIL@</code> 17 * **Browser:** <code>@BROWSER@</code> 19 * **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
H A D | mail_create_new_error.txt | 3 * **Repo Pfad:** <code>@GIT_REPO_PATH@</code> 5 * **Referenz:** <code>@GIT_REFERENCE@</code> 7 * **Fehler:** <code>@GIT_ERROR_MESSAGE@</code> 9 * **Anwender:** <code>@NAME@</code> 11 * **eMail:** <code>@MAIL@</code> 13 * **Browser:** <code>@BROWSER@</code> 15 * **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
H A D | mail_command_success.txt | 3 * **Repo Pfad:** <code>@GIT_REPO_PATH@</code> 5 * **Aktuelles Arbeitsverzeichnis:** <code>@GIT_CWD@</code> 7 * **Befehl:** <code>@GIT_COMMAND@</code> 9 * **Anwender:** <code>@NAME@</code> 11 * **eMail:** <code>@MAIL@</code> 13 * **Browser:** <code>@BROWSER@</code> 15 * **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
/plugin/gitbacked/lang/en/ |
H A D | mail_command_error.txt | 3 * **Repo path:** <code>@GIT_REPO_PATH@</code> 5 * **Current working dir:** <code>@GIT_CWD@</code> 7 * **Command:** <code>@GIT_COMMAND@</code> 9 * **Exitcode:** <code>@GIT_COMMAND_EXITCODE@</code> 11 * **Error:** <code>@GIT_ERROR_MESSAGE@</code> 13 * **User:** <code>@NAME@</code> 15 * **eMail:** <code>@MAIL@</code> 17 * **Browser:** <code>@BROWSER@</code> 19 * **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
H A D | mail_command_success.txt | 3 * **Repo path:** <code>@GIT_REPO_PATH@</code> 5 * **Current working dir:** <code>@GIT_CWD@</code> 7 * **Command:** <code>@GIT_COMMAND@</code> 9 * **User:** <code>@NAME@</code> 11 * **eMail:** <code>@MAIL@</code> 13 * **Browser:** <code>@BROWSER@</code> 15 * **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
H A D | mail_create_new_error.txt | 3 * **Repo path:** <code>@GIT_REPO_PATH@</code> 5 * **Reference:** <code>@GIT_REFERENCE@</code> 7 * **Error:** <code>@GIT_ERROR_MESSAGE@</code> 9 * **User:** <code>@NAME@</code> 11 * **eMail:** <code>@MAIL@</code> 13 * **Browser:** <code>@BROWSER@</code> 15 * **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/ |
H A D | EanUpc.php | 7 * EAN13: European Article Numbering international retail product code 8 * UPC-A: Universal product code seen on almost all retail products in the USA and Canada 15 * @param string $code 22 public function __construct($code, $length, $leftMargin, $rightMargin, $xDim, $barHeight) argument 24 $this->init($code, $length); 33 * @param string $code 36 private function init($code, $length) argument 38 if (preg_match('/[\D]+/', $code)) { 39 throw new \Mpdf\Barcode\BarcodeException(sprintf('Invalid EAN UPC barcode value "%s"', $code)); 52 $code [all...] |
H A D | Code128.php | 9 * Very capable code, excellent density, high reliability; in very wide use world-wide 15 * @param string $code 19 public function __construct($code, $type = 'B', $ean = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 21 $this->init($code, $type, $ean); 31 * @param string $code 35 protected function init($code, $type, $ean) argument 37 $code = UtfString::strcode2utf($code); // mPDF 5.7.1 Allows e.g. <barcode code="5432
1068" type="C128A" /> 157 foreach (explode(" ", $code) a [all...] |
H A D | S25.php | 14 * @param string $code 17 public function __construct($code, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 19 $this->init($code, $checksum); 29 * @param string $code 32 private function init($code, $checksum) argument 51 $checkdigit = $this->checksum($code); 52 $code .= $checkdigit; 55 if ((strlen($code) % 2) != 0) { 56 // add leading zero if code-length is odd 57 $code 85 checksum($code) global() argument [all...] |
H A D | I25.php | 7 * Compact numeric code, widely used in industry, air cargo 14 * @param string $code 19 public function __construct($code, $topBottomMargin, $printRatio, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 21 $this->init($code, $printRatio, $checksum); 31 * @param string $code 35 private function init($code, $printRatio, $checksum) argument 55 $checkdigit = $this->checksum($code); 56 $code .= $checkdigit; 58 if ((strlen($code) % 2) != 0) { 59 // add leading zero if code 111 checksum($code) global() argument [all...] |
H A D | EanExt.php | 14 * @param string $code 22 public function __construct($code, $length, $leftMargin, $rightMargin, $xDim, $barHeight, $separatorMargin) argument 24 $this->init($code, $length); 34 * @param string $code 37 private function init($code, $length = 5) argument 40 $code = str_pad($code, $length, '0', STR_PAD_LEFT); 44 $r = $code % 4; 46 $r = (3 * ($code[0] + $code[ [all...] |
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/ |
H A D | EvalBarrett.php | 66 $code = ' 106 $code = ' 264 $code = ' 279 $code .= ' 312 $code = ' 336 $code .= '; 355 return $code; 410 $code .= ' 419 return $code; 448 $code .= ' [all …]
|
/plugin/xssnipper/ |
H A D | config.ini | 1 code=<code [type] [filename]> insert_code_here </code> key 3 php=<code php [filename]> insert_code_here </code> 4 css=<code css [filename]> insert_code_here </code> 5 html=<code html [filename]> insert_code_here </code> 6 js=<code js [filename]> insert_code_here </code> 7 txt=<code txt [filename]> insert_code_here </code> 8 xml=<code xml [filename]> insert_code_here </code>
|
/plugin/xcom/scripts/ |
H A D | safeFN_class.js | 175 chr: function (code) argument 177 return String.fromCharCode(code); 183 code2utf: function (code) argument 185 if (code < 128) return this.chr(code); 186 if (code < 2048) return this.chr(192+(code>>6)) + this.chr(128+(code&63)); 187 …if (code < 65536) return this.chr(224+(code>>12)) + this.chr(128+((code>>6)&63)) + this.chr(128+(c… 188 …if (code < 2097152) return this.chr(240+(code>>18)) + this.chr(128+((code>>12)&63)) + this.chr(128… 198 code = utf8str.charCodeAt(i++); 205 if (code < 128) str[j++]= this.chr(code); 206 else if (code < 224) str[j++] = this.chr(((code-192)<<6) + (code2-128)); [all …]
|
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/ |
H A D | SMTP.php | 181 if ($code !== '220'){ 198 if ($code !== '220'){ 217 if ($code !== '250'){ 242 if ($code !== '334'){ 247 if ($code !== '334'){ 252 if ($code !== '235'){ 268 if ($code !== '250') { 303 if ($code !== '354') { 308 if ($code !== '250'){ 324 if ($code !== '221'){ [all …]
|
/plugin/codebutton_ext/ |
H A D | action.php | 59 'close' => '\n</code>', 67 'close' => '\n</code>', 75 'close' => '\n</code>', 83 'close' => '\n</code>', 91 'close' => '\n</code>', 99 'close' => '\n</code>', 107 'close' => '\n</code>', 115 'close' => '\n</code>', 124 'close' => '\n</code>', 133 'close' => '\n</code>', [all …]
|
/plugin/fckg/scripts/ |
H A D | safeFN_class.js | 179 chr: function (code) argument 181 return String.fromCharCode(code); 187 code2utf: function (code) argument 189 if (code < 128) return this.chr(code); 190 if (code < 2048) return this.chr(192+(code>>6)) + this.chr(128+(code&63)); 191 …if (code < 65536) return this.chr(224+(code>>12)) + this.chr(128+((code>>6)&63)) + this.chr(128+(c… 192 …if (code < 2097152) return this.chr(240+(code>>18)) + this.chr(128+((code>>12)&63)) + this.chr(128… 202 code = utf8str.charCodeAt(i++); 209 if (code < 128) str[j++]= this.chr(code); 210 else if (code < 224) str[j++] = this.chr(((code-192)<<6) + (code2-128)); [all …]
|
/plugin/ckgdoku/fckeditor/editor/filemanager/browser/default/js/ |
H A D | safeFN_class.js | 175 chr: function (code) argument 177 return String.fromCharCode(code); 183 code2utf: function (code) argument 185 if (code < 128) return this.chr(code); 186 if (code < 2048) return this.chr(192+(code>>6)) + this.chr(128+(code&63)); 187 …if (code < 65536) return this.chr(224+(code>>12)) + this.chr(128+((code>>6)&63)) + this.chr(128+(c… 188 …if (code < 2097152) return this.chr(240+(code>>18)) + this.chr(128+((code>>12)&63)) + this.chr(128… 198 code = utf8str.charCodeAt(i++); 205 if (code < 128) str[j++]= this.chr(code); 206 else if (code < 224) str[j++] = this.chr(((code-192)<<6) + (code2-128)); [all …]
|
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/ |
H A D | safeFN_class.js | 175 chr: function (code) argument 177 return String.fromCharCode(code); 183 code2utf: function (code) argument 185 if (code < 128) return this.chr(code); 186 if (code < 2048) return this.chr(192+(code>>6)) + this.chr(128+(code&63)); 187 …if (code < 65536) return this.chr(224+(code>>12)) + this.chr(128+((code>>6)&63)) + this.chr(128+(c… 188 …if (code < 2097152) return this.chr(240+(code>>18)) + this.chr(128+((code>>12)&63)) + this.chr(128… 198 code = utf8str.charCodeAt(i++); 205 if (code < 128) str[j++]= this.chr(code); 206 else if (code < 224) str[j++] = this.chr(((code-192)<<6) + (code2-128)); [all …]
|