less 2.5.1 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +5 -1
  3. data/README.md +12 -0
  4. data/lib/less/js/.travis.yml +8 -0
  5. data/lib/less/js/CHANGELOG.md +22 -0
  6. data/lib/less/js/CONTRIBUTING.md +1 -1
  7. data/lib/less/js/Gruntfile.js +8 -0
  8. data/lib/less/js/README.md +5 -304
  9. data/lib/less/js/bin/lessc +16 -13
  10. data/lib/less/js/bower.json +2 -2
  11. data/lib/less/js/build/README.md +4 -303
  12. data/lib/less/js/build/build.yml +2 -0
  13. data/lib/less/js/dist/less-1.6.3.js +7627 -0
  14. data/lib/less/js/dist/less-1.6.3.min.js +16 -0
  15. data/lib/less/js/dist/less-1.7.0.js +7921 -0
  16. data/lib/less/js/dist/less-1.7.0.min.js +16 -0
  17. data/lib/less/js/dist/less-rhino-1.6.3.js +9020 -0
  18. data/lib/less/js/dist/less-rhino-1.7.0.js +9301 -0
  19. data/lib/less/js/dist/lessc-rhino-1.6.3.js +449 -0
  20. data/lib/less/js/dist/lessc-rhino-1.7.0.js +449 -0
  21. data/lib/less/js/lib/less/browser.js +22 -9
  22. data/lib/less/js/lib/less/functions.js +47 -16
  23. data/lib/less/js/lib/less/import-visitor.js +29 -5
  24. data/lib/less/js/lib/less/index.js +10 -3
  25. data/lib/less/js/lib/less/parser.js +139 -52
  26. data/lib/less/js/lib/less/to-css-visitor.js +26 -4
  27. data/lib/less/js/lib/less/tree/color.js +11 -1
  28. data/lib/less/js/lib/less/tree/detached-ruleset.js +20 -0
  29. data/lib/less/js/lib/less/tree/dimension.js +17 -6
  30. data/lib/less/js/lib/less/tree/directive.js +33 -29
  31. data/lib/less/js/lib/less/tree/import.js +8 -1
  32. data/lib/less/js/lib/less/tree/keyword.js +1 -0
  33. data/lib/less/js/lib/less/tree/media.js +3 -0
  34. data/lib/less/js/lib/less/tree/mixin.js +15 -11
  35. data/lib/less/js/lib/less/tree/rule.js +14 -4
  36. data/lib/less/js/lib/less/tree/ruleset-call.js +16 -0
  37. data/lib/less/js/lib/less/tree/ruleset.js +48 -19
  38. data/lib/less/js/package.json +13 -13
  39. data/lib/less/js/test/browser/css/postProcessor/postProcessor.css +4 -0
  40. data/lib/less/js/test/browser/less/postProcessor/postProcessor.less +4 -0
  41. data/lib/less/js/test/browser/runner-postProcessor-options.js +4 -0
  42. data/lib/less/js/test/browser/runner-postProcessor.js +3 -0
  43. data/lib/less/js/test/css/debug/linenumbers-all.css +2 -2
  44. data/lib/less/js/test/css/debug/linenumbers-comments.css +1 -1
  45. data/lib/less/js/test/css/debug/linenumbers-mediaquery.css +1 -1
  46. data/lib/less/js/test/css/detached-rulesets.css +71 -0
  47. data/lib/less/js/test/css/functions.css +21 -4
  48. data/lib/less/js/test/css/import-reference.css +23 -4
  49. data/lib/less/js/test/css/merge.css +8 -0
  50. data/lib/less/js/test/css/mixins-pattern.css +4 -0
  51. data/lib/less/js/test/css/scope.css +3 -0
  52. data/lib/less/js/test/css/variables-in-at-rules.css +18 -0
  53. data/lib/less/js/test/less/css-guards.less +3 -0
  54. data/lib/less/js/test/less/detached-rulesets.less +103 -0
  55. data/lib/less/js/test/less/errors/at-rules-undefined-var.less +4 -0
  56. data/lib/less/js/test/less/errors/at-rules-undefined-var.txt +4 -0
  57. data/lib/less/js/test/less/errors/detached-ruleset-1.less +6 -0
  58. data/lib/less/js/test/less/errors/detached-ruleset-1.txt +4 -0
  59. data/lib/less/js/test/less/errors/detached-ruleset-2.less +6 -0
  60. data/lib/less/js/test/less/errors/detached-ruleset-2.txt +4 -0
  61. data/lib/less/js/test/less/errors/detached-ruleset-3.less +4 -0
  62. data/lib/less/js/test/less/errors/detached-ruleset-3.txt +4 -0
  63. data/lib/less/js/test/less/errors/detached-ruleset-4.less +5 -0
  64. data/lib/less/js/test/less/errors/detached-ruleset-4.txt +3 -0
  65. data/lib/less/js/test/less/errors/detached-ruleset-5.less +4 -0
  66. data/lib/less/js/test/less/errors/detached-ruleset-5.txt +3 -0
  67. data/lib/less/js/test/less/errors/detached-ruleset-6.less +5 -0
  68. data/lib/less/js/test/less/errors/detached-ruleset-6.txt +4 -0
  69. data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.less +9 -0
  70. data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.txt +4 -0
  71. data/lib/less/js/test/less/errors/percentage-missing-space.less +3 -0
  72. data/lib/less/js/test/less/errors/percentage-missing-space.txt +4 -0
  73. data/lib/less/js/test/less/functions.less +25 -7
  74. data/lib/less/js/test/less/import-reference.less +7 -4
  75. data/lib/less/js/test/less/import/import-reference.less +8 -0
  76. data/lib/less/js/test/less/merge.less +20 -1
  77. data/lib/less/js/test/less/mixins-guards.less +7 -1
  78. data/lib/less/js/test/less/mixins-pattern.less +3 -0
  79. data/lib/less/js/test/less/scope.less +25 -0
  80. data/lib/less/js/test/less/variables-in-at-rules.less +20 -0
  81. data/lib/less/version.rb +1 -1
  82. metadata +39 -2
