-
-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
-
-$Id: cell_valueheader.htm 3340 2008-09-16 15:51:35Z Cyrus $
-
--%>
-
-
-">
diff --git a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/dvalue.htm b/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/dvalue.htm
deleted file mode 100644
index 2915a93..0000000
--- a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/dvalue.htm
+++ /dev/null
@@ -1,22 +0,0 @@
-<%#
-LuCI - Lua Configuration Interface
-Copyright 2008 Steven Barth
-Copyright 2008 Jo-Philipp Wich
-
-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
-
-$Id: dvalue.htm 3369 2008-09-19 10:44:35Z Cyrus $
-
--%>
-
-<%+cbi/valueheader%>
-<% if self.href then %><% end -%>
- <%=luci.util.pcdata(self:cfgvalue(section))%>
-<%- if self.href then %><%end%>
-
-
-<%+cbi/valuefooter%>
diff --git a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/dynlist.htm b/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/dynlist.htm
deleted file mode 100644
index a23a4eb..0000000
--- a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/dynlist.htm
+++ /dev/null
@@ -1,45 +0,0 @@
-<%#
-LuCI - Lua Configuration Interface
-Copyright 2008 Steven Barth
-Copyright 2008 Jo-Philipp Wich
-
-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
-
-$Id$
-
--%>
-<%+cbi/valueheader%>
-<%
- local vals = self:cfgvalue(section) or {}
- for i=1, #vals + 1 do
- local val = vals[i]
-%>
- />
- <% if i <= #vals then %>
- " alt="<%:cbi_del%>" title="<%:cbi_del%>" src="<%=resource%>/cbi/remove.gif" />
- <% else %>
- " alt="<%:cbi_add%>" title="<%:cbi_add%>" src="<%=resource%>/cbi/add.gif" />
- <% end %>
- <% if #self.keylist > 0 then -%>
-
- <% end -%>
-<% if i <= #vals then %>
-<% end end %>
-<%+cbi/valuefooter%>
diff --git a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/filebrowser.htm b/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/filebrowser.htm
deleted file mode 100644
index b106d6b..0000000
--- a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/filebrowser.htm
+++ /dev/null
@@ -1,122 +0,0 @@
-<%#
-LuCI - Lua Configuration Interface
-Copyright 2008 Steven Barth
-Copyright 2008 Jo-Philipp Wich
-
-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
-
-$Id: filebrowser.htm 3555 2008-10-10 21:52:22Z jow $
-
--%>
-
-
-
-
-
- Filebrowser - LuCI
-
-
-
-
-
- <%
- require("luci.fs")
- require("luci.http")
- require("luci.dispatcher")
-
- local field = luci.http.formvalue('field')
- local request = luci.dispatcher.context.path
- local path = { '' }
-
- for i = 3, #request do
- if request[i] ~= '..' and #request[i] > 0 then
- path[#path+1] = request[i]
- end
- end
-
- local filepath = table.concat( path, '/' )
- local filestat = luci.fs.stat( filepath )
- local baseurl = luci.dispatcher.build_url('admin', 'filebrowser')
-
- if filestat and filestat.type == "regular" then
- table.remove( path, #path )
- filepath = table.concat( path, '/' ) .. '/'
- elseif not ( filestat and filestat.type == "directory" ) then
- path = { '' }
- filepath = '/'
- else
- filepath = filepath .. '/'
- end
-
- local entries = luci.fs.dir(filepath)
- -%>
-
- Location:
- <% for i, dir in ipairs(path) do %>
- <% if i == 1 then %>
- (root)
- <% elseif next(path, i) then %>
- <% baseurl = baseurl .. '/' .. dir %>
- / <%=dir%>
- <% else %>
- <% baseurl = baseurl .. '/' .. dir %>
- / <%=dir%>
- <% end %>
- <% end %>
-
-
-
-
-
-
- <% for _, e in luci.util.vspairs(entries) do
- local stat = luci.fs.stat(filepath..e)
- if e ~= '.' and e ~= '..' and stat and stat.type == 'directory' then
- -%>
- -
-
- <%=e%>/
-
- <% end end -%>
-
- <% for _, e in luci.util.vspairs(entries) do
- local stat = luci.fs.stat(filepath..e)
- if stat and stat.type ~= 'directory' then
- -%>
- -
-
- <%=e%>
-
- <% end end -%>
-
-
-
-
diff --git a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/footer.htm b/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/footer.htm
deleted file mode 100644
index 7762124..0000000
--- a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/footer.htm
+++ /dev/null
@@ -1,26 +0,0 @@
-<%#
-LuCI - Lua Configuration Interface
-Copyright 2008 Steven Barth
-Copyright 2008 Jo-Philipp Wich
-
-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
-
-$Id: footer.htm 3941 2008-12-23 21:39:38Z jow $
-
--%>
- <%- if pageaction then -%>
-
- <% if not autoapply then%>
-
- <% end %>
-
-
-
-
- <%- end -%>
-
-<%+footer%>
diff --git a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/full_valuefooter.htm b/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/full_valuefooter.htm
deleted file mode 100644
index 32e6d05..0000000
--- a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/full_valuefooter.htm
+++ /dev/null
@@ -1,45 +0,0 @@
-<%#
-LuCI - Lua Configuration Interface
-Copyright 2008 Steven Barth
-Copyright 2008 Jo-Philipp Wich
-
-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
-
-$Id: full_valuefooter.htm 3657 2008-10-30 02:41:25Z jow $
-
--%>
-
- <% if self.description and #self.description > 0 then -%>
- <% if not luci.util.instanceof( self, luci.cbi.Flag ) then -%>
-
- <%- end %>
-
-
- <%=self.description%>
-
- <%- end %>
- <%- if self.title and #self.title > 0 then -%>
-
- <%- end -%>
-
-
-<% if #self.deps > 0 then -%>
-
-<%- end %>
diff --git a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/full_valueheader.htm b/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/full_valueheader.htm
deleted file mode 100644
index dd2eb8e..0000000
--- a/mote/v1/openwrt/package/luci/libs/cbi/luasrc/view/cbi/full_valueheader.htm
+++ /dev/null
@@ -1,24 +0,0 @@
-<%#
-LuCI - Lua Configuration Interface
-Copyright 2008 Steven Barth
-Copyright 2008 Jo-Philipp Wich
-
-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
-
-$Id: full_valueheader.htm 3171 2008-09-06 22:42:55Z jow $
-
--%>
-
- |