2013/7/14 :
> Author: markt
> Date: Sun Jul 14 17:57:06 2013
> New Revision: 1503006
>
> URL: http://svn.apache.org/r1503006
> Log:
> Special handling to handle the ambiguity of {} which could be an empty Set or
> an empty Map
>
> Modified:
> tomcat/trunk/java/org/apache/el/lang/ELSupport.jav
2013/7/15 :
> Author: markt
> Date: Sun Jul 14 21:07:26 2013
> New Revision: 1503056
>
> URL: http://svn.apache.org/r1503056
> Log:
> Start to implement the lambda expression syntax. Very basic expressions work.
> I expect further changes to be required for more complex expressions.
> Includes th
Author: markt
Date: Sun Jul 14 21:20:43 2013
New Revision: 1503060
URL: http://svn.apache.org/r1503060
Log:
More lambda expression implementation. Handle the case of an expression without
any formal parameters.
Modified:
tomcat/trunk/java/org/apache/el/parser/AstLambdaExpression.java
tom
Author: markt
Date: Sun Jul 14 21:07:26 2013
New Revision: 1503056
URL: http://svn.apache.org/r1503056
Log:
Start to implement the lambda expression syntax. Very basic expressions work. I
expect further changes to be required for more complex expressions.
Includes the initial unit tests for this
Author: markt
Date: Sun Jul 14 19:17:07 2013
New Revision: 1503034
URL: http://svn.apache.org/r1503034
Log:
Implement the assign syntax.
Includes the initial unit tests for this syntax.
Added:
tomcat/trunk/test/org/apache/el/parser/TestAstAssign.java (with props)
tomcat/trunk/test/org/a
On 13/07/2013 00:49, Konstantin Kolinko wrote:
> 2013/7/12 :
>> Author: markt
>> Date: Fri Jul 12 13:25:04 2013
>> New Revision: 1502552
>>
>> URL: http://svn.apache.org/r1502552
>> Log:
>> Add some more unit tests for the EL processor and make sure it uses the
>> import information it has to han
Author: markt
Date: Sun Jul 14 18:38:18 2013
New Revision: 1503018
URL: http://svn.apache.org/r1503018
Log:
Need to be able to load web application classes.
Review by kkolinko
Modified:
tomcat/trunk/java/javax/el/ELProcessor.java
Modified: tomcat/trunk/java/javax/el/ELProcessor.java
URL:
ht
Author: markt
Date: Sun Jul 14 18:33:06 2013
New Revision: 1503017
URL: http://svn.apache.org/r1503017
Log:
Implement the semicolon syntax.
Includes the initial unit tests for this syntax.
Added:
tomcat/trunk/test/org/apache/el/parser/TestAstSemicolon.java (with props)
Modified:
tomcat/
Author: markt
Date: Sun Jul 14 18:06:27 2013
New Revision: 1503008
URL: http://svn.apache.org/r1503008
Log:
Implement the Map construction syntax.
Includes the initial unit tests for this syntax.
Added:
tomcat/trunk/test/org/apache/el/parser/TestAstMapData.java (with props)
Modified:
to
Author: markt
Date: Sun Jul 14 17:57:06 2013
New Revision: 1503006
URL: http://svn.apache.org/r1503006
Log:
Special handling to handle the ambiguity of {} which could be an empty Set or
an empty Map
Modified:
tomcat/trunk/java/org/apache/el/lang/ELSupport.java
Modified: tomcat/trunk/java/or
Author: markt
Date: Sun Jul 14 17:54:18 2013
New Revision: 1503005
URL: http://svn.apache.org/r1503005
Log:
Add comments about ambiguity of {} in EL 3.0 syntax.
Modified:
tomcat/trunk/java/org/apache/el/parser/ELParser.jjt
Modified: tomcat/trunk/java/org/apache/el/parser/ELParser.jjt
URL:
h
2013/7/14 Mark Thomas :
> The parser has now been updated for EL 3.0. The remaining tasks are:
> 1. Add the implementation to the various new Ast* nodes to implement the
>new syntax.
> 2. Implement collections operations
> 3. Wire up java.el.LambdaExpression
> 4. Update the JSP implementation f
Author: markt
Date: Sun Jul 14 13:18:12 2013
New Revision: 1502971
URL: http://svn.apache.org/r1502971
Log:
Implement the List construction syntax.
Includes the initial unit tests for this syntax.
Added:
tomcat/trunk/test/org/apache/el/parser/TestAstListData.java (with props)
Modified:
Author: markt
Date: Sun Jul 14 11:50:52 2013
New Revision: 1502960
URL: http://svn.apache.org/r1502960
Log:
Implement the Set construction syntax.
Includes the initial unit tests for this syntax.
Added:
tomcat/trunk/test/org/apache/el/parser/TestAstSetData.java (with props)
Modified:
to
Author: markt
Date: Sun Jul 14 11:21:17 2013
New Revision: 1502957
URL: http://svn.apache.org/r1502957
Log:
Make abstract nodes abstract
Modified:
tomcat/trunk/java/org/apache/el/parser/ArithmeticNode.java
tomcat/trunk/java/org/apache/el/parser/BooleanNode.java
Modified: tomcat/trunk/jav
Author: markt
Date: Sun Jul 14 11:13:43 2013
New Revision: 1502956
URL: http://svn.apache.org/r1502956
Log:
Implement concatenation operator (+=) and include some units tests
Added:
tomcat/trunk/test/org/apache/el/parser/TestAstConcatenation.java (with
props)
Modified:
tomcat/trunk/jav
The Buildbot has detected a restored build on builder tomcat-trunk while
building ASF Buildbot.
Full details are available at:
http://ci.apache.org/builders/tomcat-trunk/builds/4673
Buildbot URL: http://ci.apache.org/
Buildslave for this Build: bb-vm_ubuntu
Build Reason: scheduler
Build Source
The parser has now been updated for EL 3.0. The remaining tasks are:
1. Add the implementation to the various new Ast* nodes to implement the
new syntax.
2. Implement collections operations
3. Wire up java.el.LambdaExpression
4. Update the JSP implementation for the new EL API
Mark
--
The Buildbot has detected a new failure on builder tomcat-trunk while building
ASF Buildbot.
Full details are available at:
http://ci.apache.org/builders/tomcat-trunk/builds/4672
Buildbot URL: http://ci.apache.org/
Buildslave for this Build: bb-vm_ubuntu
Build Reason: scheduler
Build Source St
Author: markt
Date: Sun Jul 14 08:36:31 2013
New Revision: 1502947
URL: http://svn.apache.org/r1502947
Log:
Simplify
Modified:
tomcat/trunk/java/org/apache/el/parser/ELParser.java
tomcat/trunk/java/org/apache/el/parser/ELParser.jjt
Modified: tomcat/trunk/java/org/apache/el/parser/ELParse
https://issues.apache.org/bugzilla/show_bug.cgi?id=55261
--- Comment #4 from Mark Thomas ---
Works on Windows Server 2008 R2, Unbuntu 12.04.02 LTS (64-bit) and Ubuntu
10.04.3 LTS (buildbot CI system).
I do see the same problem with OSX 10.8.4 and Java 1.6.0_51. At the moment this
looks like an O
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
+---+
| Bugzilla Bug ID |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned
https://issues.apache.org/bugzilla/show_bug.cgi?id=55261
--- Comment #3 from Violeta Georgieva ---
(In reply to Jeremy Boynes from comment #0)
> Macintosh OS X 10.8.4
>
> java version "1.6.0_51"
> Java(TM) SE Runtime Environment (build 1.6.0_51-b11-457-11M4509)
> Java HotSpot(TM) 64-Bit Server V
29 matches
Mail list logo