forked from tombigel/detect-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjindo.desktop.all.ns.js
21031 lines (17452 loc) · 663 KB
/
jindo.desktop.all.ns.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(function(jindoName){
var jindo = {};
if(window[jindoName]){
var __old_jindo = window[jindoName];
for(var i in __old_jindo){
jindo[i] = __old_jindo[i];
}
}
window[jindoName] = jindo;
//하단에 스크립트 삽입됨.
/**
* Jindo2 Framework
* @type desktop
* @version 2.6.0
* NHN_Library:Jindo-2.6.0;JavaScript Framework;
*/
//-!namespace.default start!-//
/**
@fileOverview $() 함수, jindo.$Jindo() 객체, jindo.$Class() 객체를 정의한 파일.
@name core.js
@author AjaxUI lab
*/
// if (typeof window != 'undefined' && window.nhn === undefined) {
// window.nhn = {};
// }
//
// if (typeof window != 'undefined') {
// if (window.jindo === undefined) {
// window.jindo = {};
// }
// } else {
// if (!jindo) {
// var jindo = {};
// }
// }
//jname
/**
agent의 dependency를 없애기 위해 별도로 설정.
@ignore
**/
var _j_ag = navigator.userAgent;
var _JINDO_IS_IE = _j_ag.indexOf("MSIE") > -1;
var _JINDO_IS_FF = _j_ag.indexOf("Firefox") > -1;
var _JINDO_IS_OP = _j_ag.indexOf("Opera") > -1;
var _JINDO_IS_SP = _j_ag.indexOf("Safari") > -1;
var _JINDO_IS_SF = _j_ag.indexOf("Apple") > -1;
var _JINDO_IS_CH = _j_ag.indexOf("Chrome") > -1;
var _JINDO_IS_WK = _j_ag.indexOf("WebKit") > -1;
var _JINDO_IS_MO = /(iPad|Mobile|Android|Nokia|webOS|BlackBerry|Opera Mini)/.test(_j_ag);
var tNumeric = "Numeric";
var tElement = "Element+";
var tDocument = "Document+";
var tFunction = "Function+";
var tArray = "Array+";
var tString = "String+";
var tBoolean = "Boolean";
var tDate = "Date+";
var tRegExp = "RegExp";
var tNode = "Node";
var tHash = "Hash+";
var tNull = "Null";
var tUndefined = "Undefined";
var tWindow = "Window+";
var t$Class = "$Class";
var tArrayStyle = "ArrayStyle";
var tForm = "Form+";
var tVariant = "Variant";
function trim(str){
return str.replace(/^(\s| )+/g, "").replace(/(\s| )+$/g, "");
}
//-!namespace.default end!-//
//-!jindo.$Jindo.default start!-//
/**
jindo.$Jindo() 객체는 프레임워크에 대한 정보와 유틸리티 함수를 제공한다.
@class jindo.$Jindo
@keyword core, 코어, $Jindo
*/
/**
jindo.$Jindo() 객체를 생성한다. jindo.$Jindo() 객체는 프레임웍에 대한 정보와 유틸리티 함수를 제공한다.
@constructor
@remark 다음은 Jindo 프레임워크 정보를 담고 있는 객체의 속성을 설명한 표이다.<br>
<h5>Jindo 프레임워크 정보 객체 속성</h5>
<table class="tbl_board">
<caption class="hide">Jindo 프레임워크 정보 객체 속성</caption>
<thead>
<tr>
<th scope="col" style="width:15%">이름</th>
<th scope="col" style="width:15%">타입</th>
<th scope="col">설명</th>
</tr>
</thead>
<tbody>
<tr>
<td class="txt bold">version</td>
<td>Number</td>
<td class="txt">Jindo 프레임워크의 버전을 저장한다.</td>
</tr>
</table>
*/
jindo.$Jindo = function() {
//-@@$Jindo.default-@@//
var cl=arguments.callee;
var cc=cl._cached;
if (cc) return cc;
if (!(this instanceof cl)) return new cl();
if (!cc) cl._cached = this;
this.version = "2.6.0";
};
jindo.$Jindo.VERSION = "2.6.0";
function addExtension(sClass,sMethod,fpFunction){
// if(jindo[sClass]){
if(jindo[sClass][sMethod]){
jindo.$Jindo._warn(sClass+"."+sMethod+" was overwrite.");
}else{
if(/^x/.test(sMethod)){
jindo[sClass][sMethod] = fpFunction;
}else{
jindo.$Jindo._warn("The Extension Method("+sClass+"."+sMethod+") must be used with x prefix.");
}
}
// }else{
// throw jindo.$Error("addExtension","Not found "+sClass+"class");
// }
}
/**
호환 모드를 설정하고 반환하는 함수.
@method compatible
@ignore
@param {Boolean} bType
@return {Boolean} [true | false]
*/
jindo.$Jindo.compatible = function(){
return false;
};
/**
오브젝트를 mixin할 때 사용.(source의 속성중 오브젝트는 넘어감.)
@method mixin
@static
@param {Hash} oDestination
@param {Hash} oSource
@return {Hash} oNewObject
@since 2.2.0
@example
var oDestination = {
"foo" :1,
"test" : function(){}
};
var oSource = {
"bar" :1,
"obj" : {},
"test2" : function(){}
};
var oNewObject = jindo.$Jindo.mixin(oDestination,oSource);
oNewObject == oDestination //false
// oNewObject => {
// "foo" :1,
// "test" : function(){},
//
// "bar" :1,
// "obj" : {},
// "test2" : function(){}
// };
*/
jindo.$Jindo.mixin = function(oDestination, oSource){
g_checkVarType(arguments, {
'obj' : [ 'oDestination:'+tHash, 'oSource:'+tHash ]
},"<static> $Jindo#mixin");
var oReturn = {};
for(var i in oDestination){
oReturn[i] = oDestination[i];
}
for (i in oSource) if (oSource.hasOwnProperty(i)&&!jindo.$Jindo.isHash(oSource[i])) {
oReturn[i] = oSource[i];
}
return oReturn;
};
var _objToString = Object.prototype.toString;
var _slice = Array.prototype.slice;
jindo.$Error = function(sMessage,sMethod){
this.message = "\tmethod : "+sMethod+"\n\tmessage : "+sMessage;
this.type = "Jindo Custom Error";
this.toString = function(){
return this.message+"\n\t"+this.type;
}
};
jindo.$Except = {
CANNOT_USE_OPTION:"해당 옵션은 사용할 수 없습니다.",
CANNOT_USE_HEADER:"type이 jsonp일때 header메서드는 사용할 수 없습니다.",
PARSE_ERROR:"파싱중 에러가 발생했습니다.",
NOT_FOUND_ARGUMENT:"파라미터가 없습니다.",
NOT_STANDARD_QUERY:"css셀렉터가 정상적이지 않습니다.",
INVALID_DATE:"날짜 포멧이 아닙니다.",
REQUIRE_AJAX:"가 없습니다.",
NOT_FOUND_ELEMENT:"엘리먼트가 없습니다.",
HAS_FUNCTION_FOR_GROUP:"그룹으로 지우지 않는 경우 detach할 함수가 있어야 합니다.",
NONE_ELEMENT:"에 해당하는 엘리먼트가 없습니다.",
NOT_SUPPORT_SELECTOR:"는 지원하지 않는 selector입니다.",
NOT_SUPPORT_METHOD:"desktop에서 지원하지 않는 메서드 입니다.",
JSON_MUST_HAVE_ARRAY_HASH:"get메서드는 json타입이 hash나 array타입만 가능합니다.",
MUST_APPEND_DOM : "document에 붙지 않은 엘리먼트를 기준 엘리먼트로 사용할 수 없습니다.",
NOT_USE_CSS : "는 css를 사용 할수 없습니다.",
NOT_WORK_DOMREADY : "domready이벤트는 iframe안에서 사용할 수 없습니다.",
CANNOT_SET_OBJ_PROPERTY : "속성은 오브젝트입니다.\n클래스 속성이 오브젝트이면 모든 인스턴스가 공유하기 때문에 위험합니다.",
NOT_FOUND_HANDLEBARS : "",
INVALID_MEDIA_QUERY : ""
};
/**
* @ignore
*/
function _toArray(aArray){
return _slice.apply(aArray);
}
try{
_slice.apply(document.documentElement.childNodes);
}catch(e){
_toArray = function(aArray){
var returnArray = [];
var leng = aArray.length;
for ( var i = 0; i < leng; i++ ) {
returnArray.push( aArray[i] );
}
return returnArray;
}
}
/**
파라미터가 Function인지 확인하는 함수.
@method isFunction
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 Array인지 확인하는 함수.
@method isArray
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 String인지 확인하는 함수.
@method isString
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 Numeric인지 확인하는 함수.
@method isNumeric
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
jindo.$Jindo.isNumeric = function(nNum){
return !isNaN(parseFloat(nNum)) && !jindo.$Jindo.isArray(nNum) &&isFinite( nNum );
};
/**
파라미터가 Boolean인지 확인하는 함수.
@method isBoolean
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 Date인지 확인하는 함수.
@method isDate
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 Regexp인지 확인하는 함수.
@method isRegexp
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 Element인지 확인하는 함수.
@method isElement
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
/**
파라미터가 Document인지 확인하는 함수.
@method isDocument
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
(function(){
var oType = {"Element" : 1,"Document" : 9};
for(var i in oType){
jindo.$Jindo["is"+i] = (function(sType,nNodeNumber){
return function(oObj){
if(new RegExp(sType).test(_objToString.call(oObj))){
return true;
}else if(_objToString.call(oObj) == "[object Object]"&&oObj !== null&&oObj !== undefined&&oObj.nodeType==nNodeNumber){
return true;
}
return false;
}
})(i,oType[i])
}
var _$type = ["Function","Array","String","Boolean","Date","RegExp"];
for(var i = 0, l = _$type.length; i < l ;i++){
jindo.$Jindo["is"+_$type[i]] = (function(type){
return function(oObj){
return _objToString.call(oObj) == "[object "+type+"]";
}
})(_$type[i]);
}
})();
/**
파라미터가 Node인지 확인하는 함수.
@method isNode
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
jindo.$Jindo.isNode = function(eEle){
try{
return !!(eEle&&eEle.nodeType);
}catch(e){
return false;
}
};
/**
파라미터가 Hash인지 확인하는 함수.
@method isHash
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
jindo.$Jindo.isHash = function(oObj){
return _objToString.call(oObj) == "[object Object]"&&oObj !== null&&oObj !== undefined&&!!!oObj.nodeType&&!jindo.$Jindo.isWindow(oObj);
};
/**
파라미터가 Null인지 확인하는 함수.
@method isNull
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
jindo.$Jindo.isNull = function(oObj){
return oObj === null;
};
/**
파라미터가 Undefined인지 확인하는 함수.
@method isUndefined
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
jindo.$Jindo.isUndefined = function(oObj){
return oObj === undefined;
};
/**
파라미터가 Window인지 확인하는 함수.
@method isWindow
@static
@param {Variant} oObj
@return {Boolean} [true | false]
@since 2.0.0
*/
jindo.$Jindo.isWindow = function(oObj){
return oObj == window || oObj == window.top;
};
/**
* @ignore
*/
jindo.$Jindo.Break = function(){
if (!(this instanceof arguments.callee)) throw new arguments.callee;
};
/**
* @ignore
*/
jindo.$Jindo.Continue = function(){
if (!(this instanceof arguments.callee)) throw new arguments.callee;
};
/**
함수 파라미터가 원하는 규칙에 맞는지 검사한다.
@method checkVarType
@ignore
@param {Array} aArgs 파라미터 목록
@param {Hash} oRules 규칙 목록
@param {String} sFuncName 에러메시지를 보여줄때 사용할 함수명
@return {Object}
*/
jindo.$Jindo._F = function(sKeyType) {
return sKeyType;
};
jindo.$Jindo._warn = function(sMessage){
window.console && ( (console.warn && console.warn(sMessage), true) || (console.log && console.log(sMessage), true) );
}
jindo.$Jindo._maxWarn = function(nCurrentLength, nMaxLength, sMessage) {
if(nCurrentLength > nMaxLength) {
jindo.$Jindo._warn('추가적인 파라미터가 있습니다. : '+sMessage);
}
};
jindo.$Jindo.checkVarType = function(aArgs, oRules, sFuncName) {
var sFuncName = sFuncName || aArgs.callee.name || 'anonymous';
var $Jindo = jindo.$Jindo;
var bCompat = $Jindo.compatible();
var fpChecker = aArgs.callee['_checkVarType_' + bCompat];
if (fpChecker) { return fpChecker(aArgs, oRules, sFuncName); }
var aPrependCode = [];
aPrependCode.push('var nArgsLen = aArgs.length;');
aPrependCode.push('var $Jindo = '+jindoName+'.$Jindo;');
if (bCompat) {
aPrependCode.push('var nMatchScore;');
aPrependCode.push('var nMaxMatchScore = -1;');
aPrependCode.push('var oFinalRet = null;');
}
var aBodyCode = [];
var nMaxRuleLen = 0;
for (var sType in oRules) if (oRules.hasOwnProperty(sType)) {
nMaxRuleLen = Math.max(oRules[sType].length, nMaxRuleLen);
}
for (var sType in oRules) if (oRules.hasOwnProperty(sType)) {
// console.log(sType);
var aRule = oRules[sType];
var nRuleLen = aRule.length;
var aBodyPrependCode = [];
var aBodyIfCode = [];
var aBodyThenCode = [];
if (!bCompat) {
if (nRuleLen < nMaxRuleLen) { aBodyIfCode.push('nArgsLen === ' + nRuleLen); }
else { aBodyIfCode.push('nArgsLen >= ' + nRuleLen); }
}
aBodyThenCode.push('var oRet = new $Jindo._varTypeRetObj();');
var nTypeCount = nRuleLen;
for (var i = 0; i < nRuleLen; ++i) {
/^([^:]+):([^\+]*)(\+?)$/.test(aRule[i]);
var sVarName = RegExp.$1;
var sVarType = RegExp.$2;
var bAutoCast = RegExp.$3 ? true : false;
// 모든 타입을 허용하면
if (sVarType === 'Variant') {
if (bCompat) {
aBodyIfCode.push(i + ' in aArgs');
}
aBodyThenCode.push('oRet["' + sVarName + '"] = aArgs[' + i + '];');
nTypeCount--;
// 사용자 정의 타입이면
} else if ($Jindo._varTypeList[sVarType]) {
var vVar = 'tmp' + sVarType + '_' + i;
aBodyPrependCode.push('var ' + vVar + ' = $Jindo._varTypeList.' + sVarType + '(aArgs[' + i + '], ' + bAutoCast + ');');
aBodyIfCode.push(vVar + ' !== '+jindoName+'.$Jindo.VARTYPE_NOT_MATCHED');
aBodyThenCode.push('oRet["' + sVarName + '"] = ' + vVar + ';');
// Jindo 랩핑 타입이면
} else if (/^\$/.test(sVarType) && jindo[sVarType]) {
var sOR = '';
var sNativeVarType;
if (bAutoCast) {
sNativeVarType = ({ $Fn : 'Function', $S : 'String', $A : 'Array', $H : 'Hash', $ElementList : 'Array' })[sVarType] || sVarType.replace(/^\$/, '');
if (jindo.$Jindo['is' + sNativeVarType]) {
sOR = ' || $Jindo.is' + sNativeVarType + '(vNativeArg_' + i + ')';
}
}
aBodyIfCode.push('(aArgs[' + i + '] instanceof '+jindoName+'.' + sVarType + sOR + ')');
aBodyThenCode.push('oRet["' + sVarName + '"] = '+jindoName+'.' + sVarType + '(aArgs[' + i + ']);');
// 기타 Native 타입이면
} else if (jindo.$Jindo['is' + sVarType]) {
var sOR = '';
var sWrapedVarType;
if (bAutoCast) {
sWrapedVarType = ({ 'Function' : '$Fn', 'String' : '$S', 'Array' : '$A', 'Hash' : '$H' })[sVarType] || '$' + sVarType;
if (jindo[sWrapedVarType]) {
sOR = ' || aArgs[' + i + '] instanceof '+jindoName+'.' + sWrapedVarType;
}
}
aBodyIfCode.push('($Jindo.is' + sVarType + '(aArgs[' + i + '])' + sOR + ')');
aBodyThenCode.push('oRet["' + sVarName + '"] = vNativeArg_' + i + ';');
// 없는 타입이면
} else {
throw new Error('VarType(' + sVarType + ') Not Found');
}
}
aBodyThenCode.push('oRet.__type = "' + sType + '";');
if (bCompat) {
aBodyThenCode.push('nMatchScore = ' + (nRuleLen * 1000 + nTypeCount * 10) + ' + (nArgsLen === ' + nRuleLen + ' ? 1 : 0);');
aBodyThenCode.push('if (nMatchScore > nMaxMatchScore) {');
aBodyThenCode.push(' nMaxMatchScore = nMatchScore;');
aBodyThenCode.push(' oFinalRet = oRet;');
aBodyThenCode.push('}');
} else {
aBodyThenCode.push('return oRet;');
}
aBodyCode.push(aBodyPrependCode.join('\n'));
if (aBodyIfCode.length) { aBodyCode.push('if (' + aBodyIfCode.join(' && ') + ') {'); }
aBodyCode.push(aBodyThenCode.join('\n'));
if (aBodyIfCode.length) { aBodyCode.push('}'); }
}
aPrependCode.push(' $Jindo._maxWarn(nArgsLen,'+nMaxRuleLen+',"'+sFuncName+'");');
for (var i = 0; i < nMaxRuleLen; ++i) {
var sArg = 'aArgs[' + i + ']';
aPrependCode.push([ 'var vNativeArg_', i, ' = ', sArg, ' && ', sArg, '.$value ? ', sArg, '.$value() : ', sArg + ';' ].join(''));
}
if (!bCompat) {
aBodyCode.push('$Jindo.checkVarType._throwException(aArgs, oRules, sFuncName);');
}
aBodyCode.push('return oFinalRet;');
// if (bCompat) { console.log(aPrependCode.join('\n') + aBodyCode.join('\n')); }
aArgs.callee['_checkVarType_' + bCompat] = fpChecker = new Function('aArgs,oRules,sFuncName', aPrependCode.join('\n') + aBodyCode.join('\n'));
return fpChecker(aArgs, oRules, sFuncName);
};
var g_checkVarType = jindo.$Jindo.checkVarType;
jindo.$Jindo._varTypeRetObj = function() {};
jindo.$Jindo._varTypeRetObj.prototype.toString = function() { return this.__type; };
jindo.$Jindo.checkVarType._throwException = function(aArgs, oRules, sFuncName) {
var fpGetType = function(vArg) {
for (var sKey in jindo) if (jindo.hasOwnProperty(sKey)) {
var oConstructor = jindo[sKey];
if (typeof oConstructor !== 'function') { continue; }
if (vArg instanceof oConstructor) { return sKey; }
}
var $Jindo = jindo.$Jindo;
for (var sKey in $Jindo) if ($Jindo.hasOwnProperty(sKey)) {
if (!/^is(.+)$/.test(sKey)) { continue; }
var sType = RegExp.$1;
var fpMethod = $Jindo[sKey];
if (fpMethod(vArg)) { return sType; }
}
return 'Unknown';
};
var fpErrorMessage = function(sUsed, aSuggs, sURL) {
var aMsg = [ '잘못된 파라미터입니다.', '' ];
if (sUsed) {
aMsg.push('호출한 형태 :');
aMsg.push('\t' + sUsed);
aMsg.push('');
}
if (aSuggs.length) {
aMsg.push('사용 가능한 형태 :');
for (var i = 0, nLen = aSuggs.length; i < nLen; i++) {
aMsg.push('\t' + aSuggs[i]);
}
aMsg.push('');
}
if (sURL) {
aMsg.push('매뉴얼 페이지 :');
aMsg.push('\t' + sURL);
aMsg.push('');
}
aMsg.unshift();
return aMsg.join('\n');
};
var aArgName = [];
for (var i = 0, ic = aArgs.length; i < ic; ++i) {
try { aArgName.push(fpGetType(aArgs[i])); }
catch(e) { aArgName.push('Unknown'); }
}
var sUsed = sFuncName + '(' + aArgName.join(', ') + ')';
var aSuggs = [];
for (var sKey in oRules) if (oRules.hasOwnProperty(sKey)) {
var aRule = oRules[sKey];
aSuggs.push('' + sFuncName + '(' + aRule.join(', ').replace(/(^|,\s)[^:]+:/g, '$1') + ')');
}
var sURL;
if (/(\$\w+)#(\w+)?/.test(sFuncName)) {
sURL = 'http://jindo.nhncorp.com/docs/jindo/archive/Jindo2-2.6.0/desktop/ko/classes/' + encodeURIComponent(RegExp.$1) + '.html' + "#method_"+RegExp.$2;
}
throw new TypeError(fpErrorMessage(sUsed, aSuggs, sURL));
};
var _getElementById = function(doc,id){
/*
* ie6,7에서 name으로도 getElementById를 사용할 수 있도록 되어 있어 수정.
*/
docEle = doc.documentElement;
var sCheckId = "jindo"+ (new Date()).getTime();
var eDiv = doc.createElement("div");
eDiv.style.display = "none";
if(typeof MSApp != "undefined"){
MSApp.execUnsafeLocalFunction(function(){
eDiv.innerHTML = "<input type='hidden' name='"+sCheckId+"'/>";
});
}else{
eDiv.innerHTML = "<input type='hidden' name='"+sCheckId+"'/>";
}
docEle.insertBefore( eDiv, docEle.firstChild );
if(doc.getElementById(sCheckId)){
_getElementById = function(doc,id){
var eId = doc.getElementById(id);
if(eId == null) return eId;
if(eId.attributes['id'] && eId.attributes['id'].value == id){
return eId;
}
var aEl = doc.all[id];
for(var i=1; i<aEl.length; i++){
if(aEl[i].attributes['id'] && aEl[i].attributes['id'].value == id){
return aEl[i];
}
}
}
}else{
_getElementById = function(doc,id){
return doc.getElementById(id);
}
}
docEle.removeChild(eDiv);
return _getElementById(doc,id);
}
/**
checkVarType 를 수행할때 사용하고 있는 타입을 얻는다.
@method varType
@ignore
@param {String+} sTypeName 타입 이름
@return {Function} 타입을 검사하는 규칙을 구현하는 함수
*/
/**
checkVarType 를 수행할때 사용할 타입을 설정한다.
@method varType
@ignore
@syntax sTypeName, fpFunc
@syntax oTypeLists
@param {String+} sTypeName 타입 이름
@param {Function+} fpFunc 타입을 검사하는 규칙을 구현하는 함수
@param {Hash+} oTypeLists 타입 규칙을 담은 객체, 이 옵션을 사용하면 checkVarType 를 수행할때 사용할 여러개의 타입들을 한번에 설정할 수 있다.
@return {this} 인스턴스 자신
*/
jindo.$Jindo.varType = function() {
var oArgs = this.checkVarType(arguments, {
's4str' : [ 'sTypeName:'+tString, 'fpFunc:'+tFunction ],
's4obj' : [ 'oTypeLists:'+tHash ],
'g' : [ 'sTypeName:'+tString ]
});
var sDenyTypeListComma = jindo.$Jindo._denyTypeListComma;
switch (oArgs+"") {
case 's4str':
var sTypeNameComma = ',' + oArgs.sTypeName.replace(/\+$/, '') + ',';
if (sDenyTypeListComma.indexOf(sTypeNameComma) > -1) {
throw new Error('Not allowed Variable Type');
}
this._varTypeList[oArgs.sTypeName] = oArgs.fpFunc;
return this;
case 's4obj':
var oTypeLists = oArgs.oTypeLists;
for (var sTypeName in oTypeLists) if (oTypeLists.hasOwnProperty(sTypeName)) {
fpFunc = oTypeLists[sTypeName];
arguments.callee.call(this, sTypeName, fpFunc);
}
return this;
case 'g':
return this._varTypeList[oArgs.sTypeName];
}
};
/**
varType 에 등록한 타입 체크 함수에서 타입이 매칭되지 않음을 알리고 싶을때 사용한다.
@constant VARTYPE_NOT_MATCHED
@static
@ignore
*/
jindo.$Jindo.VARTYPE_NOT_MATCHED = {};
(function() {
var oVarTypeList = jindo.$Jindo._varTypeList = {};
var ___jindo = jindo.$Jindo;
var ___notMatched = ___jindo.VARTYPE_NOT_MATCHED;
oVarTypeList['Numeric'] = function(v) {
if (___jindo.isNumeric(v)) { return v * 1; }
return ___notMatched;
};
oVarTypeList['Hash'] = function(val, bAutoCast){
if (bAutoCast && jindo.$H && val instanceof jindo.$H) {
return val.$value();
} else if (___jindo.isHash(val)) {
return val;
}
return ___notMatched;
};
oVarTypeList['$Class'] = function(val, bAutoCast){
if ((!___jindo.isFunction(val))||!val.extend) {
return ___notMatched;
}
return val;
};
var aDenyTypeList = [];
for (var sTypeName in ___jindo) if (___jindo.hasOwnProperty(sTypeName)) {
if (/^is(.+)$/.test(sTypeName)) { aDenyTypeList.push(RegExp.$1); }
}
___jindo._denyTypeListComma = aDenyTypeList.join(',');
___jindo.varType("ArrayStyle",function(val, bAutoCast){
if(!val) { return ___notMatched; }
if (
/(Arguments|NodeList|HTMLCollection|global|Window)/.test(_objToString.call(val)) ||
/Object/.test(_objToString.call(val))&&___jindo.isNumeric(val.length)) {
return _toArray(val);
}
return ___notMatched;
});
___jindo.varType("Form",function(val, bAutoCast){
if(!val) { return ___notMatched; }
if(bAutoCast&&val.$value){
val = val.$value();
}
if (val.tagName&&val.tagName.toUpperCase()=="FORM") {
return val
}
return ___notMatched;
});
// ___jindo.varType("FormId",function(val, bAutoCast){
// if(___jindo.isString(val)){
// val = jindo.$(val);
// if (val.tagName&&val.tagName.toUpperCase()=="FORM") {
// return val;
// }
// }
// return ___notMatched;
// });
//
// ___jindo.varType("PrimativeStyle",function(val, bAutoCast){
// if(
// ___jindo.isNumeric(val) ||
// ___jindo.isString(val) ||
// ___jindo.isBoolean(val)
// ){
// return val;
// }
// return ___notMatched;
//
// });
//
})();
function _createEle(sParentTag,sHTML,oDoc,bWantParent){
//-@@_createEle.hidden-@@//
var sId = 'R' + new Date().getTime() + parseInt(Math.random() * 100000,10);
var oDummy = oDoc.createElement("div");
switch (sParentTag) {
case 'select':
case 'table':
case 'dl':
case 'ul':
case 'fieldset':
oDummy.innerHTML = '<' + sParentTag + ' class="' + sId + '">' + sHTML + '</' + sParentTag + '>';
break;
case 'thead':
case 'tbody':
case 'col':
oDummy.innerHTML = '<table><' + sParentTag + ' class="' + sId + '">' + sHTML + '</' + sParentTag + '></table>';
break;
case 'tr':
oDummy.innerHTML = '<table><tbody><tr class="' + sId + '">' + sHTML + '</tr></tbody></table>';
break;
default:
oDummy.innerHTML = '<div class="' + sId + '">' + sHTML + '</div>';
}
var oFound;
for (oFound = oDummy.firstChild; oFound; oFound = oFound.firstChild){
if (oFound.className==sId) break;
}
return bWantParent? oFound : oFound.childNodes;
};
//-!jindo.$Jindo.default end!-//
/**
Built-In Namespace _global_
@class jindo
@static
*/
//-!jindo.$ start!-//
/**
$() 함수는 특정 요소를 생성한다. "<tagName>" 과 같은 형식의 문자열을 입력하면 tagName 요소를 가지는 객체를 생성한다.
@method $
@param {String+} elDomElement 생성될 DOM 요소
@return {Variant} 요소를 생성하고 객체(Object) 형태로 반환한다.
@throws {jindo.$Except.NOT_FOUND_ARGUMENT} 파라미터가 없을 경우.
@remark Jindo 1.4.6 버전부터 마지막 파라미터에 document 요소를 지정할 수 있다.
@example
// tagName과 같은 형식의 문자열을 이용하여 객체를 생성한다.
var el = $("<DIV>");