moving formatting support to web.indent module,
authorMarek Fukala <mfukala@netbeans.org>
Mon, 11 Jul 2011 15:36:24 +0200
changeset 1753707d72093b1b5
parent 17399 e29935f0feb6
child 17538 6f26766a2e75
moving formatting support to web.indent module,
some progress on the css modular editor
php.smarty/nbproject/project.xml
php.smarty/src/org/netbeans/modules/php/smarty/editor/indent/TplIndenter.java
     1.1 --- a/php.smarty/nbproject/project.xml	Tue Apr 19 17:00:41 2011 +0200
     1.2 +++ b/php.smarty/nbproject/project.xml	Mon Jul 11 15:36:24 2011 +0200
     1.3 @@ -166,6 +166,14 @@
     1.4                      </run-dependency>
     1.5                  </dependency>
     1.6                  <dependency>
     1.7 +                    <code-name-base>org.netbeans.modules.web.indent</code-name-base>
     1.8 +                    <build-prerequisite/>
     1.9 +                    <compile-dependency/>
    1.10 +                    <run-dependency>
    1.11 +                        <specification-version>1.0</specification-version>
    1.12 +                    </run-dependency>
    1.13 +                </dependency>
    1.14 +                <dependency>
    1.15                      <code-name-base>org.netbeans.spi.palette</code-name-base>
    1.16                      <build-prerequisite/>
    1.17                      <compile-dependency/>
     2.1 --- a/php.smarty/src/org/netbeans/modules/php/smarty/editor/indent/TplIndenter.java	Tue Apr 19 17:00:41 2011 +0200
     2.2 +++ b/php.smarty/src/org/netbeans/modules/php/smarty/editor/indent/TplIndenter.java	Mon Jul 11 15:36:24 2011 +0200
     2.3 @@ -52,14 +52,14 @@
     2.4  import org.netbeans.api.lexer.TokenId;
     2.5  import org.netbeans.api.lexer.TokenSequence;
     2.6  import org.netbeans.editor.Utilities;
     2.7 -import org.netbeans.modules.css.formatting.api.support.AbstractIndenter;
     2.8 -import org.netbeans.modules.css.formatting.api.support.IndenterContextData;
     2.9 -import org.netbeans.modules.css.formatting.api.support.IndentCommand;
    2.10 -import org.netbeans.modules.css.formatting.api.embedding.JoinedTokenSequence;
    2.11 -import org.netbeans.modules.css.formatting.api.LexUtilities;
    2.12  import org.netbeans.modules.editor.indent.spi.Context;
    2.13  import org.netbeans.modules.php.smarty.editor.lexer.TplTokenId;
    2.14  import org.netbeans.modules.php.smarty.editor.lexer.TplTopTokenId;
    2.15 +import org.netbeans.modules.web.indent.api.LexUtilities;
    2.16 +import org.netbeans.modules.web.indent.api.embedding.JoinedTokenSequence;
    2.17 +import org.netbeans.modules.web.indent.api.support.AbstractIndenter;
    2.18 +import org.netbeans.modules.web.indent.api.support.IndentCommand;
    2.19 +import org.netbeans.modules.web.indent.api.support.IndenterContextData;
    2.20  
    2.21  /**
    2.22   * @author Martin Fousek