This repository was archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIDT.js
322 lines (272 loc) · 7.19 KB
/
IDT.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
/*
SPDX-License-Identifier: GPL-3.0-or-later
Copyright © 1991-2022 Amebis
Copyright © 2016 GÉANT
*/
/*@cc_on @*/
/*@if (! @_escapeIDT_JS__) @*/
/*@set @_escapeIDT_JS__ = true @*/
var escapeIDT_stat = null;
function escapeIDT(str)
{
if (!escapeIDT_stat) {
escapeIDT_stat = {
"re_tab": new RegExp("\t", "g")
};
}
if (str == null) return null;
switch (typeof(str)) {
case "string": break;
case "undefined": return null;
default: try { str = str.toString(); } catch (err) { return null; }
}
return str.replace(escapeIDT_stat.re_tab, "\u0010");
}
var unescapeIDT_stat = null;
function unescapeIDT(str)
{
if (!unescapeIDT_stat) {
unescapeIDT_stat = {
"re_tab": new RegExp("\u0010", "g")
};
}
if (str == null) return null;
switch (typeof(str)) {
case "string": break;
case "undefined": return null;
default: try { str = str.toString(); } catch (err) { return null; }
}
return str.replace(unescapeIDT_stat.re_tab, "\t");
}
function IDT(path)
{
// Open IDT file.
var
dat = new ActiveXObject("ADODB.Stream");
dat.Open();
try {
// IDT is text file, uses MSDOS line breaks and Windows 1252 header.
dat.Type = adTypeText;
dat.LineSeparator = adCRLF;
dat.Charset = "windows-1252";
// Load file.
dat.LoadFromFile(path);
var parseRow = function(row) {
for (var col in row)
row[col] = CRLF2LF(unescapeIDT(row[col]));
return row;
}
// Parse column names.
this.columns = parseRow(dat.ReadText(adReadLine).split("\t"));
// Parse column types.
this.types = parseRow(dat.ReadText(adReadLine).split("\t"));
// Parse meta info
var line = parseRow(dat.ReadText(adReadLine).split("\t")), i = 0;
this.codepage = parseInt(line[i], 10);
if (isNaN(this.codepage)) this.codepage = 0; else i++;
this.table = line[i++];
this.key = line.slice(i);
for (var i in this.key) {
for (var j in this.columns) {
if (this.key[i] == this.columns[j]) {
this.key[i] = j;
break;
}
}
}
// Rewind and reconfigure code page.
dat.Position = 0;
dat.Charset = CodePageToId(this.codepage);
// Skip header.
dat.SkipLine();
dat.SkipLine();
dat.SkipLine();
// Parse data and build associative array.
this.data = new Array();
this.linenum = new Array();
var linenum = 4;
while (!dat.EOS) {
line = parseRow(dat.ReadText(adReadLine).split("\t"));
var key = new Array();
for (var i in this.key)
key.push(line[this.key[i]]);
this.data[key] = line;
this.linenum[key] = linenum++;
}
} finally {
dat.Close();
}
}
IDT.prototype.isLocalizable = function(col)
{
// Test against predefined list of columns.
switch (this.table.toLowerCase()) {
case "actiontext":
switch (this.columns[col].toLowerCase()) {
case "description":
case "template" : return true;
}
break;
case "control":
switch (this.columns[col].toLowerCase()) {
case "text":
case "help": return true;
}
break;
case "controlevent":
switch (this.columns[col].toLowerCase()) {
case "argument": return true;
}
break;
case "customaction":
switch (this.columns[col].toLowerCase()) {
case "target": return true;
}
break;
case "dialog":
switch (this.columns[col].toLowerCase()) {
case "title": return true;
}
break;
case "directory":
switch (this.columns[col].toLowerCase()) {
case "defaultdir": return true;
}
break;
case "error":
switch (this.columns[col].toLowerCase()) {
case "message": return true;
}
break;
case "feature":
switch (this.columns[col].toLowerCase()) {
case "title" :
case "description": return true;
}
break;
case "file":
switch (this.columns[col].toLowerCase()) {
case "filename":
case "language": return true;
}
break;
case "launchcondition":
switch (this.columns[col].toLowerCase()) {
case "description": return true;
}
break;
case "media":
switch (this.columns[col].toLowerCase()) {
case "diskprompt": return true;
}
break;
case "progid":
switch (this.columns[col].toLowerCase()) {
case "description": return true;
}
break;
case "property":
switch (this.columns[col].toLowerCase()) {
case "value": return true;
}
break;
case "publishcomponent":
switch (this.columns[col].toLowerCase()) {
case "appdata": return true;
}
break;
case "radiobutton":
switch (this.columns[col].toLowerCase()) {
case "text":
case "help": return true;
}
break;
case "registry":
switch (this.columns[col].toLowerCase()) {
case "value": return true;
}
break;
case "scheduledtask":
switch (this.columns[col].toLowerCase()) {
case "displayname":
case "description": return true;
}
break;
case "serviceinstall":
switch (this.columns[col].toLowerCase()) {
case "displayname":
case "description": return true;
}
break;
case "shortcut":
switch (this.columns[col].toLowerCase()) {
case "name" :
case "description": return true;
}
break;
case "uitext":
switch (this.columns[col].toLowerCase()) {
case "text": return true;
}
break;
case "verb":
switch (this.columns[col].toLowerCase()) {
case "command" :
case "argument": return true;
}
break;
case "wlanprofile":
switch (this.columns[col].toLowerCase()) {
case "name": return true;
}
break;
}
// Is this column localizable according to its type?
return this.types[col].charAt(0).toLowerCase() == "l";
}
IDT.prototype.save = function(path)
{
// Build output IDT file in memory.
var dat = WScript.CreateObject("ADODB.Stream");
dat.Open();
try {
// IDT is text file, uses MSDOS line breaks, and specific encoding (optional).
dat.Type = adTypeText;
dat.LineSeparator = adCRLF;
if ("codepage" in this)
dat.Charset = CodePageToId(this.codepage);
var buildRow_stat = null;
var buildRow = function(row) {
if (!buildRow_stat) {
buildRow_stat = {
"re_lf": new RegExp("\n", "g"),
"re_cr": new RegExp("\r", "g")
};
}
for (var col in row) {
if (row[col].match(buildRow_stat.re_lf) || row[col].match(buildRow_stat.re_cr))
throw new Error("Cell \"" + row[col] + "\" contains line breaks. IDT cells cannot contain CR, nor LF.");
row[col] = escapeIDT(LF2CRLF(row[col]));
}
return row;
}
// Write header.
dat.WriteText(buildRow(this.columns).join("\t"), adWriteLine);
dat.WriteText(buildRow(this.types ).join("\t"), adWriteLine);
var meta = new Array();
if ("codepage" in this)
meta.push(this.codepage.toString(10));
meta.push(this.table);
for (var key in this.key)
meta.push(this.columns[this.key[key]]);
dat.WriteText(buildRow(meta).join("\t"), adWriteLine);
// Save data.
for (var key in this.data)
dat.WriteText(buildRow(this.data[key]).join("\t"), adWriteLine);
// Save to file.
dat.SaveToFile(path, adSaveCreateOverWrite);
} finally {
dat.Close();
}
}
/*@end @*/