October 2005 Commit Log

Number of Commits:
87
Number of Active Developers:
1
Graeme Rocher 2005-10-28 10:29

refactored the calling of closure actions into the helper class so that redirect can participate in a chain without have to replicate code

101 lines of code changed in:

Graeme Rocher 2005-10-27 17:15

tests for action chaining

62 lines of code changed in:

Graeme Rocher 2005-10-27 17:15

Implemented action chaining so that the model is retained when one action is chained to another

194 lines of code changed in:

Graeme Rocher 2005-10-27 17:13

Added a generic wrapper for any dynamic property

0 lines of code changed in:

Graeme Rocher 2005-10-27 13:19

added tests for action redirection

98 lines of code changed in:

Graeme Rocher 2005-10-27 13:19

updated to create a controller helper

5 lines of code changed in:

Graeme Rocher 2005-10-27 13:16

Implemented redirection of controller actions with the method:

redirect(action:this.other,params:["myparam":"myvalue"] )

117 lines of code changed in:

Graeme Rocher 2005-10-27 13:15

added the redirect dynamic controller method

3 lines of code changed in:

Graeme Rocher 2005-10-27 13:14

changed to create map in constructor

4 lines of code changed in:

Graeme Rocher 2005-10-27 13:14

Moved map implementation into a public class and made it possible to add params to the map as controller parameters.. thus having one unified this.params instance for chaining and redirection

17 lines of code changed in:

Graeme Rocher 2005-10-27 13:12

new controller exception type

25 lines of code changed in:

Graeme Rocher 2005-10-27 13:12

Moved the guts of the controller into a helper class that can be more easily passed around to dynamic methods

296 lines of code changed in:

Graeme Rocher 2005-10-27 13:05

fixed null pointer bug with default behaviour of the after interceptor call

3 lines of code changed in:

Graeme Rocher 2005-10-27 13:04

new getter to retrieve property name

11 lines of code changed in:

Graeme Rocher 2005-10-27 13:04

Refactored AbstractDynamicMethods class into an interface

2 lines of code changed in:

Graeme Rocher 2005-10-27 13:03

Added a method to lookup a dynamic property by name

43 lines of code changed in:

Graeme Rocher 2005-10-27 13:01

Added new method to retrieve a property descriptor by value

22 lines of code changed in:

Graeme Rocher 2005-10-27 13:00

Added methods to look-up a view name for the action name

40 lines of code changed in:

Graeme Rocher 2005-10-27 12:59

Added the ability to create a GrailsApplication from classes for testing and other potentially useful uses

14 lines of code changed in:

Graeme Rocher 2005-10-26 14:05

changed name of %GRAILS_HOME% references to be $GRAILS_HOME.. woops!

0 lines of code changed in:

  • grails/bin: grails (changed)
Graeme Rocher 2005-10-26 11:12

Rolled back again as it produced compilation errors.. GRRRR

0 lines of code changed in:

Graeme Rocher 2005-10-26 11:07

compiled webflow with jdk 1.4 to avoid compilation errors with 1.4

0 lines of code changed in:

Graeme Rocher 2005-10-26 11:03

removed older OGNL jar

0 lines of code changed in:

Graeme Rocher 2005-10-26 08:40

fixed setProperty to delegate to the right method. Evil copy-and-paste bug!

1 lines of code changed in:

Graeme Rocher 2005-10-25 17:26

compiled for jdk 1.4

0 lines of code changed in:

Graeme Rocher 2005-10-25 16:55

Changed to return a BeanMap if the getter is accessed

15 lines of code changed in:

Graeme Rocher 2005-10-24 20:52

fixed bug where url has end slash "/"

3 lines of code changed in:

Graeme Rocher 2005-10-24 20:52

fixed bug looking up default action view

1 lines of code changed in:

Graeme Rocher 2005-10-24 17:34

Added OGNL expression object graph expression language jar

1 lines of code changed in:

Graeme Rocher 2005-10-24 17:26

