|
From: <pe...@us...> - 2003-12-24 00:24:10
|
Update of /cvsroot/neuclear/neuclear-id-sample/src/webapp/WEB-INF In directory sc8-pr-cvs1:/tmp/cvs-serv23097/src/webapp/WEB-INF Modified Files: web.xml Log Message: Created a kind of poor man's version of ofbiz.org's EntityEngine. It doesnt use xml to configure it, but code. Should mainly be used to create tables. Can also insert rows, but hasnt been thoroughly tested. At some point I will improve that part and add some kind of smart querying engine to it. Similar to EntityEngine. But I dont need that myself right now. SQLLedger now uses this to create its tables. It is not fully working yet, but will be shortly. Index: web.xml =================================================================== RCS file: /cvsroot/neuclear/neuclear-id-sample/src/webapp/WEB-INF/web.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** web.xml 16 Dec 2003 21:08:37 -0000 1.5 --- web.xml 24 Dec 2003 00:24:07 -0000 1.6 *************** *** 4,12 **** "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> ! <display-name>NeuClear WebApp</display-name> ! <description> ! Sample NeuClear Web app ! </description> ! <context-param> <param-name>serviceid</param-name> <!-- Change the values below to your own service id --> --- 4,8 ---- "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> ! <context-param> <param-name>serviceid</param-name> <!-- Change the values below to your own service id --> |