less 2.2.2 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Changelog.md +17 -0
- data/Gemfile +7 -3
- data/README.md +29 -13
- data/bin/lessc +3 -1
- data/less.gemspec +2 -6
- data/lib/less/defaults.rb +3 -3
- data/lib/less/java_script/rhino_context.rb +17 -27
- data/lib/less/java_script/v8_context.rb +11 -11
- data/lib/less/js/.gitattributes +10 -0
- data/lib/less/js/.gitignore +24 -0
- data/lib/less/js/.jshintrc +11 -0
- data/lib/less/js/.npmignore +1 -0
- data/lib/less/js/.travis.yml +8 -0
- data/lib/less/js/CHANGELOG.md +299 -0
- data/lib/less/js/CONTRIBUTING.md +50 -0
- data/lib/less/js/Gruntfile.js +298 -0
- data/lib/less/js/README.md +43 -12
- data/lib/less/js/benchmark/benchmark.less +194 -194
- data/lib/less/js/benchmark/less-benchmark.js +9 -10
- data/lib/less/js/bin/lessc +310 -37
- data/lib/less/js/bower.json +18 -0
- data/lib/less/js/build/README.md +51 -0
- data/lib/less/js/build/amd.js +1 -1
- data/lib/less/js/build/browser-header.js +4 -0
- data/lib/less/js/build/build.yml +162 -0
- data/lib/less/js/build/require-rhino.js +7 -2
- data/lib/less/js/build/rhino-header.js +4 -0
- data/lib/less/js/build/rhino-modules.js +131 -0
- data/lib/less/js/build/tasks/.gitkeep +1 -0
- data/lib/less/js/build.gradle +347 -0
- data/lib/less/js/dist/less-1.3.1.js +4011 -0
- data/lib/less/js/dist/less-1.3.1.min.js +9 -0
- data/lib/less/js/dist/less-1.3.2.js +4401 -0
- data/lib/less/js/dist/less-1.3.2.min.js +9 -0
- data/lib/less/js/dist/less-1.3.3.js +4413 -0
- data/lib/less/js/dist/less-1.3.3.min.js +9 -0
- data/lib/less/js/dist/less-1.4.0-beta.js +5830 -0
- data/lib/less/js/dist/less-1.4.0-beta.min.js +11 -0
- data/lib/less/js/dist/less-1.4.0.js +5830 -0
- data/lib/less/js/dist/less-1.4.0.min.js +11 -0
- data/lib/less/js/dist/less-1.4.1.js +5837 -0
- data/lib/less/js/dist/less-1.4.1.min.js +11 -0
- data/lib/less/js/dist/less-1.4.2.js +5837 -0
- data/lib/less/js/dist/less-1.4.2.min.js +11 -0
- data/lib/less/js/dist/less-1.5.0.js +6914 -0
- data/lib/less/js/dist/less-1.5.0.min.js +13 -0
- data/lib/less/js/dist/less-1.5.1.js +6941 -0
- data/lib/less/js/dist/less-1.5.1.min.js +13 -0
- data/lib/less/js/dist/less-1.6.0.js +7485 -0
- data/lib/less/js/dist/less-1.6.0.min.js +16 -0
- data/lib/less/js/dist/less-1.6.1.js +7513 -0
- data/lib/less/js/dist/less-1.6.1.min.js +16 -0
- data/lib/less/js/dist/less-1.6.2.js +7624 -0
- data/lib/less/js/dist/less-1.6.2.min.js +16 -0
- data/lib/less/js/dist/less-1.6.3.js +7627 -0
- data/lib/less/js/dist/less-1.6.3.min.js +16 -0
- data/lib/less/js/dist/less-1.7.0.js +7921 -0
- data/lib/less/js/dist/less-1.7.0.min.js +16 -0
- data/lib/less/js/dist/less-rhino-1.3.1.js +3725 -0
- data/lib/less/js/dist/less-rhino-1.3.2.js +3990 -0
- data/lib/less/js/dist/less-rhino-1.3.3.js +4002 -0
- data/lib/less/js/dist/less-rhino-1.4.0.js +4273 -0
- data/lib/less/js/dist/less-rhino-1.5.1.js +6831 -0
- data/lib/less/js/dist/less-rhino-1.6.2.js +9017 -0
- data/lib/less/js/dist/less-rhino-1.6.3.js +9020 -0
- data/lib/less/js/dist/less-rhino-1.7.0.js +9301 -0
- data/lib/less/js/dist/lessc-rhino-1.6.2.js +449 -0
- data/lib/less/js/dist/lessc-rhino-1.6.3.js +449 -0
- data/lib/less/js/dist/lessc-rhino-1.7.0.js +449 -0
- data/lib/less/js/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/lib/less/js/gradle/wrapper/gradle-wrapper.properties +6 -0
- data/lib/less/js/gradlew +164 -0
- data/lib/less/js/gradlew.bat +90 -0
- data/lib/less/js/lib/less/browser.js +547 -250
- data/lib/less/js/lib/less/encoder.js +4 -0
- data/lib/less/js/lib/less/env.js +136 -0
- data/lib/less/js/lib/less/extend-visitor.js +416 -0
- data/lib/less/js/lib/less/functions.js +576 -36
- data/lib/less/js/lib/less/import-visitor.js +142 -0
- data/lib/less/js/lib/less/index.js +187 -83
- data/lib/less/js/lib/less/join-selector-visitor.js +44 -0
- data/lib/less/js/lib/less/lessc_helper.js +82 -0
- data/lib/less/js/lib/less/parser.js +1286 -523
- data/lib/less/js/lib/less/rhino.js +415 -29
- data/lib/less/js/lib/less/source-map-output.js +141 -0
- data/lib/less/js/lib/less/to-css-visitor.js +240 -0
- data/lib/less/js/lib/less/tree/alpha.js +17 -5
- data/lib/less/js/lib/less/tree/anonymous.js +25 -4
- data/lib/less/js/lib/less/tree/assignment.js +17 -5
- data/lib/less/js/lib/less/tree/call.js +36 -13
- data/lib/less/js/lib/less/tree/color.js +119 -31
- data/lib/less/js/lib/less/tree/comment.js +18 -4
- data/lib/less/js/lib/less/tree/condition.js +35 -28
- data/lib/less/js/lib/less/tree/detached-ruleset.js +20 -0
- data/lib/less/js/lib/less/tree/dimension.js +291 -16
- data/lib/less/js/lib/less/tree/directive.js +56 -22
- data/lib/less/js/lib/less/tree/element.js +78 -17
- data/lib/less/js/lib/less/tree/expression.js +39 -8
- data/lib/less/js/lib/less/tree/extend.js +53 -0
- data/lib/less/js/lib/less/tree/import.js +81 -36
- data/lib/less/js/lib/less/tree/javascript.js +17 -10
- data/lib/less/js/lib/less/tree/keyword.js +8 -3
- data/lib/less/js/lib/less/tree/media.js +70 -27
- data/lib/less/js/lib/less/tree/mixin.js +250 -70
- data/lib/less/js/lib/less/tree/negative.js +24 -0
- data/lib/less/js/lib/less/tree/operation.js +38 -13
- data/lib/less/js/lib/less/tree/paren.js +9 -2
- data/lib/less/js/lib/less/tree/quoted.js +29 -10
- data/lib/less/js/lib/less/tree/rule.js +77 -29
- data/lib/less/js/lib/less/tree/ruleset-call.js +16 -0
- data/lib/less/js/lib/less/tree/ruleset.js +445 -107
- data/lib/less/js/lib/less/tree/selector.js +117 -30
- data/lib/less/js/lib/less/tree/unicode-descriptor.js +15 -0
- data/lib/less/js/lib/less/tree/url.js +43 -15
- data/lib/less/js/lib/less/tree/value.js +16 -6
- data/lib/less/js/lib/less/tree/variable.js +26 -8
- data/lib/less/js/lib/less/tree.js +82 -2
- data/lib/less/js/lib/less/visitor.js +146 -0
- data/lib/less/js/lib/source-map/source-map-0.1.31.js +1933 -0
- data/lib/less/js/lib/source-map/source-map-footer.js +4 -0
- data/lib/less/js/lib/source-map/source-map-header.js +3 -0
- data/lib/less/js/package.json +86 -11
- data/lib/less/js/test/browser/common.js +201 -0
- data/lib/less/js/test/browser/css/global-vars/simple.css +3 -0
- data/lib/less/js/test/browser/css/modify-vars/simple.css +8 -0
- data/lib/less/js/test/browser/css/postProcessor/postProcessor.css +4 -0
- data/lib/less/js/test/browser/css/relative-urls/urls.css +35 -0
- data/lib/less/js/test/browser/css/rootpath/urls.css +35 -0
- data/lib/less/js/test/browser/css/rootpath-relative/urls.css +35 -0
- data/lib/less/js/test/browser/css/urls.css +53 -0
- data/lib/less/js/test/browser/es5.js +27 -0
- data/lib/less/js/test/browser/jasmine-html.js +681 -0
- data/lib/less/js/test/browser/jasmine.css +82 -0
- data/lib/less/js/test/browser/jasmine.js +2600 -0
- data/lib/less/js/test/browser/less/console-errors/test-error.less +3 -0
- data/lib/less/js/test/browser/less/console-errors/test-error.txt +2 -0
- data/lib/less/js/test/browser/less/global-vars/simple.less +3 -0
- data/lib/less/js/test/browser/less/imports/urls.less +4 -0
- data/lib/less/js/test/browser/less/imports/urls2.less +4 -0
- data/lib/less/js/test/browser/less/modify-vars/imports/simple2.less +4 -0
- data/lib/less/js/test/browser/less/modify-vars/simple.less +8 -0
- data/lib/less/js/test/browser/less/postProcessor/postProcessor.less +4 -0
- data/lib/less/js/test/browser/less/relative-urls/urls.less +33 -0
- data/lib/less/js/test/browser/less/rootpath/urls.less +33 -0
- data/lib/less/js/test/browser/less/rootpath-relative/urls.less +33 -0
- data/lib/less/js/test/browser/less/urls.less +57 -0
- data/lib/less/js/test/browser/phantom-runner.js +150 -0
- data/lib/less/js/test/browser/runner-browser-options.js +42 -0
- data/lib/less/js/test/browser/runner-browser-spec.js +12 -0
- data/lib/less/js/test/browser/runner-console-errors.js +5 -0
- data/lib/less/js/test/browser/runner-errors-options.js +5 -0
- data/lib/less/js/test/browser/runner-errors-spec.js +4 -0
- data/lib/less/js/test/browser/runner-global-vars-options.js +4 -0
- data/lib/less/js/test/browser/runner-global-vars-spec.js +3 -0
- data/lib/less/js/test/browser/runner-legacy-options.js +4 -0
- data/lib/less/js/test/browser/runner-legacy-spec.js +3 -0
- data/lib/less/js/test/browser/runner-main-options.js +15 -0
- data/lib/less/js/test/browser/runner-main-spec.js +3 -0
- data/lib/less/js/test/browser/runner-modify-vars-options.js +2 -0
- data/lib/less/js/test/browser/runner-modify-vars-spec.js +43 -0
- data/lib/less/js/test/browser/runner-no-js-errors-options.js +4 -0
- data/lib/less/js/test/browser/runner-no-js-errors-spec.js +4 -0
- data/lib/less/js/test/browser/runner-postProcessor-options.js +4 -0
- data/lib/less/js/test/browser/runner-postProcessor.js +3 -0
- data/lib/less/js/test/browser/runner-production-options.js +3 -0
- data/lib/less/js/test/browser/runner-production-spec.js +5 -0
- data/lib/less/js/test/browser/runner-relative-urls-options.js +3 -0
- data/lib/less/js/test/browser/runner-relative-urls-spec.js +3 -0
- data/lib/less/js/test/browser/runner-rootpath-options.js +3 -0
- data/lib/less/js/test/browser/runner-rootpath-relative-options.js +4 -0
- data/lib/less/js/test/browser/runner-rootpath-relative-spec.js +3 -0
- data/lib/less/js/test/browser/runner-rootpath-spec.js +3 -0
- data/lib/less/js/test/browser/test-runner-template.tmpl +47 -0
- data/lib/less/js/test/css/charsets.css +1 -0
- data/lib/less/js/test/css/colors.css +29 -0
- data/lib/less/js/test/css/comments.css +15 -2
- data/lib/less/js/test/css/compression/compression.css +3 -0
- data/lib/less/js/test/css/css-3.css +73 -2
- data/lib/less/js/test/css/css-escapes.css +4 -0
- data/lib/less/js/test/css/css-guards.css +37 -0
- data/lib/less/js/test/css/css.css +20 -14
- data/lib/less/js/test/css/debug/linenumbers-all.css +49 -0
- data/lib/less/js/test/css/debug/linenumbers-comments.css +40 -0
- data/lib/less/js/test/css/debug/linenumbers-mediaquery.css +40 -0
- data/lib/less/js/test/css/detached-rulesets.css +71 -0
- data/lib/less/js/test/css/empty.css +0 -0
- data/lib/less/js/test/css/extend-chaining.css +81 -0
- data/lib/less/js/test/css/extend-clearfix.css +19 -0
- data/lib/less/js/test/css/extend-exact.css +37 -0
- data/lib/less/js/test/css/extend-media.css +24 -0
- data/lib/less/js/test/css/extend-nest.css +57 -0
- data/lib/less/js/test/css/extend-selector.css +80 -0
- data/lib/less/js/test/css/extend.css +76 -0
- data/lib/less/js/test/css/extract-and-length.css +133 -0
- data/lib/less/js/test/css/functions.css +117 -2
- data/lib/less/js/test/css/globalVars/extended.css +12 -0
- data/lib/less/js/test/css/globalVars/simple.css +6 -0
- data/lib/less/js/test/css/ie-filters.css +7 -3
- data/lib/less/js/test/css/import-inline.css +5 -0
- data/lib/less/js/test/css/import-interpolation.css +6 -0
- data/lib/less/js/test/css/import-once.css +15 -0
- data/lib/less/js/test/css/import-reference.css +68 -0
- data/lib/less/js/test/css/import.css +23 -10
- data/lib/less/js/test/css/javascript.css +3 -2
- data/lib/less/js/test/css/legacy/legacy.css +7 -0
- data/lib/less/js/test/css/media.css +141 -1
- data/lib/less/js/test/css/merge.css +34 -0
- data/lib/less/js/test/css/mixins-args.css +41 -4
- data/lib/less/js/test/css/mixins-guards-default-func.css +129 -0
- data/lib/less/js/test/css/mixins-guards.css +24 -0
- data/lib/less/js/test/css/mixins-important.css +28 -0
- data/lib/less/js/test/css/mixins-interpolated.css +39 -0
- data/lib/less/js/test/css/mixins-named-args.css +27 -0
- data/lib/less/js/test/css/mixins-pattern.css +4 -0
- data/lib/less/js/test/css/mixins.css +70 -0
- data/lib/less/js/test/css/modifyVars/extended.css +9 -0
- data/lib/less/js/test/css/no-output.css +0 -0
- data/lib/less/js/test/css/parens.css +21 -5
- data/lib/less/js/test/css/property-name-interp.css +20 -0
- data/lib/less/js/test/css/scope.css +23 -0
- data/lib/less/js/test/css/selectors.css +84 -0
- data/lib/less/js/test/css/static-urls/urls.css +45 -0
- data/lib/less/js/test/css/strings.css +5 -2
- data/lib/less/js/test/css/url-args/urls.css +56 -0
- data/lib/less/js/test/css/urls.css +71 -0
- data/lib/less/js/test/css/variables-in-at-rules.css +18 -0
- data/lib/less/js/test/css/variables.css +22 -4
- data/lib/less/js/test/css/whitespace.css +4 -0
- data/lib/less/js/test/data/data-uri-fail.png +0 -0
- data/lib/less/js/test/data/image.jpg +1 -0
- data/lib/less/js/test/data/page.html +1 -0
- data/lib/less/js/test/index.js +45 -0
- data/lib/less/js/test/less/charsets.less +3 -0
- data/lib/less/js/test/less/colors.less +37 -4
- data/lib/less/js/test/less/comments.less +21 -3
- data/lib/less/js/test/less/compression/compression.less +36 -0
- data/lib/less/js/test/less/css-3.less +70 -6
- data/lib/less/js/test/less/css-escapes.less +6 -1
- data/lib/less/js/test/less/css-guards.less +102 -0
- data/lib/less/js/test/less/css.less +23 -15
- data/lib/less/js/test/less/debug/import/test.less +25 -0
- data/lib/less/js/test/less/debug/linenumbers.less +33 -0
- data/lib/less/js/test/less/detached-rulesets.less +103 -0
- data/lib/less/js/test/less/empty.less +0 -0
- data/lib/less/js/test/less/errors/add-mixed-units.less +3 -0
- data/lib/less/js/test/less/errors/add-mixed-units.txt +4 -0
- data/lib/less/js/test/less/errors/add-mixed-units2.less +3 -0
- data/lib/less/js/test/less/errors/add-mixed-units2.txt +4 -0
- data/lib/less/js/test/less/errors/at-rules-undefined-var.less +4 -0
- data/lib/less/js/test/less/errors/at-rules-undefined-var.txt +4 -0
- data/lib/less/js/test/less/errors/bad-variable-declaration1.less +1 -0
- data/lib/less/js/test/less/errors/bad-variable-declaration1.txt +2 -0
- data/lib/less/js/test/less/errors/color-func-invalid-color.less +3 -0
- data/lib/less/js/test/less/errors/color-func-invalid-color.txt +4 -0
- data/lib/less/js/test/less/errors/comment-in-selector.less +1 -0
- data/lib/less/js/test/less/errors/comment-in-selector.txt +2 -0
- data/lib/less/js/test/less/errors/css-guard-default-func.less +4 -0
- data/lib/less/js/test/less/errors/css-guard-default-func.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-1.less +6 -0
- data/lib/less/js/test/less/errors/detached-ruleset-1.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-2.less +6 -0
- data/lib/less/js/test/less/errors/detached-ruleset-2.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-3.less +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-3.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-4.less +5 -0
- data/lib/less/js/test/less/errors/detached-ruleset-4.txt +3 -0
- data/lib/less/js/test/less/errors/detached-ruleset-5.less +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-5.txt +3 -0
- data/lib/less/js/test/less/errors/detached-ruleset-6.less +5 -0
- data/lib/less/js/test/less/errors/detached-ruleset-6.txt +4 -0
- data/lib/less/js/test/less/errors/divide-mixed-units.less +3 -0
- data/lib/less/js/test/less/errors/divide-mixed-units.txt +4 -0
- data/lib/less/js/test/less/errors/extend-no-selector.less +3 -0
- data/lib/less/js/test/less/errors/extend-no-selector.txt +3 -0
- data/lib/less/js/test/less/errors/extend-not-at-end.less +3 -0
- data/lib/less/js/test/less/errors/extend-not-at-end.txt +3 -0
- data/lib/less/js/test/less/errors/import-missing.less +6 -0
- data/lib/less/js/test/less/errors/import-missing.txt +3 -0
- data/lib/less/js/test/less/errors/import-no-semi.less +1 -0
- data/lib/less/js/test/less/errors/import-no-semi.txt +2 -0
- data/lib/less/js/test/less/errors/import-subfolder1.less +1 -0
- data/lib/less/js/test/less/errors/import-subfolder1.txt +3 -0
- data/lib/less/js/test/less/errors/import-subfolder2.less +1 -0
- data/lib/less/js/test/less/errors/import-subfolder2.txt +4 -0
- data/lib/less/js/test/less/errors/imports/import-subfolder1.less +1 -0
- data/lib/less/js/test/less/errors/imports/import-subfolder2.less +1 -0
- data/lib/less/js/test/less/errors/imports/import-test.less +4 -0
- data/lib/less/js/test/less/errors/imports/subfolder/mixin-not-defined.less +1 -0
- data/lib/less/js/test/less/errors/imports/subfolder/parse-error-curly-bracket.less +1 -0
- data/lib/less/js/test/less/errors/javascript-error.less +3 -0
- data/lib/less/js/test/less/errors/javascript-error.txt +4 -0
- data/lib/less/js/test/less/errors/javascript-undefined-var.less +3 -0
- data/lib/less/js/test/less/errors/javascript-undefined-var.txt +4 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-1.less +6 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-1.txt +4 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-2.less +6 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-2.txt +4 -0
- data/lib/less/js/test/less/errors/mixin-not-defined.less +11 -0
- data/lib/less/js/test/less/errors/mixin-not-defined.txt +3 -0
- data/lib/less/js/test/less/errors/mixin-not-matched.less +6 -0
- data/lib/less/js/test/less/errors/mixin-not-matched.txt +3 -0
- data/lib/less/js/test/less/errors/mixin-not-matched2.less +6 -0
- data/lib/less/js/test/less/errors/mixin-not-matched2.txt +3 -0
- data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.less +9 -0
- data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.txt +4 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-1.less +9 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-1.txt +4 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-2.less +9 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-2.txt +4 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-3.less +9 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-3.txt +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors.less +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors.txt +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors2.less +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors2.txt +4 -0
- data/lib/less/js/test/less/errors/multiply-mixed-units.less +7 -0
- data/lib/less/js/test/less/errors/multiply-mixed-units.txt +4 -0
- data/lib/less/js/test/less/errors/parens-error-1.less +3 -0
- data/lib/less/js/test/less/errors/parens-error-1.txt +4 -0
- data/lib/less/js/test/less/errors/parens-error-2.less +3 -0
- data/lib/less/js/test/less/errors/parens-error-2.txt +4 -0
- data/lib/less/js/test/less/errors/parens-error-3.less +3 -0
- data/lib/less/js/test/less/errors/parens-error-3.txt +4 -0
- data/lib/less/js/test/less/errors/parse-error-curly-bracket.less +4 -0
- data/lib/less/js/test/less/errors/parse-error-curly-bracket.txt +4 -0
- data/lib/less/js/test/less/errors/parse-error-extra-parens.less +5 -0
- data/lib/less/js/test/less/errors/parse-error-extra-parens.txt +3 -0
- data/lib/less/js/test/less/errors/parse-error-missing-bracket.less +2 -0
- data/lib/less/js/test/less/errors/parse-error-missing-bracket.txt +3 -0
- data/lib/less/js/test/less/errors/parse-error-missing-parens.less +5 -0
- data/lib/less/js/test/less/errors/parse-error-missing-parens.txt +3 -0
- data/lib/less/js/test/less/errors/parse-error-with-import.less +13 -0
- data/lib/less/js/test/less/errors/parse-error-with-import.txt +4 -0
- data/lib/less/js/test/less/errors/percentage-missing-space.less +3 -0
- data/lib/less/js/test/less/errors/percentage-missing-space.txt +4 -0
- data/lib/less/js/test/less/errors/property-asterisk-only-name.less +3 -0
- data/lib/less/js/test/less/errors/property-asterisk-only-name.txt +4 -0
- data/lib/less/js/test/less/errors/property-ie5-hack.less +3 -0
- data/lib/less/js/test/less/errors/property-ie5-hack.txt +4 -0
- data/lib/less/js/test/less/errors/property-in-root.less +4 -0
- data/lib/less/js/test/less/errors/property-in-root.txt +4 -0
- data/lib/less/js/test/less/errors/property-in-root2.less +1 -0
- data/lib/less/js/test/less/errors/property-in-root2.txt +4 -0
- data/lib/less/js/test/less/errors/property-in-root3.less +4 -0
- data/lib/less/js/test/less/errors/property-in-root3.txt +3 -0
- data/lib/less/js/test/less/errors/property-interp-not-defined.less +1 -0
- data/lib/less/js/test/less/errors/property-interp-not-defined.txt +2 -0
- data/lib/less/js/test/less/errors/recursive-variable.less +1 -0
- data/lib/less/js/test/less/errors/recursive-variable.txt +2 -0
- data/lib/less/js/test/less/errors/svg-gradient1.less +3 -0
- data/lib/less/js/test/less/errors/svg-gradient1.txt +4 -0
- data/lib/less/js/test/less/errors/svg-gradient2.less +3 -0
- data/lib/less/js/test/less/errors/svg-gradient2.txt +4 -0
- data/lib/less/js/test/less/errors/svg-gradient3.less +3 -0
- data/lib/less/js/test/less/errors/svg-gradient3.txt +4 -0
- data/lib/less/js/test/less/errors/unit-function.less +3 -0
- data/lib/less/js/test/less/errors/unit-function.txt +4 -0
- data/lib/less/js/test/less/extend-chaining.less +91 -0
- data/lib/less/js/test/less/extend-clearfix.less +19 -0
- data/lib/less/js/test/less/extend-exact.less +46 -0
- data/lib/less/js/test/less/extend-media.less +24 -0
- data/lib/less/js/test/less/extend-nest.less +65 -0
- data/lib/less/js/test/less/extend-selector.less +99 -0
- data/lib/less/js/test/less/extend.less +81 -0
- data/lib/less/js/test/less/extract-and-length.less +133 -0
- data/lib/less/js/test/less/functions.less +130 -6
- data/lib/less/js/test/less/globalVars/extended.json +5 -0
- data/lib/less/js/test/less/globalVars/extended.less +10 -0
- data/lib/less/js/test/less/globalVars/simple.json +3 -0
- data/lib/less/js/test/less/globalVars/simple.less +3 -0
- data/lib/less/js/test/less/ie-filters.less +7 -0
- data/lib/less/js/test/less/import/deeper/import-once-test-a.less +1 -0
- data/lib/less/js/test/less/import/import-and-relative-paths-test.less +17 -0
- data/lib/less/js/test/less/import/import-charset-test.less +1 -0
- data/lib/less/js/test/less/import/import-interpolation.less +1 -0
- data/lib/less/js/test/less/import/import-interpolation2.less +5 -0
- data/lib/less/js/test/less/import/import-once-test-c.less +6 -0
- data/lib/less/js/test/less/import/import-reference.less +51 -0
- data/lib/less/js/test/less/import/import-test-a.less +1 -0
- data/lib/less/js/test/less/import/import-test-c.less +0 -1
- data/lib/less/js/test/less/import/import-test-f.less +5 -0
- data/lib/less/js/test/less/import/imports/font.less +8 -0
- data/lib/less/js/test/less/import/imports/logo.less +5 -0
- data/lib/less/js/test/less/import/invalid-css.less +1 -0
- data/lib/less/js/test/less/import/urls.less +1 -0
- data/lib/less/js/test/less/import-inline.less +2 -0
- data/lib/less/js/test/less/import-interpolation.less +8 -0
- data/lib/less/js/test/less/import-once.less +6 -0
- data/lib/less/js/test/less/import-reference.less +21 -0
- data/lib/less/js/test/less/import.less +13 -3
- data/lib/less/js/test/less/javascript.less +5 -3
- data/lib/less/js/test/less/legacy/legacy.less +7 -0
- data/lib/less/js/test/less/media.less +158 -3
- data/lib/less/js/test/less/merge.less +78 -0
- data/lib/less/js/test/less/mixins-args.less +93 -15
- data/lib/less/js/test/less/mixins-guards-default-func.less +195 -0
- data/lib/less/js/test/less/mixins-guards.less +65 -0
- data/lib/less/js/test/less/mixins-important.less +8 -1
- data/lib/less/js/test/less/mixins-interpolated.less +69 -0
- data/lib/less/js/test/less/mixins-named-args.less +36 -0
- data/lib/less/js/test/less/mixins-nested.less +2 -2
- data/lib/less/js/test/less/mixins-pattern.less +4 -1
- data/lib/less/js/test/less/mixins.less +74 -0
- data/lib/less/js/test/less/modifyVars/extended.json +5 -0
- data/lib/less/js/test/less/modifyVars/extended.less +11 -0
- data/lib/less/js/test/less/no-js-errors/no-js-errors.less +3 -0
- data/lib/less/js/test/less/no-js-errors/no-js-errors.txt +4 -0
- data/lib/less/js/test/less/no-output.less +2 -0
- data/lib/less/js/test/less/operations.less +27 -27
- data/lib/less/js/test/less/parens.less +24 -5
- data/lib/less/js/test/less/property-name-interp.less +53 -0
- data/lib/less/js/test/less/scope.less +73 -1
- data/lib/less/js/test/less/selectors.less +101 -0
- data/lib/less/js/test/less/sourcemaps/basic.json +3 -0
- data/lib/less/js/test/less/sourcemaps/basic.less +27 -0
- data/lib/less/js/test/less/sourcemaps/imported.css +7 -0
- data/lib/less/js/test/less/static-urls/urls.less +33 -0
- data/lib/less/js/test/less/strings.less +7 -1
- data/lib/less/js/test/less/url-args/urls.less +63 -0
- data/lib/less/js/test/less/urls.less +72 -0
- data/lib/less/js/test/less/variables-in-at-rules.less +20 -0
- data/lib/less/js/test/less/variables.less +42 -13
- data/lib/less/js/test/less/whitespace.less +7 -0
- data/lib/less/js/test/less-test.js +251 -65
- data/lib/less/js/test/rhino/test-header.js +15 -0
- data/lib/less/js/test/sourcemaps/basic.json +1 -0
- data/lib/less/js/test/sourcemaps/index.html +17 -0
- data/lib/less/loader.rb +191 -27
- data/lib/less/parser.rb +47 -8
- data/lib/less/version.rb +2 -2
- data/spec/less/loader_spec.rb +45 -0
- data/spec/less/parser_spec.rb +43 -17
- data/spec/less/some/some.css +0 -0
- data/spec/less/some/some.less +4 -0
- metadata +352 -57
- data/lib/less/js/CHANGELOG +0 -41
- data/lib/less/js/Makefile +0 -75
- data/lib/less/js/build/ecma-5.js +0 -120
- data/lib/less/js/build/header.js +0 -7
- data/lib/less/js/lib/less/cssmin.js +0 -355
@@ -0,0 +1,240 @@
|
|
1
|
+
(function (tree) {
|
2
|
+
tree.toCSSVisitor = function(env) {
|
3
|
+
this._visitor = new tree.visitor(this);
|
4
|
+
this._env = env;
|
5
|
+
};
|
6
|
+
|
7
|
+
tree.toCSSVisitor.prototype = {
|
8
|
+
isReplacing: true,
|
9
|
+
run: function (root) {
|
10
|
+
return this._visitor.visit(root);
|
11
|
+
},
|
12
|
+
|
13
|
+
visitRule: function (ruleNode, visitArgs) {
|
14
|
+
if (ruleNode.variable) {
|
15
|
+
return [];
|
16
|
+
}
|
17
|
+
return ruleNode;
|
18
|
+
},
|
19
|
+
|
20
|
+
visitMixinDefinition: function (mixinNode, visitArgs) {
|
21
|
+
// mixin definitions do not get eval'd - this means they keep state
|
22
|
+
// so we have to clear that state here so it isn't used if toCSS is called twice
|
23
|
+
mixinNode.frames = [];
|
24
|
+
return [];
|
25
|
+
},
|
26
|
+
|
27
|
+
visitExtend: function (extendNode, visitArgs) {
|
28
|
+
return [];
|
29
|
+
},
|
30
|
+
|
31
|
+
visitComment: function (commentNode, visitArgs) {
|
32
|
+
if (commentNode.isSilent(this._env)) {
|
33
|
+
return [];
|
34
|
+
}
|
35
|
+
return commentNode;
|
36
|
+
},
|
37
|
+
|
38
|
+
visitMedia: function(mediaNode, visitArgs) {
|
39
|
+
mediaNode.accept(this._visitor);
|
40
|
+
visitArgs.visitDeeper = false;
|
41
|
+
|
42
|
+
if (!mediaNode.rules.length) {
|
43
|
+
return [];
|
44
|
+
}
|
45
|
+
return mediaNode;
|
46
|
+
},
|
47
|
+
|
48
|
+
visitDirective: function(directiveNode, visitArgs) {
|
49
|
+
if (directiveNode.currentFileInfo.reference && !directiveNode.isReferenced) {
|
50
|
+
return [];
|
51
|
+
}
|
52
|
+
if (directiveNode.name === "@charset") {
|
53
|
+
// Only output the debug info together with subsequent @charset definitions
|
54
|
+
// a comment (or @media statement) before the actual @charset directive would
|
55
|
+
// be considered illegal css as it has to be on the first line
|
56
|
+
if (this.charset) {
|
57
|
+
if (directiveNode.debugInfo) {
|
58
|
+
var comment = new tree.Comment("/* " + directiveNode.toCSS(this._env).replace(/\n/g, "")+" */\n");
|
59
|
+
comment.debugInfo = directiveNode.debugInfo;
|
60
|
+
return this._visitor.visit(comment);
|
61
|
+
}
|
62
|
+
return [];
|
63
|
+
}
|
64
|
+
this.charset = true;
|
65
|
+
}
|
66
|
+
return directiveNode;
|
67
|
+
},
|
68
|
+
|
69
|
+
checkPropertiesInRoot: function(rules) {
|
70
|
+
var ruleNode;
|
71
|
+
for(var i = 0; i < rules.length; i++) {
|
72
|
+
ruleNode = rules[i];
|
73
|
+
if (ruleNode instanceof tree.Rule && !ruleNode.variable) {
|
74
|
+
throw { message: "properties must be inside selector blocks, they cannot be in the root.",
|
75
|
+
index: ruleNode.index, filename: ruleNode.currentFileInfo ? ruleNode.currentFileInfo.filename : null};
|
76
|
+
}
|
77
|
+
}
|
78
|
+
},
|
79
|
+
|
80
|
+
visitRuleset: function (rulesetNode, visitArgs) {
|
81
|
+
var rule, rulesets = [];
|
82
|
+
if (rulesetNode.firstRoot) {
|
83
|
+
this.checkPropertiesInRoot(rulesetNode.rules);
|
84
|
+
}
|
85
|
+
if (! rulesetNode.root) {
|
86
|
+
if (rulesetNode.paths) {
|
87
|
+
rulesetNode.paths = rulesetNode.paths
|
88
|
+
.filter(function(p) {
|
89
|
+
var i;
|
90
|
+
if (p[0].elements[0].combinator.value === ' ') {
|
91
|
+
p[0].elements[0].combinator = new(tree.Combinator)('');
|
92
|
+
}
|
93
|
+
for(i = 0; i < p.length; i++) {
|
94
|
+
if (p[i].getIsReferenced() && p[i].getIsOutput()) {
|
95
|
+
return true;
|
96
|
+
}
|
97
|
+
}
|
98
|
+
return false;
|
99
|
+
});
|
100
|
+
}
|
101
|
+
|
102
|
+
// Compile rules and rulesets
|
103
|
+
var nodeRules = rulesetNode.rules, nodeRuleCnt = nodeRules ? nodeRules.length : 0;
|
104
|
+
for (var i = 0; i < nodeRuleCnt; ) {
|
105
|
+
rule = nodeRules[i];
|
106
|
+
if (rule && rule.rules) {
|
107
|
+
// visit because we are moving them out from being a child
|
108
|
+
rulesets.push(this._visitor.visit(rule));
|
109
|
+
nodeRules.splice(i, 1);
|
110
|
+
nodeRuleCnt--;
|
111
|
+
continue;
|
112
|
+
}
|
113
|
+
i++;
|
114
|
+
}
|
115
|
+
// accept the visitor to remove rules and refactor itself
|
116
|
+
// then we can decide now whether we want it or not
|
117
|
+
if (nodeRuleCnt > 0) {
|
118
|
+
rulesetNode.accept(this._visitor);
|
119
|
+
} else {
|
120
|
+
rulesetNode.rules = null;
|
121
|
+
}
|
122
|
+
visitArgs.visitDeeper = false;
|
123
|
+
|
124
|
+
nodeRules = rulesetNode.rules;
|
125
|
+
if (nodeRules) {
|
126
|
+
this._mergeRules(nodeRules);
|
127
|
+
nodeRules = rulesetNode.rules;
|
128
|
+
}
|
129
|
+
if (nodeRules) {
|
130
|
+
this._removeDuplicateRules(nodeRules);
|
131
|
+
nodeRules = rulesetNode.rules;
|
132
|
+
}
|
133
|
+
|
134
|
+
// now decide whether we keep the ruleset
|
135
|
+
if (nodeRules && nodeRules.length > 0 && rulesetNode.paths.length > 0) {
|
136
|
+
rulesets.splice(0, 0, rulesetNode);
|
137
|
+
}
|
138
|
+
} else {
|
139
|
+
rulesetNode.accept(this._visitor);
|
140
|
+
visitArgs.visitDeeper = false;
|
141
|
+
if (rulesetNode.firstRoot || (rulesetNode.rules && rulesetNode.rules.length > 0)) {
|
142
|
+
rulesets.splice(0, 0, rulesetNode);
|
143
|
+
}
|
144
|
+
}
|
145
|
+
if (rulesets.length === 1) {
|
146
|
+
return rulesets[0];
|
147
|
+
}
|
148
|
+
return rulesets;
|
149
|
+
},
|
150
|
+
|
151
|
+
_removeDuplicateRules: function(rules) {
|
152
|
+
if (!rules) { return; }
|
153
|
+
|
154
|
+
// remove duplicates
|
155
|
+
var ruleCache = {},
|
156
|
+
ruleList, rule, i;
|
157
|
+
|
158
|
+
for(i = rules.length - 1; i >= 0 ; i--) {
|
159
|
+
rule = rules[i];
|
160
|
+
if (rule instanceof tree.Rule) {
|
161
|
+
if (!ruleCache[rule.name]) {
|
162
|
+
ruleCache[rule.name] = rule;
|
163
|
+
} else {
|
164
|
+
ruleList = ruleCache[rule.name];
|
165
|
+
if (ruleList instanceof tree.Rule) {
|
166
|
+
ruleList = ruleCache[rule.name] = [ruleCache[rule.name].toCSS(this._env)];
|
167
|
+
}
|
168
|
+
var ruleCSS = rule.toCSS(this._env);
|
169
|
+
if (ruleList.indexOf(ruleCSS) !== -1) {
|
170
|
+
rules.splice(i, 1);
|
171
|
+
} else {
|
172
|
+
ruleList.push(ruleCSS);
|
173
|
+
}
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
},
|
178
|
+
|
179
|
+
_mergeRules: function (rules) {
|
180
|
+
if (!rules) { return; }
|
181
|
+
|
182
|
+
var groups = {},
|
183
|
+
parts,
|
184
|
+
rule,
|
185
|
+
key;
|
186
|
+
|
187
|
+
for (var i = 0; i < rules.length; i++) {
|
188
|
+
rule = rules[i];
|
189
|
+
|
190
|
+
if ((rule instanceof tree.Rule) && rule.merge) {
|
191
|
+
key = [rule.name,
|
192
|
+
rule.important ? "!" : ""].join(",");
|
193
|
+
|
194
|
+
if (!groups[key]) {
|
195
|
+
groups[key] = [];
|
196
|
+
} else {
|
197
|
+
rules.splice(i--, 1);
|
198
|
+
}
|
199
|
+
|
200
|
+
groups[key].push(rule);
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
Object.keys(groups).map(function (k) {
|
205
|
+
|
206
|
+
function toExpression(values) {
|
207
|
+
return new (tree.Expression)(values.map(function (p) {
|
208
|
+
return p.value;
|
209
|
+
}));
|
210
|
+
}
|
211
|
+
|
212
|
+
function toValue(values) {
|
213
|
+
return new (tree.Value)(values.map(function (p) {
|
214
|
+
return p;
|
215
|
+
}));
|
216
|
+
}
|
217
|
+
|
218
|
+
parts = groups[k];
|
219
|
+
|
220
|
+
if (parts.length > 1) {
|
221
|
+
rule = parts[0];
|
222
|
+
var spacedGroups = [];
|
223
|
+
var lastSpacedGroup = [];
|
224
|
+
parts.map(function (p) {
|
225
|
+
if (p.merge==="+") {
|
226
|
+
if (lastSpacedGroup.length > 0) {
|
227
|
+
spacedGroups.push(toExpression(lastSpacedGroup));
|
228
|
+
}
|
229
|
+
lastSpacedGroup = [];
|
230
|
+
}
|
231
|
+
lastSpacedGroup.push(p);
|
232
|
+
});
|
233
|
+
spacedGroups.push(toExpression(lastSpacedGroup));
|
234
|
+
rule.value = toValue(spacedGroups);
|
235
|
+
}
|
236
|
+
});
|
237
|
+
}
|
238
|
+
};
|
239
|
+
|
240
|
+
})(require('./tree'));
|
@@ -4,14 +4,26 @@ tree.Alpha = function (val) {
|
|
4
4
|
this.value = val;
|
5
5
|
};
|
6
6
|
tree.Alpha.prototype = {
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
type: "Alpha",
|
8
|
+
accept: function (visitor) {
|
9
|
+
this.value = visitor.visit(this.value);
|
10
10
|
},
|
11
11
|
eval: function (env) {
|
12
|
-
if (this.value.eval) {
|
12
|
+
if (this.value.eval) { return new tree.Alpha(this.value.eval(env)); }
|
13
13
|
return this;
|
14
|
-
}
|
14
|
+
},
|
15
|
+
genCSS: function (env, output) {
|
16
|
+
output.add("alpha(opacity=");
|
17
|
+
|
18
|
+
if (this.value.genCSS) {
|
19
|
+
this.value.genCSS(env, output);
|
20
|
+
} else {
|
21
|
+
output.add(this.value);
|
22
|
+
}
|
23
|
+
|
24
|
+
output.add(")");
|
25
|
+
},
|
26
|
+
toCSS: tree.toCSS
|
15
27
|
};
|
16
28
|
|
17
29
|
})(require('../tree'));
|
@@ -1,13 +1,34 @@
|
|
1
1
|
(function (tree) {
|
2
2
|
|
3
|
-
tree.Anonymous = function (string) {
|
3
|
+
tree.Anonymous = function (string, index, currentFileInfo, mapLines) {
|
4
4
|
this.value = string.value || string;
|
5
|
+
this.index = index;
|
6
|
+
this.mapLines = mapLines;
|
7
|
+
this.currentFileInfo = currentFileInfo;
|
5
8
|
};
|
6
9
|
tree.Anonymous.prototype = {
|
7
|
-
|
8
|
-
|
10
|
+
type: "Anonymous",
|
11
|
+
eval: function () {
|
12
|
+
return new tree.Anonymous(this.value, this.index, this.currentFileInfo, this.mapLines);
|
9
13
|
},
|
10
|
-
|
14
|
+
compare: function (x) {
|
15
|
+
if (!x.toCSS) {
|
16
|
+
return -1;
|
17
|
+
}
|
18
|
+
|
19
|
+
var left = this.toCSS(),
|
20
|
+
right = x.toCSS();
|
21
|
+
|
22
|
+
if (left === right) {
|
23
|
+
return 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
return left < right ? -1 : 1;
|
27
|
+
},
|
28
|
+
genCSS: function (env, output) {
|
29
|
+
output.add(this.value, this.currentFileInfo, this.index, this.mapLines);
|
30
|
+
},
|
31
|
+
toCSS: tree.toCSS
|
11
32
|
};
|
12
33
|
|
13
34
|
})(require('../tree'));
|
@@ -5,13 +5,25 @@ tree.Assignment = function (key, val) {
|
|
5
5
|
this.value = val;
|
6
6
|
};
|
7
7
|
tree.Assignment.prototype = {
|
8
|
-
|
9
|
-
|
8
|
+
type: "Assignment",
|
9
|
+
accept: function (visitor) {
|
10
|
+
this.value = visitor.visit(this.value);
|
10
11
|
},
|
11
12
|
eval: function (env) {
|
12
|
-
if (this.value.eval) {
|
13
|
+
if (this.value.eval) {
|
14
|
+
return new(tree.Assignment)(this.key, this.value.eval(env));
|
15
|
+
}
|
13
16
|
return this;
|
14
|
-
}
|
17
|
+
},
|
18
|
+
genCSS: function (env, output) {
|
19
|
+
output.add(this.key + '=');
|
20
|
+
if (this.value.genCSS) {
|
21
|
+
this.value.genCSS(env, output);
|
22
|
+
} else {
|
23
|
+
output.add(this.value);
|
24
|
+
}
|
25
|
+
},
|
26
|
+
toCSS: tree.toCSS
|
15
27
|
};
|
16
28
|
|
17
|
-
})(require('../tree'));
|
29
|
+
})(require('../tree'));
|
@@ -3,18 +3,25 @@
|
|
3
3
|
//
|
4
4
|
// A function call node.
|
5
5
|
//
|
6
|
-
tree.Call = function (name, args, index,
|
6
|
+
tree.Call = function (name, args, index, currentFileInfo) {
|
7
7
|
this.name = name;
|
8
8
|
this.args = args;
|
9
9
|
this.index = index;
|
10
|
-
this.
|
10
|
+
this.currentFileInfo = currentFileInfo;
|
11
11
|
};
|
12
12
|
tree.Call.prototype = {
|
13
|
+
type: "Call",
|
14
|
+
accept: function (visitor) {
|
15
|
+
if (this.args) {
|
16
|
+
this.args = visitor.visitArray(this.args);
|
17
|
+
}
|
18
|
+
},
|
13
19
|
//
|
14
20
|
// When evaluating a function call,
|
15
21
|
// we either find the function in `tree.functions` [1],
|
16
22
|
// in which case we call it, passing the evaluated arguments,
|
17
|
-
//
|
23
|
+
// if this returns null or we cannot find the function, we
|
24
|
+
// simply print it out as it appeared originally [2].
|
18
25
|
//
|
19
26
|
// The *functions.js* file contains the built-in functions.
|
20
27
|
//
|
@@ -23,26 +30,42 @@ tree.Call.prototype = {
|
|
23
30
|
// The function should receive the value, not the variable.
|
24
31
|
//
|
25
32
|
eval: function (env) {
|
26
|
-
var args = this.args.map(function (a) { return a.eval(env) })
|
33
|
+
var args = this.args.map(function (a) { return a.eval(env); }),
|
34
|
+
nameLC = this.name.toLowerCase(),
|
35
|
+
result, func;
|
27
36
|
|
28
|
-
if (
|
37
|
+
if (nameLC in tree.functions) { // 1.
|
29
38
|
try {
|
30
|
-
|
39
|
+
func = new tree.functionCall(env, this.currentFileInfo);
|
40
|
+
result = func[nameLC].apply(func, args);
|
41
|
+
if (result != null) {
|
42
|
+
return result;
|
43
|
+
}
|
31
44
|
} catch (e) {
|
32
45
|
throw { type: e.type || "Runtime",
|
33
46
|
message: "error evaluating function `" + this.name + "`" +
|
34
47
|
(e.message ? ': ' + e.message : ''),
|
35
|
-
index: this.index, filename: this.filename };
|
48
|
+
index: this.index, filename: this.currentFileInfo.filename };
|
36
49
|
}
|
37
|
-
} else { // 2.
|
38
|
-
return new(tree.Anonymous)(this.name +
|
39
|
-
"(" + args.map(function (a) { return a.toCSS() }).join(', ') + ")");
|
40
50
|
}
|
51
|
+
|
52
|
+
return new tree.Call(this.name, args, this.index, this.currentFileInfo);
|
53
|
+
},
|
54
|
+
|
55
|
+
genCSS: function (env, output) {
|
56
|
+
output.add(this.name + "(", this.currentFileInfo, this.index);
|
57
|
+
|
58
|
+
for(var i = 0; i < this.args.length; i++) {
|
59
|
+
this.args[i].genCSS(env, output);
|
60
|
+
if (i + 1 < this.args.length) {
|
61
|
+
output.add(", ");
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
output.add(")");
|
41
66
|
},
|
42
67
|
|
43
|
-
toCSS:
|
44
|
-
return this.eval(env).toCSS();
|
45
|
-
}
|
68
|
+
toCSS: tree.toCSS
|
46
69
|
};
|
47
70
|
|
48
71
|
})(require('../tree'));
|
@@ -22,26 +22,56 @@ tree.Color = function (rgb, a) {
|
|
22
22
|
}
|
23
23
|
this.alpha = typeof(a) === 'number' ? a : 1;
|
24
24
|
};
|
25
|
+
|
26
|
+
var transparentKeyword = "transparent";
|
27
|
+
|
25
28
|
tree.Color.prototype = {
|
26
|
-
|
29
|
+
type: "Color",
|
30
|
+
eval: function () { return this; },
|
31
|
+
luma: function () {
|
32
|
+
var r = this.rgb[0] / 255,
|
33
|
+
g = this.rgb[1] / 255,
|
34
|
+
b = this.rgb[2] / 255;
|
27
35
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
+
r = (r <= 0.03928) ? r / 12.92 : Math.pow(((r + 0.055) / 1.055), 2.4);
|
37
|
+
g = (g <= 0.03928) ? g / 12.92 : Math.pow(((g + 0.055) / 1.055), 2.4);
|
38
|
+
b = (b <= 0.03928) ? b / 12.92 : Math.pow(((b + 0.055) / 1.055), 2.4);
|
39
|
+
|
40
|
+
return 0.2126 * r + 0.7152 * g + 0.0722 * b;
|
41
|
+
},
|
42
|
+
|
43
|
+
genCSS: function (env, output) {
|
44
|
+
output.add(this.toCSS(env));
|
45
|
+
},
|
46
|
+
toCSS: function (env, doNotCompress) {
|
47
|
+
var compress = env && env.compress && !doNotCompress,
|
48
|
+
alpha = tree.fround(env, this.alpha);
|
49
|
+
|
50
|
+
// If we have some transparency, the only way to represent it
|
51
|
+
// is via `rgba`. Otherwise, we use the hex representation,
|
52
|
+
// which has better compatibility with older browsers.
|
53
|
+
// Values are capped between `0` and `255`, rounded and zero-padded.
|
54
|
+
if (alpha < 1) {
|
55
|
+
if (alpha === 0 && this.isTransparentKeyword) {
|
56
|
+
return transparentKeyword;
|
57
|
+
}
|
36
58
|
return "rgba(" + this.rgb.map(function (c) {
|
37
|
-
return Math.round(c);
|
38
|
-
}).concat(
|
59
|
+
return clamp(Math.round(c), 255);
|
60
|
+
}).concat(clamp(alpha, 1))
|
61
|
+
.join(',' + (compress ? '' : ' ')) + ")";
|
39
62
|
} else {
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
63
|
+
var color = this.toRGB();
|
64
|
+
|
65
|
+
if (compress) {
|
66
|
+
var splitcolor = color.split('');
|
67
|
+
|
68
|
+
// Convert color to short format
|
69
|
+
if (splitcolor[1] === splitcolor[2] && splitcolor[3] === splitcolor[4] && splitcolor[5] === splitcolor[6]) {
|
70
|
+
color = '#' + splitcolor[1] + splitcolor[3] + splitcolor[5];
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
return color;
|
45
75
|
}
|
46
76
|
},
|
47
77
|
|
@@ -51,17 +81,17 @@ tree.Color.prototype = {
|
|
51
81
|
// our result, in the form of an integer triplet,
|
52
82
|
// we create a new Color node to hold the result.
|
53
83
|
//
|
54
|
-
operate: function (op, other) {
|
55
|
-
var
|
56
|
-
|
57
|
-
if (! (other instanceof tree.Color)) {
|
58
|
-
other = other.toColor();
|
59
|
-
}
|
60
|
-
|
84
|
+
operate: function (env, op, other) {
|
85
|
+
var rgb = [];
|
86
|
+
var alpha = this.alpha * (1 - other.alpha) + other.alpha;
|
61
87
|
for (var c = 0; c < 3; c++) {
|
62
|
-
|
88
|
+
rgb[c] = tree.operate(env, op, this.rgb[c], other.rgb[c]);
|
63
89
|
}
|
64
|
-
return new(tree.Color)(
|
90
|
+
return new(tree.Color)(rgb, alpha);
|
91
|
+
},
|
92
|
+
|
93
|
+
toRGB: function () {
|
94
|
+
return toHex(this.rgb);
|
65
95
|
},
|
66
96
|
|
67
97
|
toHSL: function () {
|
@@ -87,15 +117,73 @@ tree.Color.prototype = {
|
|
87
117
|
}
|
88
118
|
return { h: h * 360, s: s, l: l, a: a };
|
89
119
|
},
|
120
|
+
//Adapted from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript
|
121
|
+
toHSV: function () {
|
122
|
+
var r = this.rgb[0] / 255,
|
123
|
+
g = this.rgb[1] / 255,
|
124
|
+
b = this.rgb[2] / 255,
|
125
|
+
a = this.alpha;
|
126
|
+
|
127
|
+
var max = Math.max(r, g, b), min = Math.min(r, g, b);
|
128
|
+
var h, s, v = max;
|
129
|
+
|
130
|
+
var d = max - min;
|
131
|
+
if (max === 0) {
|
132
|
+
s = 0;
|
133
|
+
} else {
|
134
|
+
s = d / max;
|
135
|
+
}
|
136
|
+
|
137
|
+
if (max === min) {
|
138
|
+
h = 0;
|
139
|
+
} else {
|
140
|
+
switch(max){
|
141
|
+
case r: h = (g - b) / d + (g < b ? 6 : 0); break;
|
142
|
+
case g: h = (b - r) / d + 2; break;
|
143
|
+
case b: h = (r - g) / d + 4; break;
|
144
|
+
}
|
145
|
+
h /= 6;
|
146
|
+
}
|
147
|
+
return { h: h * 360, s: s, v: v, a: a };
|
148
|
+
},
|
90
149
|
toARGB: function () {
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
return
|
96
|
-
}
|
150
|
+
return toHex([this.alpha * 255].concat(this.rgb));
|
151
|
+
},
|
152
|
+
compare: function (x) {
|
153
|
+
if (!x.rgb) {
|
154
|
+
return -1;
|
155
|
+
}
|
156
|
+
|
157
|
+
return (x.rgb[0] === this.rgb[0] &&
|
158
|
+
x.rgb[1] === this.rgb[1] &&
|
159
|
+
x.rgb[2] === this.rgb[2] &&
|
160
|
+
x.alpha === this.alpha) ? 0 : -1;
|
97
161
|
}
|
98
162
|
};
|
99
163
|
|
164
|
+
tree.Color.fromKeyword = function(keyword) {
|
165
|
+
keyword = keyword.toLowerCase();
|
166
|
+
|
167
|
+
if (tree.colors.hasOwnProperty(keyword)) {
|
168
|
+
// detect named color
|
169
|
+
return new(tree.Color)(tree.colors[keyword].slice(1));
|
170
|
+
}
|
171
|
+
if (keyword === transparentKeyword) {
|
172
|
+
var transparent = new(tree.Color)([0, 0, 0], 0);
|
173
|
+
transparent.isTransparentKeyword = true;
|
174
|
+
return transparent;
|
175
|
+
}
|
176
|
+
};
|
177
|
+
|
178
|
+
function toHex(v) {
|
179
|
+
return '#' + v.map(function (c) {
|
180
|
+
c = clamp(Math.round(c), 255);
|
181
|
+
return (c < 16 ? '0' : '') + c.toString(16);
|
182
|
+
}).join('');
|
183
|
+
}
|
184
|
+
|
185
|
+
function clamp(v, max) {
|
186
|
+
return Math.min(Math.max(v, 0), max);
|
187
|
+
}
|
100
188
|
|
101
189
|
})(require('../tree'));
|
@@ -1,14 +1,28 @@
|
|
1
1
|
(function (tree) {
|
2
2
|
|
3
|
-
tree.Comment = function (value, silent) {
|
3
|
+
tree.Comment = function (value, silent, index, currentFileInfo) {
|
4
4
|
this.value = value;
|
5
5
|
this.silent = !!silent;
|
6
|
+
this.currentFileInfo = currentFileInfo;
|
6
7
|
};
|
7
8
|
tree.Comment.prototype = {
|
8
|
-
|
9
|
-
|
9
|
+
type: "Comment",
|
10
|
+
genCSS: function (env, output) {
|
11
|
+
if (this.debugInfo) {
|
12
|
+
output.add(tree.debugInfo(env, this), this.currentFileInfo, this.index);
|
13
|
+
}
|
14
|
+
output.add(this.value.trim()); //TODO shouldn't need to trim, we shouldn't grab the \n
|
10
15
|
},
|
11
|
-
|
16
|
+
toCSS: tree.toCSS,
|
17
|
+
isSilent: function(env) {
|
18
|
+
var isReference = (this.currentFileInfo && this.currentFileInfo.reference && !this.isReferenced),
|
19
|
+
isCompressed = env.compress && !this.value.match(/^\/\*!/);
|
20
|
+
return this.silent || isReference || isCompressed;
|
21
|
+
},
|
22
|
+
eval: function () { return this; },
|
23
|
+
markReferenced: function () {
|
24
|
+
this.isReferenced = true;
|
25
|
+
}
|
12
26
|
};
|
13
27
|
|
14
28
|
})(require('../tree'));
|