749ef47bbd
I also started implementing some of the localization. There is a lot to do still, and I am still learning a lot of the Firefox extension technologies (XUL, adv. Javascript, etc.) but things are going great.
57 lines
No EOL
1.7 KiB
XML
57 lines
No EOL
1.7 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type"text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/browser.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://scholar/skin/scholar.css" type="text/css"?>
|
|
<!DOCTYPE window SYSTEM "chrome://scholar/locale/scholar.dtd">
|
|
|
|
<page id="scholar-sidebar" title="Scholar"
|
|
onload="setView()"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" >
|
|
|
|
<script src="sidebar.js"/>
|
|
<script src="scholar.js"/>
|
|
<script src="db.js"/>
|
|
<script src="data_access.js"/>
|
|
<stringbundle id="scholar-strings" src="chrome://scholar/locale/scholar.properties"/>
|
|
|
|
<tree
|
|
id="scholar-sidebar-items"
|
|
seltype="multiple"
|
|
onselect="selectionChanged()"
|
|
flex="1"
|
|
enableColumnDrag="true"
|
|
datasources="rdf:null"
|
|
ref=""
|
|
flags="dont-build-content">
|
|
|
|
<treecols>
|
|
<treecol
|
|
id="title_column"
|
|
label="&sidebar.items.title_column;"
|
|
flex="1"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol
|
|
id="creator_column"
|
|
label="&sidebar.items.creator_column;"
|
|
flex="1"/>
|
|
</treecols>
|
|
<treechildren/>
|
|
</tree>
|
|
<label id="status-text" value="(No selection)"/>
|
|
<grid id="scholar-sidebar-object-pane" hidden="true">
|
|
<columns>
|
|
<column/>
|
|
<column flex="1"/>
|
|
</columns>
|
|
|
|
<rows id="scholar-sidebar-object-pane-dynamic-fields">
|
|
</rows>
|
|
</grid>
|
|
<!--
|
|
<textbox id="test1"/>
|
|
<label control="test2" value="Test2:"/>
|
|
<textbox id="test2"/>
|
|
<label control="test3" value="Test3:"/>
|
|
<textbox id="test3"/>
|
|
-->
|
|
</page> |