Changelog Report

Timeframe: 30 days, Total Commits: 14 Total Number of Files Changed: 34

DateAuthorFile/Message
2004-09-29 15:31:50James Strachan

project.xml v 1.107

changed version number, ready for release
2004-09-29 08:12:48Jeremy Rayner

src/latex/ref/groovy-reference-card.tex v 1.4

bringing the reference card in line with the current Groovy JDK methods
2004-09-29 07:48:17Jeremy Rayner

src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java v 1.120

src/test/groovy/ProcessTest.groovy v 1.3

src/test/groovy/SocketTest.groovy v 1.2

* 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:34yuri

.classpath v 1.44

project.xml v 1.106

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:05Jeremy Rayner

src/test/groovy/ProcessTest.groovy v 1.2

Avoid namespace clash for mock (MockInputStream)
2004-09-28 06:37:43Jeremy Rayner

src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java v 1.119

src/test/groovy/ProcessTest.groovy v 1.1

src/test/groovy/SocketTest.groovy v 1.1

* 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:31tug

src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.6

Make the Xml Element Writable
2004-09-22 13:53:14tug

src/main/org/codehaus/groovy/sandbox/util/XmlSlurper.java v 1.5

Make text() work with mixed content
2004-09-22 13:04:35tug

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:27tug

src/main/groovy/lang/Closure.java v 1.40

Make a Wriatble Closure's toString() method return the result of executing the closure
2004-09-03 08:49:09tug

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:07Chris 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:08tug

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:37Jeremy Rayner

src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java v 1.118

src/test/groovy/FilterLineTest.groovy v 1.1

src/test/groovy/ImmutableModificationTest.groovy v 1.1

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...