2008-10-10 21:52:22 +00:00
|
|
|
<%#
|
|
|
|
LuCI - Lua Configuration Interface
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
|
|
|
|
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$
|
|
|
|
|
|
|
|
-%>
|
|
|
|
|
|
|
|
<%
|
|
|
|
local v = self:cfgvalue(section)
|
|
|
|
-%>
|
|
|
|
<%+cbi/valueheader%>
|
|
|
|
<input class="cbi-input-text" type="text"<%= attr("value", v) .. attr("name", cbid) .. attr("id", cbid) %> />
|
2011-03-05 06:35:26 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
cbi_browser_init('<%=cbid%>', '<%=resource%>', '<%=luci.dispatcher.build_url("admin", "filebrowser")%>'<%=self.default_path and ", '"..self.default_path.."'"%>);
|
|
|
|
</script>
|
2008-10-10 21:52:22 +00:00
|
|
|
<%+cbi/valuefooter%>
|