annotate xul/content/tree.xul @ 248:6b1d5d9f9aa0

servlet version 1.19b5 - filename and dpi in request - filename and dpi in dlInfo-*
author robcast
date Wed, 25 Aug 2004 01:06:30 +0200
parents e1c302129599
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
199
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
1 <?xml version="1.0"?>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
3
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
4 <window id="example-window" title="Example 6.8.2"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
5 xmlns:html="http://www.w3.org/1999/xhtml"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
6 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
7
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
8 <script language="JavaScript" src="tree.js" />
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
9
210
e1c302129599 The tree is sortable now.
slarti
parents: 199
diff changeset
10 <tree id="menu_tree" onselect="open_link();" flex="1" width="200" height="200"
199
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
11 datasources="http://hera.unibe.ch:8080/alcatraz/xul/echonavigation.jsp" ref="urn:echonavigation:data">
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
12
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
13 <treecols>
210
e1c302129599 The tree is sortable now.
slarti
parents: 199
diff changeset
14 <treecol id="name" label="Name" primary="true" flex="1"/>
199
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
15 </treecols>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
16 <template>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
17 <rule>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
18 <treechildren>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
19 <treeitem uri="rdf:*">
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
20 <treerow>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
21 <treecell label="rdf:http://www.echo.eu/rdf#name" link="rdf:http://www.echo.eu/rdf#link"/>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
22 </treerow>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
23 </treeitem>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
24 </treechildren>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
25 </rule>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
26 </template>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
27 </tree>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
28 </window>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
29