Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 422) sorted by relevance

12345678910>>...17

/dokuwiki/lib/scripts/jquery/
Djquery.min.js2e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument
Djquery-ui.min.js6e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)})… argument
/dokuwiki/inc/
DErrorHandler.php58 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 …]
DActionRouter.php92 } 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/
Dhotkeys.js93 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 …]
Dlinkwiz.js75 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 …]
Dhelpers.js59 function logError(e, file) { argument
64 e.name, e.message, file);
65 if(e.stack) {
66 console.error(e.stack);
Deditor.js128 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/
Dxmlrpc.php17 } catch (\Exception $e) {
18 $server->error($e->getCode() ?: 1, $e->getMessage());
/dokuwiki/inc/lang/sl/
Dnewpage.txt1 ====== 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/
Dsubscr_list.txt3 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@ …
Drecent.txt1 ====== Ndryshimet e kohëve të fundit ======
3 Faqet e mëposhtme janë ndryshuar së fundmi:
/dokuwiki/_test/tests/Action/
DActionTest.php111 } 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/
Dimport.txt4 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/
DJsonRpcServer.php63 } 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/
DApiCoreTest.php405 $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/
DBase.php72 * @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/
Dintro.txt3 …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/
Dscript.js62 $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/
DBuiltIn.php29 * @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/
DDefaultEngine.php29 * @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/
DPKCS8.php92 * @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/
Dsubscr_list.txt12 wiki @DOKUWIKIURL@ e poi visita @SUBSCRIBE@
13 e rimuovi la sottoscrizione alle modifiche delle
14 pagine e/o categorie.
Dsubscr_digest.txt14 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/
Dimport.txt5 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.

12345678910>>...17