Timeframe: 30 days, Total Commits: 14 Total Number of Files Changed: 34
Date | Author | File/Message |
---|---|---|
2004-09-29 15:31:50 | James Strachan | changed version number, ready for release |
2004-09-29 08:12:48 | Jeremy Rayner | bringing the reference card in line with the current Groovy JDK methods |
2004-09-29 07:48:17 | Jeremy Rayner |
src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java v 1.120 * added byte[] as specific RHS of << operator - the RHS can still be of type Object, but if we have a stream on LHS and a byte[] on the RHS, then raw byte data will be sent down that stream (Socket, Process etc) |
2004-09-28 20:08:34 | yuri |
src/main/groovy/ui/InteractiveShell.java v 1.14 src/main/groovy/ui/ShellCompleter.java v 1.2 src/main/org/codehaus/groovy/sandbox/ui/Completer.java v 1.1 src/main/org/codehaus/groovy/sandbox/ui/JavaPrompt.java v 1.1 src/main/org/codehaus/groovy/sandbox/ui/Prompt.java v 1.1 src/main/org/codehaus/groovy/sandbox/ui/PromptFactory.java v 1.1 refactored readline stuff into external module |
2004-09-28 06:48:05 | Jeremy Rayner | Avoid namespace clash for mock (MockInputStream) |
2004-09-28 06:37:43 | Jeremy Rayner |
src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java v 1.119 * Added socket << obj and process << obj * Added test cases for Groovy Socket methods * Added test cases for Groovy Process methods |
2004-09-22 13:59:31 | tug |
src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.6 Make the Xml Element Writable |
2004-09-22 13:53:14 | tug |
src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.5 Make text() work with mixed content |
2004-09-22 13:04:35 | tug |
src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.4 Allow text() to be ommitted in contexts which require a string |
2004-09-03 09:20:27 | tug | Make a Wriatble Closure's toString() method return the result of executing the closure |
2004-09-03 08:49:09 | tug |
src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.3 Add a contents() method to XmlList This allows the contents of a node to be pasted into the thing being built by a Builder |
2004-09-03 04:04:07 | Chris Poirier |
src/main/org/codehaus/groovy/syntax/lexer/StringLexer.java v 1.2 src/test/org/codehaus/groovy/syntax/parser/CompilerErrorTest.java v 1.6 Fixed bug that caused the parser to hang on unterminated GStrings. |
2004-09-02 17:38:08 | tug |
src/main/org/codehaus/groovy/sandbox/markup/AbstractStreamingBuilder.groovy v 1.2 src/main/org/codehaus/groovy/sandbox/markup/BaseMarkupBuilder.java v 1.7 src/main/org/codehaus/groovy/sandbox/markup/Buildable.java v 1.1 src/main/org/codehaus/groovy/sandbox/markup/StreamingDOMBuilder.groovy v 1.3 src/main/org/codehaus/groovy/sandbox/markup/StreamingMarkupBuilder.groovy v 1.9 src/main/org/codehaus/groovy/sandbox/markup/StreamingSAXBuilder.groovy v 1.6 src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.2 Allow arbitrary subscripts in GPath expressions on the result of running XmlSlurper Begin the work to allow GPath expressions to be used to specify markup to be generated by Builders |
2004-08-31 22:50:37 | Jeremy Rayner |
src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java v 1.118 Added patches from Brian McCallister for new Groovy JDK methods * File.filterLine([out]) {...} * InputStream.filterLine([out]) {...} * Collection.asImmutable() I've added tests for all of these new methods. The asImmutable() group of methods will have to be looked at further, as the underlying Collection still appears to be modifiable at the moment! Therefore, we can close GROOVY-624 and GROOVY-625, but I will leave GROOVY-623 open for the moment, till the issue here is resolved. Cheers brianm, keep those patches rolling... |