Added type conversion to list parameters so that parameters can be passed in via the request
14 lines of code changed in:
fixed duplicate class def errors in hcb tests
10 lines of code changed in:
added ability to map grails domain classes with hibernate if necessary
32 lines of code changed in:
Updated to return the controller as the model if no explicit model is returned
1 lines of code changed in:
Updated to return the controller as the model if no explicit model is returned
10 lines of code changed in:
Improved error codes for validation error messages
64 lines of code changed in:
Updated to look for resource bundles on the classpath. The only way I could get the message source populated it seems
5 lines of code changed in:
configured i18n support in spring
38 lines of code changed in:
Added runtime exception handler that displays the error diagnostics in the view so you don't have to go hunting through the console... this now displays code snippets and line number info
96 lines of code changed in:
Added runtime exception handler that displays the error diagnostics in the view so you don't have to go hunting through the console
65 lines of code changed in:
Renamed ddlAuto property to dbCreate
18 lines of code changed in:
Updated to allow setting of offset, max results, order etc.
58 lines of code changed in:
typo corrected... test should be for primitive type not for being a primary ClassNode
1 lines of code changed in:
removes getTypeDescriptor(String)
64 lines of code changed in:
some changes to use getTypeDescriptor(ClassNode) instead of using getTypeDescriptor(String)
3 lines of code changed in:
another quick try for 1190. It seems arrays are incorrectly transformed for the bytecode. Object[] for exmaple is transformed into java/lang/Object[] but it should be [java/lang/Object; This patch should fis that problem
1 lines of code changed in:
possible fix for Groovy-1190
2 lines of code changed in:
Added prototype support to spring config utils to fix controller auto-wiring
22 lines of code changed in:
test JSP pages for testing gvtags performance against straight jsp
0 lines of code changed in:
Update to use the link with column copy technique to define bidirectional one-to-many relationshps
41 lines of code changed in:
Added options to configure Grails ddl auto generate settings on the data source
31 lines of code changed in:
added check for hibernate.cfg.xml for configuring hibernate mapped java classes
6 lines of code changed in:
Added the ability to map java domain classes in hibernate but still use grails dynamic persistent methods
79 lines of code changed in:
Updated to only perform validation of its a GrailsDomainClass instance
21 lines of code changed in:
Updated to only to type conversion of identity if its a grails domain class
5 lines of code changed in:
changed so that if no arguments are specified to load all
1 lines of code changed in:
updated controller template
1 lines of code changed in:
corrected javadoc
1 lines of code changed in:
Updated to pass remaining arguments to subclass so we can support additional parameters in finder methods
16 lines of code changed in:
Updated to use hibernate's in-built dialect factory to establish dialect to use
8 lines of code changed in:
updated google query sample app after re-organisation of directories
10 lines of code changed in:
Added scriptaculous for use in ajax demos
1431 lines of code changed in:
Housekeeping: fixed bug in the detection of Clover
1 lines of code changed in:
Fixed SourceUnit.failedWithUnexpectedEOF() to correctly recognise incomplete source, allowing the InteractiveShell to be a bit more useful - GROOVY-472 and GROOVY-1021
Removed UnexpectedTokenException class as it does not appear to be used any longer.
16 lines of code changed in:
Fix so that AssertionErrors are handled properly.
1 lines of code changed in:
Console was reporting null result when result was [], "" or 0
2 lines of code changed in:
removed quotes to fix problem with unix build
0 lines of code changed in:
update url in instructions
1 lines of code changed in:
example unit test for blog app
0 lines of code changed in:
fixed unit testing following re-organisation of directory structure
13 lines of code changed in:
latest blog sample app
11 lines of code changed in:
upgraded to spring webflow pr 5 to fix jdk 1.5 compile problem
0 lines of code changed in:
Fixed uni-directional one-to-many relationships not being persisted from Set
48 lines of code changed in:
tests adapted to new MethodNode constructor
11 lines of code changed in:
first try to implement the throws declaration for method headers
115 lines of code changed in:
fixed bug that caused ClassCastException when specifying default action without the type eg (@Property defaultAction = "blah")
9 lines of code changed in:
Added url mapping for page flows
34 lines of code changed in:
Updated page flow sample following re-organisations of directories
0 lines of code changed in:
fixed default action mapping
16 lines of code changed in:
Updated controller test case to reflect changes in Url scheme
44 lines of code changed in:
Update so that the web.xml is now generated from a groovy template thus allowing us to shorten Grails URLs. The app/* is no longer needed in the url and if you configure a Grails app as the root webapp you can now potentially achieve REST like URLS (eg. /book/list )
104 lines of code changed in:
package declaration added
1 lines of code changed in:
typo corrected
1 lines of code changed in:
extends the testing for multid arrays and added the test to UTC
20 lines of code changed in:
added service creation target and re-organised directory structure
61 lines of code changed in:
ensures that diferent sizes for multid arrays are respected:
def x = new int[3][2]
assert x.length == 3
assert x[0].length == 2
1 lines of code changed in:
second half of the multi dimensional arrays implementation. It is now possible to do def x= new int[5][3][2][]
Currently no illegal mixing of sized and nonsized parts is checked
71 lines of code changed in:
updated to use BackRef for non-inverse collection, set collections to be lazy and added tests for many-to-one relationships with unit test configured for lazy loading
42 lines of code changed in:
removed jdk 1.5 reliant method calls
5 lines of code changed in:
Updated properties dynamic property to use spring binder to do type conversion
30 lines of code changed in:
Fixed problem that prevented relationships being created on the one side of a many-to-one relationship
3 lines of code changed in:
Fixed problem that prevented relationships being created on the one side of a many-to-one relationship
76 lines of code changed in:
Updated blog app as scaffolding example
8 lines of code changed in:
updated build to compile scaffolding classes
10 lines of code changed in:
new entries for scaffolding
4 lines of code changed in:
fixed classpath problem with linux
0 lines of code changed in:
added simple assertion
2 lines of code changed in:
updated tests to reflect changes in method signatures for finder methods
23 lines of code changed in:
Fixed ClassCastException calling executeFind instead of execute
2 lines of code changed in:
update for change of constructor
1 lines of code changed in:
updated to reflect changes in groovy core
4 lines of code changed in:
commented out unused method
2 lines of code changed in:
Updated finder methods to be more like those found within groovy.. find not returns the first result found, findAll returns a list of all results found etc.
177 lines of code changed in:
Updated to work with controller params
30 lines of code changed in:
added code to support scaffolding
112 lines of code changed in:
organised imports
0 lines of code changed in:
renamed and added code to support scaffolding
48 lines of code changed in:
Updated redirect and chain methods to collaborate nicely with scaffolder
61 lines of code changed in:
Refactored class in multiple methods and added wiring together of scaffolding services
177 lines of code changed in:
tests for scaffolding
1 lines of code changed in:
initial scaffolding implementation
192 lines of code changed in:
added null checks for size and length constraints
28 lines of code changed in:
added detection of scaffolding settings
38 lines of code changed in:
updated following renaming of class
2 lines of code changed in:
added new method to check if scaffolding
4 lines of code changed in:
removed unneeded extra method
0 lines of code changed in:
renamed and simplified into helper class
0 lines of code changed in:
updated to use new no-args constructor in super class
3 lines of code changed in:
Added no arguments constructor that doesn't register a MetaClass
22 lines of code changed in:
cleaned up import declarations
0 lines of code changed in:
Fixed spelling mistake in javadoc
28 lines of code changed in: