From 15f4fa76d5c468e7def2d3c38d148945ce980030 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 14 Aug 2008 11:50:00 +0000 Subject: [PATCH] libs/cbi: Added TextValue --- libs/cbi/luasrc/cbi.lua | 11 +++++++++++ libs/cbi/luasrc/view/cbi/tvalue.htm | 19 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 libs/cbi/luasrc/view/cbi/tvalue.htm diff --git a/libs/cbi/luasrc/cbi.lua b/libs/cbi/luasrc/cbi.lua index 024687c6f..f7725c534 100644 --- a/libs/cbi/luasrc/cbi.lua +++ b/libs/cbi/luasrc/cbi.lua @@ -876,3 +876,14 @@ function MultiValue.validate(self, val) return result end + +--[[ +TextValue - A multi-line value + rows: Rows +]]-- +TextValue = class(AbstractValue) + +function TextValue.__init__(self, ...) + AbstractValue.__init__(self, ...) + self.template = "cbi/tvalue" +end diff --git a/libs/cbi/luasrc/view/cbi/tvalue.htm b/libs/cbi/luasrc/view/cbi/tvalue.htm new file mode 100644 index 000000000..dcf6b8bfb --- /dev/null +++ b/libs/cbi/luasrc/view/cbi/tvalue.htm @@ -0,0 +1,19 @@ +<%# +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%> + +<%+cbi/valuefooter%> -- 2.11.0