mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
69 lines
2.2 KiB
XML
69 lines
2.2 KiB
XML
<?xml version="1.0"?> <!-- -*- Mode: SGML -*- -->
|
|
<!--
|
|
|
|
The contents of this file are subject to the Netscape Public
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
except in compliance with the License. You may obtain a copy of
|
|
the License at http://www.mozilla.org/NPL/
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
rights and limitations under the License.
|
|
|
|
The Original Code is mozilla.org code.
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
Communications Corporation. Portions created by Netscape are
|
|
Copyright (C) 1998 Netscape Communications Corporation. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
|
|
-->
|
|
|
|
<?xml-stylesheet type="text/css" href="chrome://communicator/skin/regviewer/regviewer.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/regviewer/regviewer.dtd">
|
|
|
|
<window title="®viewerWindowTitle.label;"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
align="horizontal"
|
|
onload="OnLoad();">
|
|
|
|
<script type="application/x-javascript" src="regviewer.js" />
|
|
<box flex="1*">
|
|
<html:div style="width:100px;height:100px;" flex="1*">
|
|
<tree id="tree" style="width:100%;height:100%" datasources="rdf:null"
|
|
containment="urn:mozilla-registry:subkeys"
|
|
onselect="OnSelect(event);">
|
|
<treecolgroup>
|
|
<treecol flex="1"/>
|
|
</treecolgroup>
|
|
|
|
<template>
|
|
<treechildren flex="1">
|
|
<treeitem uri="rdf:*">
|
|
<treerow>
|
|
<treecell indent="true" label="rdf:*" />
|
|
</treerow>
|
|
</treeitem>
|
|
</treechildren>
|
|
</template>
|
|
|
|
<treehead>
|
|
<treerow>
|
|
<treecell label="®viewerWindow.key.label;" />
|
|
</treerow>
|
|
</treehead>
|
|
</tree>
|
|
</html:div>
|
|
</box>
|
|
<splitter collapse="before"/>
|
|
<box flex="1*">
|
|
<html:div id="properties" style="width:100%;height:100%" flex="1*" />
|
|
</box>
|
|
</window>
|
|
|