* Added support for htdocs module directory
authorSteven Barth <redacted>
Sun, 15 Jun 2008 16:02:47 +0000 (16:02 +0000)
committerSteven Barth <redacted>
Sun, 15 Jun 2008 16:02:47 +0000 (16:02 +0000)
applications/luci-splash/htdocs/cgi-bin/luci-splash [moved from applications/luci-splash/root/www/cgi-bin/luci-splash with 100% similarity]
build/config.mk
build/module.mk
libs/cbi/htdocs/luci-static/resources/cbi.js [moved from libs/cbi/root/www/luci-static/resources/cbi.js with 100% similarity]
libs/sgi-haserl/htdocs/cgi-bin/index.cgi [moved from libs/sgi-haserl/root/www/cgi-bin/index.cgi with 100% similarity]
libs/sgi-haserl/htdocs/cgi-bin/luci [moved from libs/sgi-haserl/root/www/cgi-bin/luci with 100% similarity]
libs/sgi-haserl/htdocs/cgi-bin/luci-upload [moved from libs/sgi-haserl/root/www/cgi-bin/luci-upload with 100% similarity]
libs/sgi-haserl/htdocs/index.html [moved from libs/sgi-haserl/root/www/index.html with 100% similarity]
themes/fledermaus/htdocs/luci-static/fledermaus/cascade.css [moved from themes/fledermaus/root/www/luci-static/fledermaus/cascade.css with 100% similarity]
themes/fledermaus/htdocs/luci-static/fledermaus/logo.png [moved from themes/fledermaus/root/www/luci-static/fledermaus/logo.png with 100% similarity]
themes/openwrt.org/htdocs/luci-static/openwrt.org/cascade.css [moved from themes/openwrt.org/root/www/luci-static/openwrt.org/cascade.css with 100% similarity]

index 81d3e0836ca3ed8553b2d8ad17638185f7d64799..3cf13201f516cebc8b95653ef85ee0d4c58d3f71 100644 (file)
@@ -7,3 +7,5 @@ LUA_LIBRARYDIR = /usr/lib/lua
 LUCI_MODULEDIR = $(LUA_MODULEDIR)/luci
 LUCI_LIBRARYDIR = $(LUA_LIBRARYDIR)/luci
 
+HTDOCS = /www
+
index 4ef3668c8b04e3f09c2e2a0443c29ee064e924b7..b85dcda359ab7db3591a729bc0c12fe2561cd0c6 100644 (file)
@@ -14,9 +14,11 @@ clean: luaclean
 luasource:
        mkdir -p dist$(LUA_MODULEDIR)
        mkdir -p dist$(LUCI_MODULEDIR)
+       mkdir -p dist$(HTDOCS)
        cp -a root/* dist -R 2>/dev/null || true
        cp -a luasrc/* dist$(LUCI_MODULEDIR) -R 2>/dev/null || true
        cp -a lua/* dist$(LUA_MODULEDIR) -R 2>/dev/null || true
+       cp -a htdocs/* dist$(HTDOCS) -R 2>/dev/null || true
        for i in $$(find dist -name .svn); do rm $$i -rf; done  
        
 luacompile: luasource
git clone https://git.99rst.org/PROJECT