source: DASISH/t5.6/client/branches/webannotator-basic/chrome/markingcollection/content/markingcollection/templatefolderproperty.xul @ 5428

Last change on this file since 5428 was 5428, checked in by stephanie.roth@snd.gu.se, 10 years ago

Added new branch for work on schema change related client fixes.

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<?xml-stylesheet href="chrome://global/skin/" type="text/css" ?>
3<?xml-stylesheet href="chrome://markingcollection/skin/property.css" type="text/css" ?>
4<?xml-stylesheet href="chrome://markingcollection/skin/setting.css" type="text/css" ?>
5<!DOCTYPE wizard [
6<!ENTITY % overlayDTD   SYSTEM "chrome://markingcollection/locale/markingcollection.dtd" >
7%overlayDTD;
8<!ENTITY % markerCustomDTD SYSTEM "chrome://markingcollection/locale/markerCustom.dtd" >
9%markerCustomDTD;
10]>
11<dialog
12        id="mcPropDialog"
13        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
14        buttons="accept,cancel"
15        onload="mcPropService.init();"
16        ondialogaccept="mcPropService.accept();"
17        ondialogcancel="mcPropService.cancel();">
18        <script type="application/x-javascript" src="chrome://global/content/nsUserSettings.js" />
19        <script type="application/x-javascript" src="chrome://markingcollection/content/templatefolderproperty.js" />
20        <hbox flex="1">
21                <tree
22                        id="mcTreeFiles"
23                        datasources="rdf:null"
24                        ref="urn:allmarker:root"
25                        flags="dont-build-content"
26                        hidecolumnpicker="true"
27                        seltype="single"
28                        class="plain" flex="1"  hidden="true">
29                        <treecols>
30                                <treecol id="mcTreeFilesName" hideheader="true" primary="true" flex="1"/>
31                        </treecols>
32                        <template>
33                                <rule>
34                                        <treechildren>
35                                                <treeitem uri="rdf:*">
36                                                        <treerow>
37                                                                <treecell label="rdf:http://home.netscape.com/NC-rdf#Name" />
38                                                        </treerow>
39                                                </treeitem>
40                                        </treechildren>
41                                </rule>
42                        </template>
43                </tree>
44                <vbox flex="1">
45                        <groupbox id="mcPropTitleGroup" flex="1">
46                                <caption label="&markingcollection.prop.title;" />
47                                <textbox id="mcPropTitle" flex="1" style=""/>
48                        </groupbox>
49                        <groupbox id="mcPropNoteGroup" flex="1">
50                                <caption label="&markingcollection.prop.note;" />
51                                <textbox id="mcPropNote" multiline="true" flex="1" style="" oninput="" />
52                        </groupbox>
53                </vbox>
54        </hbox>
55</dialog>
Note: See TracBrowser for help on using the repository browser.