mronkko
About
- Username
- mronkko
- Joined
- Roles
- Member
Comments
-
Seems to work now. The style in http://www.zotero.org/styles/misq/dev works fine. It was my old copy that had a problem.
-
If I remove the edition-field, it seems to work. Also, If I change the citation style, it seems to work. So this only seems to happen with the MISQ style that I have written myself. The CSL file is available at http://www.zotero.org/styles/misq/dev
-
The problematic item is now exported to http://dl.dropbox.com/u/694399/ExportedItems.rdf
-
I am currently troubleshooting this myself using the 2.1 branch from SVN and printing things to console. I will most likely find the faulty citation soon and will post the problematic reference online when I find it.
-
Here is another stacktrace. This happens when I try to change the citation style. zotero(3)(+0000002): 'message' => "curr is undefined" 'fileName' => "chrome://zotero/content/xpcom/citeproc.js" 'lineNumber' => 756 'stack' =…
-
The problem is back. Now I have a particular document that produces this always when I try to refresh the Zotero fields in the document. Here is a stacktrace of the error: zotero(3)(+0000098): 'message' => "curr is undefined" 'fileName…
-
Works well on OS X and Firefox 4. At this point I have a couple of suggestions: -The buttons could use tool tips -On OS X, the style of the buttons is different from the style of the other Zotero buttons. -When I use a translator to create a new ite…
-
There is now a new testing version available. This version enables QuickLook from Word 2011 on Mac. (Also earlier versions of word might work, but I have not tested them.) How to use: -Move cursor on a citation -Press ctrl+option+q to open the item…
-
Which browser you are using? I have not had any problems with registering with my MacBook using Firefox, but that was quite a long time ago.
-
This problem went away (At least for now) after I restarted Firefox.
-
Also, with this document the citatins are "out of sync". When I toggle the field codes on, I can see that the citations are in correct places. However, they are not rendered properly. For example an item with uri http://zotero.org/groups/6184/ite…
-
1183848238
-
chbr14: For some reason I did not receive an email notification of a new post. Please let me know if this is still and issue and I will see how it can be fixed.
-
bentle: Some people have had performance problems with Windows version of ZoteroQuickLook. If the performance is good on your system, would you like to share the following details: -how long it takes to open the quicklook window? -which PDF reader d…
-
There is a new development version available for testing. Changes include: -Added cleaning of cached notes -Fixed a bug where MaComfort was not found on 64bit Windows 7 -Increased the version number from 1.2 There is also a new demo video available…
-
bentle: It is a 64 bit Windows problem. ZoteroQuickLook looks for MaComfort at C:/Program Files/MaComfort, but on 64bit Windows the path is C:/Program Files (64)/MaComfort A quick fix is to copy the MaComfort folder to Program Files. Alternatively …
-
Thanks for nice reviews! There is now a new version available at http://www.tkk.fi/u/mronkko/zoteroquicklook.xpi This will be version 1.2 The changes from 1.1 include -Support for Zotero 2.1 -Small code optimizations -The plugin now shows also no…
-
Closing with esc implemented. A new version is available at the same address http://www.tkk.fi/u/mronkko/zoteroquicklook.xpi If you like the plugin, I would appreciate having more ratings and reviews at the Mozilla extensions directory https://ad…
-
How did I miss that? There is now a new version where spacebar works again. http://www.tkk.fi/u/mronkko/zoteroquicklook.xpi
-
There is a new version of ZoteroQuickLook available at http://www.tkk.fi/u/mronkko/zoteroquicklook.xpi This version fixes the Zotero as a tab issue. Once I have a few people confirming that this works for them, I will publish it through Mozilla Ex…
-
ZoteroQuickLook is almost identical to Papers Quicklook and they both probably use the same programming interface available on OS X. A similar programming interface is not available on Windows and this makes it very difficult to develop a good quick…
-
Zotfile might be what you are looking for https://addons.mozilla.org/en-US/firefox/addon/zotfile/ Also, these thread covers some other solutions http://forums.zotero.org/discussion/5301/3/zotero-plugin-to-rename-move-and-attach-your-pdfs-to-zoter…
-
We checked and these files exists on the computer on which the items were created. However, for some reason they do not seem to sync.
-
Thanks for reporting this bug. I will look into it when I have some spare time. I am myself still on the stable version, so have not tested with Zotero as a tab. The quicklook is used through qlmanage command and it does not have an option to set t…
-
You can (at least in principle) set up two-way syncing with iAnnotate and Zotero in the following way: 1) Install DropBox on your computer and iPad 2) Write a script that will scan your Zotero items and move these to a human readable folder structur…
-
Here is a commented version of the SQL script 'SELECT /* Any fields that we use to buld the path name from */ idv1.value, idv2.value, /* fields that are needed to locate the file inside zotero data directory */ i2.key, ia.path /* Tables needed fo…
-
You can just change the IDs 12 and 14 in the original query to what you like. Authors are actually stored in a different table called creatorData. I will take a look at that and post back shortly. If I knew how to run a script every time an item i…
-
One way to "reverse engineer" the field type IDs is to run the following query echo "select * from itemData, itemDataValues where itemData.valueId=itemDataValues.valueId;" | sqlite3 zotero.sqlite The second column in the listing is the field id an…
-
If your DropBox folder is on the same filesystem as your Zotero data directory, hard links are better. They will sync to other DropBox devices like normal files. (I assume that you know what hard links are.) The field IDs (e.g. id1.fieldID=14) tell…
-
The linkmode-column tells if the item is an external item that is linked to zotero or an imported item. Basically it tells where the file is located. (If I remember correctly) I was assuming that no-one wants to copy/link files that are not inside Z…