link

From Documentation
Revision as of 01:55, 8 July 2010 by Maya001122 (talk | contribs) (Created page with '== The link, meta and script Directives == <source lang="xml" > <?link [href="uri"] [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unles…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The link, meta and script Directives

 <?link [href="uri"] [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unless="..."]?>
 <?meta [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unless="..."]?>
 <?script type="text/javascript" [src="uri"] [charset="encoding"]
  [content="javascript"] [if="..."] [unless="..."]?>
[since 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.

Developers can specify whatever attributes with these header directives. ZK only 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.

 <?link rel="alternate" type="application/rss+xml" title="RSS feed"
  href="/rssfeed.php"?>
 <?link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"?>
 <?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">
     My content
 </window>