| /dokuwiki/_test/tests/inc/ |
| H A D | IpTest.php | 11 * The data provider for ipToNumber() tests. 24 // NOTE: wrap around! 0xFFFFFFFFFFFFFFFE seen as -2 25 ['7FFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFE', 6, 0x7FFFFFFFFFFFFFFF, -2], 70 $this->assertSame($version, $result['version']); 71 $this->assertSame($upper, $result['upper']); 72 $this->assertSame($lower, $result['lower']); 76 * The data provider for test_ip_in_range(). 124 $this->assertSame($expected, $result); 128 * Data provider for test_ip_matches(). 135 $rangeTests = $this->ip_in_range_provider(); [all …]
|
| H A D | common_clientip.test.php | 13 * The data provider for clientIP() tests. 29 // A X-Real-IP header. 35 // An X-Forwarded-For header from an untrusted proxy. 41 // An X-Forwarded-For header from a trusted proxy. 47 // An X-Forwarded-For header with proxies from an untrusted proxy. 53 // An X-Forwarded-For header with untrusted proxies from a trusted proxy. 59 // An X-Forwarded-For header with an invalid proxy from a trusted proxy. 65 // Malicious X-Real-IP and X-Forwarded-For headers. 71 // Malicious remote address, X-Real-IP and X-Forwarded-For headers. 87 * @param bool $useRealIp True if using the X-Real-IP header is enabled in the config. [all …]
|
| /dokuwiki/.github/ISSUE_TEMPLATE/ |
| H A D | bug_report.yml | 5 - type: markdown 13 --- 24 - type: textarea 27 description: >- 41 - type: markdown 45 - type: input 49 placeholder: 2024-02-14a "Kaos" 52 - type: input 59 - type: input 64 - type: input [all …]
|
| /dokuwiki/_test/tests/Feed/ |
| H A D | FeedPageProcessorTest.php | 70 // see https://github.com/dokuwiki/dokuwiki/pull/4156#issuecomment-1911842452 why we can't 71 // create this in the data provider 78 $this->assertEquals('wiki:dokuwiki', $proc->getId()); 79 $this->assertEquals('DokuWiki', $proc->getTitle()); 80 $this->assertEquals($expectedAuthor, $proc->getAuthor()); 81 $this->assertEquals($expectedMtime, $proc->getRev()); 82 $this->assertEquals(null, $proc->getPrev()); 83 $this->assertTrue($proc->isExisting()); 84 $this->assertEquals(['wiki'], $proc->getCategory()); 85 $this->assertStringContainsString('standards compliant', $proc->getAbstract()); [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | RC4.php | 4 * Pure-PHP implementation of RC4. 12 …* - {@link http://www.mozilla.org/projects/security/pki/nss/draft-kaukonen-cipher-arcfour-03.txt … 13 * - {@link http://en.wikipedia.org/wiki/RC4 - Wikipedia: RC4} 25 * $rc4->setKey('abcdefgh'); 33 * echo $rc4->decrypt($rc4->encrypt($plaintext)); 39 * @license http://www.opensource.org/licenses/mit-license.html MIT License 48 * Pure-PHP implementation of RC4. 108 if ($this->continuousBuffer) { 111 // quoting https://www.openssl.org/news/openssl-3.0-notes.html, OpenSSL 3.0.1 112 …variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2, RC4, RC5, and DES to the legacy provider" [all …]
|
| H A D | RC2.php | 4 * Pure-PHP implementation of RC2. 12 * - {@link http://tools.ietf.org/html/rfc2268} 21 * $rc2->setKey('abcdefgh'); 25 * echo $rc2->decrypt($rc2->encrypt($plaintext)); 30 * @license http://www.opensource.org/licenses/mit-license.html MIT License 40 * Pure-PHP implementation of RC2. 90 * Optimizing value while CFB-encrypting 131 * Twice the same 256-value sequence to save a modulus in key expansion. 254 if ($this->mode == self::MODE_STREAM) { 272 if ($this->current_key_length != 128 || strlen($this->orig_key) < 16) { [all …]
|
| H A D | RSA.php | 4 * Pure-PHP PKCS#1 (v2.1) compliant implementation of RSA. 14 * $public = $private->getPublicKey(); 18 * $ciphertext = $public->encrypt($plaintext); 20 * echo $private->decrypt($ciphertext); 30 * $public = $private->getPublicKey(); 34 * $signature = $private->sign($plaintext); 36 * echo $public->verify($plaintext, $signature) ? 'verified' : 'unverified'; 41 * Technically, id-RSASSA-PSS has a different key format than rsaEncryption. So 42 * should phpseclib save to the id-RSASSA-PSS format by default or the 43 * rsaEncryption format? For stand-alone keys I figure rsaEncryption is better [all …]
|
| H A D | Blowfish.php | 4 * Pure-PHP implementation of Blowfish. 12 * - {@link http://en.wikipedia.org/wiki/Blowfish_(cipher) Wikipedia description of Blowfish} 22 * and password. This renders OpenSSL unusable and forces us to use a pure-PHP implementation 30 * Each of the first 9 calls to _encryptBlock() modify the P-array. Each of the next 512 31 * calls modify the S-boxes. The remaining _encryptBlock() calls operate on the plaintext to 32 * produce the ciphertext. In the pure-PHP implementation of Blowfish these remaining 34 * P-array lookups are eliminated by hard-coding the key-dependent P-array values, and thus we 38 * assuming 16 rounds (which is what OpenSSH's bcrypt defaults to). The eval()-optimized 39 * _encryptBlock() isn't as beneficial because the P-array values are not constant. Well, they 41 * of data. The average length of back to back _encryptBlock() calls with a fixed P-array is [all …]
|
| H A D | DES.php | 4 * Pure-PHP implementation of DES. 12 …* - {@link http://en.wikipedia.org/wiki/DES_supplementary_material Wikipedia: DES supplementary m… 13 …* - {@link http://www.itl.nist.gov/fipspubs/fip46-2.htm FIPS 46-2 - (DES), Data Encryption Standa… 14 * - {@link http://www.cs.eku.edu/faculty/styer/460/Encrypt/JS-DES.html JavaScript DES Example} 23 * $des->setKey('abcdefgh'); 31 * echo $des->decrypt($des->encrypt($plaintext)); 37 * @license http://www.opensource.org/licenses/mit-license.html MIT License 47 * Pure-PHP implementation of DES. 99 self::MODE_ECB => 'des-ecb', 100 self::MODE_CBC => 'des-cbc', [all …]
|
| /dokuwiki/inc/lang/nl/ |
| H A D | lang.php | 17 * @author John de Graaff <john@de-graaff.net> 20 * @author Matthias Carchon <webmaster@c-mattic.be> 37 $lang['encoding'] = 'utf-8'; 89 $lang['email'] = 'E-mail'; 95 $lang['nosecedit'] = 'De pagina is tussentijds veranderd, sectie-informatie was veroude… 99 …et aanpassen van deze pagina verloopt over een minuut.\nKlik op de Voorbeeld-knop om het exclusiev… 156 $lang['regsuccess'] = 'De gebruiker is aangemaakt. Het wachtwoord is per e-mail verzonde… 160 $lang['regbadmail'] = 'Het opgegeven e-mailadres lijkt ongeldig - als je denkt dat dit n… 166 $lang['profnoempty'] = 'Een lege gebruikersnaam of e-mailadres is niet toegestaan'; 179 …authentiecatiecode is niet geldig. Controleer of je de volledige bevestigings-link hebt gebruikt.'; [all …]
|
| /dokuwiki/inc/lang/lb/ |
| H A D | lang.php | 7 $lang['encoding'] = 'utf-8'; 51 $lang['email'] = 'E-Mail'; 62 $lang['regbadmail'] = 'Déi Emailadress gesäit ongëlteg aus - wanns de mengs dat wier e F… 74 $lang['resendpwdbadauth'] = 'Den "Auth"-Code ass ongëlteg. Kuck no obs de dee ganze Konfirmati… 99 $lang['mediainuse'] = 'D\'Datei "%s" gouf net geläscht - se ass nach am Gebrauch.'; 180 $lang['i_funcna'] = 'PHP-Funktioun <code>%s</code> ass net verfügbar. Vläicht huet däi… 181 … = 'Deng PHP-Versioun <code>%s</code> ass méi kleng wéi déi gebrauchte Versioun <code…
|
| /dokuwiki/inc/lang/en/ |
| H A D | lang.php | 11 $lang['encoding'] = 'utf-8'; 65 $lang['email'] = 'E-Mail'; 95 $lang['regbadmail'] = 'The given email address looks invalid - if you think this is an e… 171 $lang['js']['media_diff_opacity'] = 'Shine-through'; 200 $lang['deletefail'] = '"%s" couldn\'t be deleted - check permissions.'; 201 $lang['mediainuse'] = 'The file "%s" hasn\'t been deleted - it is still in use.'; 265 $lang['qb_strike'] = 'Strike-through Text'; 333 … You should either re-extract the files from the downloaded package or consult the complete 335 … = 'PHP function <code>%s</code> is not available. Maybe your hosting provider disabled it for s… 336 $lang['i_disabled'] = 'It has been disabled by your provider.'; [all …]
|
| /dokuwiki/inc/lang/it/ |
| H A D | lang.php | 33 $lang['encoding'] = 'utf-8'; 156 $lang['regbadmail'] = 'L\'indirizzo email fornito sembra essere non valido - se pensi ch… 204 $lang['deletefail'] = '"%s" non può essere eliminato - verifica i permessi.'; 205 $lang['mediainuse'] = 'Il file "%s" non è stato eliminato - è ancora in uso.'; 327 …P <code>%s</code> non è disponibile. Forse è stata disabilitata dal tuo provider per qualche motiv… 328 $lang['i_disabled'] = 'E\' stato disabilitato dal tuo provider di servizi.'; 336 $lang['i_badval'] = '<code>%s</code> - valore vuoto o non valido';
|
| /dokuwiki/inc/lang/de-informal/ |
| H A D | lang.php | 11 * @author F. Mueller-Donath <j.felix@mueller-donath.de> 19 * @author Florian Anderiasch <fa@art-core.org> 22 * @author Alexander Fischer <tbanus@os-forge.net> 27 * @author Pierre Corell <info@joomla-praxis.de> 33 $lang['encoding'] = 'utf-8'; 73 $lang['btn_media'] = 'Medien-Manager'; 76 $lang['btn_mediaManager'] = 'Im Medien-Manager anzeigen'; 85 $lang['email'] = 'E-Mail'; 95 …tungskonflikte zu vermeiden, solltest du sie durch einen Klick auf den Vorschau-Knopf verlängern.'; 100 $lang['js']['mediatitle'] = 'Link-Eigenschaften'; [all …]
|
| /dokuwiki/ |
| H A D | install.php | 3 /*><div style="width:60%; margin: auto; background-color: #fcc; 5 <h1 style="font-size: 120%">No PHP Support</h1> 9 provider if you're unsure what this means. 33 $LC = preg_replace('/[^a-z\-]+/', '', $_REQUEST['l']); 44 header('Content-Type: text/html; charset=utf-8'); 49 <meta charset="utf-8"/> 55 font: 84% Verdana, Helvetica, Arial, sans-serif; 67 font-size: 110%; 77 margin-top: 0.5em; 86 text-decoration: none [all …]
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | java.php | 4 * -------- 13 * ------- 15 * - Added highlighting of import and package directives as non-OOP 17 * - Added instanceof keyword 19 * - Added support for multiple object splitters 21 * - Added URL support 22 * - Added keyword "this", as bugs in GeSHi class ironed out 24 * - Added support for symbols 25 * - Added extra missed keywords 27 * - First Release [all …]
|
| H A D | groovy.php | 4 * ---------- 12 …* Keywords from http: http://docs.codehaus.org/download/attachments/2715/groovy-reference-card.pdf… 15 * ------- 17 * - Added description of extra language features (SF#1970248) 19 * - First Release 22 * ------------------------- 41 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 51 …2 => '/(?:(?<=import[\\n\\s])|(?<=package[\\n\\s]))[\\n\\s]*([a-zA-Z0-9_]+\\.)*([a-zA-Z0-9_]+|\*)(… 701 'ProtocolException', 'Provider', 'ProviderException', 928 '=>', '||', '-', '+', '<<', '<<<', '&&' [all …]
|
| H A D | kotlin.php | 4 * -------- 13 * - First Release 31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 41 …2 => '/(?:(?<=import[\\n\\s])|(?<=package[\\n\\s]))[\\n\\s]*([a-zA-Z0-9_]+\\.)*([a-zA-Z0-9_]+|\*)(… 699 'ProtocolException', 'Provider', 'ProviderException', 898 '+', '-', '*', '/', '%', 912 1 => 'color: #000000; font-weight: bold;', 913 2 => 'color: #000066; font-weight: bold;', 915 4 => 'color: #000066; font-weight: bold;' 918 1 => 'color: #666666; font-style: italic;', [all …]
|
| H A D | java5.php | 4 * -------- 13 * ------- 15 * - Added highlighting of import and package directives as non-OOP 17 * - Added instanceof keyword 19 * - Added support for multiple object splitters 21 * - Added URL support 22 * - Added keyword "this", as bugs in GeSHi class ironed out 24 * - Added support for symbols 25 * - Added extra missed keywords 27 * - First Release [all …]
|
| H A D | tsql.php | 4 * -------- 10 * T-SQL language file for GeSHi. 13 * ------- 15 * - First Release 18 * ------------------------- 36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 41 'LANG_NAME' => 'T-SQL', 42 'COMMENT_SINGLE' => array(1 => '--'), 51 Built-in functions 148 …'EACH', 'ELSE', 'END', 'END-EXEC', 'EQUALS', 'ERRLVL', 'ESCAPE', 'EVERY', 'EXCEPT', 'EXCEPTION', '… [all …]
|
| /dokuwiki/inc/lang/de/ |
| H A D | lang.php | 9 * @author Kurt Singer <webmaster@kurt-singer.com> 10 * @author Robert Riebisch <rr@bttr-software.de> 21 * @author Sebastian Engel <mail@engel-s.de> 22 * @author Karl_de_Hall <Karl.Grohmueller@sonnenhof-sha.de> 32 * @author Florian Anderiasch <fa@art-core.org> 42 * @author Pierre Corell <info@joomla-praxis.de> 45 * @author Simon <st103267@stud.uni-stuttgart.de> 53 $lang['encoding'] = 'utf-8'; 93 $lang['btn_media'] = 'Medien-Manager'; 96 $lang['btn_mediaManager'] = 'Im Medien-Manager anzeigen'; [all …]
|