varga%utcru.sk 763dd8095d Fixes for:
94653  - can't right align text in outliner cell
95730  - White block displays/artifacts in the highlight area after Move/Drag mail to folder.
112238 - [RFE] Outliner widget should support line-through
116855 - Modify outliner builder syntax to match outliner content model
118093 - Make -moz-image-region work in the outliner
118113 - Too little space between pref category tree and pref page
118154 - Category now has a column picker
118647 - Memory leak of 52 bytes from 1 block allocated in nsOutlinerBodyFrame::CheckVerticalOverflow
118660 - left arrow no longer moves to parent category
119751 - Branches are open by default and then closed after launch.

- outermost <outlinerchildren> has "-moz-box-flex: 1" by default
  and it actaully replaced <outlinerbody>
- all event handlers moved on <outliner>
- content builder, outliner builder and content view use <outliner> as root
  element
- nsIBoxObject has a new attribute "element"
- all CSS rules outlinerbody:foo replaced with outlinerchildren:foo
- drop feedback is now skinable

r=waterson for the changes in mozilla/content
r=sspitzer on the mailnews parts
r=blake on the bookmarks/history
r=bryner on the OutlinerBodyFrame and OutlinerContentView changes

sr=hyatt,hewitt


git-svn-id: svn://10.0.0.236/trunk@112268 18797224-902f-48f8-a5cc-f745e15eee43
2002-01-16 03:01:28 +00:00

45 lines
1.7 KiB
XML

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
orient="vertical">
<outliner id="tree"
flex="1"
datasources="rdf:ldap"
ref="ldap://alpha.dante.org.uk:389/dc=dante,dc=org,dc=uk??one?(objectclass=*)"
containment="http://home.netscape.com/NC-rdf#recursiveChild"
flags="dont-build-content">
<outlinercols>
<outlinercol id="description"
class="sortDirectionIndicator"
flex="1"
label="Description"
sort="rdf:http://www.mozilla.org/LDAPATTR-rdf#description"
sortActive="true"
primary="true"
persist="width sortActive sortDirection" />
<splitter class="tree-splitter" />
<outlinercol id="cn"
class="sortDirectionIndicator"
flex="1"
label="CN"
sort="rdf:http://www.mozilla.org/LDAPATTR-rdf#cn"
persist="width sortActive sortDirection" />
</outlinercols>
<template>
<outlinerchildren>
<outlineritem uri="rdf:http://home.netscape.com/NC-rdf#recursiveChild">
<outlinerrow>
<outlinercell ref="description"
label="rdf:http://www.mozilla.org/LDAPATTR-rdf#description" />
<outlinercell ref="cn"
label="rdf:http://www.mozilla.org/LDAPATTR-rdf#cn" />
</outlinerrow>
</outlineritem>
</outlinerchildren>
</template>
</outliner>
</window>