added OGNL jar to lib

1 lines of code changed in:

Graeme Rocher 2005-10-24 17:24

Added new dynamic property that lets you set the properties on a domain class dynamically from a map of OGNL expressions

62 lines of code changed in:

Graeme Rocher 2005-10-24 17:21

Added OGNL expression object graph expression language jar

0 lines of code changed in:

Graeme Rocher 2005-10-24 17:20

Added getting/setting of properties to delegating meta class

25 lines of code changed in:

Graeme Rocher 2005-10-24 17:19

Changed inner class visibility

1 lines of code changed in:

Graeme Rocher 2005-10-24 15:36

added getBy* that returns a unique result

1 lines of code changed in:

Graeme Rocher 2005-10-24 15:04

Added a GrailsBootStrap artifact type for executing startup code

169 lines of code changed in:

Graeme Rocher 2005-10-24 13:11

Changed name of war and run-app command to be the name of the project

5 lines of code changed in:

Graeme Rocher 2005-10-24 12:57

changed location of views from "view" to "views"

6 lines of code changed in:

  • grails/samples/blog/grails-app/views/blog: list.jsp (new)
  • grails/src/grails: build.xml (+6 -4)
Graeme Rocher 2005-10-24 12:44

Changed name of the "defaultClosure" property to "defaultAction"

9 lines of code changed in:

Graeme Rocher 2005-10-24 12:07

Re-named to AbstractDynamicMethods as this is no longer specified to persistent methods

0 lines of code changed in:

Graeme Rocher 2005-10-24 12:05

Tests for Controller meta class dynamic methods

56 lines of code changed in:

Graeme Rocher 2005-10-24 12:05

Implemented 2 new dynamic properties for controller meta classes:

"params" - returns a map that delegates to request instance to retrieve request parameters

"session" - returns a map that delegates to the session instance to interact with the HttpSession

381 lines of code changed in:

Graeme Rocher 2005-10-24 12:01

Changed to use the constructor for specifying the method name instead of the more error prone property setter

3 lines of code changed in:

Graeme Rocher 2005-10-24 12:00

Re-named to AbstractDynamicMethods as this is no longer specified to persistent methods

24 lines of code changed in:

Graeme Rocher 2005-10-24 11:59

Added an abstract class that allows for dynamic methods to be used in conjunction with a ProxyMetaClass instance as an interceptor

2 lines of code changed in:

Graeme Rocher 2005-10-24 11:59

Extended ProxyMetaClass to allow the interception of calls to property getters/setters

0 lines of code changed in:

Graeme Rocher 2005-10-24 11:58

added interface and abstract class for implement dynamic properties as well as methods

1 lines of code changed in:

Graeme Rocher 2005-10-24 11:57

Added a "isMethodMethod" method to be consistent with StaticMethodInvocation interface

14 lines of code changed in:

Graeme Rocher 2005-10-20 15:10

updated to use ExtendProxy implementation so that getters/setters are proxied too and changed to participant in an existing Hibernate session if one is bound to the TransactionManager context

20 lines of code changed in:

Graeme Rocher 2005-10-20 15:08

added extend proxy class that allows proxying of getters/setters

50 lines of code changed in:

Graeme Rocher 2005-10-20 15:07

Add method to remove proxy wrappers if they exist around model objects

25 lines of code changed in:

Graeme Rocher 2005-10-20 14:04

the beginnings of a Blog sample app which demonstrates domain classes relationships etc.

43 lines of code changed in:

Graeme Rocher 2005-10-20 14:01

added UTF-8 parser to sitemesh config

2 lines of code changed in:

Graeme Rocher 2005-10-20 14:00

added Spring hibernate open session in view filter

20 lines of code changed in:

Graeme Rocher 2005-10-20 13:59

added additional jar dependencies to be copied and try catch block around jetty so some exceptions arn't swallowed

23 lines of code changed in:

Graeme Rocher 2005-10-20 13:58

updated scripts to have more specific classpath for Jetty to avoid classloading issues

