dirkv 2004/06/04 15:30:54 Modified: jexl/xdocs index.xml Log: update homepage Revision Changes Path 1.5 +29 -34 jakarta-commons/jexl/xdocs/index.xml Index: index.xml =================================================================== RCS file: /home/cvs/jakarta-commons/jexl/xdocs/index.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- index.xml 5 Feb 2003 18:52:48 -0000 1.4 +++ index.xml 4 Jun 2004 22:30:54 -0000 1.5 @@ -1,9 +1,23 @@ <?xml version="1.0"?> - +<!-- + Copyright 2002,2004 The Apache Software Foundation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> <document> <properties> - <title>Jexl</title> + <title>Overview</title> <author email="[EMAIL PROTECTED]">Geir Magnusson Jr.</author> </properties> @@ -27,24 +41,16 @@ Here is an example of using Jexl : </p> - <source> - <![CDATA[ - /* - * create an expression object - */ - Expression e = ExpressionFactory.createExpression("foo.innerFoo.bar()"); - - /* - * create a context and add data - */ - JexlContext jc = JexlHelper.createContext(); - jc.getVars().put("foo", new Foo() ); - - /* - * now evaluate the expression, getting the result - Object o = e.evaluate(jc); - ]]> - </source> + <source><![CDATA[ + // Create an expression object + Expression e = ExpressionFactory.createExpression("foo.innerFoo.bar()"); + + // Create a context and add data + JexlContext jc = JexlHelper.createContext(); + jc.getVars().put("foo", new Foo() ); + + // Now evaluate the expression, getting the result + Object o = e.evaluate(jc);]]></source> <p> Jexl has extended the JSTL in a few ways : @@ -70,20 +76,12 @@ </section> - <section name="Current Status"> - - <p> - The current status is best described as 'development, active'. - </p> - - </section> - <section name="Anyone Using It Yet?"> <p> James Strachan's <a href="http://jakarta.apache.org/commons/jelly.html"> - Jelly</a>, currently in commons-sandbox. + Jelly</a>. </p> <p> @@ -92,13 +90,10 @@ </section> - <section name="Nightly Snapshots"> - + <section name="Releases"> <p> - The nightly shapshots can be found - <a href='http://cvs.apache.org/builds/jakarta-commons/nightly/commons-jexl'>here</a> + See the <a href="downloads.html">downloads</a> page for information on obtaining releases. </p> - </section> </body>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
