meta"
(Created page with '{{ZUMLReferencePageHeader}} <syntax lang="xml" > <?meta [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unless="..."]?> </syntax> [since…') |
m (correct highlight (via JWB)) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ZUMLReferencePageHeader}} | {{ZUMLReferencePageHeader}} | ||
− | + | ||
− | <?meta [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unless="..."]? | + | '''Syntax:''' |
− | + | <?meta [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] | |
+ | [if="..."] [unless="..."]?> | ||
[since 3.6.2] | [since 3.6.2] | ||
− | It specifies an element that | + | It specifies an element that should be generated inside the HEAD element. It is generated ''before'' ZK default JavaScript and CSS files. Currently only HTML-based clients (so-called browsers) support them. Furthermore, HTML META tag is actually generated for each of this declaration. |
− | Developers can specify whatever attributes you like; it is up to the browser to interpret. ZK only encodes the URI of the < | + | Developers can specify whatever attributes you like; it is up to the browser to interpret. ZK only evaluates the <code>if</code> and <code>unless</code> attributes, and encodes the URI of the <code>href</code> and <code>src</code> attribute (by use of the <code>encodeURL</code> method of the <code>Executions</code> class). ZK generates all other attributes directly to the client. |
− | Notice that these header directives are effective only for the main ZUL page. In other words, they are ignored if a page is included by another pages or servlets. Also, they are ignored if the page is a < | + | Notice that these header directives are effective only for the main ZUL page. In other words, they are ignored if a page is included by another pages or servlets. Also, they are ignored if the page is a <code>zhtml</code> file. |
− | < | + | <syntaxhighlight line lang="xml" > |
<?meta name="keywords" content="HTML, CSS, XML" ?> | <?meta name="keywords" content="HTML, CSS, XML" ?> | ||
Line 18: | Line 19: | ||
My content | My content | ||
</window> | </window> | ||
− | </ | + | </syntaxhighlight> |
− | + | =Version History= | |
{| border='1px' | width="100%" | {| border='1px' | width="100%" |
Latest revision as of 13:28, 19 January 2022
Syntax:
<?meta [name0="value0"] [name1="value1"] [name2="value2"] [if="..."] [unless="..."]?>
[since 3.6.2]
It specifies an element that should be generated inside the HEAD element. It is generated before ZK default JavaScript and CSS files. Currently only HTML-based clients (so-called browsers) support them. Furthermore, HTML META tag is actually generated for each of this declaration.
Developers can specify whatever attributes you like; it is up to the browser to interpret. ZK only evaluates the if
and unless
attributes, and encodes the URI of the href
and src
attribute (by use of the encodeURL
method of the Executions
class). ZK generates all other attributes directly to the client.
Notice that these header directives are effective only for the main ZUL page. In other words, they are ignored if a page is included by another pages or servlets. Also, they are ignored if the page is a zhtml
file.
1 <?meta name="keywords" content="HTML, CSS, XML" ?>
2
3 <window title="My App">
4 My content
5 </window>
Version History
Version | Date | Content |
---|---|---|