This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
GOTO weiter | |
:setenv | |
SET ANT_HOME=\xampp\apache_ant | |
SET JAVA_HOME=\xampp\jdk | |
SET CLASSPATH= | |
SET PATH=%ANT_HOME%\bin;%JAVA_HOME%\bin;%PATH% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jslint | |
indent: 4, | |
maxerr: 50, | |
white: true, | |
browser: true, | |
vars: true | |
*/ | |
/*global | |
CKEDITOR | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%options ranges | |
%options backtrack_lexer | |
/* | |
* lexical grammar | |
* =============== | |
* | |
* This section defines the lexer rules for our formula parser. The rules are checked from top to bottom, so order is import | |
* here! | |
* |