Quick Search:

View detailed chart Line History

line history graph

View Mode

Logical Physical

Show Arbitrary Diff

From to

Supports revisions and tags.

Watches and RSS

History

trunk 174 9

latest revision download trunk

174 annotated / raw | Diffs: previous, other | Lines: 636 ( +94, -34 )

Created: 2008-04-08 15:49:52 -0500 (9 months ago) | Author: jkuhnert | Changeset: 174

Fixes for OGNL-119.  ASTChain had bug in indexed setter evaluation loop which caused it improperly not detect valid indexed set operations. Thanks to Max Bowsher for pointing that out.

Tags: 2.7.3

173 annotated / raw | Diffs: previous, other | Lines: 576 ( +1, -1 )

Created: 2008-03-05 17:42:28 -0600 (10 months ago) | Author: jkuhnert | Changeset: 173

May fix OGNL-144.  Impossible to tell without knowing more but PropertyDescriptors aren't guaranteed to have read methods anyways so ..

171 annotated / raw | Diffs: previous, other | Lines: 576 ( +14, -9 )

Created: 2008-02-11 15:24:00 -0600 (10 months ago) | Author: jkuhnert | Changeset: 171

Fixes for OGNL-115.  ASTConst needed to cause unsupported compilation exceptions to be thrown when the first stack member is a constant during setter generations as constants aren't obviously CONSTANT and not changeable.

157 annotated / raw | Diffs: previous, other | Lines: 571 ( +38, -13 )

Created: 2007-11-29 12:44:43 -0600 (13 months ago) | Author: jkuhnert | Changeset: 157

Reduced some overhead with unneccesarily getting values from expressions when compiling.

Tags: 2.7.2

150 annotated / raw | Diffs: previous, other | Lines: 546 ( +23, -21 )

Created: 2007-10-25 13:41:53 -0500 (14 months ago) | Author: jkuhnert | Changeset: 150

Fixed ASTProperty bug that only shows up in jre 1.6.  Wasn't able to resolve simple getValue() property because a hasValue() method existed.. Changed to use propery descriptor first and fall back to propertyaccessors when that is null so that actual settable/gettable properties are found first.

149 annotated / raw | Diffs: previous, other | Lines: 544 ( +3, -2 )

Created: 2007-10-23 08:42:25 -0500 (14 months ago) | Author: jkuhnert | Changeset: 149

Fixes for OGNL-130.  Two dimensional List access was improperly stealing pre-cast statements from ASTProperty children.

132 annotated / raw | Diffs: previous, other | Lines: 543 ( +6, -10 )

Created: 2007-07-15 14:39:33 -0500 (17 months ago) | Author: jkuhnert | Changeset: 132

Fixes OGNL-106.  Wasn't checking for null in ASTMethod.

Also refactored exception catching logic so that more exceptions aren't needlessly added on to the exception stack when catching Throwables.

Tags: 2.7.1

131 annotated / raw | Diffs: previous, other | Lines: 547 ( +50, -65 )

Created: 2007-07-15 14:21:15 -0500 (17 months ago) | Author: jkuhnert | Changeset: 131

Fixes OGNL-105. Indexed object method calls attempting to use reflection (by calling methods using the name of a return property expression) were failing.. Added smarter logic to ObjectPropertyAccessor to try getting the read method using the context current object value if the passed in string index method couldn't be found.

125 annotated / raw | Diffs: previous, other | Lines: 562 ( +114, -113 )

Created: 2007-06-30 15:56:18 -0500 (18 months ago) | Author: jkuhnert | Changeset: 125

Fixes OGNL-97.  Was doing the old root class casting logic on root expressions when it seems to be unneccessary now that everything is properly being populated in the context accessor/type class value stack.

102 annotated / raw | Diffs: previous, other | Lines: 561 ( +13, -13 )

Created: 2007-06-01 16:40:04 -0500 (19 months ago) | Author: jkuhnert | Changeset: 102