@@ -0,0 +1,449 @@
1
+ /* LESS.js v1.6.3 RHINO | Copyright (c) 2009-2014, Alexis Sellier <self@cloudhead.net> */
2
+
3
+ /*global name:true, less, loadStyleSheet, os */
4
+
5
+ function formatError(ctx, options) {
6
+ options = options || {};
7
+
8
+ var message = "";
9
+ var extract = ctx.extract;
10
+ var error = [];
11
+
12
+ // var stylize = options.color ? require('./lessc_helper').stylize : function (str) { return str; };
13
+ var stylize = function (str) { return str; };
14
+
15
+ // only output a stack if it isn't a less error
16
+ if (ctx.stack && !ctx.type) { return stylize(ctx.stack, 'red'); }
17
+
18
+ if (!ctx.hasOwnProperty('index') || !extract) {
19
+ return ctx.stack || ctx.message;
20
+ }
21
+
22
+ if (typeof(extract[0]) === 'string') {
23
+ error.push(stylize((ctx.line - 1) + ' ' + extract[0], 'grey'));
24
+ }
25
+
26
+ if (typeof(extract[1]) === 'string') {
27
+ var errorTxt = ctx.line + ' ';
28
+ if (extract[1]) {
29
+ errorTxt += extract[1].slice(0, ctx.column) +
30
+ stylize(stylize(stylize(extract[1][ctx.column], 'bold') +
31
+ extract[1].slice(ctx.column + 1), 'red'), 'inverse');
32
+ }
33
+ error.push(errorTxt);
34
+ }
35
+
36
+ if (typeof(extract[2]) === 'string') {
37
+ error.push(stylize((ctx.line + 1) + ' ' + extract[2], 'grey'));
38
+ }
39
+ error = error.join('\n') + stylize('', 'reset') + '\n';
40
+
41
+ message += stylize(ctx.type + 'Error: ' + ctx.message, 'red');
42
+ if (ctx.filename) {
43
+ message += stylize(' in ', 'red') + ctx.filename +
44
+ stylize(' on line ' + ctx.line + ', column ' + (ctx.column + 1) + ':', 'grey');
45
+ }
46
+
47
+ message += '\n' + error;
48
+
49
+ if (ctx.callLine) {
50
+ message += stylize('from ', 'red') + (ctx.filename || '') + '/n';
51
+ message += stylize(ctx.callLine, 'grey') + ' ' + ctx.callExtract + '/n';
52
+ }
53
+
54
+ return message;
55
+ }
56
+
57
+ function writeError(ctx, options) {
58
+ options = options || {};
59
+ if (options.silent) { return; }
60
+ print(formatError(ctx, options));
61
+ }
62
+
63
+ function loadStyleSheet(sheet, callback, reload, remaining) {
64
+ var endOfPath = Math.max(name.lastIndexOf('/'), name.lastIndexOf('\\')),
65
+ sheetName = name.slice(0, endOfPath + 1) + sheet.href,
66
+ contents = sheet.contents || {},
67
+ input = readFile(sheetName);
68
+
69
+ input = input.replace(/^\xEF\xBB\xBF/, '');
70
+
71
+ contents[sheetName] = input;
72
+
73
+ var parser = new less.Parser({
74
+ paths: [sheet.href.replace(/[\w\.-]+$/, '')],
75
+ contents: contents
76
+ });
77
+ parser.parse(input, function (e, root) {
78
+ if (e) {
79
+ return writeError(e);
80
+ }
81
+ try {
82
+ callback(e, root, input, sheet, { local: false, lastModified: 0, remaining: remaining }, sheetName);
83
+ } catch(e) {
84
+ writeError(e);
85
+ }
86
+ });
87
+ }
88
+
89
+ less.Parser.fileLoader = function (file, currentFileInfo, callback, env) {
90
+
91
+ var href = file;
92
+ if (currentFileInfo && currentFileInfo.currentDirectory && !/^\//.test(file)) {
93
+ href = less.modules.path.join(currentFileInfo.currentDirectory, file);
94
+ }
95
+
96
+ var path = less.modules.path.dirname(href);
97
+
98
+ var newFileInfo = {
99
+ currentDirectory: path + '/',
100
+ filename: href
101
+ };
102
+
103
+ if (currentFileInfo) {
104
+ newFileInfo.entryPath = currentFileInfo.entryPath;
105
+ newFileInfo.rootpath = currentFileInfo.rootpath;
106
+ newFileInfo.rootFilename = currentFileInfo.rootFilename;
107
+ newFileInfo.relativeUrls = currentFileInfo.relativeUrls;
108
+ } else {
109
+ newFileInfo.entryPath = path;
110
+ newFileInfo.rootpath = less.rootpath || path;
111
+ newFileInfo.rootFilename = href;
112
+ newFileInfo.relativeUrls = env.relativeUrls;
113
+ }
114
+
115
+ var j = file.lastIndexOf('/');
116
+ if(newFileInfo.relativeUrls && !/^(?:[a-z-]+:|\/)/.test(file) && j != -1) {
117
+ var relativeSubDirectory = file.slice(0, j+1);
118
+ newFileInfo.rootpath = newFileInfo.rootpath + relativeSubDirectory; // append (sub|sup) directory path of imported file
119
+ }
120
+ newFileInfo.currentDirectory = path;
121
+ newFileInfo.filename = href;
122
+
123
+ var data = null;
124
+ try {
125
+ data = readFile(href);
126
+ } catch (e) {
127
+ callback({ type: 'File', message: "'" + less.modules.path.basename(href) + "' wasn't found" });
128
+ return;
129
+ }
130
+
131
+ try {
132
+ callback(null, data, href, newFileInfo, { lastModified: 0 });
133
+ } catch (e) {
134
+ callback(e, null, href);
135
+ }
136
+ };
137
+
138
+
139
+ function writeFile(filename, content) {
140
+ var fstream = new java.io.FileWriter(filename);
141
+ var out = new java.io.BufferedWriter(fstream);
142
+ out.write(content);
143
+ out.close();
144
+ }
145
+
146
+ // Command line integration via Rhino
147
+ (function (args) {
148
+
149
+ var options = {
150
+ depends: false,
151
+ compress: false,
152
+ cleancss: false,
153
+ max_line_len: -1,
154
+ optimization: 1,
155
+ silent: false,
156
+ verbose: false,
157
+ lint: false,
158
+ paths: [],
159
+ color: true,
160
+ strictImports: false,
161
+ rootpath: '',
162
+ relativeUrls: false,
163
+ ieCompat: true,
164
+ strictMath: false,
165
+ strictUnits: false
166
+ };
167
+ var continueProcessing = true,
168
+ currentErrorcode;
169
+
170
+ var checkArgFunc = function(arg, option) {
171
+ if (!option) {
172
+ print(arg + " option requires a parameter");
173
+ continueProcessing = false;
174
+ return false;
175
+ }
176
+ return true;
177
+ };
178
+
179
+ var checkBooleanArg = function(arg) {
180
+ var onOff = /^((on|t|true|y|yes)|(off|f|false|n|no))$/i.exec(arg);
181
+ if (!onOff) {
182
+ print(" unable to parse "+arg+" as a boolean. use one of on/t/true/y/yes/off/f/false/n/no");
183
+ continueProcessing = false;
184
+ return false;
185
+ }
186
+ return Boolean(onOff[2]);
187
+ };
188
+
189
+ var warningMessages = "";
190
+ var sourceMapFileInline = false;
191
+
192
+ args = args.filter(function (arg) {
193
+ var match = arg.match(/^-I(.+)$/);
194
+
195
+ if (match) {
196
+ options.paths.push(match[1]);
197
+ return false;
198
+ }
199
+
200
+ match = arg.match(/^--?([a-z][0-9a-z-]*)(?:=(.*))?$/i);
201
+ if (match) { arg = match[1]; } // was (?:=([^\s]*)), check!
202
+ else { return arg; }
203
+
204
+ switch (arg) {
205
+ case 'v':
206
+ case 'version':
207
+ console.log("lessc " + less.version.join('.') + " (LESS Compiler) [JavaScript]");
208
+ continueProcessing = false;
209
+ break;
210
+ case 'verbose':
211
+ options.verbose = true;
212
+ break;
213
+ case 's':
214
+ case 'silent':
215
+ options.silent = true;
216
+ break;
217
+ case 'l':
218
+ case 'lint':
219
+ options.lint = true;
220
+ break;
221
+ case 'strict-imports':
222
+ options.strictImports = true;
223
+ break;
224
+ case 'h':
225
+ case 'help':
226
+ //TODO
227
+ // require('../lib/less/lessc_helper').printUsage();
228
+ continueProcessing = false;
229
+ break;
230
+ case 'x':
231
+ case 'compress':
232
+ options.compress = true;
233
+ break;
234
+ case 'M':
235
+ case 'depends':
236
+ options.depends = true;
237
+ break;
238
+ case 'yui-compress':
239
+ warningMessages += "yui-compress option has been removed. assuming clean-css.";
240
+ options.cleancss = true;
241
+ break;
242
+ case 'clean-css':
243
+ options.cleancss = true;
244
+ break;
245
+ case 'max-line-len':
246
+ if (checkArgFunc(arg, match[2])) {
247
+ options.maxLineLen = parseInt(match[2], 10);
248
+ if (options.maxLineLen <= 0) {
249
+ options.maxLineLen = -1;
250
+ }
251
+ }
252
+ break;
253
+ case 'no-color':
254
+ options.color = false;
255
+ break;
256
+ case 'no-ie-compat':
257
+ options.ieCompat = false;
258
+ break;
259
+ case 'no-js':
260
+ options.javascriptEnabled = false;
261
+ break;
262
+ case 'include-path':
263
+ if (checkArgFunc(arg, match[2])) {
264
+ options.paths = match[2].split(os.type().match(/Windows/) ? ';' : ':')
265
+ .map(function(p) {
266
+ if (p) {
267
+ // return path.resolve(process.cwd(), p);
268
+ return p;
269
+ }
270
+ });
271
+ }
272
+ break;
273
+ case 'O0': options.optimization = 0; break;
274
+ case 'O1': options.optimization = 1; break;
275
+ case 'O2': options.optimization = 2; break;
276
+ case 'line-numbers':
277
+ if (checkArgFunc(arg, match[2])) {
278
+ options.dumpLineNumbers = match[2];
279
+ }
280
+ break;
281
+ case 'source-map':
282
+ if (!match[2]) {
283
+ options.sourceMap = true;
284
+ } else {
285
+ options.sourceMap = match[2];
286
+ }
287
+ break;
288
+ case 'source-map-rootpath':
289
+ if (checkArgFunc(arg, match[2])) {
290
+ options.sourceMapRootpath = match[2];
291
+ }
292
+ break;
293
+ case 'source-map-basepath':
294
+ if (checkArgFunc(arg, match[2])) {
295
+ options.sourceMapBasepath = match[2];
296
+ }
297
+ break;
298
+ case 'source-map-map-inline':
299
+ sourceMapFileInline = true;
300
+ options.sourceMap = true;
301
+ break;
302
+ case 'source-map-less-inline':
303
+ options.outputSourceFiles = true;
304
+ break;
305
+ case 'source-map-url':
306
+ if (checkArgFunc(arg, match[2])) {
307
+ options.sourceMapURL = match[2];
308
+ }
309
+ break;
310
+ case 'source-map-output-map-file':
311
+ if (checkArgFunc(arg, match[2])) {
312
+ options.writeSourceMap = function(sourceMapContent) {
313
+ writeFile(match[2], sourceMapContent);
314
+ };
315
+ }
316
+ break;
317
+ case 'rp':
318
+ case 'rootpath':
319
+ if (checkArgFunc(arg, match[2])) {
320
+ options.rootpath = match[2].replace(/\\/g, '/');
321
+ }
322
+ break;
323
+ case "ru":
324
+ case "relative-urls":
325
+ options.relativeUrls = true;
326
+ break;
327
+ case "sm":
328
+ case "strict-math":
329
+ if (checkArgFunc(arg, match[2])) {
330
+ options.strictMath = checkBooleanArg(match[2]);
331
+ }
332
+ break;
333
+ case "su":
334
+ case "strict-units":
335
+ if (checkArgFunc(arg, match[2])) {
336
+ options.strictUnits = checkBooleanArg(match[2]);
337
+ }
338
+ break;
339
+ default:
340
+ console.log('invalid option ' + arg);
341
+ continueProcessing = false;
342
+ }
343
+ });
344
+
345
+ if (!continueProcessing) {
346
+ return;
347
+ }
348
+
349
+ var name = args[0];
350
+ if (name && name != '-') {
351
+ // name = path.resolve(process.cwd(), name);
352
+ }
353
+ var output = args[1];
354
+ var outputbase = args[1];
355
+ if (output) {
356
+ options.sourceMapOutputFilename = output;
357
+ // output = path.resolve(process.cwd(), output);
358
+ if (warningMessages) {
359
+ console.log(warningMessages);
360
+ }
361
+ }
362
+
363
+ // options.sourceMapBasepath = process.cwd();
364
+ // options.sourceMapBasepath = '';
365
+
366
+ if (options.sourceMap === true) {
367
+ console.log("output: " + output);
368
+ if (!output && !sourceMapFileInline) {
369
+ console.log("the sourcemap option only has an optional filename if the css filename is given");
370
+ return;
371
+ }
372
+ options.sourceMapFullFilename = options.sourceMapOutputFilename + ".map";
373
+ options.sourceMap = less.modules.path.basename(options.sourceMapFullFilename);
374
+ } else if (options.sourceMap) {
375
+ options.sourceMapOutputFilename = options.sourceMap;
376
+ }
377
+
378
+
379
+ if (!name) {
380
+ console.log("lessc: no inout files");
381
+ console.log("");
382
+ // TODO
383
+ // require('../lib/less/lessc_helper').printUsage();
384
+ currentErrorcode = 1;
385
+ return;
386
+ }
387
+
388
+ // var ensureDirectory = function (filepath) {
389
+ // var dir = path.dirname(filepath),
390
+ // cmd,
391
+ // existsSync = fs.existsSync || path.existsSync;
392
+ // if (!existsSync(dir)) {
393
+ // if (mkdirp === undefined) {
394
+ // try {mkdirp = require('mkdirp');}
395
+ // catch(e) { mkdirp = null; }
396
+ // }
397
+ // cmd = mkdirp && mkdirp.sync || fs.mkdirSync;
398
+ // cmd(dir);
399
+ // }
400
+ // };
401
+
402
+ if (options.depends) {
403
+ if (!outputbase) {
404
+ console.log("option --depends requires an output path to be specified");
405
+ return;
406
+ }
407
+ console.log(outputbase + ": ");
408
+ }
409
+
410
+ if (!name) {
411
+ console.log('No files present in the fileset');
412
+ quit(1);
413
+ }
414
+
415
+ var input = null;
416
+ try {
417
+ input = readFile(name, 'utf-8');
418
+
419
+ } catch (e) {
420
+ console.log('lesscss: couldn\'t open file ' + name);
421
+ quit(1);
422
+ }
423
+
424
+ options.filename = name;
425
+ var result;
426
+ try {
427
+ var parser = new less.Parser(options);
428
+ parser.parse(input, function (e, root) {
429
+ if (e) {
430
+ writeError(e, options);
431
+ quit(1);
432
+ } else {
433
+ result = root.toCSS(options);
434
+ if (output) {
435
+ writeFile(output, result);
436
+ console.log("Written to " + output);
437
+ } else {
438
+ print(result);
439
+ }
440
+ quit(0);
441
+ }
442
+ });
443
+ }
444
+ catch(e) {
445
+ writeError(e, options);
446
+ quit(1);
447
+ }
448
+ console.log("done");
449
+ }(arguments));
@@ -0,0 +1,449 @@
1
+ /* LESS.js v1.7.0 RHINO | Copyright (c) 2009-2014, Alexis Sellier <self@cloudhead.net> */
2
+
3
+ /*global name:true, less, loadStyleSheet, os */
4
+
5
+ function formatError(ctx, options) {
6
+ options = options || {};
7
+
8
+ var message = "";
9
+ var extract = ctx.extract;
10
+ var error = [];
11
+
12
+ // var stylize = options.color ? require('./lessc_helper').stylize : function (str) { return str; };
13
+ var stylize = function (str) { return str; };
14
+
15
+ // only output a stack if it isn't a less error
16
+ if (ctx.stack && !ctx.type) { return stylize(ctx.stack, 'red'); }
17
+
18
+ if (!ctx.hasOwnProperty('index') || !extract) {
19
+ return ctx.stack || ctx.message;
20
+ }
21
+
22
+ if (typeof(extract[0]) === 'string') {
23
+ error.push(stylize((ctx.line - 1) + ' ' + extract[0], 'grey'));
24
+ }
25
+
26
+ if (typeof(extract[1]) === 'string') {
27
+ var errorTxt = ctx.line + ' ';
28
+ if (extract[1]) {
29
+ errorTxt += extract[1].slice(0, ctx.column) +
30
+ stylize(stylize(stylize(extract[1][ctx.column], 'bold') +
31
+ extract[1].slice(ctx.column + 1), 'red'), 'inverse');
32
+ }
33
+ error.push(errorTxt);
34
+ }
35
+
36
+ if (typeof(extract[2]) === 'string') {
37
+ error.push(stylize((ctx.line + 1) + ' ' + extract[2], 'grey'));
38
+ }
39
+ error = error.join('\n') + stylize('', 'reset') + '\n';
40
+
41
+ message += stylize(ctx.type + 'Error: ' + ctx.message, 'red');
42
+ if (ctx.filename) {
43
+ message += stylize(' in ', 'red') + ctx.filename +
44
+ stylize(' on line ' + ctx.line + ', column ' + (ctx.column + 1) + ':', 'grey');
45
+ }
46
+
47
+ message += '\n' + error;
48
+
49
+ if (ctx.callLine) {
50
+ message += stylize('from ', 'red') + (ctx.filename || '') + '/n';
51
+ message += stylize(ctx.callLine, 'grey') + ' ' + ctx.callExtract + '/n';
52
+ }
53
+
54
+ return message;
55
+ }
56
+
57
+ function writeError(ctx, options) {
58
+ options = options || {};
59
+ if (options.silent) { return; }
60
+ print(formatError(ctx, options));
61
+ }
62
+
63
+ function loadStyleSheet(sheet, callback, reload, remaining) {
64
+ var endOfPath = Math.max(name.lastIndexOf('/'), name.lastIndexOf('\\')),
65
+ sheetName = name.slice(0, endOfPath + 1) + sheet.href,
66
+ contents = sheet.contents || {},
67
+ input = readFile(sheetName);
68
+
69
+ input = input.replace(/^\xEF\xBB\xBF/, '');
70
+
71
+ contents[sheetName] = input;
72
+
73
+ var parser = new less.Parser({
74
+ paths: [sheet.href.replace(/[\w\.-]+$/, '')],
75
+ contents: contents
76
+ });
77
+ parser.parse(input, function (e, root) {
78
+ if (e) {
79
+ return writeError(e);
80
+ }
81
+ try {
82
+ callback(e, root, input, sheet, { local: false, lastModified: 0, remaining: remaining }, sheetName);
83
+ } catch(e) {
84
+ writeError(e);
85
+ }
86
+ });
87
+ }
88
+
89
+ less.Parser.fileLoader = function (file, currentFileInfo, callback, env) {
90
+
91
+ var href = file;
92
+ if (currentFileInfo && currentFileInfo.currentDirectory && !/^\//.test(file)) {
93
+ href = less.modules.path.join(currentFileInfo.currentDirectory, file);
94
+ }
95
+
96
+ var path = less.modules.path.dirname(href);
97
+
98
+ var newFileInfo = {
99
+ currentDirectory: path + '/',
100
+ filename: href
101
+ };
102
+
103
+ if (currentFileInfo) {
104
+ newFileInfo.entryPath = currentFileInfo.entryPath;
105
+ newFileInfo.rootpath = currentFileInfo.rootpath;
106
+ newFileInfo.rootFilename = currentFileInfo.rootFilename;
107
+ newFileInfo.relativeUrls = currentFileInfo.relativeUrls;
108
+ } else {
109
+ newFileInfo.entryPath = path;
110
+ newFileInfo.rootpath = less.rootpath || path;
111
+ newFileInfo.rootFilename = href;
112
+ newFileInfo.relativeUrls = env.relativeUrls;
113
+ }
114
+
115
+ var j = file.lastIndexOf('/');
116
+ if(newFileInfo.relativeUrls && !/^(?:[a-z-]+:|\/)/.test(file) && j != -1) {
117
+ var relativeSubDirectory = file.slice(0, j+1);
118
+ newFileInfo.rootpath = newFileInfo.rootpath + relativeSubDirectory; // append (sub|sup) directory path of imported file
119
+ }
120
+ newFileInfo.currentDirectory = path;
121
+ newFileInfo.filename = href;
122
+
123
+ var data = null;
124
+ try {
125
+ data = readFile(href);
126
+ } catch (e) {
127
+ callback({ type: 'File', message: "'" + less.modules.path.basename(href) + "' wasn't found" });
128
+ return;
129
+ }
130
+
131
+ try {
132
+ callback(null, data, href, newFileInfo, { lastModified: 0 });
133
+ } catch (e) {
134
+ callback(e, null, href);
135
+ }
136
+ };
137
+
138
+
139
+ function writeFile(filename, content) {
140
+ var fstream = new java.io.FileWriter(filename);
141
+ var out = new java.io.BufferedWriter(fstream);
142
+ out.write(content);
143
+ out.close();
144
+ }
145
+
146
+ // Command line integration via Rhino
147
+ (function (args) {
148
+
149
+ var options = {
150
+ depends: false,
151
+ compress: false,
152
+ cleancss: false,
153
+ max_line_len: -1,
154
+ optimization: 1,
155
+ silent: false,
156
+ verbose: false,
157
+ lint: false,
158
+ paths: [],
159
+ color: true,
160
+ strictImports: false,
161
+ rootpath: '',
162
+ relativeUrls: false,
163
+ ieCompat: true,
164
+ strictMath: false,
165
+ strictUnits: false
166
+ };
167
+ var continueProcessing = true,
168
+ currentErrorcode;
169
+
170
+ var checkArgFunc = function(arg, option) {
171
+ if (!option) {
172
+ print(arg + " option requires a parameter");
173
+ continueProcessing = false;
174
+ return false;
175
+ }
176
+ return true;
177
+ };
178
+
179
+ var checkBooleanArg = function(arg) {
180
+ var onOff = /^((on|t|true|y|yes)|(off|f|false|n|no))$/i.exec(arg);
181
+ if (!onOff) {
182
+ print(" unable to parse "+arg+" as a boolean. use one of on/t/true/y/yes/off/f/false/n/no");
183
+ continueProcessing = false;
184
+ return false;
185
+ }
186
+ return Boolean(onOff[2]);
187
+ };
188
+
189
+ var warningMessages = "";
190
+ var sourceMapFileInline = false;
191
+
192
+ args = args.filter(function (arg) {
193
+ var match = arg.match(/^-I(.+)$/);
194
+
195
+ if (match) {
196
+ options.paths.push(match[1]);
197
+ return false;
198
+ }
199
+
200
+ match = arg.match(/^--?([a-z][0-9a-z-]*)(?:=(.*))?$/i);
201
+ if (match) { arg = match[1]; } // was (?:=([^\s]*)), check!
202
+ else { return arg; }
203
+
204
+ switch (arg) {
205
+ case 'v':
206
+ case 'version':
207
+ console.log("lessc " + less.version.join('.') + " (LESS Compiler) [JavaScript]");
208
+ continueProcessing = false;
209
+ break;
210
+ case 'verbose':
211
+ options.verbose = true;
212
+ break;
213
+ case 's':
214
+ case 'silent':
215
+ options.silent = true;
216
+ break;
217
+ case 'l':
218
+ case 'lint':
219
+ options.lint = true;
220
+ break;
221
+ case 'strict-imports':
222
+ options.strictImports = true;
223
+ break;
224
+ case 'h':
225
+ case 'help':
226
+ //TODO
227
+ // require('../lib/less/lessc_helper').printUsage();
228
+ continueProcessing = false;
229
+ break;
230
+ case 'x':
231
+ case 'compress':
232
+ options.compress = true;
233
+ break;
234
+ case 'M':
235
+ case 'depends':
236
+ options.depends = true;
237
+ break;
238
+ case 'yui-compress':
239
+ warningMessages += "yui-compress option has been removed. assuming clean-css.";
240
+ options.cleancss = true;
241
+ break;
242
+ case 'clean-css':
243
+ options.cleancss = true;
244
+ break;
245
+ case 'max-line-len':
246
+ if (checkArgFunc(arg, match[2])) {
247
+ options.maxLineLen = parseInt(match[2], 10);
248
+ if (options.maxLineLen <= 0) {
249
+ options.maxLineLen = -1;
250
+ }
251
+ }
252
+ break;
253
+ case 'no-color':
254
+ options.color = false;
255
+ break;
256
+ case 'no-ie-compat':
257
+ options.ieCompat = false;
258
+ break;
259
+ case 'no-js':
260
+ options.javascriptEnabled = false;
261
+ break;
262
+ case 'include-path':
263
+ if (checkArgFunc(arg, match[2])) {
264
+ options.paths = match[2].split(os.type().match(/Windows/) ? ';' : ':')
265
+ .map(function(p) {
266
+ if (p) {
267
+ // return path.resolve(process.cwd(), p);
268
+ return p;
269
+ }
270
+ });
271
+ }
272
+ break;
273
+ case 'O0': options.optimization = 0; break;
274
+ case 'O1': options.optimization = 1; break;
275
+ case 'O2': options.optimization = 2; break;
276
+ case 'line-numbers':
277
+ if (checkArgFunc(arg, match[2])) {
278
+ options.dumpLineNumbers = match[2];
279
+ }
280
+ break;
281
+ case 'source-map':
282
+ if (!match[2]) {
283
+ options.sourceMap = true;
284
+ } else {
285
+ options.sourceMap = match[2];
286
+ }
287
+ break;
288
+ case 'source-map-rootpath':
289
+ if (checkArgFunc(arg, match[2])) {
290
+ options.sourceMapRootpath = match[2];
291
+ }
292
+ break;
293
+ case 'source-map-basepath':
294
+ if (checkArgFunc(arg, match[2])) {
295
+ options.sourceMapBasepath = match[2];
296
+ }
297
+ break;
298
+ case 'source-map-map-inline':
299
+ sourceMapFileInline = true;
300
+ options.sourceMap = true;
301
+ break;
302
+ case 'source-map-less-inline':
303
+ options.outputSourceFiles = true;
304
+ break;
305
+ case 'source-map-url':
306
+ if (checkArgFunc(arg, match[2])) {
307
+ options.sourceMapURL = match[2];
308
+ }
309
+ break;
310
+ case 'source-map-output-map-file':
311
+ if (checkArgFunc(arg, match[2])) {
312
+ options.writeSourceMap = function(sourceMapContent) {
313
+ writeFile(match[2], sourceMapContent);
314
+ };
315
+ }
316
+ break;
317
+ case 'rp':
318
+ case 'rootpath':
319
+ if (checkArgFunc(arg, match[2])) {
320
+ options.rootpath = match[2].replace(/\\/g, '/');
321
+ }
322
+ break;
323
+ case "ru":
324
+ case "relative-urls":
325
+ options.relativeUrls = true;
326
+ break;
327
+ case "sm":
328
+ case "strict-math":
329
+ if (checkArgFunc(arg, match[2])) {
330
+ options.strictMath = checkBooleanArg(match[2]);
331
+ }
332
+ break;
333
+ case "su":
334
+ case "strict-units":
335
+ if (checkArgFunc(arg, match[2])) {
336
+ options.strictUnits = checkBooleanArg(match[2]);
337
+ }
338
+ break;
339
+ default:
340
+ console.log('invalid option ' + arg);
341
+ continueProcessing = false;
342
+ }
343
+ });
344
+
345
+ if (!continueProcessing) {
346
+ return;
347
+ }
348
+
349
+ var name = args[0];
350
+ if (name && name != '-') {
351
+ // name = path.resolve(process.cwd(), name);
352
+ }
353
+ var output = args[1];
354
+ var outputbase = args[1];
355
+ if (output) {
356
+ options.sourceMapOutputFilename = output;
357
+ // output = path.resolve(process.cwd(), output);
358
+ if (warningMessages) {
359
+ console.log(warningMessages);
360
+ }
361
+ }
362
+
363
+ // options.sourceMapBasepath = process.cwd();
364
+ // options.sourceMapBasepath = '';
365
+
366
+ if (options.sourceMap === true) {
367
+ console.log("output: " + output);
368
+ if (!output && !sourceMapFileInline) {
369
+ console.log("the sourcemap option only has an optional filename if the css filename is given");
370
+ return;
371
+ }
372
+ options.sourceMapFullFilename = options.sourceMapOutputFilename + ".map";
373
+ options.sourceMap = less.modules.path.basename(options.sourceMapFullFilename);
374
+ } else if (options.sourceMap) {
375
+ options.sourceMapOutputFilename = options.sourceMap;
376
+ }
377
+
378
+
379
+ if (!name) {
380
+ console.log("lessc: no inout files");
381
+ console.log("");
382
+ // TODO
383
+ // require('../lib/less/lessc_helper').printUsage();
384
+ currentErrorcode = 1;
385
+ return;
386
+ }
387
+
388
+ // var ensureDirectory = function (filepath) {
389
+ // var dir = path.dirname(filepath),
390
+ // cmd,
391
+ // existsSync = fs.existsSync || path.existsSync;
392
+ // if (!existsSync(dir)) {
393
+ // if (mkdirp === undefined) {
394
+ // try {mkdirp = require('mkdirp');}
395
+ // catch(e) { mkdirp = null; }
396
+ // }
397
+ // cmd = mkdirp && mkdirp.sync || fs.mkdirSync;
398
+ // cmd(dir);
399
+ // }
400
+ // };
401
+
402
+ if (options.depends) {
403
+ if (!outputbase) {
404
+ console.log("option --depends requires an output path to be specified");
405
+ return;
406
+ }
407
+ console.log(outputbase + ": ");
408
+ }
409
+
410
+ if (!name) {
411
+ console.log('No files present in the fileset');
412
+ quit(1);
413
+ }
414
+
415
+ var input = null;
416
+ try {
417
+ input = readFile(name, 'utf-8');
418
+
419
+ } catch (e) {
420
+ console.log('lesscss: couldn\'t open file ' + name);
421
+ quit(1);
422
+ }
423
+
424
+ options.filename = name;
425
+ var result;
426
+ try {
427
+ var parser = new less.Parser(options);
428
+ parser.parse(input, function (e, root) {
429
+ if (e) {
430
+ writeError(e, options);
431
+ quit(1);
432
+ } else {
433
+ result = root.toCSS(options);
434
+ if (output) {
435
+ writeFile(output, result);
436
+ console.log("Written to " + output);
437
+ } else {
438
+ print(result);
439
+ }
440
+ quit(0);
441
+ }
442
+ });
443
+ }
444
+ catch(e) {
445
+ writeError(e, options);
446
+ quit(1);
447
+ }
448
+ console.log("done");
449
+ }(arguments));