mronkko
About
- Username
- mronkko
- Joined
- Roles
- Member
Comments
-
For some reason the exact same file went through when I imported it again. Weird. Mikko
-
It seems that the import processes 3336 items correctly and then hangs. I tried importing a smaller set of items around this part of the file, there are no problems. Is there some kind of limit of the file size that the software may run into? …
-
Well, this is one way. What I would like to achieve is some kind of progress indicator to the debug log to see how many items the script has processed. I tried to use Zotero.debug -function, but for some reason it does not work. I added …
-
I found a small bug in the plugin that causes the Zotfile button to disappear. On OS X and Firefox 3.1, do the following: 1) Open firefox 2) Open zotero 3) From file menu, choose "open new window" 4) Open zotero in this new window - Zot…
-
This functionality could probably achieved in two different ways using openmeta. 1) Write a script that queries the Zotero database for attached and linked files and their tags and then uses openmeta to replace the original tags with those atta…
-
I have the same problem. Mikko
-
Here is script for parsing the first page of a PDF from a files that have been retrieved from JSTOR. Similar translators could be written for other data bases. Also, journal level translators would be possible. Here is a bash script that proces…
-
I recently imported a large number of PDF files to Zotero as a huge drag and drop operation. While metadata lookup did a good job finding data for a number of articles, still approximately two thirds of my collection was not recognized. Still a larg…
-
This is exactly how I would expect it to behave. Just make a flat text bibliography entry. If I remember correctly, this is what endnote does. Mikko
-
Retrieve metadata is an awesome feature, but it does not work for all PDFs 1) Google scholar does not always provide the correct information 2) Not all PDFs that do have information about the title, author, and journal seem to work. For example …
-
@ahoward This is why modern clipboard software can store multiple formats. When copying the citation I could indeed paste it to a collection or to an editor. This is what drag and drop already does (at least kind of). The content that you drop is de…
-
I did not know about these keyboard shortcuts. However, for stupid use like me the fact that there is no menu item for copy leads to the conclusion that you cannot copy-paste from the list. If the function to copy a reference to clipboard exists, wh…
-
The extra enter is not an issue. However, people in general are used to moving things between programs using copy-paste, not Generate bibliography - paste. Copy could be just a wrapper to Generate bibliography with the default format and placi…
-
I understand that the current set of features make this kind of possible. However, it is not a practical solution to the use case that I would like to achieve. I often search through my collection of PDFs using Finder and then Cover Flow. The …
-
This can be a wine issue. See http://forums.zotero.org/discussion/4129/zotero-with-word-2007-running-over-wine-or-crossover-proposes-a-fix/#Item_1 Mikko
-
This link comes from an RSS feed. http://search.ebscohost.com/login.aspx?direct=true&db=buh&AN=35385879&site=ehost-live And if you have the authentication cookie stored, it redirects to http://web.ebscohost.com/ehost/det…
-
Also, it would be cool if right clicking on an item would show the option of searching for works that cite the selected paper or that are related to the paper with google scholar. Mikko
-
It seems that I cannot comment on the ticket in trac, so I will do so here. There is one additional thing that could be considered. Many journals that provide RSS feeds use the feed link as a landing page that redirects the user to the actual j…
-
As far as I know, you would need to use an external tool to sync the linked files. I would use a tool called Unison for that or just store the PDFs in a folder that is located on a server. Mikko
-
This seems to be somewhat related effort http://groups.google.com/group/zotero-dev/browse_thread/thread/b985e2285568e351# Mikko
-
This could be implemented as a zotero plugin (see for example zotfile-plugin) What the plugin would do is -Register an event handler to monitor when attachments are added -When an attachment is added the plugin would do three things 1) c…
-
Feel free to use the code anyway you like. A diff of the original and my additions can be found at http://pastebin.com/mda4b42c The changes are also now highlighted in the code I posted http://pastebin.com/m618943b I did three things 1)…
-
I did some studying of the code and came to the conclusion that this probably would not be too hard to implement. One approach would be to do following 1) Capture the drag and drop event in collection. If it is text or link (types text/uri-l…
-
" 2) If dragging a URL to a collection or the top level of the items pane, load the target page in the background and determine if there's a translator for it. If there is, save via the translator. If not, perform the equivalent of Create New Item…
-
I did some changes and now this is just the perfect plugin for my needs -makes filename extension lower case -asks for a confirmation before attaching a file -attaches the file as a zotero attachment instead of linked file The content of …
-
After testing this great plugin for a while I ended up accidentally attaching a wrong file several times. This can happen if you have downloaded more files after the one that you want to attach. One possible solution to this issue would be a c…
-
With the proposed fix, the file name extension still stays upper case. A better fix would be to change line number 158 from return(temp[temp.length-1]); to return(temp[temp.length-1].toLowerCase()); Mikko
-
Hi There is a small bug in this software. If the filename extension is in upper case (file.PDF) it is not included. This can be fixed by changing line 182 of zotfile.js from var filetype=this.getFiletype(file.leafName); t…