* Updated dispatcher to use fastindex if available
[project/luci.git] / applications / sgi-webuci / root / lib / webuci / main.lua
index 478c2a9..cb2730d 100644 (file)
@@ -1,21 +1,20 @@
 module("webuci", package.seeall)
 
 function prepare_req(uri)
+       require("luci.dispatcher").createindex()
        env = {}
        env.REQUEST_URI = uri
-       require("luci.dispatcher").createindex()
 end
 
-function init_req(context)
+function handle_req(context)
        env.SERVER_PROTOCOL = context.server_proto
        env.REMOTE_ADDR     = context.remote_addr
        env.REQUEST_METHOD  = context.request_method
-       env.PATH_INFO       = "/" .. context.uri
+       env.PATH_INFO       = context.uri
        env.REMOTE_PORT     = context.remote_port
        env.SERVER_ADDR     = context.server_addr
        env.SCRIPT_NAME     = env.REQUEST_URI:sub(1, #env.REQUEST_URI - #env.PATH_INFO)
-end
-
-function handle_req(context)
+       
+       luci.sgi.webuci.initenv(env)
        luci.dispatcher.httpdispatch()
 end
\ No newline at end of file