[root]/groovy/groovy-core/src/main/groovy/text
| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 50 (100.0%) | 1673 (100.0%) | 33.4 |
| cstein | 10 (20.0%) | 504 (30.1%) | 50.4 |
| tug | 10 (20.0%) | 483 (28.9%) | 48.3 |
| spullara | 12 (24.0%) | 476 (28.5%) | 39.6 |
| glaforge | 1 (2.0%) | 176 (10.5%) | 176.0 |
| jstrachan | 9 (18.0%) | 21 (1.3%) | 2.3 |
| cpoirier | 3 (6.0%) | 8 (0.5%) | 2.6 |
| blackdrag | 2 (4.0%) | 3 (0.2%) | 1.5 |
| phk | 2 (4.0%) | 2 (0.1%) | 1.0 |
| mguillem | 1 (2.0%) | 0 (0.0%) | 0.0 |
fixed most of the warnings reported by Eclipse (javadoc, unused imports, ...)
0 lines of code changed in:
Fix GROOVY-1205
1 lines of code changed in:
Fix bug when '%' appears as a literal character in a template
14 lines of code changed in:
Use a new Binding every time the template is evaluated
2 lines of code changed in:
Remove unneeded object creation in the make() call
Make now just clones the closure and sets the delegate
9 lines of code changed in:
Trying to roll back the changes to invokeMethod - hold on to your hats!
1 lines of code changed in:
The four access modifiers (say, private, protected, public and package default)
to (static or not) methods should work like as they do in Java.
To do that, a new method
public Object invokeMethodAt(Class at, String name, Object args)
(which is a temporay replacement of the method "invokeMethod"),
has been added to the interface GroovyObject.
For a test suit, StaticMethodAccessBug.groovy and its companions have been added.
1 lines of code changed in:
this is a four part commit:
1) remove the ParameterArray workaround, but keep the functionality
2) transfer Closure's invocation rules to MetaClass
3) give all groovy methods the ability to use vargs
4) add a starting implementation of a replacement for ClassWorlds
1 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...?!
8 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.
15 lines of code changed in:
Fix bugs about the closures and methods with object array paramaters.
(GROOVY-584, GROOVY-886, GROOVY-888, GROOVY-918, GROOVY-930, and GROOVY-931)
1 lines of code changed in:
Ooops, forgot to remove a debug line. ;)
1 lines of code changed in:
Pulled XmlNodePrinter out of the XmlTemplateEngine.
Removed test cases from Eclises '.classpath'.
20 lines of code changed in:
Added XmlTemplateEngine test case.
19 lines of code changed in:
Fixed 818, 901 and potentially 904. Last one needs verification.
New line characters are parsed and produce more correct script source w/ WYSIWYG style.
36 lines of code changed in:
Fixed bug, that prevented element attibutes to be printed.
Added 'gsp:expression' handling.
Refactored some methods and cleaned things up.
No tests yet, still in alpha state. :)
135 lines of code changed in:
Inital commit of the future 'gsp:scriptlet & Co' engine.
See http://jira.codehaus.org/browse/GROOVY-839 for details and examples.
ALPHA revision: needs testing! :-)
265 lines of code changed in:
changed the created class to a script
2 lines of code changed in:
Removed not needed imports and throw declarations.
Commented some code inline - preparing move of parse work to the abstract base class.
See http://jira.codehaus.org/browse/GROOVY-839
5 lines of code changed in:
GROOVY-836: GStringTemplateEngine used to break on multi-line templates
176 lines of code changed in:
(20 more)