Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 357) sorted by path

12345678910>>...15

/dokuwiki/
H A DSECURITY.md14 * Send an e-mail to [Andi](mailto:andi@splitbrain.org)
/dokuwiki/bin/
H A Dgittool.php235 } catch (Exception $e) {
236 $this->error($e->getMessage());
/dokuwiki/data/
H A Ddeleted.files315 inc/geshi/e.php
/dokuwiki/data/media/wiki/
H A Ddokuwiki.svg36 <linearGradient id="e" x1="202.42" x2="206.06" y1="222.05" y2="210.36" gradientUnits="userSpaceOnUse">
66 <path d="M174.76 201.6c-6.046 2.467-10.168 4.42-12.885 6.35s-3.193 4.6-3.246 6.267c-.027.832.08 1.777.632 2.44.55.662 1.807 1.874 2.757 2.385 1.901 1.023 7.542 2.43 10.52 3.073 11.908 2.577 26.805 1.682 26.805 1.682 1.694 1.245 2.833 2.824 3.27 4.269 4.576-1.887 11.81-6.585 13.156-8.578-5.45-4.2-10.797-6.333-16.513-8.308-1.598-.72-2.88-1.227-.717 2.556.985 2.473.858 5.052.572 7.419 0 0-16.527.406-28.238-2.127-2.928-.633-5.467-.955-7.22-1.898-.876-.472-1.482-.821-1.915-1.341s-.22-1.291-.201-1.86c.036-1.135.253-1.67 2.861-3.524s5.655-3.362 11.66-5.812c-.088-1.291-.29-2.506-1.298-2.993z" fill="url(#e)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt406 [[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''.
420 The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 actionscript ada aimms algol68 apache applescript apt_sources arm asm asp asymptote autoconf autohotkey autoit avisynth awk bascomavr bash basic4gl batch bf biblatex bibtex blitzbasic bnf boo caddcl cadlisp ceylon cfdg cfm chaiscript chapel cil c_loadrunner clojure c_mac cmake cobol coffeescript c cpp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmascript eiffel email epc e erlang euphoria ezt f1 falcon fo fortran freebasic freeswitch fsharp gambas gdb genero genie gettext glsl gml gnuplot go groovy gwbasic haskell haxe hicest hq9plus html html4strict html5 icon idl ini inno intercal io ispfpanel java5 java javascript jcl j jquery julia kixtart klonec klonecpp kotlin latex lb ldif lisp llvm locobasic logtalk lolcode lotusformulas lotusscript lscript lsl2 lua m68k magiksf make mapbasic mathematica matlab mercury metapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis oberon2 objc objeck ocaml-brief ocaml octave oobas oorexx oracle11 oracle8 oxygene oz parasail parigp pascal pcre perl6 perl per pf phix php-brief php pic16 pike pixelbender pli plsql postgresql postscript povray powerbuilder powershell proftpd progress prolog properties providex purebasic pycon pys60 python qbasic qml q racket rails rbs rebol reg rexx robots roff rpmspec rsplus ruby rust sas sass scala scheme scilab scl sdlbasic smalltalk smarty spark sparql sql sshconfig standardml stonescript swift systemverilog tclegg tcl teraterm texgraph text thinbasic tsql twig typoscript unicon upc urbi uscript vala vbnet vb vbscript vedit verilog vhdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp yaml z80 zxbasic//
450 | //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). |
/dokuwiki/inc/Action/
H A DSubscribe.php41 } catch (ActionAbort $e) {
42 throw $e;
43 } catch (Exception $e) {
44 msg($e->getMessage(), -1);
/dokuwiki/inc/
H A 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
125 transitionAction($from, $to, $e = null) global() argument
150 handleFatalException(\\Exception $e) global() argument
[all...]
H A DErrorHandler.php56 * @param \Throwable $e
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();
87 * @param \Throwable $e
90 public static function showExceptionMsg($e, argument
127 logException($e) global() argument
181 guessPlugin($e) global() argument
[all...]
H A DJpegMeta.php1482 } catch(Exception $e) {
1483 $this->_handleMarkerParsingException($e);
1546 } catch(Exception $e) {
1547 $this->_handleMarkerParsingException($e);
1608 } catch (Exception $e) {
1609 $this->_handleMarkerParsingException($e);
1725 } catch(Exception $e) {
1726 $this->_handleMarkerParsingException($e);
2400 function _handleMarkerParsingException($e) {
2401 \dokuwiki\ErrorHandler::logException($e,
2397 _handleMarkerParsingException($e) global() argument
[all...]
H A DPassHash.php812 * @param string $algo Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4",
861 } catch (\Exception $e) {
864 throw new \RuntimeException($e->getMessage(), $e->getCode(), $e);
/dokuwiki/inc/Extension/
H A DPluginController.php131 } catch (\Throwable $e) {
132 ErrorHandler::showExceptionMsg($e, sprintf('Failed to load plugin %s', $plugin));
408 } catch (\Throwable $e) {
409 ErrorHandler::showExceptionMsg($e, sprintf('Failed to init plugin %s autoloader', $plugin));
/dokuwiki/inc/HTTP/
H A DHTTPClient.php272 } catch (HTTPClientException $e) {
273 $this->status = $e->getCode();
274 $this->error = $e->getMessage();
/dokuwiki/inc/Remote/
H A DApi.php33 * i.e.: dokuwiki.version or wiki.getPage
36 * i.e.: plugin.clock.getTime or plugin.clock_gmt.getTime
95 } catch (\ReflectionException $e) {
98 $e->getMessage(),
99 $e->getFile(),
100 $e->getLine()
138 } catch (\InvalidArgumentException | \ArgumentCountError $e) {
139 throw new RemoteException($e->getMessage(), -32602);
H A DXmlRpcServer.php55 } catch (AccessDeniedException $e) {
63 } catch (RemoteException $e) {
64 return new Error($e->getCode(), $e->getMessage());
/dokuwiki/inc/lang/az/
H A Dregister.txt3 Qeydiyyat üçün bütün aşağıdaı xanalari doldurun. **e-mail adresinizin duz olduguna** fikir verin. Əgər şıfrəni əl ilə daxil etməyiniz xaiş olunmursa, onda şifrə e-mail adresinizə göndəriləcək. İstifadəçi adı [[doku>pagename|səhifənin identifikatorunun]] məhdudiyyətlərinə uyğun olmalıdır.
H A Dresendpwd.txt3 Yeni şifrə əldə etmək üçün aşağıda tələb olunan məlumatları daxil edin. Yeni şifrə sizin istifadəçi adınıza aid olan e-mail adresə göndəriləcək. Aşagıda daxil olunan ad - sizin bu wiki-də olan istifadəçi adınız olmalıdır.
/dokuwiki/inc/lang/ca-valencia/
H A Drevisions.txt
/dokuwiki/inc/lang/cs/
H A Dconflict.txt
H A Ddraft.txt
H A Dedit.txt
H A Dlogin.txt
H A Dmailtext.txt
H A Dpwconfirm.txt5 Pokud jste o nové heslo nežádali, ignorujte prosím tento e-mail.
H A Dread.txt
H A Dregistermail.txt

12345678910>>...15