Closes #398, add option to have a smaller Zotero logo or just a "Z" in the status bar
And removed some old images
|
@ -271,15 +271,28 @@
|
|||
</vbox>
|
||||
|
||||
<statusbar id="status-bar">
|
||||
<statusbarpanel id="zotero-status-bar-icon"
|
||||
<statusbarpanel id="zotero-status-bar-icon" hidden="true"
|
||||
class="statusbarpanel-iconic" onclick="ZoteroPane.toggleDisplay();"/>
|
||||
</statusbar>
|
||||
|
||||
<script>
|
||||
window.addEventListener('load', function(e){
|
||||
if (!Zotero){
|
||||
document.getElementById('zotero-status-bar-icon').setAttribute('error', 'true');
|
||||
document.getElementById('zotero-status-bar-icon').setAttribute('tooltiptext', 'There was an error starting Zotero.');
|
||||
var icon = document.getElementById('zotero-status-bar-icon');
|
||||
if (Zotero){
|
||||
switch (Zotero.Prefs.get('statusBarIcon')) {
|
||||
case 2:
|
||||
icon.setAttribute('hidden', false);
|
||||
break;
|
||||
case 1:
|
||||
icon.setAttribute('hidden', false);
|
||||
icon.setAttribute('compact', true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else {
|
||||
icon.setAttribute('hidden', false);
|
||||
icon.setAttribute('error', 'true');
|
||||
icon.setAttribute('tooltiptext', 'There was an error starting Zotero.');
|
||||
}
|
||||
}, false);
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
var openURLServerField;
|
||||
var openURLVersionMenu;
|
||||
var zoteroPaneOnTopInitial;
|
||||
|
||||
function init()
|
||||
{
|
||||
|
@ -31,8 +30,6 @@ function init()
|
|||
for (var i=0; i<rows.length; i++) {
|
||||
rows[i].firstChild.nextSibling.value = Zotero.isMac ? 'Cmd+Shift+' : 'Ctrl+Alt+';
|
||||
}
|
||||
|
||||
zoteroPaneOnTopInitial = Zotero.Prefs.get('zoteroPaneOnTop') ? 0 : 1;
|
||||
}
|
||||
|
||||
|
||||
|
@ -82,17 +79,4 @@ function onOpenURLSelected()
|
|||
function onOpenURLCustomized()
|
||||
{
|
||||
document.getElementById('openURLMenu').value = "custom";
|
||||
}
|
||||
|
||||
function onPositionChange()
|
||||
{
|
||||
var statusLine = document.getElementById('statusLine');
|
||||
if (document.getElementById('positionMenu').selectedIndex != zoteroPaneOnTopInitial)
|
||||
{
|
||||
statusLine.value = Zotero.getString('zotero.preferences.status.positionChange');
|
||||
}
|
||||
else
|
||||
{
|
||||
statusLine.value = '';
|
||||
}
|
||||
}
|
|
@ -43,6 +43,7 @@ To add a new preference:
|
|||
<prefpane id="zotero-prefpane-general" label="&zotero.preferences.prefpane.general;">
|
||||
<preferences>
|
||||
<preference id="pref-zoteroPaneOnTop" name="extensions.zotero.zoteroPaneOnTop" type="bool"/>
|
||||
<preference id="pref-statusBarIcon" name="extensions.zotero.statusBarIcon" type="int"/>
|
||||
<preference id="pref-automaticScraperUpdates" name="extensions.zotero.automaticScraperUpdates" type="bool"/>
|
||||
<preference id="pref-reportTranslationFailure" name="extensions.zotero.reportTranslationFailure" type="bool"/>
|
||||
<preference id="pref-parseEndNoteMIMETypes" name="extensions.zotero.parseEndNoteMIMETypes" type="bool" onchange="Zotero.Ingester.MIMEHandler.init()"/>
|
||||
|
@ -52,26 +53,42 @@ To add a new preference:
|
|||
<preference id="pref-openURL-version" name="extensions.zotero.openURL.version" type="string"/>
|
||||
</preferences>
|
||||
|
||||
<hbox align="center">
|
||||
<label value="&zotero.preferences.position;" control="positionMenu"/>
|
||||
<menulist id="positionMenu" oncommand="onPositionChange()" preference="pref-zoteroPaneOnTop">
|
||||
<menupopup>
|
||||
<menuitem label="&zotero.preferences.position.above;" value="true"/>
|
||||
<menuitem label="&zotero.preferences.position.below;" value="false"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&zotero.preferences.position.browser;"/>
|
||||
</hbox>
|
||||
<groupbox>
|
||||
<caption label="&zotero.preferences.userInterface;"/>
|
||||
<hbox align="center">
|
||||
<label value="&zotero.preferences.position;" control="positionMenu"/>
|
||||
<menulist id="positionMenu" preference="pref-zoteroPaneOnTop">
|
||||
<menupopup>
|
||||
<menuitem label="&zotero.preferences.position.above;" value="true"/>
|
||||
<menuitem label="&zotero.preferences.position.below;" value="false"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&zotero.preferences.position.browser;"/>
|
||||
</hbox>
|
||||
|
||||
<hbox align="center">
|
||||
<label value="&zotero.preferences.statusBarIcon;" control="statusBarIcon"/>
|
||||
<radiogroup id="statusBarIcon" orient="horizontal" preference="pref-statusBarIcon">
|
||||
<radio src="chrome://zotero/skin/zotero_status_bar.png" value="2"/>
|
||||
<radio src="chrome://zotero/skin/zotero_status_bar_compact.png" value="1"/>
|
||||
<radio label="None" value="0"/>
|
||||
</radiogroup>
|
||||
</hbox>
|
||||
|
||||
<label class="statusLine" value="&zotero.preferences.keys.changesTakeEffect;"/>
|
||||
</groupbox>
|
||||
|
||||
<hbox align="center">
|
||||
<checkbox label="&zotero.preferences.autoUpdate;" preference="pref-automaticScraperUpdates"/>
|
||||
<button id="updateButton" style="margin-top:0" label="&zotero.preferences.updateNow;" oncommand="Zotero.Schema.updateScrapersRemote(true)"/>
|
||||
</hbox>
|
||||
|
||||
<checkbox label="&zotero.preferences.reportTranslationFailure;" preference="pref-reportTranslationFailure"/>
|
||||
<checkbox label="&zotero.preferences.parseEndnote;" preference="pref-parseEndNoteMIMETypes"/>
|
||||
<checkbox label="&zotero.preferences.automaticSnapshots;" preference="pref-automaticSnapshots"/>
|
||||
<checkbox label="&zotero.preferences.downloadAssociatedFiles;" preference="pref-downloadAssociatedFiles"/>
|
||||
<groupbox>
|
||||
<hbox align="center">
|
||||
<checkbox label="&zotero.preferences.autoUpdate;" preference="pref-automaticScraperUpdates"/>
|
||||
<button id="updateButton" style="margin-top:0" label="&zotero.preferences.updateNow;" oncommand="Zotero.Schema.updateScrapersRemote(true)"/>
|
||||
</hbox>
|
||||
|
||||
<checkbox label="&zotero.preferences.reportTranslationFailure;" preference="pref-reportTranslationFailure"/>
|
||||
<checkbox label="&zotero.preferences.parseEndnote;" preference="pref-parseEndNoteMIMETypes"/>
|
||||
<checkbox label="&zotero.preferences.automaticSnapshots;" preference="pref-automaticSnapshots"/>
|
||||
<checkbox label="&zotero.preferences.downloadAssociatedFiles;" preference="pref-downloadAssociatedFiles"/>
|
||||
</groupbox>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&zotero.preferences.openurl.caption;"/>
|
||||
|
@ -99,8 +116,6 @@ To add a new preference:
|
|||
</menulist>
|
||||
</hbox>
|
||||
</groupbox>
|
||||
|
||||
<label id="statusLine" value=""/>
|
||||
</prefpane>
|
||||
|
||||
<prefpane id="zotero-prefpane-keys" label="&zotero.preferences.prefpane.keys;">
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
<!ENTITY zotero.preferences.title "Zotero Preferences">
|
||||
|
||||
<!ENTITY zotero.preferences.prefpane.general "General">
|
||||
<!ENTITY zotero.preferences.autoUpdate "Automatically check for updated scrapers">
|
||||
<!ENTITY zotero.preferences.updateNow "Update now">
|
||||
<!ENTITY zotero.preferences.reportTranslationFailure "Report broken site translators">
|
||||
<!ENTITY zotero.preferences.userInterface "User Interface">
|
||||
<!ENTITY zotero.preferences.position "Display Zotero">
|
||||
<!ENTITY zotero.preferences.position.above "above">
|
||||
<!ENTITY zotero.preferences.position.below "below">
|
||||
<!ENTITY zotero.preferences.position.browser "browser content">
|
||||
<!ENTITY zotero.preferences.statusBarIcon "Status bar icon:">
|
||||
<!ENTITY zotero.preferences.autoUpdate "Automatically check for updated scrapers">
|
||||
<!ENTITY zotero.preferences.updateNow "Update now">
|
||||
<!ENTITY zotero.preferences.reportTranslationFailure "Report broken site translators">
|
||||
<!ENTITY zotero.preferences.parseEndnote "Use Zotero for downloaded EndNote files">
|
||||
<!ENTITY zotero.preferences.automaticSnapshots "Automatically take snapshots when creating items from web pages">
|
||||
<!ENTITY zotero.preferences.downloadAssociatedFiles "Automatically attach associated PDFs and other files when saving items">
|
||||
|
|
|
@ -218,7 +218,6 @@ db.dbRestoreFailed = The Zotero database appears to have become corrupted, an
|
|||
zotero.preferences.update.updated = Updated
|
||||
zotero.preferences.update.upToDate = Up to date
|
||||
zotero.preferences.update.error = Error
|
||||
zotero.preferences.status.positionChange = Position change will take effect in new windows only
|
||||
zotero.preferences.openurl.resolversFound.zero = %S resolvers found
|
||||
zotero.preferences.openurl.resolversFound.singular = %S resolver found
|
||||
zotero.preferences.openurl.resolversFound.plural = %S resolvers found
|
||||
|
|
|
@ -1,13 +1,19 @@
|
|||
#zotero-status-bar-icon
|
||||
{
|
||||
width: 49px;
|
||||
width: 47px;
|
||||
margin:0 0 -1px;
|
||||
padding:0 5px 1px;
|
||||
list-style-image: url(chrome://zotero/skin/zotero_logo_18px.png);
|
||||
padding:0 4px 1px;
|
||||
list-style-image: url(chrome://zotero/skin/zotero_status_bar.png);
|
||||
}
|
||||
#zotero-status-bar-icon[error=true]
|
||||
#zotero-status-bar-icon[compact="true"]
|
||||
{
|
||||
list-style-image: url(chrome://zotero/skin/zotero_logo_18px_error.png);
|
||||
width: 9px;
|
||||
padding:0 5px 1px;
|
||||
list-style-image: url(chrome://zotero/skin/zotero_status_bar_compact.png);
|
||||
}
|
||||
#zotero-status-bar-icon[error="true"]
|
||||
{
|
||||
list-style-image: url(chrome://zotero/skin/zotero_status_bar_error.png);
|
||||
}
|
||||
|
||||
#zotero-pane
|
||||
|
|
|
@ -35,6 +35,15 @@ radio[pane=zotero-prefpane-keys][selected="true"]
|
|||
color: red;
|
||||
}
|
||||
|
||||
#statusBarIcon radio
|
||||
{
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
#statusBarIcon radio .radio-icon
|
||||
{
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
/* Shortcut Keys pane */
|
||||
#zotero-prefpane-keys row
|
||||
|
@ -52,7 +61,7 @@ radio[pane=zotero-prefpane-keys][selected="true"]
|
|||
margin: .75em 0;
|
||||
}
|
||||
|
||||
#zotero-prefpane-keys .statusLine
|
||||
.statusLine
|
||||
{
|
||||
margin: .75em 0;
|
||||
font-size: 10px;
|
||||
|
|
Before Width: | Height: | Size: 690 B |
Before Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 662 B |
Before Width: | Height: | Size: 493 B |
Before Width: | Height: | Size: 523 B |
BIN
chrome/skin/default/zotero/zotero_status_bar.png
Normal file
After Width: | Height: | Size: 440 B |
BIN
chrome/skin/default/zotero/zotero_status_bar_compact.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
chrome/skin/default/zotero/zotero_status_bar_error.png
Normal file
After Width: | Height: | Size: 941 B |
|
@ -6,6 +6,7 @@ pref("extensions.zotero.debug.level",5);
|
|||
pref("extensions.zotero.automaticScraperUpdates",true);
|
||||
pref("extensions.zotero.cacheTranslatorData",true);
|
||||
pref("extensions.zotero.zoteroPaneOnTop",false);
|
||||
pref("extensions.zotero.statusBarIcon", 2);
|
||||
pref("extensions.zotero.openURL.resolver","http://athene.gmu.edu:8888/lfp/LinkFinderPlus/Display");
|
||||
pref("extensions.zotero.openURL.version","0.1");
|
||||
pref("extensions.zotero.parseEndNoteMIMETypes",true);
|
||||
|
|