2024-04-19 12:23:10 +02:00
|
|
|
#!/usr/bin/env php
|
2024-04-18 14:52:50 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eTemplate2 XML schema
|
|
|
|
* 1. we read the legacy etemplate2.dtd converted by PHPStorm (Tools > XML Actions > Convert Schema) to Relax NG with an XML parser
|
|
|
|
* 2. remove the obsolete widgets
|
2024-06-17 10:32:03 +02:00
|
|
|
* 3. add new widgets from components.json file generated by our documentation build (and enhanced with attributes inherited from Shoelace )
|
2024-04-18 14:52:50 +02:00
|
|
|
* 4. apply overwrites below
|
|
|
|
* 5. output it again as new eTemplate2 Relax NG schema
|
|
|
|
* 6. convert it again via PHPStorm (Tools > XML Actions > Convert Schema) to etemplate2.0.dtd referenced in our xet files
|
|
|
|
* (until we figure out how to use RELAX NG direct)
|
|
|
|
*
|
|
|
|
* Open problems:
|
2024-06-17 10:32:03 +02:00
|
|
|
* - components.json has no information about element hierarchy: not all elements are allowed be contained by an arbitrary element
|
2024-04-18 14:52:50 +02:00
|
|
|
* - Relax NG can define attribute types, need to check how with match our internal types to the xet attributes
|
|
|
|
*
|
|
|
|
* @link https://en.wikipedia.org/wiki/RELAX_NG RELAX NG (REgular LAnguage for XML Next Generation)
|
|
|
|
* @link https://relaxng.org/tutorial-20011203.html RELAX NG Tutorial
|
|
|
|
* @link https://github.com/EGroupware/etemplate/blob/6767672516524444847207d50b21ba59ff7f1540/js/widget_browser.js old widget-browser dtd generation
|
|
|
|
* @link https://www.jetbrains.com/help/phpstorm/validating-web-content-files.html JetBrains DTD, XML-Schema or RelaxNG support
|
|
|
|
*/
|
2024-06-17 10:32:03 +02:00
|
|
|
if (!file_exists($file=__DIR__."/etemplate2/_data/components.json"))
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
die("Missing '$file file!");
|
|
|
|
}
|
2024-06-17 10:32:03 +02:00
|
|
|
if (!($components=json_decode(file_get_contents($file), true)))
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
die("Could not load '$file'!");
|
|
|
|
}
|
|
|
|
if (!file_exists(($file = __DIR__."/etemplate2/etemplate2.rng")))
|
|
|
|
{
|
|
|
|
die("Missing file '$file', you need to generate it from 'etemplate2.dtd' e.g. with PHPStorm!");
|
|
|
|
}
|
|
|
|
$grammar = new SimpleXMLElement(file_get_contents($file));
|
2024-04-19 12:23:10 +02:00
|
|
|
$widgets_choice = getByName($grammar, 'Widgets')->choice;
|
2024-04-18 14:52:50 +02:00
|
|
|
/**
|
|
|
|
* Manually overwriting problems / errors in what we automatically generate
|
2024-04-19 12:23:10 +02:00
|
|
|
* Use class-name (e.g. Et2Button) so all descends inherit the fix, use-tag to fix only specific widget.
|
2024-04-18 14:52:50 +02:00
|
|
|
* @todo fix in TS sources
|
|
|
|
*/
|
|
|
|
$overwrites = [
|
|
|
|
// RE to remove no longer used legacy widgets not matching "et2-<legacy-name>"
|
|
|
|
'.remove' => '/^(button|dropdown_button|int|float|menu|select|taglist|tree|passwd|date|time|ajax_select|vfs-(select|path))/',
|
2024-06-17 10:32:03 +02:00
|
|
|
'*' => [ // all widgets, DOM attributes are NOT reported
|
2024-04-18 14:52:50 +02:00
|
|
|
'.attrs' => [
|
|
|
|
'id' => 'string', // commented out with some reasoning in Et2Widget
|
|
|
|
'width' => 'string',
|
2024-06-17 10:32:03 +02:00
|
|
|
'height' => 'string',
|
|
|
|
'slot' => 'string', // would be nice, if we could list parent slots ...
|
|
|
|
'style' => 'string',
|
|
|
|
'span' => "'all' | '2' | '3' | '4'", // eT2 grid span
|
2024-04-18 14:52:50 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'Et2InputWidget' => [
|
|
|
|
'.attrs' => [
|
2024-06-17 10:32:03 +02:00
|
|
|
'tabindex' => 'int', // not reported, probably because DOM attributeq
|
2024-04-18 14:52:50 +02:00
|
|
|
],
|
|
|
|
],
|
2024-06-17 10:32:03 +02:00
|
|
|
'et2-textbox' => [
|
|
|
|
'.children' => ['.quantity' => 'optional', 'et2-image'],
|
2024-04-18 14:52:50 +02:00
|
|
|
],
|
|
|
|
'et2-date' => [
|
|
|
|
'.attrs' => [
|
|
|
|
'yearRange' => 'string',
|
|
|
|
'dataFormat' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'et2-hbox' => [
|
|
|
|
'.children' => 'Widgets',
|
|
|
|
],
|
|
|
|
'et2-vbox' => [
|
|
|
|
'.children' => 'Widgets',
|
|
|
|
],
|
|
|
|
'et2-box' => [
|
|
|
|
'.children' => 'Widgets',
|
|
|
|
],
|
|
|
|
'Et2Box' => [ // inherited by et2-(v|h)box too
|
|
|
|
'.attrs' => [
|
2024-06-17 10:32:03 +02:00
|
|
|
'overflow' => 'string', // DOM attributes
|
2024-04-18 14:52:50 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'et2-tabbox' => [
|
|
|
|
'.children' => ['tabs','tabpanels'], // add legacy children tabs and tabpanels
|
|
|
|
'.attrs' => [
|
|
|
|
'cfDisabled' => 'boolean', // implemented on server-side
|
|
|
|
'cfTypeFilter' => 'string',
|
|
|
|
'cfPrivateTab' => 'boolean',
|
|
|
|
'cfPrepend' => 'string',
|
|
|
|
'cfExclude' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'et2-tab' => null, // remove/skip, as we currently use legacy tabs and tabpanels
|
|
|
|
'et2-tab-panel' => null,
|
|
|
|
'et2-details' => [
|
|
|
|
'.children' => 'Widgets',
|
|
|
|
],
|
2024-08-14 15:25:02 +02:00
|
|
|
'et2-groupbox' => [
|
|
|
|
'.children' => 'Widgets',
|
|
|
|
],
|
2024-04-18 14:52:50 +02:00
|
|
|
'et2-split' => [
|
|
|
|
'.children' => 'Widgets',
|
|
|
|
],
|
2024-04-19 12:23:10 +02:00
|
|
|
'et2-url-email' => [
|
|
|
|
'.attrs' => [
|
|
|
|
'emailDisplay' => 'string', // can't see that anywhere in the code, but in addressbook.index.xet
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'et2-nextmatch-header-custom' => [
|
2024-06-17 10:32:03 +02:00
|
|
|
'.attrs' => [
|
|
|
|
'emptyLabel' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'Et2Button' => [
|
|
|
|
'.attrs' => [
|
|
|
|
'image' => 'string',
|
|
|
|
'noSubmit' => 'boolean',
|
|
|
|
'hideOnReadonly' => 'boolean',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'Et2ButtonIcon' => 'Et2Button', // no inheritance from Et2Button, but Et2ButtonMixin, which is not recognised
|
2024-05-03 08:00:16 +02:00
|
|
|
'Et2ButtonScroll' => 'Et2Button',
|
2024-06-17 10:32:03 +02:00
|
|
|
'Et2Select' => [
|
|
|
|
'.attrs' => [
|
|
|
|
'rows' => 'int',
|
|
|
|
'tabindex' => 'int',
|
|
|
|
'allowFreeEntries' => 'boolean',
|
|
|
|
],
|
|
|
|
],
|
2024-04-23 18:14:14 +02:00
|
|
|
'et2-select' => [
|
|
|
|
'.children' => ['.quantity' => 'zeroOrMore', 'option'],
|
|
|
|
],
|
2024-06-17 10:32:03 +02:00
|
|
|
'et2-email' => [
|
|
|
|
'.attrs' => [
|
|
|
|
'onTagClick' => 'function',
|
|
|
|
'multiple' => 'boolean',
|
|
|
|
],
|
|
|
|
],
|
2024-04-18 14:52:50 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fixes on the existing legacy DTD
|
|
|
|
*/
|
|
|
|
// make overlay the only allowed start element
|
|
|
|
removeNode($grammar->start->choice);
|
|
|
|
$grammar->start->addChild('ref')->addAttribute('name', 'overlay');
|
2024-04-19 12:23:10 +02:00
|
|
|
// fix legacy widgets: attribute-name => (array of) widgets
|
|
|
|
$missing_legacy_attributes = [
|
2024-04-23 10:43:06 +02:00
|
|
|
'app' => 'customfields-types',
|
2024-04-19 12:23:10 +02:00
|
|
|
'callback' => 'vfs-upload',
|
2024-04-23 10:43:06 +02:00
|
|
|
'class' => ['nextmatch','nextmatch-header', 'nextmatch-customfields', 'nextmatch-sortheader', 'customfields-types'],
|
|
|
|
'disabled' => 'nextmatch',
|
|
|
|
'exclude' => 'customfields',
|
|
|
|
'id' => [
|
2024-04-19 12:23:10 +02:00
|
|
|
'.optional' => false,
|
2024-04-23 10:43:06 +02:00
|
|
|
'nextmatch-header', 'nextmatch-sortheader', 'nextmatch-customfields', 'nextmatch', 'customfields-types',
|
|
|
|
],
|
2024-04-19 12:23:10 +02:00
|
|
|
'header_left' => 'nextmatch',
|
|
|
|
'header_right' => 'nextmatch',
|
2024-04-23 10:43:06 +02:00
|
|
|
'header_row' => 'nextmatch',
|
2024-04-19 12:23:10 +02:00
|
|
|
'label' => [
|
2024-04-23 10:43:06 +02:00
|
|
|
'.optional' => false,
|
|
|
|
'nextmatch-header', 'nextmatch-sortheader',
|
|
|
|
],
|
|
|
|
'maxWidth' => 'column',
|
|
|
|
'minWidth' => 'column',
|
|
|
|
'onchange' => 'customfields-types',
|
|
|
|
'onselect' => 'nextmatch',
|
2024-04-23 18:14:14 +02:00
|
|
|
'value' => 'option',
|
2024-04-23 10:43:06 +02:00
|
|
|
'readonly' => 'customfields-types',
|
2024-04-19 12:23:10 +02:00
|
|
|
'sortmode' => [
|
|
|
|
'.values' => ['ASC', 'DESC'],
|
|
|
|
'.default' => 'ASC',
|
|
|
|
'nextmatch-sortheader',
|
|
|
|
],
|
2024-04-23 10:43:06 +02:00
|
|
|
'span' => ['nextmatch', 'nextmatch-header', 'nextmatch-customfields', 'nextmatch-sortheader', 'customfields-types'],
|
2024-04-23 18:14:14 +02:00
|
|
|
'statustext' => ['tab', 'customfields-types', 'option'],
|
2024-04-23 10:43:06 +02:00
|
|
|
'template' => ['.optional' => false, 'nextmatch'],
|
|
|
|
'tab' => 'customfields',
|
2024-04-19 12:23:10 +02:00
|
|
|
];
|
|
|
|
foreach($missing_legacy_attributes as $attribute => $widgets)
|
|
|
|
{
|
|
|
|
foreach((array)$widgets as $key => $widget)
|
|
|
|
{
|
|
|
|
if (!is_int($key)) continue; // .(values|default)
|
|
|
|
// widget not found add it plus it's attribute-list
|
|
|
|
if (!getByName($grammar, $widget))
|
|
|
|
{
|
|
|
|
$widgets_choice->addChild('ref')->addAttribute('name', $widget);
|
|
|
|
($define = $grammar->addChild('define'))->addAttribute('name', $widget);
|
|
|
|
($element = $define->addChild('element'))->addAttribute('name', $widget);
|
|
|
|
$element->addChild('ref')->addAttribute('name', 'attlist.'.$widget);
|
|
|
|
$element->addChild('empty'); // no children allowed
|
|
|
|
$grammar->addChild('define')->addAttribute('name', 'attlist.'.$widget);
|
|
|
|
}
|
|
|
|
// add (optional) attribute
|
|
|
|
if (!is_array($widgets) || (!isset($widgets['.optional']) || $widgets['.optional'] === true))
|
|
|
|
{
|
|
|
|
$attr = getByName($grammar, 'attlist.'.$widget)->addChild('optional')
|
|
|
|
->addChild('attribute');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$attr = getByName($grammar, 'attlist.'.$widget)->addChild('attribute');
|
|
|
|
}
|
|
|
|
$attr->addAttribute('name', $attribute);
|
|
|
|
// add values and/or default
|
|
|
|
if (is_array($widgets) && isset($widgets['.values']))
|
|
|
|
{
|
|
|
|
$choice = $attr->addChild('choice');
|
|
|
|
foreach($widgets['.values'] as $value)
|
|
|
|
{
|
|
|
|
$choice->addChild('value', $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (is_array($widgets) && isset($widgets['.default']))
|
|
|
|
{
|
|
|
|
$attr->addAttribute('a:defaultValue', $widgets['.default'], 'http://relaxng.org/ns/compatibility/annotations/1.0');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-18 14:52:50 +02:00
|
|
|
|
|
|
|
// build a hashed version of all classes, members and attributes to e.g. find ancestors
|
|
|
|
$classes = [];
|
2024-06-17 10:32:03 +02:00
|
|
|
foreach($components as $component)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
foreach (['members', 'attributes', 'properties'] as $collection)
|
|
|
|
{
|
|
|
|
foreach ($component[$collection] ?? [] as $key => $element)
|
|
|
|
{
|
|
|
|
if (!empty($element['name']))
|
|
|
|
{
|
|
|
|
$component[$collection][$element['name']] = $element;
|
|
|
|
}
|
|
|
|
unset($component[$collection][$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$classes[$component['name']] = $component;
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// iterate of custom-elements to define in the schema
|
2024-06-17 10:32:03 +02:00
|
|
|
foreach($components as $component)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
if (empty($component['tagName']) ||
|
|
|
|
preg_match('/_(ro|mobile)$/', $component['tagName']) ||
|
|
|
|
array_key_exists($component['tagName'], $overwrites) && !isset($overwrites[$component['tagName']]))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2024-04-18 14:52:50 +02:00
|
|
|
|
2024-06-17 10:32:03 +02:00
|
|
|
// add the element
|
|
|
|
$define = $grammar->addChild('define');
|
|
|
|
$define->addAttribute('name', $component['tagName']);
|
|
|
|
$element = $define->addChild('element');
|
|
|
|
$element->addAttribute('name', $component['tagName']);
|
|
|
|
$attrs = $element->addChild('ref');
|
|
|
|
$attrs->addAttribute('name', 'attlist.'.$component['tagName']);
|
|
|
|
// add to widgets
|
|
|
|
$widgets_choice->addChild('ref')->addAttribute('name', $component['tagName']);
|
2024-04-18 14:52:50 +02:00
|
|
|
|
2024-06-17 10:32:03 +02:00
|
|
|
// add the element-attributes
|
|
|
|
$attrs = $grammar->addChild('define');
|
|
|
|
$attrs->addAttribute('name', 'attlist.'.$component['tagName']);
|
|
|
|
$attrs->addAttribute('combine', 'interleave');
|
|
|
|
attributes($component, $attrs);
|
2024-04-18 14:52:50 +02:00
|
|
|
|
2024-06-17 10:32:03 +02:00
|
|
|
// add or disallow children depending on overwrites (not available from the TS sources)
|
|
|
|
// ToDo: this ignores the use in slots!
|
|
|
|
if (empty($overwrites[$component['tagName']]['.children']))
|
|
|
|
{
|
|
|
|
// don't allow children
|
|
|
|
$element->addChild('empty');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$children = (array)$overwrites[$component['tagName']]['.children'];
|
|
|
|
$list = $element->addChild($children['.quantity'] ?? 'oneOrMore'); // zeroOrMore for e.g. empty boxes?
|
|
|
|
unset($children['.quantity']);
|
|
|
|
// add allowed children
|
|
|
|
foreach($children as $child)
|
|
|
|
{
|
|
|
|
$list->addChild('ref')->addAttribute('name', $child);
|
|
|
|
}
|
|
|
|
}
|
2024-04-18 14:52:50 +02:00
|
|
|
|
2024-06-17 10:32:03 +02:00
|
|
|
// remove corresponding legacy widget
|
|
|
|
removeWidget(str_replace('et2-', '', $component['tagName']));
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$remove = [];
|
2024-04-19 12:23:10 +02:00
|
|
|
foreach($widgets_choice->children() as $widget)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
if (preg_match($overwrites['.remove'], $name=(string)$widget->attributes()['name']))
|
|
|
|
{
|
|
|
|
$remove[] = $name; // removing direct disturbs the foreach!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach($remove as $name)
|
|
|
|
{
|
|
|
|
removeWidget($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
$dom = new DOMDocument("1.0");
|
|
|
|
$dom->preserveWhiteSpace = false;
|
|
|
|
$dom->formatOutput = true;
|
|
|
|
$dom->loadXML($grammar->asXML());
|
|
|
|
if (php_sapi_name() !== "cli")
|
|
|
|
{
|
|
|
|
header('Content-Type: application/xml; charset=utf-8');
|
|
|
|
}
|
|
|
|
// add <value>1</value> to legacy widget boolean attributes
|
|
|
|
echo preg_replace('#<choice>
|
|
|
|
(\s+)<value>true</value>
|
|
|
|
(\s+)<value>false</value>
|
|
|
|
(\s+)</choice>#', "<choice>\n\$1<value>false</value>\n\$1<value>true</value>\n\$1<value>1</value>\n\$3</choice>",
|
|
|
|
// update the header
|
|
|
|
preg_replace('#<!--.*-->#s', '<!--
|
|
|
|
==========================================================
|
|
|
|
EGroupware: eTemplate 2.0 DTD
|
|
|
|
AUTHOR: Hadi Nategh <hn[AT]egroupware.org>, Ralf Becker <rb[AT]egroupware.org>
|
|
|
|
COPYRIGHT: 2016-2024 by EGroupware GmbH
|
|
|
|
LICENSE: https://opensource.org/licenses/gpl-license.php GPL - GNU General Public License Version 2+
|
|
|
|
PUBLIC ID: "https://www.egroupware.org/etemplate2.0.dtd"
|
|
|
|
Version: 1.2
|
|
|
|
==========================================================
|
|
|
|
|
|
|
|
==========================================================
|
|
|
|
An example how to use this DTD from your XML document:
|
|
|
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE overlay PUBLIC "-//EGroupware GmbH//eTemplate 2//EN" "https://www.egroupware.org/etemplate2.0.dtd">
|
|
|
|
<overlay>
|
|
|
|
...
|
|
|
|
</overlay>
|
|
|
|
==========================================================
|
|
|
|
-->', $dom->saveXML()));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove (legacy-)widget with given name from schema
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function removeWidget(string $name)
|
|
|
|
{
|
2024-04-19 12:23:10 +02:00
|
|
|
global $grammar, $widgets_choice;
|
|
|
|
if (removeByName($widgets_choice, $name))
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
removeByName($grammar, $name);
|
|
|
|
removeByName($grammar, 'attlist.'.$name);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeByName(SimpleXMLElement $parent, string $name) : bool
|
|
|
|
{
|
|
|
|
foreach($parent->children() as $child)
|
|
|
|
{
|
|
|
|
if ((string)$child->attributes()['name'] === $name)
|
|
|
|
{
|
|
|
|
removeNode($child);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeNode(SimpleXMLElement $node)
|
|
|
|
{
|
|
|
|
$dom=dom_import_simplexml($node);
|
|
|
|
$dom->parentNode->removeChild($dom);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getByName(SimpleXMLElement $parent, string $name) : ?SimpleXMLElement
|
|
|
|
{
|
|
|
|
foreach($parent as $element)
|
|
|
|
{
|
|
|
|
if ((string)$element->attributes()['name'] === $name)
|
|
|
|
{
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overwrite attributes in given element / class
|
|
|
|
* @param array& $element
|
|
|
|
* @param string|null $name overwrites to use e.g. "*", default use $element['name']
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function overwriteAttributes(array& $element, string $name=null)
|
|
|
|
{
|
|
|
|
global $overwrites;
|
|
|
|
|
|
|
|
if (!isset($name)) $name = $element['tagName'];
|
|
|
|
|
|
|
|
// forward just to another widget, class or mixin
|
|
|
|
if (isset($overwrites[$name]) && is_string($overwrites[$name]))
|
|
|
|
{
|
|
|
|
$name = $overwrites[$name];
|
|
|
|
}
|
|
|
|
if (empty($overwrites[$name]['.attrs']))
|
|
|
|
{
|
|
|
|
return; // nothing to do
|
|
|
|
}
|
|
|
|
foreach($overwrites[$name]['.attrs'] as $attr => $type)
|
|
|
|
{
|
|
|
|
if (isset($type))
|
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
// only add it, if not already there
|
|
|
|
if (!array_filter($element['attributes']??[], static function($attribute) use ($attr)
|
|
|
|
{
|
|
|
|
return isset($attribute) && $attribute['name'] === $attr;
|
|
|
|
}))
|
|
|
|
{
|
|
|
|
$element['attributes'][] = ['name' => $attr, 'type' => ['text' => $type]];
|
|
|
|
}
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
2024-06-17 10:32:03 +02:00
|
|
|
// remove attribute set to NULL in overwrites
|
|
|
|
elseif (isset($element['attributes']))
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
$element['attributes'] = array_filter($element['attributes'], static function($attribute) use($attr)
|
|
|
|
{
|
|
|
|
return isset($attribute) && $attribute['name'] !== $attr;
|
|
|
|
});
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate attribute list for an element
|
|
|
|
*
|
2024-06-17 10:32:03 +02:00
|
|
|
* @param array $component class defining the element
|
2024-04-18 14:52:50 +02:00
|
|
|
* @param SimpleXMLElement|null $attrs attribute list element: <define name="attlist.<element>" combine="interleave"/>
|
|
|
|
* @return string[]|void
|
|
|
|
*/
|
2024-06-17 10:32:03 +02:00
|
|
|
function attributes(array $component, ?SimpleXMLElement $attrs=null)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
overwriteAttributes($component, '*');
|
|
|
|
overwriteAttributes($component);
|
2024-04-18 14:52:50 +02:00
|
|
|
// also apply overwrites of own class, direct parent and mixins
|
2024-06-17 10:32:03 +02:00
|
|
|
foreach(getAncestors($component) as $parent)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
if ($parent && !empty($parent['name']) && preg_match('/^Et2/', $parent['name'])) // can also be Lit or Sl*
|
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
overwriteAttributes($component, $parent['name']);
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
|
|
|
}
|
2024-06-17 10:32:03 +02:00
|
|
|
$attributes = array_filter($component['attributes'] ?? [], static function ($attr)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
return ($attr['name'] ?? null) && $attr['name'][0] !== '_'; // ignore attributes with empty name or name starting with underscore
|
|
|
|
});
|
2024-06-17 10:32:03 +02:00
|
|
|
usort($attributes, static function ($a, $b) {
|
|
|
|
return strcasecmp($a['name'], $b['name']);
|
|
|
|
});
|
2024-04-18 14:52:50 +02:00
|
|
|
|
|
|
|
if (!isset($attrs))
|
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
return array_map(static function($attr) use ($component)
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
|
|
|
return $attr['name'].'('.($attr['type']['text']??'any').
|
2024-06-17 10:32:03 +02:00
|
|
|
(isset($attr['fieldName']) && isset($component['members'][$attr['fieldName']]['default']) ?
|
|
|
|
':'.$component['members'][$attr['fieldName']]['default'] : '').')';
|
2024-04-18 14:52:50 +02:00
|
|
|
}, $attributes);
|
|
|
|
}
|
|
|
|
foreach($attributes as $attr)
|
|
|
|
{
|
|
|
|
// todo: are all attributes optional, probably
|
|
|
|
$optional = $attrs->addChild('optional');
|
|
|
|
$attribute = $optional->addChild('attribute');
|
|
|
|
$attribute->addAttribute('name', $attr['name']);
|
2024-06-17 10:32:03 +02:00
|
|
|
if (isset($attr['fieldName']) && isset($component['members'][$attr['fieldName']]['default']))
|
2024-04-18 14:52:50 +02:00
|
|
|
{
|
2024-06-17 10:32:03 +02:00
|
|
|
$default = $component['members'][$attr['fieldName']]['default'];
|
2024-04-18 14:52:50 +02:00
|
|
|
if (in_array($default[0], ['"', "'"]) && $default[0] === substr($default, -1))
|
|
|
|
{
|
|
|
|
$default = substr($default, 1, -1);
|
|
|
|
}
|
2024-04-19 12:23:10 +02:00
|
|
|
if ($default !== 'undefined') // do NOT add undefined, it's the default anyway
|
|
|
|
{
|
|
|
|
$attribute->addAttribute('a:defaultValue', $default, 'http://relaxng.org/ns/compatibility/annotations/1.0');
|
|
|
|
}
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
|
|
|
switch ($attr['type']['text'] ?? 'any')
|
|
|
|
{
|
|
|
|
case 'boolean':
|
|
|
|
$choice = $attribute->addChild('choice');
|
|
|
|
$choice->addChild('value', 'false');
|
|
|
|
$choice->addChild('value', 'true');
|
|
|
|
$choice->addChild('value', '1'); // often used in our templates
|
|
|
|
// not understood by DTD :(
|
|
|
|
//$choice->addChild('text'); // as we allow "@<attr>" or "$cont[name]"
|
|
|
|
break;
|
2024-06-17 10:32:03 +02:00
|
|
|
case 'any':
|
|
|
|
break;
|
2024-04-18 14:52:50 +02:00
|
|
|
// todo: other types are understood by RELAX NG, but not by DTD
|
2024-06-17 10:32:03 +02:00
|
|
|
default: // distinct values: 'a' | 'b' | 'c'
|
|
|
|
if (isset($attr['type']['text']) && $attr['type']['text'][0] === "'" && substr($attr['type']['text'], -1) === "'")
|
|
|
|
{
|
|
|
|
$choice = $attribute->addChild('choice');
|
|
|
|
foreach(preg_split("/'\s*\|\s*'/", substr($attr['type']['text'], 1, -1)) as $part)
|
|
|
|
{
|
|
|
|
$choice->addChild('value', $part);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2024-04-18 14:52:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get ancestors: superclass(es) and mixins of the current class/element
|
|
|
|
*
|
|
|
|
* @param array|null $class
|
|
|
|
* @return array[] of array with name attribute
|
|
|
|
*/
|
|
|
|
function getAncestors(?array $class=null)
|
|
|
|
{
|
|
|
|
if (!isset($class) || empty($class['name']) || !preg_match('/^Et2/', $class['name']))
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
if (!isset($class['kind']))
|
|
|
|
{
|
|
|
|
global $classes;
|
|
|
|
$class = $classes[$class['name']] ?? null;
|
|
|
|
}
|
|
|
|
return $class ? array_filter([$class, ...getAncestors($class['superclass']??null), ...$class['mixins']??[]]) : [];
|
|
|
|
}
|