[root]/groovy/groovy-core/src/test/groovy/text
| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 17 (100.0%) | 230 (100.0%) | 13.5 |
| cstein | 5 (29.4%) | 83 (36.1%) | 16.6 |
| spullara | 5 (29.4%) | 76 (33.0%) | 15.2 |
| dierk | 1 (5.9%) | 44 (19.1%) | 44.0 |
| tug | 1 (5.9%) | 16 (7.0%) | 16.0 |
| paulk | 2 (11.8%) | 6 (2.6%) | 3.0 |
| cpoirier | 1 (5.9%) | 4 (1.7%) | 4.0 |
| jstrachan | 2 (11.8%) | 1 (0.4%) | 0.5 |
reformat test code
6 lines of code changed in:
Re-mounted 'src/test' source folder in Eclipse .classpath - Groovy662 needed the correct package name, as it depends on both, a Groovy and a Java class.
Added simple XmlTemplateEngineTest case.
Organized imports in SourcePrinterTest.java.
30 lines of code changed in:
Fixed new-line-eating behaviour of the SimpleTemplateEngine - while in Groovy sections, all \n and \r chars are printed to the generated script source.
NOTE! Every code depending on auto-elimination may break: TemplateServlet, Grails, other...?!
17 lines of code changed in:
Fixed test case, as the _simple_ template engine doesn't know how to handle new lines in '''...''' sequences. See http://jira.codehaus.org/browse/GROOVY-980
Added (needs to be protected?) constructor to STE which prints the generated template script to stdout before parsing/applying the binding.
3 lines of code changed in:
GROOVY-980 : SimpleTemplateEngine fails when enclose expression dosn't immediately evaluate to a String. Added TestCases, one is not running but renamed to todo_...
44 lines of code changed in:
Added XmlTemplateEngine test case.
33 lines of code changed in:
updated the test cases to use JSR parser syntax
0 lines of code changed in:
This change makes the template system more multithread friendly. Instead of setting the binding on the template, use the make() methods to create writables.
4 lines of code changed in:
First check in of GStringTemplateEngine
16 lines of code changed in:
Centralized compilation management and error handling.
Compilation is now managed by SourceUnit and CompilationUnit objects to which errors
are reported. CompilerConfiguration provides a single object for controlling compiler
configuration. CompilationFailedException is thrown for any compilation failures, and
links back to the CompilationUnit and SourceUnit that discovered the problem and that
house the error messages. These objects all reside in org.codehaus.groovy.control.
4 lines of code changed in:
clean up and change the way scripts are generated, added more javadocs
2 lines of code changed in:
fix the fix
1 lines of code changed in:
change the test to match the more general API
4 lines of code changed in:
fixed Sam's test case - bad Sam! :)
1 lines of code changed in:
Couple of simple tests to make sure the simple template system is working.
65 lines of code changed in: