diff options
Diffstat (limited to 'applications/luci-samba/luasrc')
-rw-r--r-- | applications/luci-samba/luasrc/controller/samba.lua | 27 | ||||
-rw-r--r-- | applications/luci-samba/luasrc/i18n/samba.de.lua | 18 | ||||
-rw-r--r-- | applications/luci-samba/luasrc/i18n/samba.en.lua | 18 | ||||
-rw-r--r-- | applications/luci-samba/luasrc/model/cbi/samba.lua | 54 |
4 files changed, 117 insertions, 0 deletions
diff --git a/applications/luci-samba/luasrc/controller/samba.lua b/applications/luci-samba/luasrc/controller/samba.lua new file mode 100644 index 000000000..a698777c2 --- /dev/null +++ b/applications/luci-samba/luasrc/controller/samba.lua @@ -0,0 +1,27 @@ +--[[ +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$ +]]-- +module("luci.controller.samba", package.seeall) + +function index() + if not luci.fs.isfile("/etc/config/samba") then + return + end + require("luci.i18n") + luci.i18n.loadc("samba") + + local page = entry({"admin", "services", "samba"}, cbi("samba"), luci.i18n.translate("samba")) + page.i18n = "samba" + page.dependent = true +end
\ No newline at end of file diff --git a/applications/luci-samba/luasrc/i18n/samba.de.lua b/applications/luci-samba/luasrc/i18n/samba.de.lua new file mode 100644 index 000000000..421ecf0e5 --- /dev/null +++ b/applications/luci-samba/luasrc/i18n/samba.de.lua @@ -0,0 +1,18 @@ +samba = "Netzwerkfreigaben" +samba_samba_name = "Hostname" +samba_samba_description = "Beschreibung" +samba_samba_workgroup = "Arbeitsgruppe" +samba_samba_homes = "Heimatverzeichnisse freigeben" +samba_samba_homes_desc = "Systembenutzer können ihre Heimatverzeichnis über Netzwerkfreigaben erreichen." + +samba_sambashare = "Dateifreigaben" +samba_sambashare_path = "Freigabepfad" +samba_sambashare_path_desc = "Physischer Pfad" +samba_sambashare_users = "Erlaubte Benutzer" +samba_sambashare_users_desc = "optional" +samba_sambashare_readonly = "Nur Lesen" +samba_sambashare_guestok = "Gäste erlauben" +samba_sambashare_createmask = "Anlegemaske" +samba_sambashare_createmask_desc = "Maske für neue Dateien" +samba_sambashare_dirmask = "Verzeichnismaske" +samba_sambashare_dirmask_desc = "Maske für neue Verzeichnisse" diff --git a/applications/luci-samba/luasrc/i18n/samba.en.lua b/applications/luci-samba/luasrc/i18n/samba.en.lua new file mode 100644 index 000000000..28fce71dc --- /dev/null +++ b/applications/luci-samba/luasrc/i18n/samba.en.lua @@ -0,0 +1,18 @@ +samba = "Network Shares" +samba_samba_name = "Hostname" +samba_samba_description = "Description" +samba_samba_workgroup = "Workgroup" +samba_samba_homes = "Share home-directories" +samba_samba_homes_desc = "System users can reach their home directories via network shares." + +samba_sambashare = "Shared Directories" +samba_sambashare_path = "Shared Directory" +samba_sambashare_path_desc = "Physical Path" +samba_sambashare_users = "Allowed Users" +samba_sambashare_users_desc = "optional" +samba_sambashare_readonly = "Read Only" +samba_sambashare_guestok = "Allow Guests" +samba_sambashare_createmask = "Create Mask" +samba_sambashare_createmask_desc = "Mask for new files" +samba_sambashare_dirmask = "Directory Mask" +samba_sambashare_dirmask_desc = "Mask for new directories" diff --git a/applications/luci-samba/luasrc/model/cbi/samba.lua b/applications/luci-samba/luasrc/model/cbi/samba.lua new file mode 100644 index 000000000..3fe7006e3 --- /dev/null +++ b/applications/luci-samba/luasrc/model/cbi/samba.lua @@ -0,0 +1,54 @@ +--[[ +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$ +]]-- + +m = Map("samba") + +s = m:section(TypedSection, "samba", "Samba") +s.anonymous = true + +s:option(Value, "name") +s:option(Value, "description") +s:option(Value, "workgroup") +s:option(Flag, "homes") + + +s = m:section(TypedSection, "sambashare") +s.anonymous = true +s.addremove = true +s.template = "cbi/tblsection" + +s:option(Value, "name", translate("name")) +s:option(Value, "path") + +s:option(Value, "users").rmempty = true + +ro = s:option(Flag, "read_only") +ro.enabled = "yes" +ro.disabled = "no" + +go = s:option(Flag, "guest_ok") +go.enabled = "yes" +go.disabled = "no" + +cm = s:option(Value, "create_mask") +cm.rmempty = true +cm.size = 4 + +dm = s:option(Value, "dir_mask") +dm.rmempty = true +dm.size = 4 + + +return m
\ No newline at end of file |