| /plugin/captcha/ |
| H A D | figlet.flf | 19 /_/ @ 20 (_) @ 22 _ _ @ 28 __/ / /_@ 29 /_ . __/@ 30 /_ __/ @ 31 /_/_/ @@ 33 _//@ 34 (_-<@ 37 _ __@ [all …]
|
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
| D | objects.js | 2 var _ = typeof require == 'function' ? require('..') : window._; 9 … assert.deepEqual(_.keys({one: 1, two: 2}), ['one', 'two'], 'can extract the keys from an object'); 12 assert.deepEqual(_.keys(a), ['1'], 'is not fooled by sparse arrays; see issue #95'); 13 assert.deepEqual(_.keys(null), []); 14 assert.deepEqual(_.keys(void 0), []); 15 assert.deepEqual(_.keys(1), []); 16 assert.deepEqual(_.keys('a'), []); 17 assert.deepEqual(_.keys(true), []); 22 valueOf: _.noop, 35 assert.deepEqual(_.keys(trouble).sort(), troubleKeys, 'matches non-enumerable properties'); [all …]
|
| D | collections.js | 2 var _ = typeof require == 'function' ? require('..') : window._; 7 _.each([1, 2, 3], function(num, i) { 12 _.each([1, 2, 3], function(num){ answers.push(num * this.multiplier); }, {multiplier: 5}); 16 _.each([1, 2, 3], function(num){ answers.push(num); }); 22 _.each(obj, function(value, key){ answers.push(key); }); 27 _(1000).times(function() { _.each([], function(){}); }); 30 _.each(obj, function(){ count++; }); 34 _.each([1, 2, 3], function(num, index, arr){ if (_.include(arr, num)) answer = true; }); 38 _.each(null, function(){ ++answers; }); 41 _.each(false, function(){}); [all …]
|
| D | arrays.js | 2 var _ = typeof require == 'function' ? require('..') : window._; 7 assert.equal(_.first([1, 2, 3]), 1, 'can pull out the first element of an array'); 8 assert.equal(_([1, 2, 3]).first(), 1, 'can perform OO-style "first()"'); 9 assert.deepEqual(_.first([1, 2, 3], 0), [], 'returns an empty array when n <= 0 (0 case)'); 10 …assert.deepEqual(_.first([1, 2, 3], -1), [], 'returns an empty array when n <= 0 (negative case)'); 11 assert.deepEqual(_.first([1, 2, 3], 2), [1, 2], 'can fetch the first n elements'); 12 assert.deepEqual(_.first([1, 2, 3], 5), [1, 2, 3], 'returns the whole array if n > length'); 13 var result = (function(){ return _.first(arguments); }(4, 3, 2, 1)); 15 result = _.map([[1, 2, 3], [1, 2, 3]], _.first); 16 assert.deepEqual(result, [1, 1], 'works well with _.map'); [all …]
|
| D | utility.js | 2 var _ = typeof require == 'function' ? require('..') : window._; 8 templateSettings = _.clone(_.templateSettings); 12 _.templateSettings = templateSettings; 19 var underscore = _.noConflict(); 22 assert.equal(this._, void 0, 'global underscore is removed'); 23 this._ = underscore; 25 delete global._; 39 content + 'this.underscore = this._.noConflict();', 42 var context = {_: 'oldvalue'}; property 44 assert.equal(context._, 'oldvalue'); [all …]
|
| D | functions.js | 2 var _ = typeof require == 'function' ? require('..') : window._; 10 var bound = _.bind(func, context); 13 bound = _(func).bind(context); 16 bound = _.bind(func, null, 'curly'); 22 func = _.bind(func, this, 'hello'); 25 func = _.bind(func, this, 'curly'); 29 func = _.bind(func, this, 'hello', 'moe', 'curly'); 33 _.bind(func, 0, 0, 'can bind a function to `0`')(); 34 _.bind(func, '', '', 'can bind a function to an empty string')(); 35 _.bind(func, false, false, 'can bind a function to `false`')(); [all …]
|
| D | cross-document.js | 4 var _ = typeof require == 'function' ? require('..') : window._; 38 assert.notOk(_.isEqual(iNumber, 101)); 39 assert.ok(_.isEqual(iNumber, 100)); 42 …assert.ok(_.isEqual({}, iObject), 'Objects with equivalent members created in different documents … 45 …assert.ok(_.isEqual([1, 2, 3], iArray), 'Arrays with equivalent elements created in different docu… 49 assert.notOk(_([iNumber]).isEmpty(), '[1] is not empty'); 50 assert.notOk(_.isEmpty(iArray), '[] is empty'); 51 assert.ok(_.isEmpty(iObject), '{} is empty'); 55 assert.notOk(_.isElement('div'), 'strings are not dom elements'); 56 assert.ok(_.isElement(document.body), 'the body tag is a DOM element'); [all …]
|
| /plugin/rdplink/RdpEncrypt/ |
| D | RdpEncrypt.vb | 10 <DllImport("crypt32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _ 11 Private Shared Function CryptProtectData( _ 12 ByRef pPlainText As DATA_BLOB, _ 13 ByVal szDescription As String, _ 14 ByRef pEntropy As DATA_BLOB, _ 15 ByVal pReserved As IntPtr, _ 16 ByRef pPrompt As CRYPTPROTECT_PROMPTSTRUCT, _ 17 ByVal dwFlags As Integer, _ 18 ByRef pCipherText As DATA_BLOB _ 22 <DllImport("crypt32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _ [all …]
|
| /plugin/indexmenu2/cms/extensions/ |
| D | stringextensions.js | 10 …_;if(!isUndefined(O[3])&&O[3].indexOf("*")==0){O[3]=parseInt(O[3].replace(/\D/g,""));if(isNaN(O[3]… property
|
| /plugin/findologicxmlexport/vendor/twig/extensions/doc/ |
| D | intl.rst | 25 by the `strtotime`_ function), `DateTime`_ instances, or `Unix timestamps`_. 29 Internally, Twig uses the PHP `IntlDateFormatter::create()`_ function for 37 * 'none': `IntlDateFormatter::NONE`_ 38 * 'short': `IntlDateFormatter::SHORT`_ 39 * 'medium': `IntlDateFormatter::MEDIUM`_ 40 * 'long': `IntlDateFormatter::LONG`_ 41 * 'full': `IntlDateFormatter::FULL`_ 51 patterns are documented in the `ICU user guide`_. 56 * 'gregorian': `IntlDateFormatter::GREGORIAN`_ 57 * 'traditional': `IntlDateFormatter::TRADITIONAL`_ [all …]
|
| /plugin/siteexport/ |
| H A D | script.js | 23 (function(_){ argument 25 _.url = DOKU_BASE + 'lib/exe/ajax.php'; 26 _.aggregateForm = $('form#siteexport_site_aggregator, form#siteexport_siteexporter'); 27 _.suspendGenerate = _.aggregateForm.length > 0; 28 …_.allElements = 'form#siteexport :input:not([readonly]):not([disabled]):not([type=submit]):not(but… 29 _.isManager = $('div#siteexport__manager').length > 0; 30 _.forbidden_options = [ 'call', 'sectok' ]; 32 _.generate = function() { 34 if ( _.suspendGenerate || _.isManager ) { return; } 38 _.throbber(true); [all …]
|
| /plugin/sequencediagram/bower_components/underscore/ |
| D | underscore.js | 14 // Save the previous value of the `_` variable. 15 var previousUnderscore = root._; 39 var _ = function(obj) { function 40 if (obj instanceof _) return obj; 41 if (!(this instanceof _)) return new _(obj); 47 // the browser, add `_` as a global object. 50 exports = module.exports = _; 52 exports._ = _; 54 root._ = _; 58 _.VERSION = '1.8.3'; [all …]
|
| D | README.md | 3 __ __ ___ \_\ \ __ _ __ ____ ___ ___ _ __ __ /\_\ ____ 4 /\ \/\ \ /' _ `\ /'_ \ /'__`\/\ __\/ ,__\ / ___\ / __`\/\ __\/'__`\ \/\ \ /',__\ 5 \ \ \_\ \/\ \/\ \/\ \ \ \/\ __/\ \ \//\__, `\/\ \__//\ \ \ \ \ \//\ __/ __ \ \ \/\__, `\ 6 \ \____/\ \_\ \_\ \___,_\ \____\\ \_\\/\____/\ \____\ \____/\ \_\\ \____\/\_\ _\ \ \/\____/ 7 \/___/ \/_/\/_/\/__,_ /\/____/ \/_/ \/___/ \/____/\/___/ \/_/ \/____/\/_//\ \_\ \/___/
|
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/ |
| D | underscore.js | 18 // Save the previous value of the `_` variable. 19 var previousUnderscore = root._; 41 var _ = function(obj) { function 42 if (obj instanceof _) return obj; 43 if (!(this instanceof _)) return new _(obj); 49 // the browser, add `_` as a global object. 54 exports = module.exports = _; 56 exports._ = _; 58 root._ = _; 62 _.VERSION = '1.8.3'; [all …]
|
| /plugin/sequencediagram/bower_components/lodash/doc/ |
| D | README.md | 8 * <a href="#_chunkarray-size1">`_.chunk`</a> 9 * <a href="#_compactarray">`_.compact`</a> 10 * <a href="#_concatarray-values">`_.concat`</a> 11 * <a href="#_differencearray-values">`_.difference`</a> 12 * <a href="#_differencebyarray-values-iteratee_identity">`_.differenceBy`</a> 13 * <a href="#_differencewitharray-values-comparator">`_.differenceWith`</a> 14 * <a href="#_droparray-n1">`_.drop`</a> 15 * <a href="#_droprightarray-n1">`_.dropRight`</a> 16 * <a href="#_droprightwhilearray-predicate_identity">`_.dropRightWhile`</a> 17 * <a href="#_dropwhilearray-predicate_identity">`_.dropWhile`</a> [all …]
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | md1_horizontal_rules.md | 59 _ _ _ 61 _ _ _ 63 _ _ _ 65 _ _ _ 67 _ _ _
|
| /plugin/rigrr/lib/ |
| D | 888C7FE8475C629914418A6986669E97.cache.html | 773 function q_(a){var b;b=a.c._();return new x_(b)} 811 function ym(a,b,c){return _=new gn,_.l=a,_.m=b,_.h=c,_} 1093 function LZ(a,b){var c,d,e;for(d=a.$b()._();d.T();){c=bf(d.U(),157);e=c.fc();if(b==null?e==null:lb(… 1155 function DZ(a){var b,c,d,e;d=new mY;b=null;d.b.b+=o3;c=a._();while(c.T()){b!=null?(jc(d.b,b),d):(b=… 1175 function Bp(b,c){yp();var a,d,e,f,g;d=null;for(g=b._();g.T();){f=bf(g.U(),17);try{c.ab(f)}catch(a){… 1392 …_,X2={l:0,m:4193280,h:1048575},Z2={l:4194303,m:4194303,h:1048575},Y2={l:0,m:0,h:0},W2={l:1,m:0,h:0… 1395 _.lb=function By(a){var b,c,d;b=Uu(this,a);this.c!=null&&!RX(this.c,g3)&&xc(b,m3,this.c);if(this.b)… 1398 _.lb=function MJ(a){return IJ(this,a)};_.cM={35:1,91:1};_.b=null;_.c=null;_.d=null;_.e=null;_=OJ.pr… 1401 _.gC=function vY(){return $k};_.tS=function wY(){return this.b.b};_.cM={141:1};_=yY.prototype=xY.pr…
|
| D | C725EE9AB271E400E326679823DF7BAE.cache.html | 796 function $_(a,b){var c;c=a.a.Wb(b,a);return c==null} 809 function lm(a,b,c){return _=new Vm,_.l=a,_.m=b,_.h=c,_} 1199 …=Re(g.O(),17);try{c.W(f)}catch(a){a=hm(a);if(Te(a,151)){e=a;!d&&(d=new b0);$_(d,e)}else throw a}}i… 1233 …|c.n==b){return c}}wp.Rb()==0&&$n(new Jp);!b?(c=new Np):(c=new zp(b));wp.Wb(a,c);$_(xp,c);return c} 1323 …):Y$(i);try{c.I(Re(f,7))}catch(a){a=hm(a);if(Te(a,151)){e=a;!d&&(d=new b0);$_(d,e)}else throw a}}i… 1388 ….Z()});e.setZoom=n3(function(a){this.g.$(a)});e.zoomIn=n3(function(){this.g._()});e.zoomOut=n3(fun… 1405 …andledEvent=$wnd.event.type;d.call(this)});var g=$moduleName.replace(/\./g,'_');$wnd['__gwt_dispat… 1412 …_,f3={l:0,m:4193280,h:1048575},h3={l:4194303,m:4194303,h:1048575},g3={l:0,m:0,h:0},e3={l:1,m:0,h:0… 1415 _.fb=function dz(a){var b;b=Du(this,a);!!this.c&&_b(b,i6,q3+this.c);!!this.a&&_b(b,j6,this.a.F);ret… 1418 _.db=function QK(a){var b,c,d,e;Iu(this,a);if(!ic(a,K5)||IX(gc(a,K5),q3)){throw new ab(U4+this.b)}t… [all …]
|
| D | E9D63D54A088280F7B70F6B3AA3BF32B.cache.html | 663 function $_(a,b){if(a.b){r0(b);q0(b)}} 802 function bm(a,b,c){return _=new Lm,_.l=a,_.m=b,_.h=c,_} 929 function Y_(a,b){var c;c=Je(a.d.Xb(b),154);if(c){$_(a,c);return c.f}return null} 1106 …(b),154);if(!e){d=new t0(a,b,c);a.d.Yb(b,d);q0(d);return null}else{f=e.f;k0(e,c);$_(a,e);return f}} 1357 …m=E2(function(a,b){this.g.$(a,b)});e.getVersion=E2(function(){return this.g._()});e.setZoom=E2(fun… 1381 …_,w2={l:0,m:4193280,h:1048575},y2={l:4194303,m:4194303,h:1048575},x2={l:0,m:0,h:0},v2={l:1,m:0,h:0… 1384 _.fb=function Qy(a){var b,c,d,e;Zw(this,a);for(c=0;c<a.childNodes.length;++c){b=a.childNodes[c];if(… 1387 _.gC=function AJ(){return Ni};_.gb=function BJ(a){xJ(this,a)};_.hb=function CJ(a){return yJ(this,a)… 1390 _.gC=function hZ(){return Jk};_.Ub=function iZ(a){var b,c,d;d=this.Tb();a.length<d&&(a=we(a,d));c=t…
|
| D | 7A1E257F930592B5D5D42776B640B88C.cache.html | 366 function $_(){} 805 function em(a,b,c){return _=new Om,_.l=a,_.m=b,_.h=c,_} 1361 …m=J2(function(a,b){this.g.$(a,b)});e.getVersion=J2(function(){return this.g._()});e.setZoom=J2(fun… 1386 …_,B2={l:0,m:4193280,h:1048575},D2={l:4194303,m:4194303,h:1048575},C2={l:0,m:0,h:0},A2={l:1,m:0,h:0… 1389 _.fb=function Vy(a){var b,c,d,e;cx(this,a);for(c=0;c<a.childNodes.length;++c){b=a.childNodes[c];if(… 1392 _.gC=function FJ(){return Qi};_.gb=function GJ(a){CJ(this,a)};_.hb=function HJ(a){return DJ(this,a)… 1395 _.gC=function mZ(){return Mk};_.Ub=function nZ(a){var b,c,d;d=this.Tb();a.length<d&&(a=ze(a,d));c=t…
|
| /plugin/rigrr/lib/rigrr/ |
| D | 888C7FE8475C629914418A6986669E97.cache.html | 773 function q_(a){var b;b=a.c._();return new x_(b)} 811 function ym(a,b,c){return _=new gn,_.l=a,_.m=b,_.h=c,_} 1093 function LZ(a,b){var c,d,e;for(d=a.$b()._();d.T();){c=bf(d.U(),157);e=c.fc();if(b==null?e==null:lb(… 1155 function DZ(a){var b,c,d,e;d=new mY;b=null;d.b.b+=o3;c=a._();while(c.T()){b!=null?(jc(d.b,b),d):(b=… 1175 function Bp(b,c){yp();var a,d,e,f,g;d=null;for(g=b._();g.T();){f=bf(g.U(),17);try{c.ab(f)}catch(a){… 1392 …_,X2={l:0,m:4193280,h:1048575},Z2={l:4194303,m:4194303,h:1048575},Y2={l:0,m:0,h:0},W2={l:1,m:0,h:0… 1395 _.lb=function By(a){var b,c,d;b=Uu(this,a);this.c!=null&&!RX(this.c,g3)&&xc(b,m3,this.c);if(this.b)… 1398 _.lb=function MJ(a){return IJ(this,a)};_.cM={35:1,91:1};_.b=null;_.c=null;_.d=null;_.e=null;_=OJ.pr… 1401 _.gC=function vY(){return $k};_.tS=function wY(){return this.b.b};_.cM={141:1};_=yY.prototype=xY.pr…
|
| D | C725EE9AB271E400E326679823DF7BAE.cache.html | 796 function $_(a,b){var c;c=a.a.Wb(b,a);return c==null} 809 function lm(a,b,c){return _=new Vm,_.l=a,_.m=b,_.h=c,_} 1199 …=Re(g.O(),17);try{c.W(f)}catch(a){a=hm(a);if(Te(a,151)){e=a;!d&&(d=new b0);$_(d,e)}else throw a}}i… 1233 …|c.n==b){return c}}wp.Rb()==0&&$n(new Jp);!b?(c=new Np):(c=new zp(b));wp.Wb(a,c);$_(xp,c);return c} 1323 …):Y$(i);try{c.I(Re(f,7))}catch(a){a=hm(a);if(Te(a,151)){e=a;!d&&(d=new b0);$_(d,e)}else throw a}}i… 1388 ….Z()});e.setZoom=n3(function(a){this.g.$(a)});e.zoomIn=n3(function(){this.g._()});e.zoomOut=n3(fun… 1405 …andledEvent=$wnd.event.type;d.call(this)});var g=$moduleName.replace(/\./g,'_');$wnd['__gwt_dispat… 1412 …_,f3={l:0,m:4193280,h:1048575},h3={l:4194303,m:4194303,h:1048575},g3={l:0,m:0,h:0},e3={l:1,m:0,h:0… 1415 _.fb=function dz(a){var b;b=Du(this,a);!!this.c&&_b(b,i6,q3+this.c);!!this.a&&_b(b,j6,this.a.F);ret… 1418 _.db=function QK(a){var b,c,d,e;Iu(this,a);if(!ic(a,K5)||IX(gc(a,K5),q3)){throw new ab(U4+this.b)}t… [all …]
|
| D | E9D63D54A088280F7B70F6B3AA3BF32B.cache.html | 663 function $_(a,b){if(a.b){r0(b);q0(b)}} 802 function bm(a,b,c){return _=new Lm,_.l=a,_.m=b,_.h=c,_} 929 function Y_(a,b){var c;c=Je(a.d.Xb(b),154);if(c){$_(a,c);return c.f}return null} 1106 …(b),154);if(!e){d=new t0(a,b,c);a.d.Yb(b,d);q0(d);return null}else{f=e.f;k0(e,c);$_(a,e);return f}} 1357 …m=E2(function(a,b){this.g.$(a,b)});e.getVersion=E2(function(){return this.g._()});e.setZoom=E2(fun… 1381 …_,w2={l:0,m:4193280,h:1048575},y2={l:4194303,m:4194303,h:1048575},x2={l:0,m:0,h:0},v2={l:1,m:0,h:0… 1384 _.fb=function Qy(a){var b,c,d,e;Zw(this,a);for(c=0;c<a.childNodes.length;++c){b=a.childNodes[c];if(… 1387 _.gC=function AJ(){return Ni};_.gb=function BJ(a){xJ(this,a)};_.hb=function CJ(a){return yJ(this,a)… 1390 _.gC=function hZ(){return Jk};_.Ub=function iZ(a){var b,c,d;d=this.Tb();a.length<d&&(a=we(a,d));c=t…
|
| D | 7A1E257F930592B5D5D42776B640B88C.cache.html | 366 function $_(){} 805 function em(a,b,c){return _=new Om,_.l=a,_.m=b,_.h=c,_} 1361 …m=J2(function(a,b){this.g.$(a,b)});e.getVersion=J2(function(){return this.g._()});e.setZoom=J2(fun… 1386 …_,B2={l:0,m:4193280,h:1048575},D2={l:4194303,m:4194303,h:1048575},C2={l:0,m:0,h:0},A2={l:1,m:0,h:0… 1389 _.fb=function Vy(a){var b,c,d,e;cx(this,a);for(c=0;c<a.childNodes.length;++c){b=a.childNodes[c];if(… 1392 _.gC=function FJ(){return Qi};_.gb=function GJ(a){CJ(this,a)};_.hb=function HJ(a){return DJ(this,a)… 1395 _.gC=function mZ(){return Mk};_.Ub=function nZ(a){var b,c,d;d=this.Tb();a.length<d&&(a=ze(a,d));c=t…
|
| /plugin/sequencediagram/bower_components/lodash/test/ |
| D | test.js | 345 var _ = root._ || (root._ = interopRequire(filePath)); variable 349 var MapCache = (_.memoize || lodashStable.memoize).Cache; 354 (_.isMatchWith || lodashStable.isMatchWith)({ 'a': 1 }, { 'a': 1 }, function() { 377 /** Used to restore the `_` reference. */ 378 var oldDash = root._; 588 root._ = oldDash; 673 _._realm = realm; 684 'var _ = parent._,', 713 "_.each(['" + arrayViews.join("', '") + "'], function(type) {", 719 '_.assign(_._realm, object);', [all …]
|