link"

From Documentation
(Created page with '== The link, meta and script Directives == <source lang="xml" > <?link [href="uri"] [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unles…')
 
 
(20 intermediate revisions by 7 users not shown)
Line 1: Line 1:
== The link, meta and script Directives ==
+
{{ZUMLReferencePageHeader}}
  
<source lang="xml" >
+
'''Syntax:'''
  <?link [href="uri"] [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unless="..."]?>
+
  <?link [href="''uri''"] [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"]
<?meta [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unless="..."]?>
+
    [if="..."] [unless="..."]?>
<?script type="text/javascript" [src="uri"] [charset="encoding"]
 
  [content="javascript"] [if="..."] [unless="..."]?>
 
</source>
 
  
[since 3.6.2]
+
{{versionSince| 3.6.2}}
  
These are so-called header elements in HTML. They are generated inside the HEAD element. The meta tags are generated before ZK default JavaScript and CSS files, while the other tags are generated after ZK default JavaScript and CSS files. Currently only HTML-based clients (so-called browsers) support them.
+
It specifies an element that should be generated inside the <code>&lt;head></code> element. It is generated '''after''' ZK default JavaScript and CSS files. Thus, it can override ZK default CSS. Currently, only HTML-based clients (so-called browsers) support them. Furthermore, HTML <code>&lt;link></code> is actually generated for each of this declaration.
  
Developers can specify whatever attributes with these header directives. ZK only encodes the URI of the <tt>href</tt> and <tt>src</tt> attribute (by use of the <tt>encodeURL</tt> method of the <tt>Executions</tt> class). ZK generates all other attributes directly to the client.
+
You can specify whatever attributes you like; it is up to a browser to interpret. ZK only encodes the URI of the <code>href</code> and <code>src</code> attribute (by the 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 <tt>zhtml</tt> file.
+
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 page or servlets. Also, they are ignored if the page is a <code>zhtml</code> file.
  
<source lang="xml" >
+
<syntaxhighlight line lang="xml" >
<?link rel="alternate" type="application/rss+xml" title="RSS feed"
+
<?link rel="alternate" type="application/rss+xml" title="RSS feed"
 
   href="/rssfeed.php"?>
 
   href="/rssfeed.php"?>
<?link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"?>
+
<?link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"?>
<?link rel="stylesheet" type="text/css" href="~./zul/css/ext.css.dsp"?>
+
<?link rel="stylesheet" type="text/css" href="~./zul/css/ext.css.dsp"?>
<?script type="text/javascript" src="/js/foo.js"?>
 
<?script type="text/javascript" content="var foo = true;
 
if (zk.ie) foo = false;"?>
 
  
 
  <window title="My App">
 
  <window title="My App">
 
     My content
 
     My content
 
  </window>
 
  </window>
</source>
+
</syntaxhighlight>
 +
 
 +
=Alternatives=
 +
In addition, you could use [[ZK_Component_Reference/Essential_Components/Script| Script component]] to embed JavaScript code. The Script component supports more features such as defer, but it has some memory footprint on the server (since it is a component).
 +
 
 +
 
 +
 
 +
{{ZUMLReferencePageFooter}}

Latest revision as of 09:46, 31 August 2023

Syntax:

<?link [href="uri"] [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 after ZK default JavaScript and CSS files. Thus, it can override ZK default CSS. Currently, only HTML-based clients (so-called browsers) support them. Furthermore, HTML <link> is actually generated for each of this declaration.

You can specify whatever attributes you like; it is up to a browser to interpret. ZK only encodes the URI of the href and src attribute (by the 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 page or servlets. Also, they are ignored if the page is a zhtml file.

1 <?link rel="alternate" type="application/rss+xml" title="RSS feed"
2   href="/rssfeed.php"?>
3 <?link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"?>
4 <?link rel="stylesheet" type="text/css" href="~./zul/css/ext.css.dsp"?>
5 
6  <window title="My App">
7      My content
8  </window>

Alternatives

In addition, you could use Script component to embed JavaScript code. The Script component supports more features such as defer, but it has some memory footprint on the server (since it is a component).




Last Update : 2023/08/31

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.