openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit bd7b66c467041339a6f104d53f7b1ba2fe54d775
parent a58fa93a643b9904db1361f0563eea442209dcf1
Author: Jan Dankert <develop@jandankert.de>
Date:   Sun,  5 Jun 2022 22:14:24 +0200

Some fixups: New Icons; better support classes for DSL.

Diffstat:
Mmodules/cms/generator/ValueGenerator.class.php | 5++---
Dmodules/cms/generator/dsl/DslAlert.class.php | 15---------------
Mmodules/cms/generator/dsl/DslConsole.class.php | 7+++++++
Mmodules/cms/generator/dsl/DslFolder.class.php | 6++----
Mmodules/cms/generator/dsl/DslObject.class.php | 25+++++++++++++++++++++++++
Mmodules/cms/generator/dsl/DslPage.class.php | 9+++------
Mmodules/cms/generator/dsl/DslProject.class.php | 20++++++++++++++------
Mmodules/cms/model/BaseObject.class.php | 55+++++++++++++++++++++----------------------------------
Mmodules/cms/model/Folder.class.php | 23+----------------------
Mmodules/cms/ui/themes/default/style/openrat-image.less | 2++
Mmodules/cms/ui/themes/default/style/openrat.css | 8+++++++-
Mmodules/cms/ui/themes/default/style/openrat.min.css | 2+-
Mmodules/language/Language_CN.class.php | 6+++++-
Mmodules/language/Language_DE.class.php | 6+++++-
Mmodules/language/Language_EN.class.php | 6+++++-
Mmodules/language/Language_ES.class.php | 6+++++-
Mmodules/language/Language_FR.class.php | 6+++++-
Mmodules/language/Language_IT.class.php | 6+++++-
Mmodules/language/Language_RU.class.php | 6+++++-
Mmodules/language/Messages.class.php | 4++++
Mmodules/language/language.yml | 14+++++++++++++-
Mmodules/template_engine/components/template.xsd | 1627++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
22 files changed, 1759 insertions(+), 105 deletions(-)

