| /dokuwiki/vendor/splitbrain/php-cli/src/ |
| H A D | Colors.php | 16 const C_RESET = 'reset'; 17 const C_BLACK = 'black'; 18 const C_DARKGRAY = 'darkgray'; 19 const C_BLUE = 'blue'; 20 const C_LIGHTBLUE = 'lightblue'; 21 const C_GREEN = 'green'; 22 const C_LIGHTGREEN = 'lightgreen'; 23 const C_CYAN = 'cyan'; 24 const C_LIGHTCYAN = 'lightcyan'; 25 const C_RED = 'red'; [all …]
|
| H A D | Exception.php | 16 const E_ANY = -1; // no error code specified 17 const E_UNKNOWN_OPT = 1; //Unrecognized option 18 const E_OPT_ARG_REQUIRED = 2; //Option requires argument 19 const E_OPT_ARG_DENIED = 3; //Option not allowed argument 20 const E_OPT_ABIGUOUS = 4; //Option abiguous 21 const E_ARG_READ = 5; //Could not read argv
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | script.js | 3 const $extmgr = jQuery('#extension__manager'); 24 const image_href = jQuery(this).attr("href"); 52 const $btn = jQuery(this); 53 const $section = $btn.parents('section'); 82 const $extlist = jQuery('#extension__list'); 84 const $displayOpts = jQuery('<p>').appendTo($extmgr.find('.panelHeader')); 85 const $label = jQuery('<label />').appendTo($displayOpts); 86 const $checkbox = jQuery('<input />', {type: 'checkbox'}).appendTo($label);
|
| H A D | Notice.php | 7 public const INFO = 'info'; 8 public const WARNING = 'warning'; 9 public const ERROR = 'error'; 10 public const SECURITY = 'security'; 12 protected const ICONS = [
|
| /dokuwiki/vendor/splitbrain/slika/src/ |
| H A D | Slika.php | 12 const ROTATE_CCW = 8; 14 const ROTATE_CW = 6; 16 const ROTATE_TOPDOWN = 3; 19 const DEFAULT_OPTIONS = [
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/ |
| H A D | Constants.php | 7 public const TRUE = ['keyword', 'true']; 8 public const FALSE = ['keyword', 'false']; 11 public const VPREFIX = '@'; 13 public const MPREFIX = '$'; 16 public const PARENT_SELECTOR = '&'; 19 public const LENGTH_UNITS = ['px', 'm', 'cm', 'mm', 'in', 'pt', 'pc']; 22 public const LENGTH_BASES = [1, 3779.52755906, 37.79527559, 3.77952756, 96, 1.33333333, 16]; 25 public const TIME_UNITS = ['s', 'ms']; 28 public const ANGLE_UNITS = ['rad', 'deg', 'grad', 'turn']; 31 public const CSS_COLORS = [
|
| /dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/ |
| H A D | Parser.php | 79 private const STATE_BEFORE_VERSION_NAME = 'before_version_name'; 81 private const STATE_VERSION_NAME = 'version_name'; 83 private const STATE_VERSION_EQUALS = 'version_equals'; 85 private const STATE_VERSION_VALUE = 'version_value'; 87 private const STATE_ENCODING_NAME = 'encoding_name'; 89 private const STATE_EMIT = 'emit'; 91 private const STATE_ENCODING_EQUALS = 'encoding_equals'; 93 private const STATE_STANDALONE_NAME = 'standalone_name'; 95 private const STATE_ENCODING_VALUE = 'encoding_value'; 97 private const STATE_STANDALONE_EQUALS = 'standalone_equals'; [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/ |
| H A D | PKCS.php | 26 const MODE_ANY = 0; 30 const MODE_PEM = 1; 34 const MODE_DER = 2;
|
| /dokuwiki/inc/TreeBuilder/ |
| H A D | TreeSort.php | 14 public const SORT_BY_ID = [self::class, 'sortById']; 15 public const SORT_BY_TITLE = [self::class, 'sortByTitle']; 16 public const SORT_BY_NS_FIRST_THEN_ID = [self::class, 'sortByNsFirstThenId']; 17 public const SORT_BY_NS_FIRST_THEN_TITLE = [self::class, 'sortByNsFirstThenTitle'];
|
| H A D | PageTreeBuilder.php | 28 public const FLAG_NS_AS_STARTPAGE = 1; 31 public const FLAG_NO_NS = 2; 34 public const FLAG_NO_PAGES = 4; 37 public const FLAG_KEEP_HIDDEN = 8; 40 public const FLAG_SELF_TOP = 16; 43 public const FLAG_KEEP_INVALID = 32;
|
| /dokuwiki/lib/scripts/ |
| H A D | linkwiz.js | 37 const pos = $editor.position(); 106 const $obj = this.$getResult(this.selected); 140 const $obj = this.$getResult(num); 151 const childPos = $obj.position().top; 153 const yDiff = childPos + $obj.outerHeight() - jQuery(this.result).innerHeight(); 243 const syntax = this.createLinkSyntax(link, linkTitle); 248 const externallinkpattern = new RegExp('^((f|ht)tps?:)?//', 'i'); 273 const refId = this.textArea.form.id.value; 315 const $res = jQuery(this.result); 337 const temp = this.$entry.val(); [all …]
|
| H A D | linkwiz.test.js | 13 const testCases = [ 25 const result = LinkWizard.createRelativeID(ref, id);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/ |
| H A D | Agent.php | 57 const SSH_AGENTC_REQUEST_IDENTITIES = 11; 59 const SSH_AGENT_IDENTITIES_ANSWER = 12; 61 const SSH_AGENTC_SIGN_REQUEST = 13; 63 const SSH_AGENT_SIGN_RESPONSE = 14; 68 const FORWARD_NONE = 0; 70 const FORWARD_REQUEST = 1; 72 const FORWARD_ACTIVE = 2; 77 const SSH_AGENT_FAILURE = 5;
|
| /dokuwiki/vendor/simplepie/simplepie/src/HTTP/ |
| H A D | Parser.php | 90 private const STATE_HTTP_VERSION = 'http_version'; 92 private const STATE_STATUS = 'status'; 94 private const STATE_REASON = 'reason'; 96 private const STATE_NEW_LINE = 'new_line'; 98 private const STATE_BODY = 'body'; 100 private const STATE_NAME = 'name'; 102 private const STATE_VALUE = 'value'; 104 private const STATE_VALUE_CHAR = 'value_char'; 106 private const STATE_QUOTE = 'quote'; 108 private const STATE_QUOTE_ESCAPED = 'quote_escaped'; [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
| H A D | MSBLOB.php | 35 const PRIVATEKEYBLOB = 0x7; 40 const PUBLICKEYBLOB = 0x6; 45 const PUBLICKEYBLOBEX = 0xA; 50 const CALG_RSA_KEYX = 0x0000A400; 55 const CALG_RSA_SIGN = 0x00002400; 60 const RSA1 = 0x31415352; 65 const RSA2 = 0x32415352;
|
| /dokuwiki/vendor/splitbrain/php-archive/src/ |
| H A D | Archive.php | 8 const COMPRESS_AUTO = -1; 9 const COMPRESS_NONE = 0; 10 const COMPRESS_GZIP = 1; 11 const COMPRESS_BZIP = 2;
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
| H A D | PHP64.php | 26 const BASE = 31; 27 const BASE_FULL = 0x80000000; 28 const MAX_DIGIT = 0x7FFFFFFF; 29 const MSB = 0x40000000; 35 const MAX10 = 1000000000; 41 const MAX10LEN = 9; 42 const MAX_DIGIT2 = 4611686018427387904;
|
| H A D | PHP32.php | 26 const BASE = 26; 27 const BASE_FULL = 0x4000000; 28 const MAX_DIGIT = 0x3FFFFFF; 29 const MSB = 0x2000000; 35 const MAX10 = 10000000; 41 const MAX10LEN = 7; 42 const MAX_DIGIT2 = 4503599627370496;
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ |
| H A D | HashAlgorithm.php | 23 const MAP = AlgorithmIdentifier::MAP;
|
| H A D | SubjectAltName.php | 23 const MAP = GeneralNames::MAP;
|
| H A D | MaskGenAlgorithm.php | 23 const MAP = AlgorithmIdentifier::MAP;
|
| H A D | IssuerAltName.php | 23 const MAP = GeneralNames::MAP;
|
| H A D | CertificateIssuer.php | 23 const MAP = GeneralNames::MAP;
|
| H A D | NumericUserIdentifier.php | 25 const MAP = ['type' => ASN1::TYPE_NUMERIC_STRING];
|
| H A D | Prime_p.php | 25 const MAP = ['type' => ASN1::TYPE_INTEGER];
|