Dan Stillman
c882488ef7
Add "(APA)" and "(ASA)" to style list in Document Preferences
...
Hopefully this will help people not select ASA 6th when they're looking
for APA 6th.
https://forums.zotero.org/discussion/comment/357135/#Comment_357135
2020-05-28 06:19:41 -04:00
Dan Stillman
686b51df38
Revert "Temporarily disable document-export button for 5.0.71"
...
This reverts commit 7b7ccea31a
.
2019-07-17 19:03:30 -04:00
Dan Stillman
7b7ccea31a
Temporarily disable document-export button for 5.0.71
2019-07-17 18:17:52 -04:00
Dan Stillman
fd09d3ef4a
Revert "Temporarily disable "Export Document…" button for 5.0.70"
...
This reverts commit f8927812e9
.
2019-07-13 02:26:25 -04:00
Dan Stillman
f8927812e9
Temporarily disable "Export Document…" button for 5.0.70
2019-07-12 20:28:05 -04:00
Dan Stillman
1424fd9a0e
Fix updating of the styles page in the RTF Scan dialog
...
There were various errors due to changes in integrationDocPrefs.xul
since RTF Scan was last worked on.
2019-07-09 01:46:34 -04:00
Dan Stillman
d13ffcd9a3
Revert "Temporarily disable "Export Document…" button for 5.0.69"
...
This reverts commit a6e9d76c41
.
2019-06-25 23:53:47 -04:00
Dan Stillman
a6e9d76c41
Temporarily disable "Export Document…" button for 5.0.69
2019-06-24 21:22:34 -04:00
Dan Stillman
c1ab361c92
Revert "Temporarily disable "Export Document…" button for 5.0.68"
...
This reverts commit f38ae94259
.
2019-06-20 16:25:41 -04:00
Dan Stillman
f38ae94259
Temporarily disable "Export Document…" button for 5.0.68
2019-06-19 17:24:34 -04:00
Dan Stillman
e3e6b8ef9c
Revert "Temporarily disable "Export Document…" button for 5.0.67"
...
This reverts commit 487d675783
.
2019-06-16 02:33:24 -04:00
Dan Stillman
487d675783
Temporarily disable "Export Document…" button for 5.0.67
2019-06-14 11:16:14 -04:00
Adomas Venčkauskas
96a0b77192
Add the export warning to the plugin interface export command
2019-05-29 12:00:55 +03:00
Dan Stillman
2af63c0f33
Change document import/export documentation URL
2019-05-15 01:51:59 -04:00
Dan Stillman
c29c855d28
Document import/export: Additional text tweaks
2019-05-14 23:50:47 -04:00
Dan Stillman
8274c1c231
Tweaks to document import/export
...
Remove unused code and adjust text
Follow-up to 48778f28
2019-05-14 23:36:00 -04:00
Adomas Ven
48778f2847
Document export-import UI and integration code ( #1501 )
2019-05-14 21:06:18 -04:00
Adomas Venčkauskas
51d7959ccd
Revert "Ensure the doc prefs window is smaller than screen height"
...
This reverts commit 0fd28959bf
.
The change causes citation style listbox to fail displaying bottom
entries, a flexed listbox xul bug:
https://bugzilla.mozilla.org/show_bug.cgi?id=413336
2018-11-05 15:14:38 +02:00
Adomas Venčkauskas
9d98f765b2
Point doc help to general word processor help page. Closes #1585
2018-10-18 13:34:26 +03:00
Adomas Venčkauskas
0fd28959bf
Ensure the doc prefs window is smaller than screen height
...
Dynamically resizes the style picker up to the window height of 700px
2018-08-20 12:42:45 +03:00
Adomas Venčkauskas
5e5b567782
Add a connector document integration endpoint
...
Specifically for google docs via the connector, but could potentially be
used for any integration via HTTP or connector.
2018-04-20 13:08:34 +03:00
Adomas Venčkauskas
f871da17c8
Don't hide the automatic citation updates option in doc prefs
2018-03-08 22:23:59 +02:00
Adomas Venčkauskas
13766e1f6c
Show delayed citations checkbox in doc prefs dialog after initialization
...
Closes #1458
2018-03-05 14:26:57 +02:00
Adomas Venčkauskas
966c293dea
Add a pref to always show doc integration automatic updates option
2018-02-12 10:47:16 +02:00
Dan Stillman
e4cc28ac60
Tweak wording of delayed-citations mode
...
"Delay citation updates until manual refresh" would be fine in the doc
prefs, but "until manual refresh" is a bit too awkward for the prompt.
Instead, go with @rmzelle's suggestion from #1242 of referring to
"automatic citation updates", and invert the checkbox.
2018-01-16 12:53:12 -05:00
Adomas Venčkauskas
2827f70daa
Option to delay updating citation in document.
...
The checkbox in doc prefs is hidden until an update takes 5s or longer
after which the user is prompted to enable delaying.
2018-01-03 14:27:16 +02:00
Adomas Venčkauskas
430f58d3c4
Moves utilities code away from Zotero.Integration
2018-01-03 14:27:16 +02:00
Adomas Venčkauskas
b80cdb2915
A couple more changes to document prefs dialog
2017-05-05 11:19:34 +03:00
Adomas Venčkauskas
3c19bbffe4
Remove store references in document option. Closes #1216
2017-05-02 16:29:19 +03:00
Dan Stillman
9b53570968
Fix bibliographyTest breakage after d5cf33a798
...
d5cf33a798
adds a `yield` to bibliography.js, which runs in modal
windows (e.g., Create Bib), but there's a weird interaction between
Bluebird and modal dialogs that can result in hangs -- presumably
something to do with things being queued on the event loop but the modal
dialog preventing other code from running? This was breaking
bibliographyTest, but it seemed to work fine for me in normal usage,
waiting properly for a running styles initialization to finish. It's
possible this problem is limited to tests, but in the past, at least, I
apparently decided that this was a general problem with `yield` in modal
dialogs [1]. (See also: [2].) In any case, calling `yield
Zotero.Styles.init()` from the Create Bib window was hanging the test,
so for now do a synchronous check for style initialization to avoid it,
and we should make sure that `yield` actually works in other contexts.
[1] https://github.com/zotero/zotero/commit/99dd1c069776
[2] https://github.com/zotero/zotero/commit/c2dd531cec4
2017-04-13 05:20:36 -04:00
Adomas Venčkauskas
3e69da7e4c
Prompt if style in document is not from official source
2017-04-12 11:47:57 +03:00
Adomas Venčkauskas
269a250b4f
Fetch a style if it is not installed on document preferences load
2017-04-10 11:24:22 +03:00
Adomas Venčkauskas
d5cf33a798
Fix document preferences dialog failing when styles unloaded.
...
Closes #1084
2017-04-10 11:24:22 +03:00
Dan Stillman
474420620e
Add "Manage Styles…" link to Create Bib and Doc Prefs windows
...
Clicking it cancels the current window, opens the Cite pane of the
prefs, and selects the Styles tab. (This will be more useful once we
have inline style installation from that pane.)
2016-09-06 19:15:01 -04:00
Aurimas Vinckevicius
9fcb87ca93
Remember style and locale when explicitly selected by the user
2015-07-09 23:38:25 -05:00
Aurimas Vinckevicius
b6c7ba6ea2
Fix saving style locale in documents
2015-07-09 23:38:25 -05:00
Dan Stillman
ddf3ff9ba9
Don't try to set lastLocale pref in doc prefs unless locale was changed
2015-06-28 17:16:33 -04:00
Aurimas Vinckevicius
6ac0403049
Reorganize and improve locale drop-down code
2015-06-24 14:10:33 -04:00
rmzelle
06e6168cb4
Implement locale drop-down menus
2015-05-26 00:12:04 -04:00
Simon Kornblith
ecb8cb140d
Don't fire explicit styleChanged event on load
...
Otherwise, the bottom of the document preferences window can be
cut off the first time it is displayed. A styleChanged event is still
fired after setting the selection.
2013-04-18 03:30:33 -04:00
Simon Kornblith
6efe6c5bd6
Move "Automatically abbreviate journal titles" setting to document preferences
...
The setting is disabled by default for existing documents, but enabled by
default for new documents.
2013-03-27 23:53:38 -04:00
Dan Stillman
6220bc39f5
"Citations"/"Notes" instead of "Citation"/"Note" in right-click dialog
2012-11-06 01:16:03 -05:00
Dan Stillman
079b767974
Closes #44 , Allow generating citations via right-click
...
Currently generates multi-source citations for multiple items for note
styles, but a list of note citations might be better.
Also, context menu option is unchanged, since it becomes very long if
you add "Citation/Bibliography".
2012-11-01 21:47:10 -04:00
Simon Kornblith
25e49faa2c
Don't break bibliography dialog in RTF Scan
2012-02-14 12:06:26 -05:00
Simon Kornblith
10cef4c06f
Fix giant integration doc prefs window
2012-02-13 14:03:49 -05:00
Simon Kornblith
030f918e22
Don't let user uncheck "Store references" checkbox if there are stored references
2011-09-23 06:38:08 +00:00
Simon Kornblith
fa602e4984
Closes #1086 , Some way to carry metadata inside or along with Word documents
2011-08-05 18:20:08 +00:00
Dan Stillman
51f8c11ea0
Switch client code license to Affero GPL version 3
2011-05-18 18:34:22 +00:00
Dan Stillman
395833b940
Restore setTimeout() call removed in previous commit
2010-07-09 20:48:10 +00:00
Dan Stillman
92383c7f20
Addresses #1037 , Remove Firefox 2.0/3.0-specific code
2010-07-09 20:25:17 +00:00