diff --git a/modules/cms/generator/ValueGenerator.class.php b/modules/cms/generator/ValueGenerator.class.php @@ -8,7 +8,6 @@ use cms\base\Configuration; use cms\base\Configuration as C; use cms\base\DB; use cms\base\Startup; -use cms\generator\dsl\DslAlert; use cms\generator\dsl\DslConsole; use cms\generator\dsl\DslDocument; use cms\generator\dsl\DslHttp; @@ -439,7 +438,7 @@ class ValueGenerator extends BaseGenerator case self::LINKINFO_WIDTH: $f = new Image( $objectid ); $f->load(); - if ( $f->typeid == BaseObject::TYPE_IMAGE ) + if ( $f->typeid == BaseObject::TYPEID_IMAGE ) { $f->getImageSize(); $inhalt = $f->width; @@ -450,7 +449,7 @@ class ValueGenerator extends BaseGenerator case self::LINKINFO_HEIGHT: $f = new Image( $objectid ); $f->load(); - if ( $f->typeid == BaseObject::TYPE_IMAGE ) + if ( $f->typeid == BaseObject::TYPEID_IMAGE ) { $f->getImageSize(); $inhalt = $f->height; diff --git a/modules/cms/generator/dsl/DslAlert.class.php b/modules/cms/generator/dsl/DslAlert.class.php @@ -1,14 +0,0 @@ -<?php - -namespace cms\generator\dsl; - -use dsl\context\DslFunction; - -class DslAlert implements DslFunction -{ - - public function execute( $text ) - { - echo '*** '.$text.' ***'; - } -} -\ No newline at end of file diff --git a/modules/cms/generator/dsl/DslConsole.class.php b/modules/cms/generator/dsl/DslConsole.class.php @@ -5,6 +5,13 @@ namespace cms\generator\dsl; use dsl\context\DslObject; use logger\Logger; +/** + * Logging. + * + * Wraps around the internal CMS logging. + * + * @package cms\generator\dsl + */ class DslConsole implements DslObject { diff --git a/modules/cms/generator/dsl/DslFolder.class.php b/modules/cms/generator/dsl/DslFolder.class.php @@ -6,15 +6,13 @@ use cms\model\Folder; use dsl\context\DslObject as DslContextObject; -class DslFolder implements DslContextObject +class DslFolder extends DslObject implements DslContextObject { /** * @var Folder */ private $folder; - public $id; - /** * DslPage constructor. * @param Folder $folder @@ -23,7 +21,7 @@ class DslFolder implements DslContextObject { $this->folder = $folder; - $this->id = $folder->getId(); + parent::__construct( $folder ); } public function children() { diff --git a/modules/cms/generator/dsl/DslObject.class.php b/modules/cms/generator/dsl/DslObject.class.php @@ -3,6 +3,7 @@ namespace cms\generator\dsl; use cms\model\BaseObject; +use cms\model\Folder; use dsl\context\DslObject as DslContextObject; class DslObject implements DslContextObject @@ -22,4 +23,28 @@ class DslObject implements DslContextObject $this->id = $object->getId(); } + + public function getTypeName() { + + return $this->object->getType(); + } + + public function getNameForLanguage( $languageid ) { + + return $this->object->getNameForLanguage( $languageid )->getProperties(); + } + + public function getDefaultName() { + + return $this->object->getDefaultName()->getProperties(); + } + + public function parent() { + + if ( $this->object->parentid == null ) + return null; + + return new DslFolder( new Folder( $this->object->parentid ) ); + } + } \ No newline at end of file diff --git a/modules/cms/generator/dsl/DslPage.class.php b/modules/cms/generator/dsl/DslPage.class.php @@ -3,14 +3,12 @@ namespace cms\generator\dsl; use cms\model\Page; -use dsl\context\DslObject; +use dsl\context\DslObject as DslContextObject; -class DslPage implements DslObject +class DslPage extends DslObject implements DslContextObject { private $page; - public $id; - /** * DslPage constructor. * @param Page $page @@ -18,8 +16,7 @@ class DslPage implements DslObject public function __construct($page) { $this->page = $page; - - $this->id = $page->getId(); + parent::__construct( $page ); } /** diff --git a/modules/cms/generator/dsl/DslProject.class.php b/modules/cms/generator/dsl/DslProject.class.php @@ -3,7 +3,6 @@ namespace cms\generator\dsl; use cms\model\Folder; -use cms\model\Page; use cms\model\Project; use dsl\context\DslObject; @@ -12,6 +11,8 @@ class DslProject implements DslObject private $project; public $id; + public $url; + public $name; /** * DslPage constructor. @@ -21,7 +22,9 @@ class DslProject implements DslObject { $this->project = $project; - $this->id = $project->getId(); + $this->id = $project->getId(); + $this->name = $project->name; + $this->url = $project->url; } /** @@ -29,25 +32,30 @@ class DslProject implements DslObject * @throws \util\exception\ObjectNotFoundException */ public function languages() { - return $this->project->getLanguages(); + + return array_map( function( $language ) { + return get_object_vars($language); + } ,$this->project->getLanguages() ); } /** * @return array * @throws \util\exception\ObjectNotFoundException */ public function models() { - return $this->project->getLanguages(); + return array_map( function($model ) { + return get_object_vars($model); + } ,$this->project->getModels() ); } /** * @return DslObject * @throws \util\exception\ObjectNotFoundException */ public function root() { + $oid = $this->project->getRootObjectId(); $folder = new Folder( $oid ); - $folder->load(); - return new \cms\generator\dsl\DslObject( $folder ); + return new DslFolder( $folder->load() ); } } \ No newline at end of file diff --git a/modules/cms/model/BaseObject.class.php b/modules/cms/model/BaseObject.class.php @@ -30,17 +30,10 @@ class BaseObject extends ModelBase const TYPEID_ALIAS = 8; const TYPEID_MACRO = 9; - const TYPE_FOLDER = 'folder'; - const TYPE_FILE = 'file' ; - const TYPE_PAGE = 'page' ; - const TYPE_LINK = 'link' ; - const TYPE_URL = 'url' ; - const TYPE_IMAGE = 'image' ; - const TYPE_TEXT = 'text' ; - const TYPE_ALIAS = 'alias' ; - const TYPE_MACRO = 'macro' ; - - /** eindeutige ID dieses Objektes + + /** + * Unique ID of this base object. + * * @type Integer */ public $objectid; @@ -320,32 +313,25 @@ SQL /** - * Typ des Objektes ermitteln + * Get the type name. * - * @return String der Typ des Objektes entweder 'folder','file','page' oder 'link'. + * @return String type of object, f.e. 'folder','file','page', ... */ function getType() { - if ($this->isFolder) - return self::TYPE_FOLDER; - if ($this->isFile) - return self::TYPE_FILE; - if ($this->isImage) - return self::TYPE_IMAGE; - if ($this->isText) - return self::TYPE_TEXT; - if ($this->isPage) - return self::TYPE_PAGE; - if ($this->isLink) - return self::TYPE_LINK; - if ($this->isUrl) - return self::TYPE_URL; - if ($this->isAlias) - return self::TYPE_ALIAS; - if ($this->isMacro) - return self::TYPE_MACRO; - - return 'unknown'; + $mapTypeIdToName = [ + self::TYPEID_FOLDER => 'folder', + self::TYPEID_FILE => 'file' , + self::TYPEID_PAGE => 'page' , + self::TYPEID_LINK => 'link' , + self::TYPEID_URL => 'url' , + self::TYPEID_IMAGE => 'image' , + self::TYPEID_TEXT => 'text' , + self::TYPEID_ALIAS => 'alias' , + self::TYPEID_MACRO => 'macro' , + ]; + + return $mapTypeIdToName[ $this->getTypeid() ]; } @@ -667,7 +653,8 @@ SQL * @return bool */ public function isRoot() { - return intval($this->parentid) == 0; + + return ! $this->parentid; } /** diff --git a/modules/cms/model/Folder.class.php b/modules/cms/model/Folder.class.php @@ -65,30 +65,9 @@ class Folder extends BaseObject } - public function load() - { -// $db = \cms\base\DB::get(); -// -// $sql = $db->sql('SELECT * FROM {{folder}} WHERE objectid={objectid}'); -// $sql->setInt('objectid',$this->objectid); -// -// $row = $sql->getRow( $sql ); -// - $this->objectLoad(); - -// $this->folderid = $row['id' ]; - } - - function save() - { - parent::save(); - } - - - - function setOrderId( $orderid ) + public function setOrderId( $orderid ) { $db = \cms\base\DB::get(); diff --git a/modules/cms/ui/themes/default/style/openrat-image.less b/modules/cms/ui/themes/default/style/openrat-image.less @@ -46,6 +46,8 @@ &-el_info:after { content: "info"; } &-el_infodate:after { content: "info"; } &-el_checkbox:after { content: "check_box"; } + &-el_data:after { content: "receipt"; } + &-el_coord:after { content: "edit_location"; } &-image:after { content: "image"; } &-link:after { content: "call_made"; } diff --git a/modules/cms/ui/themes/default/style/openrat.css b/modules/cms/ui/themes/default/style/openrat.css @@ -510,6 +510,12 @@ Basis-Style for Openrat. .or-image-icon--action-el_checkbox:after { content: "check_box"; } +.or-image-icon--action-el_data:after { + content: "receipt"; +} +.or-image-icon--action-el_coord:after { + content: "edit_location"; +} .or-image-icon--action-image:after { content: "image"; } @@ -816,7 +822,7 @@ Basis-Style for Openrat. .or-image-icon--editor-table:after { content: "view_comfy"; } -/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%5C%2Fwww%5C%2Flocalhost%5C%2Fcms%5C%2Fmodules%5C%2Fcms%5C%2Fui%5C%2Fthemes%5C%2Fdefault%5C%2Fstyle%5C%2Fopenrat-image.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAIQ%2CGAFH%2CMAEI%3BCACC%3BCACA%3B%3BAAGF%2CGAPH%2CMAOI%3BCACG%3BCACA%3B%3BAAGJ%2CGAZH%2CMAYI%3BCAEG%2CaAAa%2CgBAAb%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BCAGA%3B%3BAAEF%2CGA3BL%2CMAYI%2CKAeE%2COAAO%3BCAAS%3BCAAiB%3B%3BAAI5B%2CGA%5C%2FBX%2CMAYI%2CKAiBE%2CQAEM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGAhCX%2CMAYI%2CKAiBE%2CQAGM%2CYAAY%3BCAAS%2CSAAS%2CeAAT%3B%3BAACtB%2CGAjCX%2CMAYI%2CKAiBE%2CQAIM%2CUAAU%3BCAAS%3B%3BAACpB%2CGAlCX%2CMAYI%2CKAiBE%2CQAKM%2CUAAU%3BCAAS%2CSAAS%2CWAAT%3B%3BAACpB%2CGAnCX%2CMAYI%2CKAiBE%2CQAMM%2CQAAQ%3BCAAS%2CSAAS%2CWAAT%3B%3BAAClB%2CGApCX%2CMAYI%2CKAiBE%2CQAOM%2CQAAQ%3BCAAS%2CSAAS%2CYAAT%3B%3BAAClB%2CGArCX%2CMAYI%2CKAiBE%2CQAQM%2CUAAU%3BCAAS%2CSAAS%2CiBAAT%3B%3BAACpB%2CGAtCX%2CMAYI%2CKAiBE%2CQASM%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAvCX%2CMAYI%2CKAiBE%2CQAUM%2CYAAY%3BCAAS%3B%3BAACtB%2CGAxCX%2CMAYI%2CKAiBE%2CQAWM%2CYAAY%3BCAAS%3B%3BAACtB%2CGAzCX%2CMAYI%2CKAiBE%2CQAYM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA1CX%2CMAYI%2CKAiBE%2CQAaM%2CWAAW%3BCAAS%2CSAAS%2CqBAAT%3B%3BAACrB%2CGA3CX%2CMAYI%2CKAiBE%2CQAcM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA5CX%2CMAYI%2CKAiBE%2CQAeM%2CYAAY%3BCAAS%3B%3BAACtB%2CGA7CX%2CMAYI%2CKAiBE%2CQAgBM%2CYAAY%3BCAAS%2CSAAS%2CWAAT%3B%3BAAEtB%2CGA%5C%2FCX%2CMAYI%2CKAiBE%2CQAkBM%2CMAAM%3BCAAS%3B%3BAAChB%2CGAhDX%2CMAYI%2CKAiBE%2CQAmBM%2CKAAK%3BCAAS%2CSAAS%2CWAAT%3B%3BAACf%2CGAjDX%2CMAYI%2CKAiBE%2CQAoBM%2CIAAI%3BCAAS%3B%3BAACd%2CGAlDX%2CMAYI%2CKAiBE%2CQAqBM%2CMAAM%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAChB%2CGAnDX%2CMAYI%2CKAiBE%2CQAsBM%2CKAAK%3BCAAS%2CSAAS%2CaAAT%3B%3BAACf%2CGApDX%2CMAYI%2CKAiBE%2CQAuBM%2CKAAK%3BCAAS%2CSAAS%2CmBAAT%3B%3BAACf%2CGArDX%2CMAYI%2CKAiBE%2CQAwBM%2CKAAK%3BCAAS%3B%3BAACf%2CGAtDX%2CMAYI%2CKAiBE%2CQAyBM%2CUAAU%3BCAAS%2CSAAS%2CYAAT%3B%3BAACpB%2CGAvDX%2CMAYI%2CKAiBE%2CQA0BM%2CMAAM%3BCAAS%2CSAAS%2CYAAT%3B%3BAAChB%2CGAxDX%2CMAYI%2CKAiBE%2CQA2BM%2COAAO%3BCAAS%2CSAAS%2CaAAT%3B%3BAACjB%2CGAzDX%2CMAYI%2CKAiBE%2CQA4BM%2CaAAa%3BCAAS%3B%3BAACvB%2CGA1DX%2CMAYI%2CKAiBE%2CQA6BM%2CSAAS%3BCAAS%3B%3BAACnB%2CGA3DX%2CMAYI%2CKAiBE%2CQA8BM%2CSAAS%3BCAAS%3B%3BAACnB%2CGA5DX%2CMAYI%2CKAiBE%2CQA%2BBM%2CaAAa%3BCAAS%3B%3BAACvB%2CGA7DX%2CMAYI%2CKAiBE%2CQAgCM%2CUAAU%3BCAAS%3B%3BAACpB%2CGA9DX%2CMAYI%2CKAiBE%2CQAiCM%2CMAAM%3BCAAS%3B%3BAAChB%2CGA%5C%2FDX%2CMAYI%2CKAiBE%2CQAkCM%2CSAAS%3BCAAS%3B%3BAACnB%2CGAhEX%2CMAYI%2CKAiBE%2CQAmCM%2CKAAK%3BCAAS%3B%3BAACf%2CGAjEX%2CMAYI%2CKAiBE%2CQAoCM%2CQAAQ%3BCAAS%2CSAAS%2CYAAT%3B%3BAAClB%2CGAlEX%2CMAYI%2CKAiBE%2CQAqCM%2CcAAc%3BCAAS%3B%3BAACxB%2CGAnEX%2CMAYI%2CKAiBE%2CQAsCM%2CYAAY%3BCAAS%2CSAAS%2CiBAAT%3B%3BAACtB%2CGApEX%2CMAYI%2CKAiBE%2CQAuCM%2CQAAQ%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAElB%2CGAtEX%2CMAYI%2CKAiBE%2CQAyCM%2CMAAM%3BCAAS%2CSAAS%2CYAAT%3B%3BAAEhB%2CGAxEX%2CMAYI%2CKAiBE%2CQA2CM%3BCAAc%2CSAAS%2CiBAAT%3B%3BAAMf%2CGA9EX%2CMAYI%2CKAgEI%2CQAEI%2COAAO%3BCAAS%3B%3BAACjB%2CGA%5C%2FEX%2CMAYI%2CKAgEI%2CQAGI%2CKAAK%3BCAAS%3B%3BAACf%2CGAhFX%2CMAYI%2CKAgEI%2CQAII%2CSAAS%3BCAAS%3B%3BAACnB%2CGAjFX%2CMAYI%2CKAgEI%2CQAKI%2CSAAS%3BCAAS%3B%3BAACnB%2CGAlFX%2CMAYI%2CKAgEI%2CQAMI%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAnFX%2CMAYI%2CKAgEI%2CQAOI%2CKAAK%3BCAAS%3B%3BAACf%2CGApFX%2CMAYI%2CKAgEI%2CQAQI%2CIAAI%3BCAAS%3B%3BAACd%2CGArFX%2CMAYI%2CKAgEI%2CQASI%2CIAAI%3BCAAS%3B%3BAACd%2CGAtFX%2CMAYI%2CKAgEI%2CQAUI%2COAAO%3BCAAS%3B%3BAACjB%2CGAvFX%2CMAYI%2CKAgEI%2CQAWI%2CQAAQ%3BCAAS%3B%3BAAClB%2CGAxFX%2CMAYI%2CKAgEI%2CQAYI%2CKAAK%3BCAAS%3B%3BAACf%2CGAzFX%2CMAYI%2CKAgEI%2CQAaI%2COAAO%3BCAAS%3B%3BAACjB%2CGA1FX%2CMAYI%2CKAgEI%2CQAcI%2CIAAI%3BCAAS%2CSAAS%2CSAAT%3B%3BAACd%2CGA3FX%2CMAYI%2CKAgEI%2CQAeI%2CQAAQ%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAClB%2CGA5FX%2CMAYI%2CKAgEI%2CQAgBI%2CKAAK%3BCAAS%3B%3BAACf%2CGA7FX%2CMAYI%2CKAgEI%2CQAiBI%2CKAAK%3BCAAS%3B%3BAACf%2CGA9FX%2CMAYI%2CKAgEI%2CQAkBI%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA%5C%2FFX%2CMAYI%2CKAgEI%2CQAmBI%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAhGX%2CMAYI%2CKAgEI%2CQAoBI%2CMAAM%3BCAAS%3B%3BAAChB%2CGAjGX%2CMAYI%2CKAgEI%2CQAqBI%2COAAO%3BCAAS%2CSAAS%2CYAAT%3B%3BAAKnB%2CGAtGT%2CMAYI%2CKAwFI%2CYAEE%2CKAAK%3BCAAS%3B%3BAACf%2CGAvGT%2CMAYI%2CKAwFI%2CYAGE%2CMAAM%3BCAAS%3B%3BAAChB%2CGAxGT%2CMAYI%2CKAwFI%2CYAIE%2CKAAK%3BCAAS%3B%3BAACf%2CGAzGT%2CMAYI%2CKAwFI%2CYAKE%2COAAO%3BCAAS%3B%3BAACjB%2CGA1GT%2CMAYI%2CKAwFI%2CYAME%2CYAAY%3BCAAS%2CSAAS%2CWAAT%3B%3BAACtB%2CGA3GT%2CMAYI%2CKAwFI%2CYAOE%2CYAAY%3BCAAS%2CSAAS%2CSAAT%3B%3BAACtB%2CGA5GT%2CMAYI%2CKAwFI%2CYAQE%2CYAAY%3BCAAS%3B%3BAACtB%2CGA7GT%2CMAYI%2CKAwFI%2CYASE%2CcAAc%3BCAAS%2CSAAS%2CaAAT%3B%3BAACxB%2CGA9GT%2CMAYI%2CKAwFI%2CYAUE%2CMAAM%3BCAAS%3B%3BAAChB%2CGA%5C%2FGT%2CMAYI%2CKAwFI%2CYAWE%2CSAAS%3BCAAS%2CSAAS%2CmBAAT%3B%3BAACnB%2CGAhHT%2CMAYI%2CKAwFI%2CYAYE%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAjHT%2CMAYI%2CKAwFI%2CYAaE%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAKhB%2CGAtHX%2CMAYI%2CKAwGI%2CQAEI%2CSAAS%3BCAAS%2CSAAS%2CeAAT%3B%3BAACnB%2CGAvHX%2CMAYI%2CKAwGI%2CQAGI%2COAAO%3BCAAS%3B%3BAACjB%2CGAxHX%2CMAYI%2CKAwGI%2CQAII%2CcAAc%3BCAAS%2CSAAS%2CcAAT%3B%3BAACxB%2CGAzHX%2CMAYI%2CKAwGI%2CQAKI%2CMAAM%3BCAAS%2CSAAS%2CWAAT%3B%3BAAKhB%2CGA9HX%2CMAYI%2CKAgHI%2COAEI%2CSAAS%3BCAAS%2CSAAS%2CyBAAT%3B%3BAACnB%2CGA%5C%2FHX%2CMAYI%2CKAgHI%2COAGI%2CiBAAiB%3BCAAS%2CSAAS%2CWAAT%3B%3BAAC3B%2CGAhIX%2CMAYI%2CKAgHI%2COAII%2CMAAM%3BCAAS%2CSAAS%2CwBAAT%3B%3BAAChB%2CGAjIX%2CMAYI%2CKAgHI%2COAKI%2CcAAc%3BCAAS%2CSAAS%2CsBAAT%3B%3BAAIxB%2CGArIX%2CMAYI%2CKAwHI%2CMACI%2CKAAK%3BCAAS%2CSAAS%2CcAAT%3B%3BAACf%2CGAtIX%2CMAYI%2CKAwHI%2CMAEI%2CMAAM%3BCAAS%3B%3BAAChB%2CGAvIX%2CMAYI%2CKAwHI%2CMAGI%2CWAAW%3BCAAS%3B%3BAACrB%2CGAxIX%2CMAYI%2CKAwHI%2CMAII%2CKAAK%3BCAAS%3B%3BAACf%2CGAzIX%2CMAYI%2CKAwHI%2CMAKI%2CMAAM%3BCAAS%3B%3BAAChB%2CGA1IX%2CMAYI%2CKAwHI%2CMAMI%2CKAAK%3BCAAS%3B%3BAACf%2CGA3IX%2CMAYI%2CKAwHI%2CMAOI%2CSAAS%3BCAAS%2CSAAS%2CgBAAT%3B%3BAACnB%2CGA5IX%2CMAYI%2CKAwHI%2CMAQI%2COAAO%3BCAAS%2CSAAS%2CeAAT%3B%3BAACjB%2CGA7IX%2CMAYI%2CKAwHI%2CMASI%2CGAAG%3BCAAW%2CSAAS%2CcAAT%3B%3BAACf%2CGA9IX%2CMAYI%2CKAwHI%2CMAUI%2CKAAK%3BCAAS%2CSAAS%2CYAAT%3B%3BAACf%2CGA%5C%2FIX%2CMAYI%2CKAwHI%2CMAWI%2CKAAK%3BCAAS%2CSAAS%2CWAAT%3B%3BAAGnB%2CGAlJP%2CMAYI%2CKAsII%2CSAAS%3BCAAS%3B%3BAACnB%2CGAnJP%2CMAYI%2CKAuII%2CWAAW%3BCAAS%2CSAAS%2CaAAT%3B%3BAACrB%2CGApJP%2CMAYI%2CKAwII%2CaAAa%3BCAAS%2CSAAS%2CeAAT%3B%3BAAEvB%2CGAtJP%2CMAYI%2CKA0II%2CUAAU%3BCAAS%2CSAAS%2CiBAAT%3B%3BAACpB%2CGAvJP%2CMAYI%2CKA2II%2CUAAU%3BCAAS%3B%3BAAEpB%2CGAzJP%2CMAYI%2CKA6II%2CYAAY%3BCAAS%2CSAAS%2CcAAT%3B%3BAACtB%2CGA1JP%2CMAYI%2CKA8II%2CaAAa%3BCAAS%2CSAAS%2CeAAT%3B%3BAAGnB%2CGA7JX%2CMAYI%2CKAgJI%2CMACI%2CGAAG%3BCAAa%3B%3BAACjB%2CGA9JX%2CMAYI%2CKAgJI%2CMAEI%2CMAAM%3BCAAU%3B%3BAACjB%2CGA%5C%2FJX%2CMAYI%2CKAgJI%2CMAGI%2COAAO%3BCAAS%3B%3BAAIjB%2CGAnKX%2CMAYI%2CKAsJI%2CQACI%2CKAAK%3BCAAS%2CSAAS%2CaAAT%3B%3BAACf%2CGApKX%2CMAYI%2CKAsJI%2CQAEI%2COAAO%3BCAAS%2CSAAS%2CeAAT%3B%3BAACjB%2CGArKX%2CMAYI%2CKAsJI%2CQAGI%2CSAAS%3BCAAS%2CSAAS%2CaAAT%3B%3BAACnB%2CGAtKX%2CMAYI%2CKAsJI%2CQAII%2CKAAK%3BCAAS%2CSAAS%2CcAAT%3B%3BAACf%2CGAvKX%2CMAYI%2CKAsJI%2CQAKI%2CWAAW%3BCAAS%3B%3BAACrB%2CGAxKX%2CMAYI%2CKAsJI%2CQAMI%2CMAAM%3BCAAS%2CSAAS%2CcAAT%3B%3BAAChB%2CGAzKX%2CMAYI%2CKAsJI%2CQAOI%2CeAAe%3BCAAS%2CSAAS%2CsBAAT%3B%3BAACzB%2CGA1KX%2CMAYI%2CKAsJI%2CQAQI%2CaAAa%3BCAAS%2CSAAS%2CsBAAT%3B%3BAACvB%2CGA3KX%2CMAYI%2CKAsJI%2CQASI%2CQAAQ%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAClB%2CGA5KX%2CMAYI%2CKAsJI%2CQAUI%2CWAAW%3BCAAS%3B%3BAACrB%2CGA7KX%2CMAYI%2CKAsJI%2CQAWI%2CKAAK%3BCAAS%3B%3BAACf%2CGA9KX%2CMAYI%2CKAsJI%2CQAYI%2CMAAM%3BCAAS%3B%3BAAChB%2CGA%5C%2FKX%2CMAYI%2CKAsJI%2CQAaI%2CKAAK%3BCAAS%3B%3BAACf%2CGAhLX%2CMAYI%2CKAsJI%2CQAcI%2CKAAK%3BCAAS%3B%3BAACf%2CGAjLX%2CMAYI%2CKAsJI%2CQAeI%2CKAAK%3BCAAS%3B%3BAACf%2CGAlLX%2CMAYI%2CKAsJI%2CQAgBI%2CeAAe%3BCAAS%3B%3BAACzB%2CGAnLX%2CMAYI%2CKAsJI%2CQAiBI%2CMAAM%3BCAAS%2CSAAS%2CYAAT%22%7D */ +/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%5C%2Fwww%5C%2Flocalhost%5C%2Fcms%5C%2Fmodules%5C%2Fcms%5C%2Fui%5C%2Fthemes%5C%2Fdefault%5C%2Fstyle%5C%2Fopenrat-image.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAIQ%2CGAFH%2CMAEI%3BCACC%3BCACA%3B%3BAAGF%2CGAPH%2CMAOI%3BCACG%3BCACA%3B%3BAAGJ%2CGAZH%2CMAYI%3BCAEG%2CaAAa%2CgBAAb%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BCAGA%3B%3BAAEF%2CGA3BL%2CMAYI%2CKAeE%2COAAO%3BCAAS%3BCAAiB%3B%3BAAI5B%2CGA%5C%2FBX%2CMAYI%2CKAiBE%2CQAEM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGAhCX%2CMAYI%2CKAiBE%2CQAGM%2CYAAY%3BCAAS%2CSAAS%2CeAAT%3B%3BAACtB%2CGAjCX%2CMAYI%2CKAiBE%2CQAIM%2CUAAU%3BCAAS%3B%3BAACpB%2CGAlCX%2CMAYI%2CKAiBE%2CQAKM%2CUAAU%3BCAAS%2CSAAS%2CWAAT%3B%3BAACpB%2CGAnCX%2CMAYI%2CKAiBE%2CQAMM%2CQAAQ%3BCAAS%2CSAAS%2CWAAT%3B%3BAAClB%2CGApCX%2CMAYI%2CKAiBE%2CQAOM%2CQAAQ%3BCAAS%2CSAAS%2CYAAT%3B%3BAAClB%2CGArCX%2CMAYI%2CKAiBE%2CQAQM%2CUAAU%3BCAAS%2CSAAS%2CiBAAT%3B%3BAACpB%2CGAtCX%2CMAYI%2CKAiBE%2CQASM%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAvCX%2CMAYI%2CKAiBE%2CQAUM%2CYAAY%3BCAAS%3B%3BAACtB%2CGAxCX%2CMAYI%2CKAiBE%2CQAWM%2CYAAY%3BCAAS%3B%3BAACtB%2CGAzCX%2CMAYI%2CKAiBE%2CQAYM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA1CX%2CMAYI%2CKAiBE%2CQAaM%2CWAAW%3BCAAS%2CSAAS%2CqBAAT%3B%3BAACrB%2CGA3CX%2CMAYI%2CKAiBE%2CQAcM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA5CX%2CMAYI%2CKAiBE%2CQAeM%2CYAAY%3BCAAS%3B%3BAACtB%2CGA7CX%2CMAYI%2CKAiBE%2CQAgBM%2CYAAY%3BCAAS%2CSAAS%2CWAAT%3B%3BAACtB%2CGA9CX%2CMAYI%2CKAiBE%2CQAiBM%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA%5C%2FCX%2CMAYI%2CKAiBE%2CQAkBM%2CSAAS%3BCAAS%2CSAAS%2CeAAT%3B%3BAAEnB%2CGAjDX%2CMAYI%2CKAiBE%2CQAoBM%2CMAAM%3BCAAS%3B%3BAAChB%2CGAlDX%2CMAYI%2CKAiBE%2CQAqBM%2CKAAK%3BCAAS%2CSAAS%2CWAAT%3B%3BAACf%2CGAnDX%2CMAYI%2CKAiBE%2CQAsBM%2CIAAI%3BCAAS%3B%3BAACd%2CGApDX%2CMAYI%2CKAiBE%2CQAuBM%2CMAAM%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAChB%2CGArDX%2CMAYI%2CKAiBE%2CQAwBM%2CKAAK%3BCAAS%2CSAAS%2CaAAT%3B%3BAACf%2CGAtDX%2CMAYI%2CKAiBE%2CQAyBM%2CKAAK%3BCAAS%2CSAAS%2CmBAAT%3B%3BAACf%2CGAvDX%2CMAYI%2CKAiBE%2CQA0BM%2CKAAK%3BCAAS%3B%3BAACf%2CGAxDX%2CMAYI%2CKAiBE%2CQA2BM%2CUAAU%3BCAAS%2CSAAS%2CYAAT%3B%3BAACpB%2CGAzDX%2CMAYI%2CKAiBE%2CQA4BM%2CMAAM%3BCAAS%2CSAAS%2CYAAT%3B%3BAAChB%2CGA1DX%2CMAYI%2CKAiBE%2CQA6BM%2COAAO%3BCAAS%2CSAAS%2CaAAT%3B%3BAACjB%2CGA3DX%2CMAYI%2CKAiBE%2CQA8BM%2CaAAa%3BCAAS%3B%3BAACvB%2CGA5DX%2CMAYI%2CKAiBE%2CQA%2BBM%2CSAAS%3BCAAS%3B%3BAACnB%2CGA7DX%2CMAYI%2CKAiBE%2CQAgCM%2CSAAS%3BCAAS%3B%3BAACnB%2CGA9DX%2CMAYI%2CKAiBE%2CQAiCM%2CaAAa%3BCAAS%3B%3BAACvB%2CGA%5C%2FDX%2CMAYI%2CKAiBE%2CQAkCM%2CUAAU%3BCAAS%3B%3BAACpB%2CGAhEX%2CMAYI%2CKAiBE%2CQAmCM%2CMAAM%3BCAAS%3B%3BAAChB%2CGAjEX%2CMAYI%2CKAiBE%2CQAoCM%2CSAAS%3BCAAS%3B%3BAACnB%2CGAlEX%2CMAYI%2CKAiBE%2CQAqCM%2CKAAK%3BCAAS%3B%3BAACf%2CGAnEX%2CMAYI%2CKAiBE%2CQAsCM%2CQAAQ%3BCAAS%2CSAAS%2CYAAT%3B%3BAAClB%2CGApEX%2CMAYI%2CKAiBE%2CQAuCM%2CcAAc%3BCAAS%3B%3BAACxB%2CGArEX%2CMAYI%2CKAiBE%2CQAwCM%2CYAAY%3BCAAS%2CSAAS%2CiBAAT%3B%3BAACtB%2CGAtEX%2CMAYI%2CKAiBE%2CQAyCM%2CQAAQ%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAElB%2CGAxEX%2CMAYI%2CKAiBE%2CQA2CM%2CMAAM%3BCAAS%2CSAAS%2CYAAT%3B%3BAAEhB%2CGA1EX%2CMAYI%2CKAiBE%2CQA6CM%3BCAAc%2CSAAS%2CiBAAT%3B%3BAAMf%2CGAhFX%2CMAYI%2CKAkEI%2CQAEI%2COAAO%3BCAAS%3B%3BAACjB%2CGAjFX%2CMAYI%2CKAkEI%2CQAGI%2CKAAK%3BCAAS%3B%3BAACf%2CGAlFX%2CMAYI%2CKAkEI%2CQAII%2CSAAS%3BCAAS%3B%3BAACnB%2CGAnFX%2CMAYI%2CKAkEI%2CQAKI%2CSAAS%3BCAAS%3B%3BAACnB%2CGApFX%2CMAYI%2CKAkEI%2CQAMI%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGArFX%2CMAYI%2CKAkEI%2CQAOI%2CKAAK%3BCAAS%3B%3BAACf%2CGAtFX%2CMAYI%2CKAkEI%2CQAQI%2CIAAI%3BCAAS%3B%3BAACd%2CGAvFX%2CMAYI%2CKAkEI%2CQASI%2CIAAI%3BCAAS%3B%3BAACd%2CGAxFX%2CMAYI%2CKAkEI%2CQAUI%2COAAO%3BCAAS%3B%3BAACjB%2CGAzFX%2CMAYI%2CKAkEI%2CQAWI%2CQAAQ%3BCAAS%3B%3BAAClB%2CGA1FX%2CMAYI%2CKAkEI%2CQAYI%2CKAAK%3BCAAS%3B%3BAACf%2CGA3FX%2CMAYI%2CKAkEI%2CQAaI%2COAAO%3BCAAS%3B%3BAACjB%2CGA5FX%2CMAYI%2CKAkEI%2CQAcI%2CIAAI%3BCAAS%2CSAAS%2CSAAT%3B%3BAACd%2CGA7FX%2CMAYI%2CKAkEI%2CQAeI%2CQAAQ%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAClB%2CGA9FX%2CMAYI%2CKAkEI%2CQAgBI%2CKAAK%3BCAAS%3B%3BAACf%2CGA%5C%2FFX%2CMAYI%2CKAkEI%2CQAiBI%2CKAAK%3BCAAS%3B%3BAACf%2CGAhGX%2CMAYI%2CKAkEI%2CQAkBI%2CQAAQ%3BCAAS%3B%3BAAClB%2CGAjGX%2CMAYI%2CKAkEI%2CQAmBI%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAlGX%2CMAYI%2CKAkEI%2CQAoBI%2CMAAM%3BCAAS%3B%3BAAChB%2CGAnGX%2CMAYI%2CKAkEI%2CQAqBI%2COAAO%3BCAAS%2CSAAS%2CYAAT%3B%3BAAKnB%2CGAxGT%2CMAYI%2CKA0FI%2CYAEE%2CKAAK%3BCAAS%3B%3BAACf%2CGAzGT%2CMAYI%2CKA0FI%2CYAGE%2CMAAM%3BCAAS%3B%3BAAChB%2CGA1GT%2CMAYI%2CKA0FI%2CYAIE%2CKAAK%3BCAAS%3B%3BAACf%2CGA3GT%2CMAYI%2CKA0FI%2CYAKE%2COAAO%3BCAAS%3B%3BAACjB%2CGA5GT%2CMAYI%2CKA0FI%2CYAME%2CYAAY%3BCAAS%2CSAAS%2CWAAT%3B%3BAACtB%2CGA7GT%2CMAYI%2CKA0FI%2CYAOE%2CYAAY%3BCAAS%2CSAAS%2CSAAT%3B%3BAACtB%2CGA9GT%2CMAYI%2CKA0FI%2CYAQE%2CYAAY%3BCAAS%3B%3BAACtB%2CGA%5C%2FGT%2CMAYI%2CKA0FI%2CYASE%2CcAAc%3BCAAS%2CSAAS%2CaAAT%3B%3BAACxB%2CGAhHT%2CMAYI%2CKA0FI%2CYAUE%2CMAAM%3BCAAS%3B%3BAAChB%2CGAjHT%2CMAYI%2CKA0FI%2CYAWE%2CSAAS%3BCAAS%2CSAAS%2CmBAAT%3B%3BAACnB%2CGAlHT%2CMAYI%2CKA0FI%2CYAYE%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAClB%2CGAnHT%2CMAYI%2CKA0FI%2CYAaE%2CQAAQ%3BCAAS%2CSAAS%2CcAAT%3B%3BAAKhB%2CGAxHX%2CMAYI%2CKA0GI%2CQAEI%2CSAAS%3BCAAS%2CSAAS%2CeAAT%3B%3BAACnB%2CGAzHX%2CMAYI%2CKA0GI%2CQAGI%2COAAO%3BCAAS%3B%3BAACjB%2CGA1HX%2CMAYI%2CKA0GI%2CQAII%2CcAAc%3BCAAS%2CSAAS%2CcAAT%3B%3BAACxB%2CGA3HX%2CMAYI%2CKA0GI%2CQAKI%2CMAAM%3BCAAS%2CSAAS%2CWAAT%3B%3BAAKhB%2CGAhIX%2CMAYI%2CKAkHI%2COAEI%2CSAAS%3BCAAS%2CSAAS%2CyBAAT%3B%3BAACnB%2CGAjIX%2CMAYI%2CKAkHI%2COAGI%2CiBAAiB%3BCAAS%2CSAAS%2CWAAT%3B%3BAAC3B%2CGAlIX%2CMAYI%2CKAkHI%2COAII%2CMAAM%3BCAAS%2CSAAS%2CwBAAT%3B%3BAAChB%2CGAnIX%2CMAYI%2CKAkHI%2COAKI%2CcAAc%3BCAAS%2CSAAS%2CsBAAT%3B%3BAAIxB%2CGAvIX%2CMAYI%2CKA0HI%2CMACI%2CKAAK%3BCAAS%2CSAAS%2CcAAT%3B%3BAACf%2CGAxIX%2CMAYI%2CKA0HI%2CMAEI%2CMAAM%3BCAAS%3B%3BAAChB%2CGAzIX%2CMAYI%2CKA0HI%2CMAGI%2CWAAW%3BCAAS%3B%3BAACrB%2CGA1IX%2CMAYI%2CKA0HI%2CMAII%2CKAAK%3BCAAS%3B%3BAACf%2CGA3IX%2CMAYI%2CKA0HI%2CMAKI%2CMAAM%3BCAAS%3B%3BAAChB%2CGA5IX%2CMAYI%2CKA0HI%2CMAMI%2CKAAK%3BCAAS%3B%3BAACf%2CGA7IX%2CMAYI%2CKA0HI%2CMAOI%2CSAAS%3BCAAS%2CSAAS%2CgBAAT%3B%3BAACnB%2CGA9IX%2CMAYI%2CKA0HI%2CMAQI%2COAAO%3BCAAS%2CSAAS%2CeAAT%3B%3BAACjB%2CGA%5C%2FIX%2CMAYI%2CKA0HI%2CMASI%2CGAAG%3BCAAW%2CSAAS%2CcAAT%3B%3BAACf%2CGAhJX%2CMAYI%2CKA0HI%2CMAUI%2CKAAK%3BCAAS%2CSAAS%2CYAAT%3B%3BAACf%2CGAjJX%2CMAYI%2CKA0HI%2CMAWI%2CKAAK%3BCAAS%2CSAAS%2CWAAT%3B%3BAAGnB%2CGApJP%2CMAYI%2CKAwII%2CSAAS%3BCAAS%3B%3BAACnB%2CGArJP%2CMAYI%2CKAyII%2CWAAW%3BCAAS%2CSAAS%2CaAAT%3B%3BAACrB%2CGAtJP%2CMAYI%2CKA0II%2CaAAa%3BCAAS%2CSAAS%2CeAAT%3B%3BAAEvB%2CGAxJP%2CMAYI%2CKA4II%2CUAAU%3BCAAS%2CSAAS%2CiBAAT%3B%3BAACpB%2CGAzJP%2CMAYI%2CKA6II%2CUAAU%3BCAAS%3B%3BAAEpB%2CGA3JP%2CMAYI%2CKA%2BII%2CYAAY%3BCAAS%2CSAAS%2CcAAT%3B%3BAACtB%2CGA5JP%2CMAYI%2CKAgJI%2CaAAa%3BCAAS%2CSAAS%2CeAAT%3B%3BAAGnB%2CGA%5C%2FJX%2CMAYI%2CKAkJI%2CMACI%2CGAAG%3BCAAa%3B%3BAACjB%2CGAhKX%2CMAYI%2CKAkJI%2CMAEI%2CMAAM%3BCAAU%3B%3BAACjB%2CGAjKX%2CMAYI%2CKAkJI%2CMAGI%2COAAO%3BCAAS%3B%3BAAIjB%2CGArKX%2CMAYI%2CKAwJI%2CQACI%2CKAAK%3BCAAS%2CSAAS%2CaAAT%3B%3BAACf%2CGAtKX%2CMAYI%2CKAwJI%2CQAEI%2COAAO%3BCAAS%2CSAAS%2CeAAT%3B%3BAACjB%2CGAvKX%2CMAYI%2CKAwJI%2CQAGI%2CSAAS%3BCAAS%2CSAAS%2CaAAT%3B%3BAACnB%2CGAxKX%2CMAYI%2CKAwJI%2CQAII%2CKAAK%3BCAAS%2CSAAS%2CcAAT%3B%3BAACf%2CGAzKX%2CMAYI%2CKAwJI%2CQAKI%2CWAAW%3BCAAS%3B%3BAACrB%2CGA1KX%2CMAYI%2CKAwJI%2CQAMI%2CMAAM%3BCAAS%2CSAAS%2CcAAT%3B%3BAAChB%2CGA3KX%2CMAYI%2CKAwJI%2CQAOI%2CeAAe%3BCAAS%2CSAAS%2CsBAAT%3B%3BAACzB%2CGA5KX%2CMAYI%2CKAwJI%2CQAQI%2CaAAa%3BCAAS%2CSAAS%2CsBAAT%3B%3BAACvB%2CGA7KX%2CMAYI%2CKAwJI%2CQASI%2CQAAQ%3BCAAS%2CSAAS%2CiBAAT%3B%3BAAClB%2CGA9KX%2CMAYI%2CKAwJI%2CQAUI%2CWAAW%3BCAAS%3B%3BAACrB%2CGA%5C%2FKX%2CMAYI%2CKAwJI%2CQAWI%2CKAAK%3BCAAS%3B%3BAACf%2CGAhLX%2CMAYI%2CKAwJI%2CQAYI%2CMAAM%3BCAAS%3B%3BAAChB%2CGAjLX%2CMAYI%2CKAwJI%2CQAaI%2CKAAK%3BCAAS%3B%3BAACf%2CGAlLX%2CMAYI%2CKAwJI%2CQAcI%2CKAAK%3BCAAS%3B%3BAACf%2CGAnLX%2CMAYI%2CKAwJI%2CQAeI%2CKAAK%3BCAAS%3B%3BAACf%2CGApLX%2CMAYI%2CKAwJI%2CQAgBI%2CeAAe%3BCAAS%3B%3BAACzB%2CGArLX%2CMAYI%2CKAwJI%2CQAiBI%2CMAAM%3BCAAS%2CSAAS%2CYAAT%22%7D */ /* Include style: /default/style/openrat-info */ .or-info { position: relative; diff --git a/modules/cms/ui/themes/default/style/openrat.min.css b/modules/cms/ui/themes/default/style/openrat.min.css @@ -7,7 +7,7 @@ .or-fieldset{border: 0;display: flex;flex-direction: row;align-items: start;margin-top: 1em}.or-fieldset-label{flex: 1;font-size: 1em;text-align: right;padding-right: 1em;font-weight: normal}.or-fieldset-value{flex: 3}.or-fieldset-value > *{display: block;padding: 0.8em}@media only screen and (max-width: 65rem){.or-fieldset{flex-direction: column}.or-fieldset-label{flex: 1;width: 100%;text-align: left}.or-fieldset-value{flex: 1;width: 100%}} @font-face{font-family: 'Oxygen';font-style: normal;font-weight: 400;src: local('Oxygen Regular'), local('Oxygen-Regular'), url('../font/oxygen-v7-latin-regular.woff') format('woff2'), url('../font/oxygen-v7-latin-regular.woff') format('woff')}@font-face{font-family: 'Source Code Pro';font-style: normal;font-weight: 400;src: local('Source Code Pro'), local('SourceCodePro-Regular'), url('../font/source-code-pro-v8-latin-regular.woff2') format('woff2'), url('../font/source-code-pro-v8-latin-regular.woff') format('woff')}@font-face{font-family: 'Material Icons';font-style: normal;font-weight: 400;src: local('Material Icons'), local('MaterialIcons-Regular'), url('../font/MaterialIcons-Regular.woff2') format('woff2')} .or-form{display: flex;height: 100%;flex-direction: column;padding: 1em}.or-form-checkbox,.or-form-radio{margin-right: 1em;appearance: none;width: 1.5em;height: 1.5em;border: 1px solid}.or-form-checkbox{border-radius: 2px}.or-form-radio{border-radius: 0.75em}.or-form-headline{height: 2em}.or-form-content{flex-grow: 1;padding-bottom: 6em}.or-form-row{display: flex;align-items: center}.or-form-row .or-form-label{width: 25%}.or-form-row .or-form-input{width: 75%}@media only screen and (max-width: 65rem){.or-form-row{flex-direction: column}.or-form-row .or-form-label,.or-form-row .or-form-input{width: 100%}}.or-form-actionbar{height: 3em;position: sticky;bottom: 0;left: 0;right: 0;display: flex;justify-content: end;padding: 1em;height: auto}@media only screen and (max-width: 65rem){.or-form .or-act-form-apply{display: none}}.or-input{width: 85%;border: 0;border-width: 0;border-bottom: 1px solid;box-sizing: border-box;resize: vertical;padding: 0.5em;margin: 0;outline: none}.or-input--name{font-weight: bold}.or-input--filename,.or-input--extension{font-family: 'Source Code Pro', Monospace, Monospaced, Courier}.or-btn{padding: 0.2em;border: 1px solid #000;border-radius: .1em;-moz-border-radius: .1em;-webkit-border-radius: .1em;-khtml-border-radius: .1em;cursor: pointer}.or-btn--control{padding: 1em 2em;margin-left: 1.5em;min-width: 14em;border-radius: .5em;-moz-border-radius: .5em;-webkit-border-radius: .5em;-khtml-border-radius: .5em}@media only screen and (max-width: 65rem){.or-btn--control{padding: 1em 1em;min-width: 5em}}.or-btn--primary{font-weight: bold}@media only screen and (max-width: 65rem){.or-btn--secondary{min-width: 0}} -.or-image--rightshift{position: relative;left: 0.5em}.or-image--preview{max-width: 100%;overflow: auto}.or-image-icon{font-family: 'Material Icons';font-weight: normal;font-style: normal;display: inline-block;text-transform: none;letter-spacing: normal;word-wrap: normal;white-space: nowrap;direction: ltr;font-feature-settings: 'liga'}.or-image-icon--blank:after{content: "link";visibility: hidden}.or-image-icon--action-el_text:after{content: "spellcheck"}.or-image-icon--action-el_longtext:after{content: "view_headline"}.or-image-icon--action-el_select:after{content: "list"}.or-image-icon--action-el_number:after{content: "looks_one"}.or-image-icon--action-el_link:after{content: "call_made"}.or-image-icon--action-el_date:after{content: "date_range"}.or-image-icon--action-el_insert:after{content: "keyboard_return"}.or-image-icon--action-el_copy:after{content: "flip_to_back"}.or-image-icon--action-el_linkinfo:after{content: "info"}.or-image-icon--action-el_linkdate:after{content: "info"}.or-image-icon--action-el_code:after{content: "code"}.or-image-icon--action-el_dynamic:after{content: "play_circle_outline"}.or-image-icon--action-el_info:after{content: "info"}.or-image-icon--action-el_infodate:after{content: "info"}.or-image-icon--action-el_checkbox:after{content: "check_box"}.or-image-icon--action-image:after{content: "image"}.or-image-icon--action-link:after{content: "call_made"}.or-image-icon--action-url:after{content: "link"}.or-image-icon--action-alias:after{content: "bookmark_border"}.or-image-icon--action-text:after{content: "text_format"}.or-image-icon--action-page:after{content: "insert_drive_file"}.or-image-icon--action-file:after{content: "save"}.or-image-icon--action-modellist:after{content: "device_hub"}.or-image-icon--action-model:after{content: "device_hub"}.or-image-icon--action-folder:after{content: "folder_open"}.or-image-icon--action-languagelist:after{content: "language"}.or-image-icon--action-language:after{content: "language"}.or-image-icon--action-template:after{content: "receipt"}.or-image-icon--action-templatelist:after{content: "receipt"}.or-image-icon--action-grouplist:after{content: "group"}.or-image-icon--action-group:after{content: "group"}.or-image-icon--action-userlist:after{content: "person"}.or-image-icon--action-user:after{content: "person"}.or-image-icon--action-profile:after{content: "person_pin"}.or-image-icon--action-configuration:after{content: "settings"}.or-image-icon--action-projectlist:after{content: "account_balance"}.or-image-icon--action-project:after{content: "account_balance"}.or-image-icon--action-macro:after{content: "data_usage"}.or-image-icon--action-membership{content: "card_membership"}.or-image-icon--method-delete:after{content: "delete"}.or-image-icon--method-prop:after{content: "description"}.or-image-icon--method-settings:after{content: "settings"}.or-image-icon--method-password:after{content: "lock"}.or-image-icon--method-publish:after{content: "cloud_upload"}.or-image-icon--method-show:after{content: "slideshow"}.or-image-icon--method-src:after{content: "code"}.or-image-icon--method-acl:after{content: "https"}.or-image-icon--method-rights:after{content: "https"}.or-image-icon--method-history:after{content: "schedule"}.or-image-icon--method-mail:after{content: "mail"}.or-image-icon--method-search:after{content: "search"}.or-image-icon--method-add:after{content: "add_box"}.or-image-icon--method-preview:after{content: "desktop_windows"}.or-image-icon--method-edit:after{content: "spellcheck"}.or-image-icon--method-info:after{content: "info"}.or-image-icon--method-restore:after{content: "restore"}.or-image-icon--method-release:after{content: "check_circle"}.or-image-icon--method-login:after{content: "person"}.or-image-icon--method-logout:after{content: "person_off"}.or-image-icon--permission-read:after{content: "search"}.or-image-icon--permission-write:after{content: "spellcheck"}.or-image-icon--permission-prop:after{content: "description"}.or-image-icon--permission-delete:after{content: "delete"}.or-image-icon--permission-create_link:after{content: "call_made"}.or-image-icon--permission-create_page:after{content: "add_box"}.or-image-icon--permission-create_file:after{content: "save"}.or-image-icon--permission-create_folder:after{content: "folder_open"}.or-image-icon--permission-grant:after{content: "https"}.or-image-icon--permission-transmit:after{content: "perm_data_setting"}.or-image-icon--permission-publish:after{content: "cloud_upload"}.or-image-icon--permission-release:after{content: "check_circle"}.or-image-icon--status-released:after{content: "verified_user"}.or-image-icon--status-active:after{content: "grade"}.or-image-icon--status-authenticated:after{content: "lock_outline"}.or-image-icon--status-guest:after{content: "lock_open"}.or-image-icon--input-checkbox:after{content: "check_box_outline_blank"}.or-image-icon--input-checkbox-checked:after{content: "check_box"}.or-image-icon--input-radio:after{content: "radio_button_unchecked"}.or-image-icon--input-radio-checked:after{content: "radio_button_checked"}.or-image-icon--menu-tree:after{content: "account_tree"}.or-image-icon--menu-close:after{content: "close"}.or-image-icon--menu-fullscreen:after{content: "fullscreen"}.or-image-icon--menu-edit:after{content: "description"}.or-image-icon--menu-extra:after{content: "build"}.or-image-icon--menu-menu:after{content: "menu"}.or-image-icon--menu-minimize:after{content: "compare_arrows"}.or-image-icon--menu-qrcode:after{content: "phone_android"}.or-image-icon--menu-up:after{content: "chevron_left"}.or-image-icon--menu-back:after{content: "arrow_back"}.or-image-icon--menu-more:after{content: "more_vert"}.or-image-icon--visible:after{content: "visibility"}.or-image-icon--node-open:after{content: "expand_more"}.or-image-icon--node-closed:after{content: "chevron_right"}.or-image-icon--dropdown:after{content: "arrow_drop_down"}.or-image-icon--database:after{content: "storage"}.or-image-icon--arrow-left:after{content: "chevron_left"}.or-image-icon--arrow-right:after{content: "chevron_right"}.or-image-icon--form-ok:after{content: "done"}.or-image-icon--form-apply:after{content: "done"}.or-image-icon--form-cancel:after{content: "clear"}.or-image-icon--editor-bold:after{content: "format_bold"}.or-image-icon--editor-italic:after{content: "format_italic"}.or-image-icon--editor-headline:after{content: "format_size"}.or-image-icon--editor-help:after{content: "help_outline"}.or-image-icon--editor-fullscreen:after{content: "fullscreen"}.or-image-icon--editor-quote:after{content: "format_quote"}.or-image-icon--editor-unnumberedlist:after{content: "format_list_bulleted"}.or-image-icon--editor-numberedlist:after{content: "format_list_numbered"}.or-image-icon--editor-preview:after{content: "desktop_windows"}.or-image-icon--editor-sidebyside:after{content: "flip"}.or-image-icon--editor-link:after{content: "link"}.or-image-icon--editor-image:after{content: "image"}.or-image-icon--editor-undo:after{content: "undo"}.or-image-icon--editor-redo:after{content: "redo"}.or-image-icon--editor-code:after{content: "code"}.or-image-icon--editor-horizontalrule:after{content: "remove"}.or-image-icon--editor-table:after{content: "view_comfy"} +.or-image--rightshift{position: relative;left: 0.5em}.or-image--preview{max-width: 100%;overflow: auto}.or-image-icon{font-family: 'Material Icons';font-weight: normal;font-style: normal;display: inline-block;text-transform: none;letter-spacing: normal;word-wrap: normal;white-space: nowrap;direction: ltr;font-feature-settings: 'liga'}.or-image-icon--blank:after{content: "link";visibility: hidden}.or-image-icon--action-el_text:after{content: "spellcheck"}.or-image-icon--action-el_longtext:after{content: "view_headline"}.or-image-icon--action-el_select:after{content: "list"}.or-image-icon--action-el_number:after{content: "looks_one"}.or-image-icon--action-el_link:after{content: "call_made"}.or-image-icon--action-el_date:after{content: "date_range"}.or-image-icon--action-el_insert:after{content: "keyboard_return"}.or-image-icon--action-el_copy:after{content: "flip_to_back"}.or-image-icon--action-el_linkinfo:after{content: "info"}.or-image-icon--action-el_linkdate:after{content: "info"}.or-image-icon--action-el_code:after{content: "code"}.or-image-icon--action-el_dynamic:after{content: "play_circle_outline"}.or-image-icon--action-el_info:after{content: "info"}.or-image-icon--action-el_infodate:after{content: "info"}.or-image-icon--action-el_checkbox:after{content: "check_box"}.or-image-icon--action-el_data:after{content: "receipt"}.or-image-icon--action-el_coord:after{content: "edit_location"}.or-image-icon--action-image:after{content: "image"}.or-image-icon--action-link:after{content: "call_made"}.or-image-icon--action-url:after{content: "link"}.or-image-icon--action-alias:after{content: "bookmark_border"}.or-image-icon--action-text:after{content: "text_format"}.or-image-icon--action-page:after{content: "insert_drive_file"}.or-image-icon--action-file:after{content: "save"}.or-image-icon--action-modellist:after{content: "device_hub"}.or-image-icon--action-model:after{content: "device_hub"}.or-image-icon--action-folder:after{content: "folder_open"}.or-image-icon--action-languagelist:after{content: "language"}.or-image-icon--action-language:after{content: "language"}.or-image-icon--action-template:after{content: "receipt"}.or-image-icon--action-templatelist:after{content: "receipt"}.or-image-icon--action-grouplist:after{content: "group"}.or-image-icon--action-group:after{content: "group"}.or-image-icon--action-userlist:after{content: "person"}.or-image-icon--action-user:after{content: "person"}.or-image-icon--action-profile:after{content: "person_pin"}.or-image-icon--action-configuration:after{content: "settings"}.or-image-icon--action-projectlist:after{content: "account_balance"}.or-image-icon--action-project:after{content: "account_balance"}.or-image-icon--action-macro:after{content: "data_usage"}.or-image-icon--action-membership{content: "card_membership"}.or-image-icon--method-delete:after{content: "delete"}.or-image-icon--method-prop:after{content: "description"}.or-image-icon--method-settings:after{content: "settings"}.or-image-icon--method-password:after{content: "lock"}.or-image-icon--method-publish:after{content: "cloud_upload"}.or-image-icon--method-show:after{content: "slideshow"}.or-image-icon--method-src:after{content: "code"}.or-image-icon--method-acl:after{content: "https"}.or-image-icon--method-rights:after{content: "https"}.or-image-icon--method-history:after{content: "schedule"}.or-image-icon--method-mail:after{content: "mail"}.or-image-icon--method-search:after{content: "search"}.or-image-icon--method-add:after{content: "add_box"}.or-image-icon--method-preview:after{content: "desktop_windows"}.or-image-icon--method-edit:after{content: "spellcheck"}.or-image-icon--method-info:after{content: "info"}.or-image-icon--method-restore:after{content: "restore"}.or-image-icon--method-release:after{content: "check_circle"}.or-image-icon--method-login:after{content: "person"}.or-image-icon--method-logout:after{content: "person_off"}.or-image-icon--permission-read:after{content: "search"}.or-image-icon--permission-write:after{content: "spellcheck"}.or-image-icon--permission-prop:after{content: "description"}.or-image-icon--permission-delete:after{content: "delete"}.or-image-icon--permission-create_link:after{content: "call_made"}.or-image-icon--permission-create_page:after{content: "add_box"}.or-image-icon--permission-create_file:after{content: "save"}.or-image-icon--permission-create_folder:after{content: "folder_open"}.or-image-icon--permission-grant:after{content: "https"}.or-image-icon--permission-transmit:after{content: "perm_data_setting"}.or-image-icon--permission-publish:after{content: "cloud_upload"}.or-image-icon--permission-release:after{content: "check_circle"}.or-image-icon--status-released:after{content: "verified_user"}.or-image-icon--status-active:after{content: "grade"}.or-image-icon--status-authenticated:after{content: "lock_outline"}.or-image-icon--status-guest:after{content: "lock_open"}.or-image-icon--input-checkbox:after{content: "check_box_outline_blank"}.or-image-icon--input-checkbox-checked:after{content: "check_box"}.or-image-icon--input-radio:after{content: "radio_button_unchecked"}.or-image-icon--input-radio-checked:after{content: "radio_button_checked"}.or-image-icon--menu-tree:after{content: "account_tree"}.or-image-icon--menu-close:after{content: "close"}.or-image-icon--menu-fullscreen:after{content: "fullscreen"}.or-image-icon--menu-edit:after{content: "description"}.or-image-icon--menu-extra:after{content: "build"}.or-image-icon--menu-menu:after{content: "menu"}.or-image-icon--menu-minimize:after{content: "compare_arrows"}.or-image-icon--menu-qrcode:after{content: "phone_android"}.or-image-icon--menu-up:after{content: "chevron_left"}.or-image-icon--menu-back:after{content: "arrow_back"}.or-image-icon--menu-more:after{content: "more_vert"}.or-image-icon--visible:after{content: "visibility"}.or-image-icon--node-open:after{content: "expand_more"}.or-image-icon--node-closed:after{content: "chevron_right"}.or-image-icon--dropdown:after{content: "arrow_drop_down"}.or-image-icon--database:after{content: "storage"}.or-image-icon--arrow-left:after{content: "chevron_left"}.or-image-icon--arrow-right:after{content: "chevron_right"}.or-image-icon--form-ok:after{content: "done"}.or-image-icon--form-apply:after{content: "done"}.or-image-icon--form-cancel:after{content: "clear"}.or-image-icon--editor-bold:after{content: "format_bold"}.or-image-icon--editor-italic:after{content: "format_italic"}.or-image-icon--editor-headline:after{content: "format_size"}.or-image-icon--editor-help:after{content: "help_outline"}.or-image-icon--editor-fullscreen:after{content: "fullscreen"}.or-image-icon--editor-quote:after{content: "format_quote"}.or-image-icon--editor-unnumberedlist:after{content: "format_list_bulleted"}.or-image-icon--editor-numberedlist:after{content: "format_list_numbered"}.or-image-icon--editor-preview:after{content: "desktop_windows"}.or-image-icon--editor-sidebyside:after{content: "flip"}.or-image-icon--editor-link:after{content: "link"}.or-image-icon--editor-image:after{content: "image"}.or-image-icon--editor-undo:after{content: "undo"}.or-image-icon--editor-redo:after{content: "redo"}.or-image-icon--editor-code:after{content: "code"}.or-image-icon--editor-horizontalrule:after{content: "remove"}.or-image-icon--editor-table:after{content: "view_comfy"} .or-info{position: relative}.or-info--open-on-hover:hover .or-info-popup,.or-info--open .or-info-popup{display: block}.or-info-popup{display: none;position: absolute;top: 1.2em;left: -2em;overflow: visible;border: 0.5em;font-size: 2em;border-radius: 0.3em;padding: 1.0em;z-index: 6}.or-info-popup > div{display: inline-block} .or-menu{display: flex;justify-content: space-between}@media only screen and (max-width: 70rem){.or-menu-shortcut{display: none}}@media only screen and (max-width: 85rem){.or-menu-label,.or-menu-dropdown-icon{display: none}}.or-menu-group{display: flex}.or-menu-group:nth-last-child(1) div.or-dropdown{right: 10px}.or-menu-group .or-image-icon{width: 1.1em}.or-menu-group .or-toolbar-icon{padding: 2px;margin-left: 10px}.or-menu-group .or-toolbar-icon.or-menu-category{cursor: default}.or-menu-group .or-toolbar-icon.or-search input{border: 0;width: 10em}.or-menu--is-open .or-menu-category--is-open > .or-dropdown{display: block} .or-navigation--is-open{display: flex;flex-direction: row}.or-navigation-filler{height: 100%;width: 12em;opacity: 0.8;filter: blur(10em)}@media only screen and (max-width: 55rem){.or-navigation-filler{width: 0}}.or-navigation-filler-icon{opacity: 1;font-size: 3em;position: absolute;right: 20px;top: 20px}.or-navigation-content{flex: 1;height: 100%;z-index: 3}.or-navigation-content .or-view{height: 100%}.or-navtree-node{margin: 0;padding: .1em 0;line-height: 18px;font-weight: normal;white-space: nowrap}@media only screen and (max-width: 55rem){.or-navtree-node{padding: .2em 0}}.or-navtree-node--selected{font-weight: bold}.or-navtree-node--selected > div > a{font-weight: bold}.or-navtree-node-control{width: 18px;min-width: 18px;height: 18px;float: left;cursor: pointer}.or-navtree-list{list-style-type: none;margin: 0;padding: 0}.or-navtree-list ul{margin-left: 18px} diff --git a/modules/language/Language_CN.class.php b/modules/language/Language_CN.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'This PHP-code-element contains PHP-Code which is executed while publishing the page. Only for experienced PHP Programmers!', 'EL_CODE'=>'Code', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Script', +'EL_CODE_MUSTACHE'=>'Mustache template', +'EL_COORD'=>'Location', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Data', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Coordinates', 'EL_COPY_DESC'=>'Copy a Value out of an element of a linked page', diff --git a/modules/language/Language_DE.class.php b/modules/language/Language_DE.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'Das <strong>PHP Code</strong>-Platzhalter enthält PHP-Code, welcher während der Generierung vom System ausgeführt wird. Mit diesem Platzhalter kann eine Seite sehr dynamisch aufgebaut werden, bleibt nach der Generierung aber statisch. Dieser Platzhaltertyp verlangt Kenntnisse in der Programmierung von PHP-Code!', 'EL_CODE'=>'Code', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Skript', +'EL_CODE_MUSTACHE'=>'Mustache-Template', +'EL_COORD'=>'Position', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Daten', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Koordinaten', 'EL_COPY_DESC'=>'Einen Wert aus einem Platzhalter einer verlinkten Seite kopieren', diff --git a/modules/language/Language_EN.class.php b/modules/language/Language_EN.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'This PHP-code-element contains PHP-Code which is executed while publishing the page. Only for experienced PHP Programmers!', 'EL_CODE'=>'Code', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Script', +'EL_CODE_MUSTACHE'=>'Mustache template', +'EL_COORD'=>'Location', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Data', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Coordinates', 'EL_COPY_DESC'=>'Copy a Value out of an element of a linked page', diff --git a/modules/language/Language_ES.class.php b/modules/language/Language_ES.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'Este <strong>PHP code</strong>-element contiene el PHP-Código se ejecuta que mientras que publica la página. ¡Solamente para los programadores experimentados de PHP!', 'EL_CODE'=>'Código', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Script', +'EL_CODE_MUSTACHE'=>'Mustache template', +'EL_COORD'=>'Location', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Data', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Coordinates', 'EL_COPY_DESC'=>'Copy a Value out of an element of a linked page', diff --git a/modules/language/Language_FR.class.php b/modules/language/Language_FR.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'Ce <strong>PHP code</strong>-element contient le PHP-Code qui est exécuté tout en éditant la page. Seulement pour les programmeurs expérimentés de PHP !', 'EL_CODE'=>'Code', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Script', +'EL_CODE_MUSTACHE'=>'Mustache template', +'EL_COORD'=>'Location', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Data', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Coordinates', 'EL_COPY_DESC'=>'Copy a Value out of an element of a linked page', diff --git a/modules/language/Language_IT.class.php b/modules/language/Language_IT.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'che questo <strong>PHP code</strong>-element contiene il PHP-Codice che è eseguito mentre pubblica la pagina. Soltanto per i programmatori con esperienza di PHP!', 'EL_CODE'=>'codice', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Script', +'EL_CODE_MUSTACHE'=>'Mustache template', +'EL_COORD'=>'Location', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Data', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Coordinates', 'EL_COPY_DESC'=>'Copy a Value out of an element of a linked page', diff --git a/modules/language/Language_RU.class.php b/modules/language/Language_RU.class.php @@ -162,7 +162,11 @@ public function get() { return [ 'EL_CODE_DESC'=>'Кодекс Это <strong> PHP-код </strong> - элемент содержит PHP кодекса, который выполняется при публикации страницы. Только для опытных программистов PHP! Копировать', 'EL_CODE'=>'Code', 'EL_CODE_PHP'=>'PHP', -'EL_CODE_JS'=>'Javascript', +'EL_CODE_JS'=>'Script', +'EL_CODE_MUSTACHE'=>'Mustache template', +'EL_COORD'=>'Location', +'EL_CHECKBOX'=>'Checkbox', +'EL_DATA'=>'Data', 'EL_COORD_OLC'=>'Open location code', 'EL_COORD_COORDINATES'=>'Coordinates', 'EL_COPY_DESC'=>'Copy a Value out of an element of a linked page', diff --git a/modules/language/Messages.class.php b/modules/language/Messages.class.php @@ -163,6 +163,10 @@ class Messages { const EL_CODE = 'EL_CODE'; const EL_CODE_PHP = 'EL_CODE_PHP'; const EL_CODE_JS = 'EL_CODE_JS'; + const EL_CODE_MUSTACHE = 'EL_CODE_MUSTACHE'; + const EL_COORD = 'EL_COORD'; + const EL_CHECKBOX = 'EL_CHECKBOX'; + const EL_DATA = 'EL_DATA'; const EL_COORD_OLC = 'EL_COORD_OLC'; const EL_COORD_COORDINATES = 'EL_COORD_COORDINATES'; const EL_COPY_DESC = 'EL_COPY_DESC'; diff --git a/modules/language/language.yml b/modules/language/language.yml @@ -702,7 +702,19 @@ EL_CODE: EL_CODE_PHP: en: PHP EL_CODE_JS: - en: Javascript + en: Script + de: Skript +EL_CODE_MUSTACHE: + en: Mustache template + de: Mustache-Template +EL_COORD: + en: Location + de: Position +EL_CHECKBOX: + en: Checkbox +EL_DATA: + en: Data + de: Daten EL_COORD_OLC: en: Open location code EL_COORD_COORDINATES: diff --git a/modules/template_engine/components/template.xsd b/modules/template_engine/components/template.xsd @@ -1,6 +1,1623 @@ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns="http://www.openrat.de/template" - targetNamespace="http://www.openrat.de/template" xmlns:xsd="http://www.w3.org/2001/XMLSchema" - elementFormDefault="qualified" attributeFormDefault="unqualified"> -<!-- generated by XSDGenerator. do not change manually --> -<xsd:element name="button" type="buttonType" /><xsd:complexType name="buttonType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="src" type="xsd:string" /><xsd:attribute name="text" type="xsd:string" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="checkbox" type="checkboxType" /><xsd:complexType name="checkboxType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="default" type="xsd:boolean" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="required" type="xsd:boolean" /><xsd:attribute name="remember" type="xsd:boolean" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="column" type="columnType" /><xsd:complexType name="columnType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="style" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="colspan" type="xsd:string" /><xsd:attribute name="rowspan" type="xsd:string" /><xsd:attribute name="header" type="xsd:boolean" /><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="url" type="xsd:string" /><xsd:attribute name="action" type="xsd:string" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="date" type="dateType" /><xsd:complexType name="dateType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="date" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="editor" type="editorType" /><xsd:complexType name="editorType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="mode" type="xsd:string" /><xsd:attribute name="extension" type="xsd:string" /><xsd:attribute name="mimetype" type="xsd:string" /><xsd:attribute name="prefix" type="xsd:string" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="else" type="elseType" /><xsd:complexType name="elseType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="fieldset" type="fieldsetType" /><xsd:complexType name="fieldsetType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="qrcode" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="form" type="formType" /><xsd:complexType name="formType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="method" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="action" type="xsd:string" /><xsd:attribute name="subaction" type="xsd:string" /><xsd:attribute name="forwardTo" type="xsd:string" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="languageid" type="xsd:string" /><xsd:attribute name="modelid" type="xsd:string" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="apply" type="xsd:boolean" /><xsd:attribute name="cancel" type="xsd:boolean" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="target" type="xsd:string" /><xsd:attribute name="enctype" type="xsd:string" /><xsd:attribute name="async" type="xsd:boolean" /><xsd:attribute name="autosave" type="xsd:boolean" /><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="afterSuccess" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="group" type="groupType" /><xsd:complexType name="groupType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="open" type="xsd:boolean" /><xsd:attribute name="show" type="xsd:boolean" /><xsd:attribute name="collapsible" type="xsd:boolean" /><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="description" type="xsd:string" /><xsd:attribute name="icon" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="hidden" type="hiddenType" /><xsd:complexType name="hiddenType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="prefix" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="if" type="ifType" /><xsd:complexType name="ifType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="true" type="xsd:string" /><xsd:attribute name="false" type="xsd:string" /><xsd:attribute name="contains" type="xsd:string" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="empty" type="xsd:string" /><xsd:attribute name="equals" type="xsd:string" /><xsd:attribute name="lessthan" type="xsd:string" /><xsd:attribute name="greaterthan" type="xsd:string" /><xsd:attribute name="present" type="xsd:string" /><xsd:attribute name="not" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="image" type="imageType" /><xsd:complexType name="imageType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="menu" type="xsd:string" /><xsd:attribute name="action" type="xsd:string" /><xsd:attribute name="method" type="xsd:string" /><xsd:attribute name="config" type="xsd:string" /><xsd:attribute name="file" type="xsd:string" /><xsd:attribute name="url" type="xsd:string" /><xsd:attribute name="icon" type="xsd:string" /><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="elementtype" type="xsd:string" /><xsd:attribute name="fileext" type="xsd:string" /><xsd:attribute name="tree" type="xsd:string" /><xsd:attribute name="notice" type="xsd:string" /><xsd:attribute name="size" type="xsd:string" /><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="symbol" type="xsd:string" /><xsd:attribute name="permission" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="include" type="includeType" /><xsd:complexType name="includeType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="file" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="input" type="inputType" /><xsd:complexType name="inputType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="index" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="prefix" type="xsd:string" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="size" type="xsd:string" /><xsd:attribute name="minlength" type="xsd:int" /><xsd:attribute name="maxlength" type="xsd:int" /><xsd:attribute name="onchange" type="xsd:string" /><xsd:attribute name="hint" type="xsd:string" /><xsd:attribute name="icon" type="xsd:string" /><xsd:attribute name="required" type="xsd:boolean" /><xsd:attribute name="focus" type="xsd:boolean" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="inputarea" type="inputareaType" /><xsd:complexType name="inputareaType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="rows" type="xsd:int" /><xsd:attribute name="cols" type="xsd:int" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="index" type="xsd:string" /><xsd:attribute name="onchange" type="xsd:string" /><xsd:attribute name="prefix" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="required" type="xsd:boolean" /><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="maxlength" type="xsd:int" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="insert" type="insertType" /><xsd:complexType name="insertType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="url" type="xsd:string" /><xsd:attribute name="function" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="label" type="labelType" /><xsd:complexType name="labelType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="for" type="xsd:string" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="key" type="xsd:string" /><xsd:attribute name="text" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="link" type="linkType" /><xsd:complexType name="linkType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="var1" type="xsd:string" /><xsd:attribute name="var2" type="xsd:string" /><xsd:attribute name="var3" type="xsd:string" /><xsd:attribute name="var4" type="xsd:string" /><xsd:attribute name="var5" type="xsd:string" /><xsd:attribute name="value1" type="xsd:string" /><xsd:attribute name="value2" type="xsd:string" /><xsd:attribute name="value3" type="xsd:string" /><xsd:attribute name="value4" type="xsd:string" /><xsd:attribute name="value5" type="xsd:string" /><xsd:attribute name="target" type="xsd:string" /><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="action" type="xsd:string" /><xsd:attribute name="subaction" type="xsd:string" /><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="url" type="xsd:string" /><xsd:attribute name="config" type="xsd:string" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="accesskey" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="anchor" type="xsd:string" /><xsd:attribute name="frame" type="xsd:string" /><xsd:attribute name="afterSuccess" type="xsd:string" /><xsd:attribute name="clickable" type="xsd:boolean" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="list" type="listType" /><xsd:complexType name="listType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="list" type="xsd:string" /><xsd:attribute name="items" type="xsd:string" /><xsd:attribute name="extract" type="xsd:boolean" /><xsd:attribute name="key" type="xsd:string" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="newline" type="newlineType" /><xsd:complexType name="newlineType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="output" type="outputType" /><xsd:complexType name="outputType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="part" type="partType" /><xsd:complexType name="partType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="tag" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="password" type="passwordType" /><xsd:complexType name="passwordType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="size" type="xsd:int" /><xsd:attribute name="maxlength" type="xsd:int" /><xsd:attribute name="minlength" type="xsd:string" /><xsd:attribute name="required" type="xsd:boolean" /><xsd:attribute name="hint" type="xsd:string" /><xsd:attribute name="prefix" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="qrcode" type="qrcodeType" /><xsd:complexType name="qrcodeType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="radio" type="radioType" /><xsd:complexType name="radioType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="readonly" type="xsd:boolean" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="prefix" type="xsd:string" /><xsd:attribute name="suffix" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="onchange" type="xsd:string" /><xsd:attribute name="children" type="xsd:string" /><xsd:attribute name="checked" type="xsd:string" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="radiobox" type="radioboxType" /><xsd:complexType name="radioboxType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="list" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="onchange" type="xsd:string" /><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="row" type="rowType" /><xsd:complexType name="rowType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="header" type="xsd:boolean" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="selectbox" type="selectboxType" /><xsd:complexType name="selectboxType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="list" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="default" type="xsd:string" /><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="addempty" type="xsd:boolean" /><xsd:attribute name="multiple" type="xsd:boolean" /><xsd:attribute name="size" type="xsd:int" /><xsd:attribute name="lang" type="xsd:boolean" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="selector" type="selectorType" /><xsd:complexType name="selectorType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="types" type="xsd:string" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="folderid" type="xsd:string" /><xsd:attribute name="param" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="set" type="setType" /><xsd:complexType name="setType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="var" type="xsd:string" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="key" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="table" type="tableType" /><xsd:complexType name="tableType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="filter" type="xsd:boolean" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="text" type="textType" /><xsd:complexType name="textType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="title" type="xsd:string" /><xsd:attribute name="type" type="xsd:string" /><xsd:attribute name="escape" type="xsd:boolean" /><xsd:attribute name="value" type="xsd:string" /><xsd:attribute name="label" type="xsd:string" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="upload" type="uploadType" /><xsd:complexType name="uploadType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="size" type="xsd:int" /><xsd:attribute name="name" type="xsd:string" /><xsd:attribute name="multiple" type="xsd:boolean" /><xsd:attribute name="class" type="xsd:string" /><xsd:attribute name="maxlength" type="xsd:int" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType><xsd:element name="user" type="userType" /><xsd:complexType name="userType"><xsd:choice maxOccurs="unbounded" minOccurs="0"><xsd:element ref="button" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="column" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="date" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="else" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="form" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="group" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="if" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="image" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="include" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="input" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="label" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="link" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="list" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="output" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="part" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="password" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="row" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="set" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="table" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="text" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0" /><xsd:element ref="user" maxOccurs="unbounded" minOccurs="0" /><xsd:any namespace="http://www.w3.org/1999/xhtml" /></xsd:choice><xsd:attribute name="user" type="xsd:string" /><xsd:attribute name="id" type="xsd:string" /><xsd:attribute name="context" type="xsd:string" /></xsd:complexType></xsd:schema> -\ No newline at end of file + targetNamespace="http://www.openrat.de/template" xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified"> + <!-- generated by XSDGenerator. do not change manually --> + <xsd:element name="button" type="buttonType"/> + <xsd:complexType name="buttonType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="src" type="xsd:string"/> + <xsd:attribute name="text" type="xsd:string"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="checkbox" type="checkboxType"/> + <xsd:complexType name="checkboxType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="default" type="xsd:boolean"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="required" type="xsd:boolean"/> + <xsd:attribute name="remember" type="xsd:boolean"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="column" type="columnType"/> + <xsd:complexType name="columnType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="style" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="colspan" type="xsd:string"/> + <xsd:attribute name="rowspan" type="xsd:string"/> + <xsd:attribute name="header" type="xsd:boolean"/> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="url" type="xsd:string"/> + <xsd:attribute name="action" type="xsd:string"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="date" type="dateType"/> + <xsd:complexType name="dateType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="date" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="editor" type="editorType"/> + <xsd:complexType name="editorType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="mode" type="xsd:string"/> + <xsd:attribute name="extension" type="xsd:string"/> + <xsd:attribute name="mimetype" type="xsd:string"/> + <xsd:attribute name="prefix" type="xsd:string"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="else" type="elseType"/> + <xsd:complexType name="elseType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="fieldset" type="fieldsetType"/> + <xsd:complexType name="fieldsetType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="qrcode" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="form" type="formType"/> + <xsd:complexType name="formType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="method" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="action" type="xsd:string"/> + <xsd:attribute name="subaction" type="xsd:string"/> + <xsd:attribute name="forwardTo" type="xsd:string"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="languageid" type="xsd:string"/> + <xsd:attribute name="modelid" type="xsd:string"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="apply" type="xsd:boolean"/> + <xsd:attribute name="cancel" type="xsd:boolean"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="target" type="xsd:string"/> + <xsd:attribute name="enctype" type="xsd:string"/> + <xsd:attribute name="async" type="xsd:boolean"/> + <xsd:attribute name="autosave" type="xsd:boolean"/> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="afterSuccess" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="group" type="groupType"/> + <xsd:complexType name="groupType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="open" type="xsd:boolean"/> + <xsd:attribute name="show" type="xsd:boolean"/> + <xsd:attribute name="collapsible" type="xsd:boolean"/> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="description" type="xsd:string"/> + <xsd:attribute name="icon" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="hidden" type="hiddenType"/> + <xsd:complexType name="hiddenType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="prefix" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="if" type="ifType"/> + <xsd:complexType name="ifType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="true" type="xsd:string"/> + <xsd:attribute name="false" type="xsd:string"/> + <xsd:attribute name="contains" type="xsd:string"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="empty" type="xsd:string"/> + <xsd:attribute name="equals" type="xsd:string"/> + <xsd:attribute name="lessthan" type="xsd:string"/> + <xsd:attribute name="greaterthan" type="xsd:string"/> + <xsd:attribute name="present" type="xsd:string"/> + <xsd:attribute name="not" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="image" type="imageType"/> + <xsd:complexType name="imageType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="menu" type="xsd:string"/> + <xsd:attribute name="action" type="xsd:string"/> + <xsd:attribute name="method" type="xsd:string"/> + <xsd:attribute name="config" type="xsd:string"/> + <xsd:attribute name="file" type="xsd:string"/> + <xsd:attribute name="url" type="xsd:string"/> + <xsd:attribute name="icon" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="elementtype" type="xsd:string"/> + <xsd:attribute name="fileext" type="xsd:string"/> + <xsd:attribute name="tree" type="xsd:string"/> + <xsd:attribute name="notice" type="xsd:string"/> + <xsd:attribute name="size" type="xsd:string"/> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="symbol" type="xsd:string"/> + <xsd:attribute name="permission" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="include" type="includeType"/> + <xsd:complexType name="includeType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="file" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="input" type="inputType"/> + <xsd:complexType name="inputType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="index" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="prefix" type="xsd:string"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="size" type="xsd:string"/> + <xsd:attribute name="minlength" type="xsd:int"/> + <xsd:attribute name="maxlength" type="xsd:int"/> + <xsd:attribute name="onchange" type="xsd:string"/> + <xsd:attribute name="hint" type="xsd:string"/> + <xsd:attribute name="icon" type="xsd:string"/> + <xsd:attribute name="required" type="xsd:boolean"/> + <xsd:attribute name="focus" type="xsd:boolean"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="inputarea" type="inputareaType"/> + <xsd:complexType name="inputareaType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="rows" type="xsd:int"/> + <xsd:attribute name="cols" type="xsd:int"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="index" type="xsd:string"/> + <xsd:attribute name="onchange" type="xsd:string"/> + <xsd:attribute name="prefix" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="required" type="xsd:boolean"/> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="maxlength" type="xsd:int"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="insert" type="insertType"/> + <xsd:complexType name="insertType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="url" type="xsd:string"/> + <xsd:attribute name="function" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="label" type="labelType"/> + <xsd:complexType name="labelType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="for" type="xsd:string"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="key" type="xsd:string"/> + <xsd:attribute name="text" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="link" type="linkType"/> + <xsd:complexType name="linkType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="var1" type="xsd:string"/> + <xsd:attribute name="var2" type="xsd:string"/> + <xsd:attribute name="var3" type="xsd:string"/> + <xsd:attribute name="var4" type="xsd:string"/> + <xsd:attribute name="var5" type="xsd:string"/> + <xsd:attribute name="value1" type="xsd:string"/> + <xsd:attribute name="value2" type="xsd:string"/> + <xsd:attribute name="value3" type="xsd:string"/> + <xsd:attribute name="value4" type="xsd:string"/> + <xsd:attribute name="value5" type="xsd:string"/> + <xsd:attribute name="target" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="action" type="xsd:string"/> + <xsd:attribute name="subaction" type="xsd:string"/> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="url" type="xsd:string"/> + <xsd:attribute name="config" type="xsd:string"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="accesskey" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="anchor" type="xsd:string"/> + <xsd:attribute name="frame" type="xsd:string"/> + <xsd:attribute name="afterSuccess" type="xsd:string"/> + <xsd:attribute name="clickable" type="xsd:boolean"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="list" type="listType"/> + <xsd:complexType name="listType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="list" type="xsd:string"/> + <xsd:attribute name="items" type="xsd:string"/> + <xsd:attribute name="extract" type="xsd:boolean"/> + <xsd:attribute name="key" type="xsd:string"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="newline" type="newlineType"/> + <xsd:complexType name="newlineType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="output" type="outputType"/> + <xsd:complexType name="outputType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="part" type="partType"/> + <xsd:complexType name="partType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="tag" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="password" type="passwordType"/> + <xsd:complexType name="passwordType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="size" type="xsd:int"/> + <xsd:attribute name="maxlength" type="xsd:int"/> + <xsd:attribute name="minlength" type="xsd:string"/> + <xsd:attribute name="required" type="xsd:boolean"/> + <xsd:attribute name="hint" type="xsd:string"/> + <xsd:attribute name="prefix" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="qrcode" type="qrcodeType"/> + <xsd:complexType name="qrcodeType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="radio" type="radioType"/> + <xsd:complexType name="radioType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="readonly" type="xsd:boolean"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="prefix" type="xsd:string"/> + <xsd:attribute name="suffix" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="onchange" type="xsd:string"/> + <xsd:attribute name="children" type="xsd:string"/> + <xsd:attribute name="checked" type="xsd:string"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="radiobox" type="radioboxType"/> + <xsd:complexType name="radioboxType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="list" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="onchange" type="xsd:string"/> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="row" type="rowType"/> + <xsd:complexType name="rowType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="header" type="xsd:boolean"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="selectbox" type="selectboxType"/> + <xsd:complexType name="selectboxType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="list" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="default" type="xsd:string"/> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="addempty" type="xsd:boolean"/> + <xsd:attribute name="multiple" type="xsd:boolean"/> + <xsd:attribute name="size" type="xsd:int"/> + <xsd:attribute name="lang" type="xsd:boolean"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="selector" type="selectorType"/> + <xsd:complexType name="selectorType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="types" type="xsd:string"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="folderid" type="xsd:string"/> + <xsd:attribute name="param" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="set" type="setType"/> + <xsd:complexType name="setType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="var" type="xsd:string"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="key" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="table" type="tableType"/> + <xsd:complexType name="tableType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="filter" type="xsd:boolean"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="text" type="textType"/> + <xsd:complexType name="textType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="title" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + <xsd:attribute name="escape" type="xsd:boolean"/> + <xsd:attribute name="value" type="xsd:string"/> + <xsd:attribute name="label" type="xsd:string"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="upload" type="uploadType"/> + <xsd:complexType name="uploadType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="size" type="xsd:int"/> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="multiple" type="xsd:boolean"/> + <xsd:attribute name="class" type="xsd:string"/> + <xsd:attribute name="maxlength" type="xsd:int"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> + <xsd:element name="user" type="userType"/> + <xsd:complexType name="userType"> + <xsd:choice maxOccurs="unbounded" minOccurs="0"> + <xsd:element ref="button" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="checkbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="column" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="date" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="editor" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="else" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="fieldset" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="form" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="group" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="hidden" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="if" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="image" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="include" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="input" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="inputarea" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="insert" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="label" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="link" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="list" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="newline" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="output" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="part" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="password" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="qrcode" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radio" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="radiobox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="row" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selectbox" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="selector" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="set" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="table" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="text" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="upload" maxOccurs="unbounded" minOccurs="0"/> + <xsd:element ref="user" maxOccurs="unbounded" minOccurs="0"/> + <xsd:any namespace="http://www.w3.org/1999/xhtml"/> + </xsd:choice> + <xsd:attribute name="user" type="xsd:string"/> + <xsd:attribute name="id" type="xsd:string"/> + <xsd:attribute name="context" type="xsd:string"/> + </xsd:complexType> +</xsd:schema> +\ No newline at end of file