/dokuwiki/lib/scripts/jquery/ |
D | jquery.min.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument
|
D | jquery-ui.min.js | 6 …e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)})… argument
|
/dokuwiki/inc/ |
D | ErrorHandler.php | 58 public static function fatalException($e) argument 60 $plugin = self::guessPlugin($e); 61 $title = hsc(get_class($e) . ': ' . $e->getMessage()); 64 $logged = self::logException($e) 66 : $e->getFile() . ':' . $e->getLine(); 90 public static function showExceptionMsg($e, $intro = 'Error!') argument 92 $msg = hsc($intro) . '<br />' . hsc(get_class($e) . ': ' . $e->getMessage()); 93 if (self::logException($e)) $msg .= '<br />More info is available in the error log.'; 127 public static function logException($e) argument 129 if ($e instanceof \ErrorException) { [all …]
|
D | ActionRouter.php | 92 } catch (ActionException $e) { 94 $actionname = $e->getNewAction(); 97 if ($e instanceof ActionDisabledException) { 102 if ($e->displayToUser()) { 103 msg(hsc($e->getMessage()), -1); 108 } catch (NoActionException $e) { 112 } catch (\Exception $e) { 113 $this->handleFatalException($e); 124 * @param null|ActionException $e any previous exception that caused the transition 126 protected function transitionAction($from, $to, $e = null) argument [all …]
|
/dokuwiki/lib/scripts/ |
D | hotkeys.js | 93 addEvent(document,'keyup',function (e) { argument 94 return t.onkeyup.call(t,e); 97 addEvent(document,'keypress',function (e) { argument 98 return t.onkeypress.call(t,e); 101 addEvent(document,'keydown',function (e) { argument 102 return t.onkeydown.call(t,e); 115 this.onkeyup = function(e) { argument 117 var v = t.findShortcut(e); 133 this.onkeydown = function(e) { argument 135 var v = t.findShortcut(e); [all …]
|
D | linkwiz.js | 75 this.$entry.keyup((e) => this.onEntry(e)); 76 jQuery(this.result).on('click', 'a', (e) => this.onResultClick(e)); 82 onEntry(e) { argument 83 if (e.key === 'ArrowLeft' || e.key === 'ArrowRight') { //left/right 86 if (e.key === 'Escape') { //Escape 88 e.preventDefault(); 89 e.stopPropagation(); 92 if (e.key === 'ArrowUp') { //Up 94 e.preventDefault(); 95 e.stopPropagation(); [all …]
|
D | helpers.js | 59 function logError(e, file) { argument 64 e.name, e.message, file); 65 if(e.stack) { 66 console.error(e.stack);
|
D | editor.js | 128 keyHandler: function(e){ argument 129 if(jQuery.inArray(e.keyCode,[8, 10, 13, 32]) === -1) { 141 … if((e.keyCode == 13 || e.keyCode == 10) && e.ctrlKey) { // Ctrl-Enter (With Chrome workaround) 144 e.preventDefault(); // prevent enter key 146 }else if(e.keyCode == 13){ // Enter 163 e.preventDefault(); // prevent enter key 166 }else if(e.keyCode == 8){ // Backspace 184 e.preventDefault(); // prevent backspace 187 }else if(e.keyCode == 32){ // Space 196 e.preventDefault(); // prevent space
|
/dokuwiki/lib/exe/ |
D | xmlrpc.php | 17 } catch (\Exception $e) { 18 $server->error($e->getCode() ?: 1, $e->getMessage());
|
/dokuwiki/inc/lang/sl/ |
D | newpage.txt | 1 ====== Stran še ne obstaja ====== 3 Sledili ste povezavi na stran, ki še ne obstaja. Stran je mogoče ustvariti preko povezave **Ustvari…
|
/dokuwiki/inc/lang/sq/ |
D | subscr_list.txt | 3 Faqet në hapësirën e emrit @PAGE@ të wiki-t @TITLE@ ndryshuan. Këto janë faqet e ndryshuara: 9 Për të fshirë lajmërimet e faqes, hyni në wiki-n tek @DOKUWIKIURL@ dhe pastaj vizitoni @SUBSCRIBE@ …
|
D | recent.txt | 1 ====== Ndryshimet e kohëve të fundit ====== 3 Faqet e mëposhtme janë ndryshuar së fundmi:
|
/dokuwiki/_test/tests/Action/ |
D | ActionTest.php | 111 } catch (\Exception $e) { 112 $this->assertNotSame(ActionDisabledException::class, get_class($e)); 119 } catch (\Exception $e) { 120 $this->assertSame(ActionDisabledException::class, get_class($e), $e); 144 } catch (\Exception $e) { 145 $this->assertNotSame(ActionAclRequiredException::class, get_class($e)); 152 } catch (\Exception $e) { 153 $this->assertSame(ActionAclRequiredException::class, get_class($e)); 178 } catch (\Exception $e) { 179 $this->assertNotSame(ActionUserRequiredException::class, get_class($e)); [all …]
|
/dokuwiki/lib/plugins/usermanager/lang/hr/ |
D | import.txt | 4 Kolone moraju sadržavati redom: korisničko ime, puno ime, adresu e-pošte i grupe. 6 Koristite "Izvoz korisnika" funkciju da bi ste dobili primjer odgovarajuće datoteke. 7 Duplikati korisničkih imena biti će ignorirani. 9 Uspješno kreiranim korisnicima lozinka će biti generirana i poslana e-poštom.
|
/dokuwiki/inc/Remote/ |
D | JsonRpcServer.php | 63 } catch (\Exception $e) { 141 protected function addErrorData(&$response, $e = null) argument 143 if ($e !== null) { 146 'code' => $e->getCode() ?: 1, // 0 is success, so we use 1 as default 147 'message' => $e->getMessage() 177 } catch (AccessDeniedException $e) { 185 } catch (RemoteException $e) { 187 throw $e;
|
/dokuwiki/_test/tests/Remote/ |
D | ApiCoreTest.php | 405 $e = null; 408 } catch (RemoteException $e) { 410 $this->assertInstanceOf(RemoteException::class, $e); 411 $this->assertEquals(121, $e->getCode(), 'Non existing revision given'); 413 $e = null; 416 } catch (RemoteException $e) { 418 $this->assertInstanceOf(RemoteException::class, $e); 419 $this->assertEquals(121, $e->getCode(), 'Non existing page given'); 482 $e = null; 485 } catch (RemoteException $e) { [all …]
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/ |
D | Base.php | 72 * @param PHP $e 77 protected static function powModHelper(PHP $x, PHP $e, PHP $n, $class) argument 79 if (empty($e->value)) { 85 if ($e->value == [1]) { 90 if ($e->value == [2]) { 97 return $x->normalize(static::slidingWindow($x, $e, $n, $class));
|
/dokuwiki/lib/plugins/config/lang/hr/ |
D | intro.txt | 3 …ravljanje postavkama Vaše DokuWiki instalacije. Za pomoć o pojedinim postavkama pogledajte [[doku>… 5 …a. Postavke s plavom pozadinom sadrže inicijalno podrazumijevane vrijednosti, dok postavke s bijel… 7 Zapamtite da pritisnete **Pohrani** gumb prije nego napustite ovu stranicu ili će izmjene biti izgu…
|
/dokuwiki/lib/plugins/styling/ |
D | script.js | 62 $btn.on('click', function (e) { argument 65 e.preventDefault(); 66 e.stopPropagation(); 74 window.onunload = function(e) { argument 83 jQuery(':button').click(function(e){ argument
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/ |
D | BuiltIn.php | 29 * @param BCMath $e 33 protected static function powModHelper(BCMath $x, BCMath $e, BCMath $n) argument 36 $temp->value = bcpowmod($x->value, $e->value, $n->value);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP/ |
D | DefaultEngine.php | 29 * @param GMP $e 33 protected static function powModHelper(GMP $x, GMP $e, GMP $n) argument 36 $temp->value = gmp_powm($x->value, $e->value, $n->value);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
D | PKCS8.php | 92 * @param BigInteger $e 101 …public static function savePrivateKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, … argument 103 $key = PKCS1::savePrivateKey($n, $e, $d, $primes, $exponents, $coefficients); 112 * @param BigInteger $e 116 public static function savePublicKey(BigInteger $n, BigInteger $e, array $options = []) argument 118 $key = PKCS1::savePublicKey($n, $e);
|
/dokuwiki/inc/lang/it/ |
D | subscr_list.txt | 12 wiki @DOKUWIKIURL@ e poi visita @SUBSCRIBE@ 13 e rimuovi la sottoscrizione alle modifiche delle 14 pagine e/o categorie.
|
D | subscr_digest.txt | 14 wiki @DOKUWIKIURL@ e poi visita @SUBSCRIBE@ 15 e rimuovi la sottoscrizione alle modifiche delle 16 pagine e/o categorie.
|
/dokuwiki/lib/plugins/usermanager/lang/pt/ |
D | import.txt | 5 As colunas têm de conter, em ordem: id de usuário, nome completo, e-mail e grupos. 6 Os campos CSV devem ser separados por vírgulas (,) e as strings delimitadas por aspas (%%""%%). A c… 11 Uma senha será gerada e enviada por e-mail a cada usuário importado com sucesso.
|