commit 110f637d1e4017f8086b82eddad6a02d75531190
parent 7e3ba7bc617f05f35cd8a4c5b2fcf9a637017677
Author: Dan Stillman <dstillman@zotero.org>
Date: Sun, 1 Nov 2015 03:54:22 -0500
Don't default to Creative Commons license for My Publications
Just share on zotero.org by default, and let user choose CC if desired.
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/chrome/content/zotero/publicationsDialog.js b/chrome/content/zotero/publicationsDialog.js
@@ -33,7 +33,7 @@ var Zotero_Publications_Dialog = new function () {
var _includeNotes = true;
var _useRights = true;
var _shareSettings = {
- sharing: 'cc',
+ sharing: 'reserved', // 'reserved', 'cc', 'cc0'
adaptations: 'no',
commercial: 'yes'
};
diff --git a/chrome/content/zotero/publicationsDialog.xul b/chrome/content/zotero/publicationsDialog.xul
@@ -72,9 +72,9 @@
<separator class="thin"/>
<radiogroup id="sharing-radiogroup"
oncommand="Zotero_Publications_Dialog.updateSharing(this.selectedItem.id)">
+ <radio id="sharing-reserved" label="&zotero.publications.sharing.reserved;"/>
<radio id="sharing-cc" label="&zotero.publications.sharing.cc;"/>
<radio id="sharing-cc0" label="&zotero.publications.sharing.cc0;"/>
- <radio id="sharing-reserved" label="&zotero.publications.sharing.reserved;"/>
</radiogroup>
<groupbox class="license-info"/>
diff --git a/chrome/locale/en-US/zotero/publications.dtd b/chrome/locale/en-US/zotero/publications.dtd
@@ -6,7 +6,7 @@
<!ENTITY zotero.publications.authorship.checkbox "I created this work and have the rights to distribute included files and notes.">
<!ENTITY zotero.publications.sharing.title "Choose how your work may be shared">
-<!ENTITY zotero.publications.sharing.text "You can license work you place in My Publications under a Creative Commons license, dedicate it to the public domain, or reserve all rights. In all cases, the work will be made publicly available via zotero.org.">
+<!ENTITY zotero.publications.sharing.text "You can reserve all rights to your work, license it under a Creative Commons license, or dedicate it to the public domain. In all cases, the work will be made publicly available via zotero.org.">
<!ENTITY zotero.publications.sharing.prompt "Would you like to allow your work to be shared by others?">
<!ENTITY zotero.publications.sharing.cc "Yes, under a Creative Commons license">
<!ENTITY zotero.publications.sharing.cc0 "Yes, and place my work in the public domain">