]> source.dussan.org Git - vaadin-framework.git/commit
Applying patch: remak of variable handling in sass (partial for e.g #9492 and others)
authorMarc Englund <marc@vaadin.com>
Tue, 11 Sep 2012 13:27:05 +0000 (16:27 +0300)
committerMarc Englund <marc@vaadin.com>
Tue, 11 Sep 2012 13:27:28 +0000 (16:27 +0300)
commitc9e8218799152dd90bacb6c8b92b648a951aca24
tree88838e0fdaf1257258d2e3d5eaffd7cb88819ab6
parent6ccbb9e40ebb160d2bc1a57c5b5293c4f87d0b27
Applying patch: remak of variable handling in sass (partial for e.g #9492 and others)
44 files changed:
theme-compiler/ivy.xml
theme-compiler/src/com/vaadin/sass/ScssStylesheet.java
theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java
theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java
theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java
theme-compiler/src/com/vaadin/sass/parser/Parser.java
theme-compiler/src/com/vaadin/sass/parser/Parser.jj
theme-compiler/src/com/vaadin/sass/parser/ParserConstants.java
theme-compiler/src/com/vaadin/sass/parser/ParserTokenManager.java
theme-compiler/src/com/vaadin/sass/selector/SelectorUtil.java
theme-compiler/src/com/vaadin/sass/tree/BlockNode.java
theme-compiler/src/com/vaadin/sass/tree/ExtendNode.java
theme-compiler/src/com/vaadin/sass/tree/FunctionNode.java
theme-compiler/src/com/vaadin/sass/tree/IVariableNode.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/tree/IfNode.java [deleted file]
theme-compiler/src/com/vaadin/sass/tree/MediaNode.java
theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java
theme-compiler/src/com/vaadin/sass/tree/MixinNode.java
theme-compiler/src/com/vaadin/sass/tree/NestPropertiesNode.java
theme-compiler/src/com/vaadin/sass/tree/Node.java
theme-compiler/src/com/vaadin/sass/tree/RuleNode.java
theme-compiler/src/com/vaadin/sass/tree/SimpleNode.java
theme-compiler/src/com/vaadin/sass/tree/VariableNode.java
theme-compiler/src/com/vaadin/sass/tree/controldirective/ControlChildNode.java [deleted file]
theme-compiler/src/com/vaadin/sass/tree/controldirective/ControlDefNode.java [deleted file]
theme-compiler/src/com/vaadin/sass/tree/controldirective/ControlNode.java [deleted file]
theme-compiler/src/com/vaadin/sass/tree/controldirective/EachDefNode.java
theme-compiler/src/com/vaadin/sass/tree/controldirective/ElseNode.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/tree/controldirective/IfElseDefNode.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/tree/controldirective/IfElseNode.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/tree/controldirective/IfNode.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/ControlVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/EachVisitor.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/IfElseVisitor.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/MixinVisitor.java
theme-compiler/src/com/vaadin/sass/visitor/VariableVisitor.java
theme-compiler/tests/resources/css/control-directives.css
theme-compiler/tests/resources/scss/control-directives.scss
theme-compiler/tests/resources/scss/mixins.scss
theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Comments.java
theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ControlDirectives.java
theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Mixins.java
theme-compiler/tests/src/com/vaadin/sass/testcases/scss/Variables.java
theme-compiler/tests/src/com/vaadin/sass/testcases/visitor/MixinVisitorTest.java