1 lines of code changed in:

Graeme Rocher 2005-10-20 13:58

removed unnecessary import

0 lines of code changed in:

Graeme Rocher 2005-10-20 13:57

Implemented and open session in view filter for Grails

69 lines of code changed in:

Graeme Rocher 2005-10-20 13:57

added method signature constants

7 lines of code changed in:

Graeme Rocher 2005-10-20 13:56

added null check for arguments

8 lines of code changed in:

Graeme Rocher 2005-10-20 13:54

added check to see if the Grails context has already been loaded by a filter

28 lines of code changed in:

Graeme Rocher 2005-10-20 13:53

added null and type check to getPropertyValue method

42 lines of code changed in:

Graeme Rocher 2005-10-19 17:33

example use of sitemesh

13 lines of code changed in:

Graeme Rocher 2005-10-19 17:18

added sitemesh jar to eclpse project

3 lines of code changed in:

Graeme Rocher 2005-10-19 17:18

added "layouts" directory for sitemesh layouts and copying of sitemesh jar

8 lines of code changed in:

Graeme Rocher 2005-10-19 17:17

added sitemesh servlet filter

20 lines of code changed in:

Graeme Rocher 2005-10-19 17:17

added sitemesh config for GrailsLayoutDecoratorMapper

12 lines of code changed in:

Graeme Rocher 2005-10-19 17:16

Changed default to in-memory database

1 lines of code changed in:

Graeme Rocher 2005-10-19 17:16

added sitemesh jar

0 lines of code changed in:

Graeme Rocher 2005-10-19 17:15

tests for grails sitemesh decorator mapper

33 lines of code changed in:

Graeme Rocher 2005-10-19 17:15

added javadoc

21 lines of code changed in:

Graeme Rocher 2005-10-19 17:13

Implemented a decorator mapper for sitemesh/grails integration

64 lines of code changed in:

Graeme Rocher 2005-10-19 11:24

tests for the HibernateCriteriaBuilder

169 lines of code changed in:

Graeme Rocher 2005-10-19 11:24

Added createCriteria dynamic persistent method that returns a HibernateCriteriaBuilder instance

52 lines of code changed in:

Graeme Rocher 2005-10-19 11:23

Implemented first revision of a Hibernate Criteria Builder class

648 lines of code changed in:

Graeme Rocher 2005-10-07 22:22

added lib to ant classpath

1 lines of code changed in:

Graeme Rocher 2005-10-07 20:57

removed classpath: prefix as it didn't work in jetty

2 lines of code changed in:

Graeme Rocher 2005-10-07 20:57

added template classes for build

4 lines of code changed in:

Graeme Rocher 2005-10-07 20:56

moved hibernate jars to root lib, add targets to create apps, run an app with jetty and create controllers, test suites and domain classes

172 lines of code changed in:

Graeme Rocher 2005-10-07 20:51

moved hibernate jars to root lib

12 lines of code changed in:

Graeme Rocher 2005-10-07 20:46

Changed to default to the property name for the view name if none is specified and to look for the view in a directory following the convention of the controller. This is a necessary change because as a Grails app gets larger you will get namespace issues with views

6 lines of code changed in:

Graeme Rocher 2005-10-07 09:58

added Apache license

18 lines of code changed in:

Graeme Rocher 2005-10-07 09:55

removed old rico location

0 lines of code changed in:

Graeme Rocher 2005-10-06 19:09

*** empty log message ***

0 lines of code changed in:

Graeme Rocher 2005-10-06 18:50

Implemented an Ajax Auto-complete example with OpenRico builder a, Google API and the Grails JS library

18 lines of code changed in:

Graeme Rocher 2005-10-06 18:49

moved Rico library to generic js folder

3 lines of code changed in:

Graeme Rocher 2005-10-06 18:47

added Grails js library and moved Rico library

424 lines of code changed in:

September 2005 »

Generated by StatSVN 0.3.2-SNAPSHOT