Add Zotero Connector upgrade warning when opening pane

This commit is contained in:
Dan Stillman 2017-11-08 04:31:05 -05:00
parent dfb821ee92
commit 685adcd118
3 changed files with 90 additions and 0 deletions

View File

@ -176,6 +176,10 @@ var ZoteroOverlay = new function()
*/
if(makeVisible) {
if (!this.show5UpgradeMessage()) {
return false;
}
if (Zotero.locked) {
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
@ -287,6 +291,23 @@ var ZoteroOverlay = new function()
this.loadZoteroTab();
}
}
this.show5UpgradeMessage = function () {
if (Zotero.Prefs.get('skipUpgradeWarning')) {
return true;
}
var io = {};
var win = window.openDialog(
"chrome://zotero/content/zotero5upgrade.xul",
"zotero5-upgrade",
"centerscreen,modal,width=620,height=570",
io
);
if (io.dontShowAgain) {
Zotero.Prefs.set('skipUpgradeWarning', true);
}
return io.ok;
};
}
window.addEventListener("load", function(e) { ZoteroOverlay.onLoad(e); }, false);

View File

@ -0,0 +1,46 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://zotero/skin/zotero5upgrade.css" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://zotero/locale/about.dtd">
<dialog
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
orient="vertical"
buttons="accept"
buttonlabelaccept="OK"
onload="document.documentElement.getButton('accept').focus();"
ondialogaccept="var io = window.arguments[0]; io.dontShowAgain = document.getElementById('dont-show-again').checked; io.ok = true;">
<script src="include.js"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<h1>The way you use Zotero is changing</h1>
<p>Zotero 5.0, the next major version of Zotero, is now available, and along with many new features and improvements, it brings some important changes that youll need to be aware of as a user of Zotero for Firefox.</p>
<p>With the release of Firefox 57 on November 14, 2017, Mozilla will be removing the powerful extension framework on which Zotero for Firefox is based in favor of a new, more limited extension system similar to the one in Chrome. Because of this change, Zotero 5.0 is available only as a standalone program, which youll need to install to continue accessing your Zotero data locally. Instead of clicking a “Z” button in the Firefox toolbar, youll open Zotero as you would any other program. A new extension, the Zotero Connector for Firefox, replaces this one and provides the same “Save to Zotero” button that youre used to.</p>
<p>Youll soon be automatically upgraded to the Zotero Connector for Firefox, at which point youll need to install Zotero 5.0 as well to access your library. To avoid any unexpected disruption, we recommend installing Zotero 5.0 and the Zotero Connector for Firefox from the <a href="https://www.zotero.org/download/">download page</a> as soon as possible.</p>
<p>See our <a href="https://www.zotero.org/blog/a-unified-zotero-experience/">blog post</a> for more details on this change and what it means for you.</p>
<p>
<input id="dont-show-again" type="checkbox"/>
<label for="dont-show-again">Dont show again</label>
</p>
</div>
<script type="text/javascript">
<![CDATA[
var links = document.querySelectorAll('a');
for (let link of links) {
link.onclick = function (event) {
window.close();
var gb = window.opener.gBrowser;
gb.selectedTab = gb.addTab(event.target.getAttribute('href'));
event.preventDefault();
}
}
]]>
</script>
</dialog>

View File

@ -0,0 +1,23 @@
.dialog-content-box {
overflow-y: auto;
background: white;
}
div {
padding-left: 15px;
padding-right: 15px;
}
h1 {
font-size: 24px;
}
p {
font-size: 14px;
line-height: 1.5;
}
a {
color: blue;
text-decoration: underline;
}