comparison web/src/luan/modules/web/HttpLuan.java @ 173:58c6ca5d4524

fix build.sh git-svn-id: https://luan-java.googlecode.com/svn/trunk@174 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Sun, 22 Jun 2014 07:46:49 +0000
parents 7c792a328a83
children bdbd4740121f
comparison
equal deleted inserted replaced
172:4edbf3204ca6 173:58c6ca5d4524
61 luan = cloner.deepClone(luan); 61 luan = cloner.deepClone(luan);
62 fn = cloner.get(fn); 62 fn = cloner.get(fn);
63 } 63 }
64 } 64 }
65 65
66 LuanTable module = (LuanTable)luan.loaded().get("Http"); 66 LuanTable module = (LuanTable)luan.loaded().get("web.Http");
67 if( module == null ) 67 if( module == null )
68 throw luan.exception( "module 'Http' not defined" ); 68 throw luan.exception( "module 'web.Http' not defined" );
69 HttpLuan lib = new HttpLuan(request,response); 69 HttpLuan lib = new HttpLuan(request,response);
70 try { 70 try {
71 module.put( "request", lib.requestTable() ); 71 module.put( "request", lib.requestTable() );
72 module.put( "response", lib.responseTable() ); 72 module.put( "response", lib.responseTable() );
73 /* 73 /*