19763cc78a
- About panel now gets version number automatically - Change version from 1.0a1 to 1.0b1 * Important: If you're on an SVN install, you need to rename the scholar@chnm.gmu.edu text file in your profile extension directory to zotero@chnm.gmu.edu * XPI installs will (I think) update automatically, since I kept an entry in updates.rdf with the old GUID
64 lines
No EOL
2.1 KiB
XML
64 lines
No EOL
2.1 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
Zotero
|
|
Copyright (C) 2006 Center for History and New Media, George Mason University, Fairfax, VA
|
|
http://chnm.gmu.edu/
|
|
-->
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://scholar/skin/scholar.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://scholar/skin/about.css" type="text/css"?>
|
|
<!DOCTYPE window SYSTEM "chrome://scholar/locale/about.dtd">
|
|
|
|
<dialog
|
|
id="scholar-about"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
orient="vertical"
|
|
buttons="accept"
|
|
onload="onLoad();"
|
|
ondialogaccept="return true;">
|
|
|
|
<script>
|
|
<![CDATA[
|
|
function onLoad()
|
|
{
|
|
var labels = document.getElementsByTagName('label');
|
|
|
|
for(var i = 0; i<labels.length; i++)
|
|
labels[i].setAttribute('crop','end');
|
|
}
|
|
]]>
|
|
</script>
|
|
|
|
<script src="include.js"/>
|
|
|
|
<vbox id="aboutcontent">
|
|
<label id="name" value="&scholar.name;"/>
|
|
<label id="version" value="&scholar.version; "/>
|
|
<script>
|
|
document.getElementById('version').value += Scholar.version;
|
|
</script>
|
|
<label class="subhead" value="&scholar.createdby;"/>
|
|
<vbox class="subcontent">
|
|
<label class="text-link" href="http://chnm.gmu.edu" value="Center for History and New Media"/>
|
|
<label value="George Mason University"/>
|
|
<label value="Fairfax, VA"/>
|
|
</vbox>
|
|
<label class="subhead" value="&scholar.directors;"/>
|
|
<vbox class="subcontent">
|
|
<label value="Dan Cohen"/>
|
|
<label value="Josh Greenberg"/>
|
|
</vbox>
|
|
<label class="subhead" value="&scholar.developers;"/>
|
|
<vbox class="subcontent">
|
|
<label value="Dan Stillman"/>
|
|
<label value="David Norton"/>
|
|
<label value="Simon Kornblith"/>
|
|
</vbox>
|
|
<label class="subhead" value="&scholar.thanks;"/>
|
|
<vbox class="subcontent">
|
|
<label class="text-link" href="http://www.imls.gov/" value="Institute of Museum and Library Services"/>
|
|
<label class="text-link" href="http://www.mozilla.org/" value="Mozilla Foundation"/>
|
|
<label class="text-link" href="http://www.famfamfam.com/lab/icons/silk/" value="famfamfam (icons)"/>
|
|
</vbox>
|
|
</vbox>
|
|
</dialog> |