This file is indexed.

/usr/share/javascript/dojo/parser.js is in libjs-dojo-core 1.6.1+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
	Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
	Available via Academic Free License >= 2.1 OR the modified BSD license.
	see: http://dojotoolkit.org/license for details
*/


if(!dojo._hasResource["dojo.parser"]){
dojo._hasResource["dojo.parser"]=true;
dojo.provide("dojo.parser");
dojo.require("dojo.date.stamp");
new Date("X");
dojo.parser=new function(){
var d=dojo;
function _1(_2){
if(d.isString(_2)){
return "string";
}
if(typeof _2=="number"){
return "number";
}
if(typeof _2=="boolean"){
return "boolean";
}
if(d.isFunction(_2)){
return "function";
}
if(d.isArray(_2)){
return "array";
}
if(_2 instanceof Date){
return "date";
}
if(_2 instanceof d._Url){
return "url";
}
return "object";
};
function _3(_4,_5){
switch(_5){
case "string":
return _4;
case "number":
return _4.length?Number(_4):NaN;
case "boolean":
return typeof _4=="boolean"?_4:!(_4.toLowerCase()=="false");
case "function":
if(d.isFunction(_4)){
_4=_4.toString();
_4=d.trim(_4.substring(_4.indexOf("{")+1,_4.length-1));
}
try{
if(_4===""||_4.search(/[^\w\.]+/i)!=-1){
return new Function(_4);
}else{
return d.getObject(_4,false)||new Function(_4);
}
}
catch(e){
return new Function();
}
case "array":
return _4?_4.split(/\s*,\s*/):[];
case "date":
switch(_4){
case "":
return new Date("");
case "now":
return new Date();
default:
return d.date.stamp.fromISOString(_4);
}
case "url":
return d.baseUrl+_4;
default:
return d.fromJson(_4);
}
};
var _6={},_7={};
d.connect(d,"extend",function(){
_7={};
});
function _8(_9,_a){
for(var _b in _9){
if(_b.charAt(0)=="_"){
continue;
}
if(_b in _6){
continue;
}
_a[_b]=_1(_9[_b]);
}
return _a;
};
function _c(_d,_e){
var c=_7[_d];
if(!c){
var _f=d.getObject(_d),_10=null;
if(!_f){
return null;
}
if(!_e){
_10=_8(_f.prototype,{});
}
c={cls:_f,params:_10};
}else{
if(!_e&&!c.params){
c.params=_8(c.cls.prototype,{});
}
}
return c;
};
this._functionFromScript=function(_11,_12){
var _13="";
var _14="";
var _15=(_11.getAttribute(_12+"args")||_11.getAttribute("args"));
if(_15){
d.forEach(_15.split(/\s*,\s*/),function(_16,idx){
_13+="var "+_16+" = arguments["+idx+"]; ";
});
}
var _17=_11.getAttribute("with");
if(_17&&_17.length){
d.forEach(_17.split(/\s*,\s*/),function(_18){
_13+="with("+_18+"){";
_14+="}";
});
}
return new Function(_13+_11.innerHTML+_14);
};
this.instantiate=function(_19,_1a,_1b){
var _1c=[],_1a=_1a||{};
_1b=_1b||{};
var _1d=(_1b.scope||d._scopeName)+"Type",_1e="data-"+(_1b.scope||d._scopeName)+"-";
d.forEach(_19,function(obj){
if(!obj){
return;
}
var _1f,_20,_21,_22,_23,_24;
if(obj.node){
_1f=obj.node;
_20=obj.type;
_24=obj.fastpath;
_21=obj.clsInfo||(_20&&_c(_20,_24));
_22=_21&&_21.cls;
_23=obj.scripts;
}else{
_1f=obj;
_20=_1d in _1a?_1a[_1d]:_1f.getAttribute(_1d);
_21=_20&&_c(_20);
_22=_21&&_21.cls;
_23=(_22&&(_22._noScript||_22.prototype._noScript)?[]:d.query("> script[type^='dojo/']",_1f));
}
if(!_21){
throw new Error("Could not load class '"+_20);
}
var _25={};
if(_1b.defaults){
d._mixin(_25,_1b.defaults);
}
if(obj.inherited){
d._mixin(_25,obj.inherited);
}
if(_24){
var _26=_1f.getAttribute(_1e+"props");
if(_26&&_26.length){
try{
_26=d.fromJson.call(_1b.propsThis,"{"+_26+"}");
d._mixin(_25,_26);
}
catch(e){
throw new Error(e.toString()+" in data-dojo-props='"+_26+"'");
}
}
var _27=_1f.getAttribute(_1e+"attach-point");
if(_27){
_25.dojoAttachPoint=_27;
}
var _28=_1f.getAttribute(_1e+"attach-event");
if(_28){
_25.dojoAttachEvent=_28;
}
dojo.mixin(_25,_1a);
}else{
var _29=_1f.attributes;
for(var _2a in _21.params){
var _2b=_2a in _1a?{value:_1a[_2a],specified:true}:_29.getNamedItem(_2a);
if(!_2b||(!_2b.specified&&(!dojo.isIE||_2a.toLowerCase()!="value"))){
continue;
}
var _2c=_2b.value;
switch(_2a){
case "class":
_2c="className" in _1a?_1a.className:_1f.className;
break;
case "style":
_2c="style" in _1a?_1a.style:(_1f.style&&_1f.style.cssText);
}
var _2d=_21.params[_2a];
if(typeof _2c=="string"){
_25[_2a]=_3(_2c,_2d);
}else{
_25[_2a]=_2c;
}
}
}
var _2e=[],_2f=[];
d.forEach(_23,function(_30){
_1f.removeChild(_30);
var _31=(_30.getAttribute(_1e+"event")||_30.getAttribute("event")),_20=_30.getAttribute("type"),nf=d.parser._functionFromScript(_30,_1e);
if(_31){
if(_20=="dojo/connect"){
_2e.push({event:_31,func:nf});
}else{
_25[_31]=nf;
}
}else{
_2f.push(nf);
}
});
var _32=_22.markupFactory||_22.prototype&&_22.prototype.markupFactory;
var _33=_32?_32(_25,_1f,_22):new _22(_25,_1f);
_1c.push(_33);
var _34=(_1f.getAttribute(_1e+"id")||_1f.getAttribute("jsId"));
if(_34){
d.setObject(_34,_33);
}
d.forEach(_2e,function(_35){
d.connect(_33,_35.event,null,_35.func);
});
d.forEach(_2f,function(_36){
_36.call(_33);
});
});
if(!_1a._started){
d.forEach(_1c,function(_37){
if(!_1b.noStart&&_37&&dojo.isFunction(_37.startup)&&!_37._started&&(!_37.getParent||!_37.getParent())){
_37.startup();
}
});
}
return _1c;
};
this.parse=function(_38,_39){
var _3a;
if(!_39&&_38&&_38.rootNode){
_39=_38;
_3a=_39.rootNode;
}else{
_3a=_38;
}
_3a=_3a?dojo.byId(_3a):dojo.body();
_39=_39||{};
var _3b=(_39.scope||d._scopeName)+"Type",_3c="data-"+(_39.scope||d._scopeName)+"-";
function _3d(_3e,_3f){
var _40=dojo.clone(_3e.inherited);
dojo.forEach(["dir","lang"],function(_41){
var val=_3e.node.getAttribute(_41);
if(val){
_40[_41]=val;
}
});
var _42=_3e.clsInfo&&!_3e.clsInfo.cls.prototype._noScript?_3e.scripts:null;
var _43=(!_3e.clsInfo||!_3e.clsInfo.cls.prototype.stopParser)||(_39&&_39.template);
for(var _44=_3e.node.firstChild;_44;_44=_44.nextSibling){
if(_44.nodeType==1){
var _45,_46=_43&&_44.getAttribute(_3c+"type");
if(_46){
_45=_46;
}else{
_45=_43&&_44.getAttribute(_3b);
}
var _47=_46==_45;
if(_45){
var _48={"type":_45,fastpath:_47,clsInfo:_c(_45,_47),node:_44,scripts:[],inherited:_40};
_3f.push(_48);
_3d(_48,_3f);
}else{
if(_42&&_44.nodeName.toLowerCase()=="script"){
_45=_44.getAttribute("type");
if(_45&&/^dojo\/\w/i.test(_45)){
_42.push(_44);
}
}else{
if(_43){
_3d({node:_44,inherited:_40},_3f);
}
}
}
}
}
};
var _49={};
if(_39&&_39.inherited){
for(var key in _39.inherited){
if(_39.inherited[key]){
_49[key]=_39.inherited[key];
}
}
}
var _4a=[];
_3d({node:_3a,inherited:_49},_4a);
var _4b=_39&&_39.template?{template:true}:null;
return this.instantiate(_4a,_4b,_39);
};
}();
(function(){
var _4c=function(){
if(dojo.config.parseOnLoad){
dojo.parser.parse();
}
};
if(dojo.getObject("dijit.wai.onload")===dojo._loaders[0]){
dojo._loaders.splice(1,0,_4c);
}else{
dojo._loaders.unshift(_4c);
}
})();
}