Fixes OGNL-84, OGNL-83.  Precasting statements were being stolen by ASTMethod for inner children incorrectly.  ASTProperty also wasn't setting the correct current type on previously indexed methods.

Also reverted surefire version since someone there seems to have broken the current version.

Tags: 2.7

78 annotated / raw | Diffs: previous, other | Lines: 561 ( +8, -8 )

Created: 2007-04-24 14:24:07 -0500 (20 months ago) | Author: jkuhnert | Changeset: 78

Fixes OGNL-54. OgnlRuntime method finders and getChildSource weren't properly handling properties that should only be referencing root expressions (if any)..Such as method parameters / etc..Added logic to correctly set the context type/object state up for each of these.

72 annotated / raw | Diffs: previous, other | Lines: 561 ( +2, -2 )

Created: 2007-04-19 16:02:46 -0500 (20 months ago) | Author: jkuhnert | Changeset: 72

Fixes OGNL-46. ExpressionCompiler.getRootExpression() was incorrectly casting directly to the root type instead of checking the context accessor type first. (to be friendly with object inheritance)

62 annotated / raw | Diffs: previous, other | Lines: 561 ( +7, -51 )

Created: 2007-04-01 19:14:26 -0500 (21 months ago) | Author: jkuhnert | Changeset: 62

Let's just say it fixes most problems and leave it at that...

57 annotated / raw | Diffs: previous, other | Lines: 605 ( +134, -89 )

Created: 2007-03-24 16:27:37 -0500 (21 months ago) | Author: jkuhnert | Changeset: 57

Fixes number of bugs resulting from more ASTConst changes and how the context types are figured out.

50 annotated / raw | Diffs: previous, other | Lines: 560 ( +7, -7 )

Created: 2007-03-18 15:45:17 -0500 (21 months ago) | Author: jkuhnert | Changeset: 50

Added check in OgnlOps to throw an IllegalArgumentException if a value can't be converted to a requested type. Prevents setter expressions from silently failing when the wrong object type is used.

37 annotated / raw | Diffs: previous, other | Lines: 560 ( +35, -15 )

Created: 2007-03-02 20:00:51 -0600 (22 months ago) | Author: jkuhnert | Changeset: 37

-) Did a lot more work around setting up the context current/accessor type classes when dealing with property / method expressions.

-) Added ability for compiling expressions against string values.

-) Changed property accessor implementation to set class on current context.

-) Added a lot more unit tests.

35 annotated / raw | Diffs: previous, other | Lines: 540 ( +1, -1 )

Created: 2007-02-24 14:42:36 -0600 (22 months ago) | Author: jkuhnert | Changeset: 35

Added more unit tests , fixed a few more bugs for various compilation issues found in application using it.

33 annotated / raw | Diffs: previous, other | Lines: 540 ( +1, -1 )

Created: 2007-02-19 23:20:14 -0600 (22 months ago) | Author: jkuhnert | Changeset: 33

-) Set new version of 2.7
-) Updated pom to generate javadoc jar.
-) Fixed a couple unit tests.

32 annotated / raw | Diffs: previous, other | Lines: 540 ( +491, -71 )

Created: 2007-02-19 22:43:16 -0600 (22 months ago) | Author: jkuhnert | Changeset: 32

Optimized imports, slight tweaks on formatting / etc.

9 new annotated / raw | Lines: 120 ( +120, -0 )

Created: 2007-02-04 11:05:01 -0600 (23 months ago) | Author: jkuhnert | Changeset: 9

Initial import.

Tags: ognl_2-6-10 ognl_2-6-11

Open Source License registered to the OpenSymphony Project. This license of FishEye is provided to support the development of OpenSymphony only.
Atlassian FishEye, Subversion analysis. (Version:1.6.1 Build:build-325 2008-09-24) - Administration - Page generated 2009-01-09 17:05 -0600