summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-09-02 00:39:26 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-09-02 00:39:26 +0000
commit6179e46ff5bf206c5a008b4adadfd48c89061bd9 (patch)
treec6efb08867bade39d9158cafbac99f407ad373fd
parent730b5fad7a42e1d51b7ea2a59a500342ff4ff2bf (diff)
* luci/libs: uvl: add definition of package sections to meta scheme
-rw-r--r--libs/uvl/root/lib/uci/schema/meta/schema36
1 files changed, 36 insertions, 0 deletions
diff --git a/libs/uvl/root/lib/uci/schema/meta/schema b/libs/uvl/root/lib/uci/schema/meta/schema
index cb440fbe7..2454a188c 100644
--- a/libs/uvl/root/lib/uci/schema/meta/schema
+++ b/libs/uvl/root/lib/uci/schema/meta/schema
@@ -8,6 +8,42 @@
package schema
#-------------------------------------------------------------------------------
+# Central package definition
+#
+# config package
+# option ...
+#-------------------------------------------------------------------------------
+
+# Section definition (schema.@package)
+config section
+ option name 'package'
+ option title 'Definition of uci package'
+ option package 'schema'
+ option required false
+ option named false
+ option unique true
+ option dynamic false
+
+# Section title (schema.@package.title)
+config variable
+ option name 'title'
+ option title 'Title of the defined package'
+ option section 'schema.package'
+ option type 'variable'
+ option datatype 'string'
+ option required false
+
+# Section description (schema.@package.description)
+config variable
+ option name 'description'
+ option title 'Description of the defined package'
+ option section 'schema.package'
+ option type 'variable'
+ option datatype 'string'
+ option required false
+
+
+#-------------------------------------------------------------------------------
# Central section definition
#
# config section