<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"><channel><title>Disruptive Library Technology Jester &#187; Zotero</title> <atom:link href="http://dltj.org/tag/zotero/feed/" rel="self" type="application/rss+xml" /><link>http://dltj.org</link> <description>We&#039;re Disrupted, We&#039;re Librarians, and We&#039;re Not Going to Take It Anymore</description> <lastBuildDate>Fri, 18 May 2012 15:43:10 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <cloud domain='dltj.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' /> <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license> <item><title>Anatomy of the Zotero Library to RSS Feed Pipe</title><link>http://dltj.org/article/zotero-rss-pipe-anatomy/</link> <comments>http://dltj.org/article/zotero-rss-pipe-anatomy/#comments</comments> <pubDate>Fri, 06 Mar 2009 12:30:53 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Raw Technology]]></category> <category><![CDATA[howto]]></category> <category><![CDATA[rss]]></category> <category><![CDATA[Yahoo pipes]]></category> <category><![CDATA[Zotero]]></category><guid isPermaLink="false">http://dltj.org/?p=788</guid> <description><![CDATA[Note! A new feature on the Zotero website does away with the need to use this Yahoo! Pipe. RSS feeds are now generated by the Zotero website itself. Read more about it on the Zotero blog.Last week I posted about &#8230; <a href="http://dltj.org/article/zotero-rss-pipe-anatomy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=788"></abbr><div style="border: 2px solid red; text-color: black; background: #EEE; padding:1em;">Note!  A new feature on the Zotero website does away with the need to use this Yahoo! Pipe.  RSS feeds are now generated by the Zotero website itself. <a href="http://www.zotero.org/blog/follow-libraries-and-collections-with-feeds/" title="Zotero Blog  &amp;raquo; Blog Archive   &amp;raquo; Follow Libraries and Collections with Feeds">Read more about it</a> on the Zotero blog.</div><p>Last week I posted about a <a href="http://dltj.org/article/zotero-library-rss/">Yahoo Pipes construct that turns a Zotero website library into an RSS feed</a>.  As Dan Cohen noted in a <a href="http://twitter.com/dancohen/statuses/1265440178" title="Twitter from Dan Cohen to Peter Murray">twitter response</a> to the posting, the Zotero team is planning to add an RSS capability in a future release of the website, so this pipe will ultimately be usurped by that capability, but in the meantime it is <a href="http://pipes.yahoo.com/peteratohiolink/zoterolibraryrss" title="Pipes: Zotero Library to RSS">a handy tool</a>.  It was my first full-scale foray into creating a Yahoo Pipes construct from scratch, so I thought it would be useful to document how it works (in case I need to do something similar again).  You might find this useful, too; especially the part about how to put a pubDate element into the RSS feed.</p><div id="attachment_788" class="wp-caption alignnone" style="width: 937px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center;"><br /><table width="925" cellpadding="0" cellspacing="0"><tr><td colspan="2"><img src="http://cdn.dltj.org/wp-content/uploads/2009/02/pipes-top.png" alt="" title="" width="923" height="422" class="alignnone size-full wp-image-788" /></td></tr><tr><td width="426" valign="top"><img src="http://cdn.dltj.org/wp-content/uploads/2009/02/pipes-left.png" alt="" title="" width="426" height="681" class="alignnone size-full wp-image-789" /></td><td valign="top" style="padding:1em 0 0 1em; text-align:left">A couple of things to note:</p><ul type="disc"><li>The basic structure is to iterate over a list of items.  The modules on the right side (above) work to construct a URL to the Zotero Library page while the modules on the left actually get that page, find the list of items (by defining where the list is located in the HTML structure), and massage them into an RSS feed.  In the case of this example, the Pipe is iterating over a list of <code>&lt;tr&gt;</code> elements in the table that displays the library items.</li><li>Strings with elements separated by periods are XPATH-like constructs.  For instance, the &#8220;Path to Item List&#8221; in the upper right module is <code>body.div.1.div.div.1.table.tbody.tr</code>.  The corresponding XPATH is <code>/html/body/div[2]/div/div[2]/table/tbody/tr</code>.  Note a few things: the leading element (<code>html</code>) is omitted, slashes are replaced by periods, and ordinal numbers are separated from their base elements with periods and are subtracted by 1.  Later on there are examples where attribute names (&#8220;<code>href</code>&#8220;) and references to text nodes (&#8220;<code>content</code>&#8220;) are also included in these path strings.</li></ul></td></tr></table><p><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Graphic representation of the Yahoo! Pipes construct to turn a Zotero library web page into an RSS feed.</p></div><p>The process starts with the two <a href="http://pipes.yahoo.com/pipes/docs?doc=user_inputs#PrivateText" title="Pipes - User Input Modules">Private Text Input</a> modules at the top right &mdash; one each for the Zotero Username and the Zotero User Number.  The defaults are set to my values, and they are marked private &mdash; meaning that if someone clones this pipe, these values are not carried along.</p><p>Directly below is a <a href="http://pipes.yahoo.com/pipes/docs?doc=url#URLBuilder" title="Pipes - URL Modules">URL Builder</a> module.  The base URL is <code>http://www.zotero.org</code>, and there are three path elements:  the first is a connection from the <i>Zotero Username</i> Private Text Input, the second is a connection from the <i>Zotero User Number</i> Private Text Input, and the third is the literal &#8220;<code>items</code>&#8220;.  This builds a URL that looks like <code>http://www.zotero.org/dltj/683/items</code> and that corresponds to the <a href="http://www.zotero.org/dltj/683/items" title="Zotero: Library">Zotero user&#8217;s library items page</a>.</p><p>Starting at the upper left of the diagram, the output of the URL Builder is connected to the URL field of a <a href="http://pipes.yahoo.com/pipes/docs?doc=sources#FetchData" title="Pipes - Source Modules">Fetch Data</a> module.  The &#8220;Path to Item List&#8221; parameter is set to <code>body.div.1.div.div.1.table.tbody.tr</code> and that is a pointer to the portion of the XHTML document that contains the library items.  Because the Zotero website is outputting XML (as XHTML), we can use the Fetch Data module and parse the page as if it was an XML document.  The Path to Item List is an XPATH-like structure that points into the document structure (see note above).  The result of this module is a list of items &mdash; the table rows in this case &mdash; that are processed by the remaining modules.</p><p>The next module down is a <a href="http://pipes.yahoo.com/pipes/docs?doc=operators#Rename" title="Pipes - Operator Modules">Rename</a> module, where the value of the XPATH-like path <code>item.td.0.a.content</code> is copied to the item <code>title</code> element.  The XPATH, from the root of the &#8220;Path to Item List&#8221; in the module above, is <code>td/a</code>; note here the added <code>item</code> at the front and the <code>content</code> at the end. Specifying the zeroth <code>td</code> element isn&#8217;t needed, but it brings symmetry with subsequent modules. <code>content</code> corresponds to the text node under the <code>a</code> element when viewing this as an XML document.</p><p>What follows is a series of <a href="http://pipes.yahoo.com/pipes/docs?doc=operators#Loop" title="Pipes - Operator Modules">Loop</a> modules that act on different parts of the items in the list.  The first builds the <code>link</code> element of the item using the <a href="http://pipes.yahoo.com/pipes/docs?doc=string#StringBuilder" title="Pipes - String Modules">String Builder</a> module.   The <code>href</code> in the XML is a relative path, so the String Builder adds the literal &#8220;<code>http://www.zotero.org</code>&#8221; to the value found in <code>item.td.0.a.href</code> (the <code>href</code> attribute of the anchor element of the first <code>td</code> element).  The resulting string is assigned to the <code>link</code> element of each item in the list.</p><p>The second Loop module encapsulates a <a href="http://pipes.yahoo.com/pipes/docs?doc=date#DateBuilder" title="Pipes - Date Modules">Date Builder</a> module, and this is the inspiration for writing this post.  It took a very long time to figure out how to get the <code>pubDate</code> element into each item of the resulting RSS feed.  As it turns out, one cannot simple assign the <code>pubDate</code> element like we did the <code>title</code> element above.  Instead, one sets the timestamp to the <code>y:published</code> element and Yahoo Pipes takes it from there.  And it isn&#8217;t enough to assign a text string to that element; it has to be a Date type, constructed using the Date Builder module.  The Date Builder module is very flexible in what it accepts, and it creates a canonical timestamp form that can be used by other modules.  In this case, the Date Builder module takes as a source input the string value found at <code>item.td.2.a.content</code>.  Believe me &#8212; it took a long time to figure this out, and it was only done by piecing together various suggestions and examples; there doesn&#8217;t seem to be any clear documentation about this.</p><p>The third and fourth Loop modules go together.  The third takes the value found in <code>item.td.0.a.span.class</code> and applies a <a href="http://pipes.yahoo.com/pipes/docs?doc=operators#Regex" title="Pipes - Operator Modules">String Regex</a> module to it.  The value of that class attribute contains the type of item in the Zotero library, and it takes the form of &#8220;<code>img-book</code>&#8221; or &#8220;<code>img-journalArticle</code>&#8221; or &#8220;<code>img-conferencePaper</code>&#8220;.  There are two regular expressions defined:  the first removes the &#8220;<code>img-</code>&#8221; prefix from each value and the second replaces all instances of an upper case letter with a space plus the lower case version of the letter.  The latter rule turns &#8220;<code>journalArticle</code>&#8221; into &#8220;<code>journal article</code>&#8221; (note that there is a space in this field prior to the <code>\L</code> part).  The result is assigned to the <code>item.itemType</code> element.  This is used in the final Loop module to build a <code>item.description</code> element to create the string: <code>&lt;p&gt;This journal article  was saved to my Zotero library.&lt;/p&gt;</code>.</p><p>That&#8217;s all there is to it.  Yahoo Pipes applies all of these modules to each of the items in the list retrieved from the Zotero library page and generates the corresponding RSS feed.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/zotero-rss-pipe-anatomy/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Zotero Library to RSS Feed</title><link>http://dltj.org/article/zotero-library-rss/</link> <comments>http://dltj.org/article/zotero-library-rss/#comments</comments> <pubDate>Sat, 28 Feb 2009 17:03:54 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Raw Technology]]></category> <category><![CDATA[rss]]></category> <category><![CDATA[Yahoo pipes]]></category> <category><![CDATA[Zotero]]></category><guid isPermaLink="false">http://dltj.org/?p=774</guid> <description><![CDATA[Note! A new feature on the Zotero website does away with the need to use this Yahoo! Pipe. RSS feeds are now generated by the Zotero website itself. Read more about it on the Zotero blog.Earlier this week, the Zotero &#8230; <a href="http://dltj.org/article/zotero-library-rss/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=774"></abbr><div style="border: 2px solid red; text-color: black; background: #EEE; padding:1em;">Note!  A new feature on the Zotero website does away with the need to use this Yahoo! Pipe.  RSS feeds are now generated by the Zotero website itself. <a href="http://www.zotero.org/blog/follow-libraries-and-collections-with-feeds/" title="Zotero Blog  &amp;raquo; Blog Archive   &amp;raquo; Follow Libraries and Collections with Feeds">Read more about it</a> on the Zotero blog.</div><p>Earlier this week, the Zotero team <a href="http://www.zotero.org/blog/zotero-15-beta-released-join-us-in-the-clouds/" title="Zotero Blog  &amp;raquo; Blog Archive   &amp;raquo; Zotero 1.5 Beta Released: Join Us In The Clouds">released its 1.5 Beta version</a>.  Among the much anticipated features is the ability to <a href="http://www.zotero.org/support/sync" title="sync    [Zotero Documentation]">synchronize citations</a> among computers and with a display at the Zotero website.  And if you set the profile permissions on the website, anyone can view your display of citations as well.  As <a href="http://www.dancohen.org/" title="Dan Cohen&amp;#8217;s Digital Humanities Blog">Dan Cohen</a>, Director of the Center for History and New Media where Zotero is being created, <a href="http://twitter.com/dancohen/statuses/1247887132" title="Twitter / Dan Cohen: Enjoying browsing the libr ...">points out</a>, it is fun to see what others have added to their Zotero library.  You might even want to watch what others have saved to their library.  That is where this Zotero-to-RSS mashup comes in.</p><p>I&#8217;ve <a href="http://pipes.yahoo.com/peteratohiolink/zoterolibraryrss" title="Pipes: Zotero Library to RSS">set up a Yahoo! Pipe</a> that examines a Zotero user&#8217;s citation page and turns it into an RSS feed.  There is one prerequisite &#8212; the user must have turned on the profile option on the Zotero website to &#8220;Publish Entire Library&#8221; (see figure 1).  If you want to publish your own citations, you&#8217;ll need to set this by using the &#8220;Settings&#8221; link in the upper right corner of any Zotero.org page when you have signed in.</p><div id="attachment_779" class="wp-caption alignnone" style="width: 700px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center;"><img src="http://cdn.dltj.org/wp-content/uploads/2009/02/zotero_privacy_settings1.png" alt="Zotero Privacy Settings" title="Zotero Privacy Settings" width="690" height="241" class="size-full wp-image-779" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Figure 1. Zotero Privacy Settings</p></div><p>To use the Yahoo! Pipe, you will need two bits of information:  the Zotero username and the Zotero user number.  These bits of information are available in the URL of a library on the Zotero website.  For instance, the URL to my Zotero page is::</p><div style="font-size: 110%; font-family:monospace">http://www.zotero.org/<span style="color:red">dltj</span>/<span style="color:green">683</span></div><p>The <span style="color:red;font-family:monospace">dltj</span> is my Zotero Username and <span style="color:green;font-family:monospace">683</span> is my Zotero User Number.  Similarly, for <a href="https://www.zotero.org/dancohen/2">Dan Cohen&#8217;s Zotero page</a>, his Username is <span style="color:red;font-family:monospace">dancohen</span> and his User Number is <span style="color:green;font-family:monospace">2</span>.  With that information you can go to the <a href="http://pipes.yahoo.com/peteratohiolink/zoterolibraryrss" title="Pipes: Zotero Library to RSS">Zotero-to-RSS Yahoo! Pipe</a> (<a href="http://pipes.yahoo.com/peteratohiolink/zoterolibraryrss" title="Pipes: Zotero Library to RSS">http://pipes.yahoo.com/peteratohiolink/zoterolibraryrss</a>), and plug it into the form (see figure 2).  Select the &#8220;Run Pipe&#8221; button and after a few seconds you&#8217;ll see the results.</p><div id="attachment_780" class="wp-caption alignnone" style="width: 700px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center;"><img src="http://cdn.dltj.org/wp-content/uploads/2009/02/yahoo-pipe-config1.png" alt="Yahoo! Pipe Configuration" title="Yahoo! Pipe Configuration" width="690" height="122" class="size-full wp-image-780" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Figure 2. Yahoo! Pipe Configuration</p></div><p>If you see an error &#8220;error fetching&#8221; warning with a &#8220;403 Forbidden&#8221; message, that means the user has not opened up their Zotero library for public viewing.  But if they (or you!) have, then you can use the &#8220;Get as RSS&#8221; link as a way to track additions to the library.  For instance, I&#8217;ve added my Zotero library feed as a &#8220;Blog&#8221; source to <a href="http://friendfeed.com/dltj" title="Peter Murray - FriendFeed">my FriendFeed profile</a>.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/zotero-library-rss/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>George Mason University Issues Statement on Reuters/Zotero Lawsuit</title><link>http://dltj.org/article/gmu-zotero-response/</link> <comments>http://dltj.org/article/gmu-zotero-response/#comments</comments> <pubDate>Wed, 29 Oct 2008 14:34:24 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[policy]]></category> <category><![CDATA[EndNote]]></category> <category><![CDATA[legal]]></category> <category><![CDATA[Zotero]]></category><guid isPermaLink="false">http://dltj.org/?p=558</guid> <description><![CDATA[George Mason University issued a statement this morning regarding the lawsuit filed against it by the Thomson Scientific division of Reuters. It looks like GMU intends to fight the lawsuit. It has restored the functionality that allowed Zotero to understand &#8230; <a href="http://dltj.org/article/gmu-zotero-response/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=558"></abbr><p>George Mason University <a href="http://eagle.gmu.edu/newsroom/721/" title="Statement from George Mason University on Center for History and New Media&#039;s Zotero Software - Media and Public Relations - George Mason University">issued a statement</a> this morning regarding the lawsuit filed against it by the Thomson Scientific division of Reuters.  It looks like GMU intends to fight the lawsuit.  It has <a href="https://www.zotero.org/trac/changeset/3634" title="Changeset #3634 in the Zotero source code repository">restored the functionality</a> that allowed Zotero to understand the EndNote&reg; citation style file format and announced that it will not renew its site license for <del datetime="2008-11-11T13:50:19+00:00">Zotero</del> EndNote.  [Bah -- got this wrong initially.  Thanks for pointing this out, Ryan.]</p><blockquote><p>The Thomson Reuters Corporation has sued the Commonwealth of Virginia over Zotero, a project based at George Mason University&rsquo;s Center for History and New Media (CHNM). A free and open-source software initiative, Zotero aims to create the world&rsquo;s best research tool and has already been adopted by hundreds of thousands of users at countless colleges and research universities. CHNM announces that it has re-released the full functionality of Zotero 1.5 Sync Review to its users and the open source community. As part of its formal response to this legal action, Mason will also not renew its site license for EndNote.</p><p>As academics themselves, the creators of the Zotero project strive to serve the scholarly community and to respond to its needs in an age of digital research. In line with that simple goal, they maintain that anything created by users of Zotero belongs to those users, and that it should be as easy as possible for Zotero users to move to and from the software as they wish, without friction. CHNM concurs with the journal Nature, which recently <a href="http://www.nature.com/nature/journal/v455/n7214/full/455708a.html" title="Beta blockers? : Article : Nature">editorialized</a> [link added] about this matter: &ldquo;The virtues of interoperability and easy data-sharing among researchers are worth restating.&rdquo;</p><p>CHNM remains committed to the openness it has promoted since its founding at Mason in 1994 and to the freedoms of users of its websites and software. Its ambitious development cycle and plans for Zotero&rsquo;s future remain unchanged. CHNM will continue to develop and implement new research technologies in the pursuit of better ways to create and share scholarship. CHNM greatly appreciates the many supportive comments it has received from scholars, librarians, and administrators around the globe.</p></blockquote><p>The statement was also <a href="http://www.zotero.org/blog/offical-statement/" title="Zotero: The Next-Generation Research Tool  &amp;raquo; Blog Archive   &amp;raquo; Offical Statement">posted</a> in the official Zotero blog and <a href="http://www.dancohen.org/2008/10/29/official-statement/" title="Dan Cohen&amp;#8217;s Digital Humanities Blog  &amp;raquo; Blog Archive   &amp;raquo; Official Statement">copied</a> into the personal blog of Dan Cohen, director of GMU&#8217;s Center for History and New Media.  In addition, Zotero project co-director <a href="http://chnm.gmu.edu/staff/sean-takats/" title="Sean Takats&#039; homepage">Sean Takats</a> has a post describing <a href="http://quintessenceofham.org/2008/10/29/gmu-responds-to-thomson-reuters-lawsuit/" title="GMU Responds to Thomson Reuters Lawsuit  at  The Quintessence of Ham">some of the new features</a> of the just-released update to the <a href="http://www.zotero.org/documentation/sync_preview" title="sync preview    [Zotero Documentation]">Zotero 1.5</a> Sync Preview development version.</p><p><h2>Response from Thomson Reuters</h2><br />Update 20081031T0822 : In a comment to this post, Allison noted that Thomson Reuters has issued a response:<br /><blockquote>The Scientific business of Thomson Reuters has initiated a law suit against George Mason University (GMU) because of violations of the terms and conditions of the EndNote® Desktop license agreement.</p><p>Thomson Reuters VP, Business Strategy and Development, Dave Kochalko said, “Simply put, we strongly believe that the creators of Zotero have reverse engineered our software code which enables EndNote’s bibliographic formatting capability. These format files only exist as software code; there is no content or information independent of lines of code and these files can only be interpreted by the computer. A key value of EndNote is its ability to format a bibliography within a manuscript and the format files are integral to that capability. We have talented employees who have invested many years in building this resource for the EndNote community.”</p><p>Kochalko added, “We are absolutely a proponent of interoperability and easy data sharing provided contracts are not breached and intellectual property is respected.  We have worked diligently over the past several months to resolve this matter amicably. Since it has become clear that a resolution is not possible at this time, we have no choice but to pursue litigation in order to protect our intellectual property, as well as protect our bibliographic formatting capability, an important publishing resource our EndNote user-community has relied upon for many years.”</p></blockquote><p>I think Thomson Reuters is really out on a limb here.  File formats exist as bits of information; it is software code that interprets those bits of information.  There is certainly a history of &#8220;<a href="http://en.wikipedia.org/wiki/Black_box" title="Black box - Wikipedia, the free encyclopedia">black box</a> deciphering of file formats.  That is to say, examining the files themselves in the absence of the underlying source code to determine content and structure. <a href="http://waybackmachine.org/20081029000000/http://www.opendwg.org/node/86" title="OpenDWG History | Open Design Alliance">There is precedent for this.</a> All of that said, it looks like this conflict is going to wind up in the courts, and we might get a judgment on whether it was legal.<p style="padding:0;margin:0;font-style:italic;">The text was modified to update a link from http://www.opendwg.org/node/86 to http://waybackmachine.org/20081029000000/http://www.opendwg.org/node/86 on January 28th, 2011.</p><div class='series_links'><a href='http://dltj.org/article/endnote-zotero-lawsuit-2/' title='Updates on the EndNote/Zotero Lawsuit'>Previous in series</a> <a href='http://dltj.org/article/thompson-zotero-lawsuit-dismissed/' title='Thompson Reuters Lawsuit Against Zotero Creators Dismissed'>Next in series</a></div>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/gmu-zotero-response/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Updates on the EndNote/Zotero Lawsuit</title><link>http://dltj.org/article/endnote-zotero-lawsuit-2/</link> <comments>http://dltj.org/article/endnote-zotero-lawsuit-2/#comments</comments> <pubDate>Mon, 06 Oct 2008 15:42:17 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[policy]]></category> <category><![CDATA[EndNote]]></category> <category><![CDATA[legal]]></category> <category><![CDATA[Zotero]]></category><guid isPermaLink="false">http://dltj.org/?p=535</guid> <description><![CDATA[This is a brief update on the EndNote/Zotero lawsuit. The story thus far: The Thomson Scientific division of Reuters, maintainer of the EndNote software, is suing George Mason University over the upcoming release of Zotero, the Firefox plugin for managing &#8230; <a href="http://dltj.org/article/endnote-zotero-lawsuit-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=535"></abbr><p>This is a brief update on the EndNote/Zotero lawsuit.  The story thus far:  The Thomson Scientific division of <a href="http://www.thomsonreuters.com/" title="Thomson Reuters homepage">Reuters</a>, maintainer of the <a href="http://www.endnote.com/" title="EndNote software homepage">EndNote</a> software, is <a href="http://www.courthousenews.com/2008/09/17/Reuters_Says_George_Mason_University_Is_Handing_Out_Its_Proprietary_Software.htm" title="Courthouse News Service story">suing</a> <a href="http://www.gmu.edu/" title="George Mason University homepage">George Mason University</a> over the upcoming release of <a href="http://www.zotero.org/" title="Zotero homepage">Zotero</a>, the Firefox plugin for managing citations.  More specifically, <a href="http://dltj.org/article/zotero-lawsuit-extracts/">the complaint</a> filed in Virginia state courts says &#8220;GMU reverse engineered or de-compiled the EndNote Software and the proprietary .ens files contained within the EndNote Software in order to determine how to convert the EndNote Software .ens style files into the open source Zotero .csl style files, in direct and material violation of the [sitewide] License Agreement [signed by GMU].&#8221;  (Note, though, as <a href="http://community.muohio.edu/blogs/darcusb/archives/2008/09/27/lawsuit" title="Lawsuit discussion on Bruce D&#039;Arcus blog" class="broken_link" rel="nofollow">others</a> <a href="http://numinoria.blogspot.com/2008/09/if-you-cant-beat-em-sue-em.html" title="if you can&#039;t beat &#039;em, sue &#039;em">have</a> <a href="http://jasonpuckett.net/2008/09/26/thomson-suing-george-mason-u-over-zotero/" title="Thomson suing George Mason U over Zotero">pointed</a> <a href="http://mfeldstein.com/thomson-suing-zotero-more-info-and-more-thoughts/" title="Thomson Suing Zotero: More Info and More Thoughts">out</a>, Zotero is not converting EndNote Style files to <a href="http://xbiblio.sourceforge.net/csl/" title="Citation Style Language homepage">Citation Style Language</a> (CSL) files.<sup><a href="http://dltj.org/article/endnote-zotero-lawsuit-2/#footnote_0_535" id="identifier_0_535" class="footnote-link footnote-identifier-link" title="Citation Style Language is an &amp;#8220;XML language to describe bibliographic and citation formatting.&amp;#8221;  It is used by Zotero and other citation management tools.">1</a></sup> It is parsing EndNote Style files and using them internally along side style definitions defined using CSL.  Or, at least it was until the <a href="https://www.zotero.org/trac/changeset/3451">function was removed from the code</a>.)</p><p><h2 id="endnote-style-license">EndNode Styles Site now behind a Click-Through License</h2><br /><acronym title="Disruptive Library Technology Jester"><i>DLTJ</i></acronym> reader Rick <a href="http://dltj.org/article/endnote-zotero-lawsuit/#comment-33953">reports</a> that the <a href="http://www.endnote.com/support/enstyles.asp" title="EndNote Styles site">EndNote Output Styles site</a> now redirects to a <a href="http://www.endnote.com/support/enstyles-terms.asp" title="EndNote Styles Terms of Use">click-through license</a> that you must accept.  Presumably, if you accept it, you get to see the directory of styles; I haven&#8217;t clicked through it, however.  As of the time of this posting, the text of the click-through license says:<br /><blockquote><p><b><font face="Verdana, Arial, Helvetica, sans-serif">To download EndNote output styles, connection files, import filters, templates and the user manual you must agree to the following terms.</font></b></p><p><b><font color="#336699" face="Verdana, Arial, Helvetica, sans-serif">1. USE OF DOWNLOADED FILES<br /></font></b><br /><font face="Verdana, Arial, Helvetica, sans-serif">EndNote output styles, connection files, import filters, templates and the user manual are provided solely for use by licensed owners of EndNote and with the EndNote product. </font></p><p><font face="Verdana, Arial, Helvetica, sans-serif"><b><font color="#336699">2. RESTRICTIONS</font></b><br />End User may not modify, translate, decompile, reverse engineer, retransmit in any form or by any means (electronic, mechanical, photocopied, recorded or otherwise), resell or redistribute EndNote and its associated files, or any portion thereof, without the prior written consent of Thomson Reuters.</font></p><p><font face="Verdana, Arial, Helvetica, sans-serif"><b><font color="#336699">3. PROPRIETARY RIGHTS OF THOMSON REUTERS</font></b><br />End User agrees that Thomson Reuters is the sole and exclusive owner of all rights in the EndNote product. EndNote is protected by United States copyright and other laws, as well as international treaty provisions, and End User must treat EndNote as any other copyrighted and legally protected material. All rights in the EndNote product not expressly granted herein are reserved by Thomson Reuters. </font></p></blockquote><p>This seems a little like closing the barn door after the horse has gone.<sup><a href="http://dltj.org/article/endnote-zotero-lawsuit-2/#footnote_1_535" id="identifier_1_535" class="footnote-link footnote-identifier-link" title="An explanation of the clich&amp;eacute;  Why close the barn door after the horse is gone?">2</a></sup> And it opens up all sorts of questions like:  What about all of the EndNote Style files that are <a href="http://www.library.uq.edu.au/endnote/styles.html#alpha" title="EndNote Styles" class="broken_link" rel="nofollow">posted</a> <a href="http://www.interscience.wiley.com/jendnotes/" title="Wiley InterScience :: EndNote Reference Style Files">on</a> <a href="http://journals.iucr.org/services/endnotestyle.html" title="IUCr EndNote output style">other</a> <a href="http://www.rsc.org/Publishing/ReSourCe/AuthorGuidelines/ElectronicFiles/Templates/endnote.asp" title="RSC Endnote Style Files">sites</a> and <a href="http://www.google.com/search?q=filetype%3Aens" title="Google search for filetype &#039;ens&#039;">all over the web</a>?  Do these sites now need to put their .ens files behind similar click-through licenses?  Does the license apply to EndNote Style files that I create myself using the EndNote software?</p><p><h2 id="forum-gripes">&#8220;Gripes About the New Contract for Downloads&#8221;</h2><br />This change has already prompted <a href="http://forums.thomsonscientific.com/ts/board/message?board.id=en-general&amp;thread.id=649" title="">these comments</a> by <a href="http://forums.thomsonscientific.com/ts/profile?user.id=1405" title="View Profile for noksagt">an EndNote user</a> on the <a href="http://forums.thomsonscientific.com/ts/board?board.id=en-general" title="EndNote General - Thomson Reuters Forums">EndNote support forums</a>:<br /><blockquote>I&#8217;m not very amused by the new covenants to download style files. I realize that a recent lawsuit against a competitor may have spooked people, but I don&#8217;t understand several issues:</p><p>Can these files be used by users of the EndNote trial as part of their evaluation process? The first term of the contract seems like it may prohibit that.</p><p>Why is the user manual not made available to everyone? It can be useful prior to the purchase of EndNote for informational evaluation. I do not see what value it has to your competitors, and I see only advantages for EndNote in increasing the distribution of the manual.</p><p>Why is the word &#8220;modify&#8221; in covenant 2? You do not ship every output styles, connection files, import filters, or template for all needs. Fortunately, EndNote has excellent editors to fill in these gaps. Can I no longer modify the components of EndNote for use form within EndNote, even though I have a license? If so, this seems to be a major loss of value!</p><p>Another common practice that is prohibited now is sharing a subset of files with other EndNote users.  My previous research group had styles of journals we used and connection files for databases we used in a common location. This made it very easy to make a minimal installation of EndNote on new workstatons and also to grab missing files without slogging through the online repository.  Many other groups and libraries seem to do something similar.  Again, this practice would make EndNote more valuable.</p></blockquote><p><h2 id="michael-feldstein-thoughts">More on What Zotero Does</h2><br />Michael Feldstein has some thoughts about what Zotero is actually doing in relation to the EndNote Style files:<br /><blockquote>Unfortunately, [the Reuters lawsuit] is also based on claims that appear to be factually false. Apparently, the Zotero team <em>did</em>&nbsp;create their own style format and <em>is</em>&nbsp;crowd-sourcing the creation of import styles. As you can see from <a href="https://www.zotero.org/trac/ticket/704">this Zotero developer discussion thread</a>, the developers considered and explicitly rejected supporting the redistribution of Thomson-supplied EndNote conversion files. In fact, while Zotero can read EndNote style files, it specifically does not convert them into Zotero&#8217;s own format, in large part to discourage the redistribution (deliberately or accidentally) of Thomson-created files. What the import feature <em>does</em>&nbsp;facilitate is (a) users who have already licensed EndNote and want to migrate to Zotero can use the EndNote styles that they have already paid for, and (b) Zotero users can take advantage of the EndNote import styles that individual journal publishers (as opposed to Thomson itself) make available for the convenience of their subscribers. These uses strike me as totally within bounds.</p></blockquote><p>One minor quibble is that I don&#8217;t think Zotero created its own style format. <a href="http://xbiblio.sourceforge.net/csl/" title="Citation Style Language homepage">Citation Style Language</a>, according to the description on its homepage, was &#8220;developed alongside <a href="http://xbiblio.sourceforge.net/citeproc/" title="CiteProc">CiteProc</a>.&#8221;  Other than that, I highly recommend reading <a href="http://mfeldstein.com/thomson-suing-zotero-more-info-and-more-thoughts/" title="Thomson Suing Zotero: More Info and More Thoughts">his thoughtful analysis</a>.</p><p><h2 id="lawsuit-extension">Extension Granted</h2><br />In a minor matter, according the Virginia Courts Case Information website, <a href="http://www.courts.state.va.us/courts/circuit/Richmond/home.html" title="Richmond Circuit Court">Richmond City Circuit Civil Division</a> judge C. N. Jenkins Jr. granted an extension of time in the case on September 30th.  No further information is available on the site.</p><p style="padding:0;margin:0;font-style:italic;">The text was modified to update a link from //forums.thomsonscientific.com/ts/board/message?board.id=en-general&#038;thread.id=649 to http://forums.thomsonscientific.com/ts/board/message?board.id=en-general&#038;thread.id=649 on January 13th, 2011.</p><h2>Footnotes</h2><ol class="footnotes"><li id="footnote_0_535" class="footnote"><a href="http://xbiblio.sourceforge.net/csl/" title="Citation Style Language homepage">Citation Style Language</a> is an &#8220;XML language to describe bibliographic and citation formatting.&#8221;  It is used by Zotero and other citation management tools.</li><li id="footnote_1_535" class="footnote">An explanation of the clich&eacute; <a href="http://www.clichesite.com/content.asp?which=tip+2545" title="">Why close the barn door after the horse is gone?</a></li></ol><div class='series_links'><a href='http://dltj.org/article/zotero-lawsuit-extracts/' title='Extracts from the Thomson Reuters Lawsuit Against Zotero'>Previous in series</a> <a href='http://dltj.org/article/gmu-zotero-response/' title='George Mason University Issues Statement on Reuters/Zotero Lawsuit'>Next in series</a></div>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/endnote-zotero-lawsuit-2/feed/</wfw:commentRss> <slash:comments>24</slash:comments> </item> <item><title>Extracts from the Thomson Reuters Lawsuit Against Zotero</title><link>http://dltj.org/article/zotero-lawsuit-extracts/</link> <comments>http://dltj.org/article/zotero-lawsuit-extracts/#comments</comments> <pubDate>Mon, 29 Sep 2008 03:43:04 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[policy]]></category> <category><![CDATA[EndNote]]></category> <category><![CDATA[legal]]></category> <category><![CDATA[Zotero]]></category><guid isPermaLink="false">http://dltj.org/?p=518</guid> <description><![CDATA[Via a posting by James Grimmelmann, I found a link to the text of the complaint filed by Thomson Reuters against George Mason University in Virginia&#8217;s state courts. The critical bits (to an untrained eye) are included below:Paragraph 12: George &#8230; <a href="http://dltj.org/article/zotero-lawsuit-extracts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=518"></abbr><p>Via a <a href="http://laboratorium.net/archive/2008/09/28/thomson_reuters_the_gang_that_couldnt_sue_straight" title="The Laboratorium: Thomson Reuters: The Gang That Couldn&#039;t Sue Straight">posting by James Grimmelmann</a>, I found a link to the <a href="http://www.courthousenews.com/2008/09/17/ReutersvVirginia.pdf" title="Copy of the Thomson Reuters lawsuit">text of the complaint filed by Thomson Reuters against George Mason University</a> in Virginia&#8217;s state courts.  The critical bits (to an untrained eye) are included below:</p><blockquote><p>Paragraph 12:  George Mason University [GMU] entered into a site license agreement, dated December 1, 2003 with ISI (which was subsequently renewed with Thomson) to access to use the EndNote Software (the &#8220;License Agreement&#8221;)&#8230;</p><p>Paragraph 14:  &#8230;Section 3(c) of the License Agreement requires an express acknowledgement by GMU that the &#8220;Licensee recognizes the importance of the Company maintaining its proprietary rights over the [EndNote] Software and of avoiding improper use of the [EndNote] Software as defined in this Agreement.  Licensee shall use <i>best efforts</i> to ensure that Users comply with the forgoing limitations on usage.&#8221; [Emphasis added in court document]</p><p>Paragraph 15: Specifically, Section 3(d) of the License Agreement expressly <i>prohibits</i> the following activities in connection with the use of the EndNote Software:<ul><li>duplication of the [EndNote] Software except as specified herein;</li><li><i>separation of components</i> ([EndNote] Software is licensed as a single product. <i>Its component parts may not be separated</i> for use on more than one computer);</li><li><i>distribution or transfer</i> of the [EndNote] Software <i>in any form (printed, electronically relayed, posted to public list services or bulletin boards, or magnetically stored); or</i></li><li><i>reverse engineering, de-compiling, translation, modification, distribution, broadcasting, dissemination, or creation of derivative works from the [EndNote] Software.</i> [Emphasis added in court document]</li></ul><p>Paragraph 16: In addition, the License Agreement limits GMU&#8217;s use of Thomson&#8217;s trademarks and trade names solely to uses &#8220;connected with the identification of the [EndNote] Software.&#8221;</p><p>Paragraph 21: On information and belief, GMU reverse engineered or de-compiled the EndNote Software and the proprietary .ens files contained within the EndNote Software in order to determine how to convert the EndNote Software .ens style files into the open source Zotero .csl style files, in direct and material violation of the License Agreement.</p><p>Paragraph 22: GMU is distributing the new beta version of Zotero, which allows for the unauthorized, free conversion of the EndNote Software .ens style files, in direct violation of the prohibited uses of the EndNote Software, as specified in Section 3(d) of the License Agreement.</p><p>Paragraph 23: GMU is willfully and intentionally destroying Thomson&#8217;s customer base for the EndNote Software, in direct violation of the License Agreement, by allowing and encouraging users of Zotero to freely convert the EndNote Software&#8217;s proprietary .ens style files into open source Zotero .csl style files and further distributing such converted files to others.</p><p>Paragraph 24: By letter dated August 4, 2008, &#8230; counsel for Thomson notified Dr. Alan. G. Merten, President of GMU, that GMU&#8217;s actions are a direct violation of the terms and conditions of the License Agreement, and requested that GMU immediately take all necessary steps to cure the unauthorized used of the EndNote Software through Zotero (the &#8220;Cease and Desist Letter&#8221;).</p><p>Paragraph 25: The Cease and Desist Letter demanded that GMU immediately terminate Zotero&#8217;s unauthorized use and conversion of EndNote Software&#8217;s proprietary .ens style files and revise the beta version of Zotero to prohibit future conversion of EndNote Software&#8217;s proprietary .ens style files.</p><p>Paragraph 26: Furthermore, the Cease and Desist Letter demanded that the beta version of Zotero be made unavailable until such revisions were made by GMU.</p><p>Paragraph 27: The Cease and Desist Letter set forth a deadline of August 15, 2008 for GMU to comply with Thomson&#8217;s demands.</p><p>Paragraph 28: On or about August 11, 2008, counsel for Thomson received a telephone call from David Drummey, in-house counsel at GMU, (&#8220;Mr. Drummey&#8221;) asking to extend the August 15, 2008 deadline to August 25, 2008, in order for GMU to assess the matter and respond to the Cease and Desist Letter.  Thomson&#8217;s counsel granted this request to GMU.</p><p>Paragraph 29: On August 25, 2008, Mr. Drummey spoke via telephone with counsel for Thomson and stated that GMU was seeking a collaborative arrangement between Thomson and GMU as a means of resolving the conflict between the parties.</p><p>Paragraph 30: By e-mail to Mr. Drummey dated August 25, 2008, &#8230; counsel for Thomson granted an extension of the response deadline until August 20, 2008, insisting, however, that, prior to any collaboration discussion between the parties, GMU must first comply with the demands set forth in the Cease and Desist Letter as a result of the material breach of its obligations set forth in the License Agreement.</p><p>Paragraph 31: On August 28, 2008, Mr. Drummey contacted counsel for Thomson asking for yet another extension of the August 29, 2008 deadline.  When told that Thomson would provide no further extensions, Mr. Drummey informed counsel to Thomson that GMU had no intention of curing its breach of the terms and conditions of the License Agreement and had referred the matter to outside counsel.</p><p>Paragraph 37. Moreover, GMU has breached its obligations under Section 7 of the License Agreement with respect to the use of Thomson&#8217;s registered trademark EndNote&reg;, by willfully and inappropriately using the trademark to direct and induce users of Zotero to covert the EndNote Software&#8217;s proprietary .ens style files to Zotero&#8217;s style files.</p><p>Paragraph 40. As a direct and proximate result of the material breach of the License Agreement by GMU, and due to the freely distributable, open-source nature of the converted Zotero .csl style files, Thomson has suffered irreparable harm for which the law will afford it no adequate remedy.</p><p>Paragraph 41. As a direct and proximate result of the material breach of the License Agreement by GMU, Thomson has suffered monetary damages in an amount to be determined at trial, but which, due to the open-source nature of the Zotero .csl style files, at a minimum are equal to about ten million dollars ($10,000,000) annually until such time as GMU is permanently enjoined.</p></blockquote><p>In addition to <a href="http://laboratorium.net/archive/2008/09/28/thomson_reuters_the_gang_that_couldnt_sue_straight" title="The Laboratorium: Thomson Reuters: The Gang That Couldn&#039;t Sue Straight">James&#8217; excellent comments</a> on the matter, I&#8217;d note that it doesn&#8217;t look like the Thomson legal team actually had anyone look at the Zotero code.  The complaint alleges that &#8220;users of Zotero [are freely converting] the EndNote Software&#8217;s proprietary .ens style files into open source Zotero .csl style files and further distributing such converted files to others.&#8221;  That isn&#8217;t happening.  Zotero is reading the .ens style files into internal data structures in the browser, but it is not converting .ens style files to .csl style files and storing them on disk.  Nor is Zotero or anyone associated with Zotero redistributing .ens style files.  Users of Zotero would need to download .ens files on their own and add them to Zotero&#8217;s configuration.</p><p>As an updated to <a href="http://dltj.org/article/endnote-zotero-lawsuit/">my previous posting on the Thomson-Reuters/Zotero lawsuit</a>, I also noted change to the EndNote website. <a href="http://blogs.talis.com/panlibus/archives/2008/09/thomson-reuters-sends-zotero-a-10-million-endnote.php" title="Panlibus: Thomson Reuters Sends Zotero a $10 Million EndNote" class="broken_link" rel="nofollow">Richard Wallis notes</a>:<br /><blockquote>Following that link to Endnote export styles [<a href="http://www.endnote.com/support/enstyles.asp" title="EndNote Style Directory">link</a>] you end up on a page containing the following words: &#8220;EndNote output styles are provided solely for use by licensed owners of EndNote and with the EndNote product.&#8221;</p></blockquote><p>What&#8217;s interesting is the fact that this sentence was recently (within the last 8 months) added to the site.  The <a href="http://web.archive.org/web/20080113182331/http://www.endnote.com/support/enstyles.asp" title="13-Jan-2008 snapshot of http://www.endnote.com/support/enstyles.asp">January 13th snapshot of that page in the Wayback Machine</a> doesn&#8217;t have that sentence.  I wonder when it was added.  In both cases (the current page and the Wayback Machine snapshot), the note at the bottom says &#8220;This page was last modified on: November 4, 2005&#8243; &#8212; I would disagree.</p><p>From paragraph 31 of the complaint, it looks like GMU is going to fight the lawsuit.  (I&#8217;m assuming this is the intention behind GMU engaging external counsel.)  A <a href="http://forums.zotero.org/discussion/4209/donation-to-zotero/#Item_6" title="Zotero Forums - donation to zotero?">comment by Dan Cohen (director of the Center for History and New Media at GMU) in a posting on the Zotero forums</a> says:  &#8220;Thanks to everyone for your words of generous support. We will likely issue a statement in the near future.&#8221;  Let&#8217;s keep watching for more information&#8230;</p><div class='series_links'><a href='http://dltj.org/article/endnote-zotero-lawsuit/' title='George Mason University Sued by Thomson Reuters over Zotero'>Previous in series</a> <a href='http://dltj.org/article/endnote-zotero-lawsuit-2/' title='Updates on the EndNote/Zotero Lawsuit'>Next in series</a></div>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/zotero-lawsuit-extracts/feed/</wfw:commentRss> <slash:comments>23</slash:comments> </item> <item><title>George Mason University Sued by Thomson Reuters over Zotero</title><link>http://dltj.org/article/endnote-zotero-lawsuit/</link> <comments>http://dltj.org/article/endnote-zotero-lawsuit/#comments</comments> <pubDate>Sat, 27 Sep 2008 23:43:56 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[policy]]></category> <category><![CDATA[EndNote]]></category> <category><![CDATA[legal]]></category> <category><![CDATA[Zotero]]></category><guid isPermaLink="false">http://dltj.org/?p=511</guid> <description><![CDATA[Thomson Reuters is suing George Mason University to stop distribution of the newest version of Zotero, a Firefox browser plugin for managing citation data. According to a story from Courthouse News Service, Reuters is claiming that George Mason is violating &#8230; <a href="http://dltj.org/article/endnote-zotero-lawsuit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=511"></abbr><p><a href="http://www.thomsonreuters.com" title="Thomson Reuters" rel="homepage" class="zem_slink">Thomson Reuters</a> is suing <a href="http://www.gmu.edu/" title="George Mason University" rel="homepage" class="zem_slink">George Mason University</a> to stop distribution of the newest version of <a href="http://www.zotero.org/" title="Zotero homepage">Zotero</a>, a <a href="http://www.firefox.com/" title="Mozilla Firefox" rel="homepage" class="zem_slink">Firefox browser</a> plugin for managing citation data.  According to a <a href="http://www.courthousenews.com/2008/09/17/Reuters_Says_George_Mason_University_Is_Handing_Out_Its_Proprietary_Software.htm" title="Reuters Says George Mason University is Handing Out Its Proprietary Software&#039; story at Courthouse News Service">story from Courthouse News Service</a>, Reuters is claiming that George Mason is violating the terms of its license agreement by including a function in Zotero that will convert citation styles from the proprietary <a href="http://www.endnote.com" title="EndNote" rel="homepage" class="zem_slink">EndNote</a> format to a format that can be used by Zotero.  Reuters also asking for $10 million in damages for destroying the EndNote customer base.  Since George Mason is a state institution, the Commonwealth of Virginia is also named in the suit.</p><p>According to the Courthouse News article, Reuters says:  &#8220;A significant and highly touted feature of the new beta version of Zotero, however, is its ability to convert &#8211; in direct violation of the License Agreement &#8211; Thomson&#8217;s 3,500 plus proprietary .ens style files within the EndNote Software into free, open source, easily distributable Zotero .csl files.&#8221;  In fact, there is a closed enhancement ticket in the Zotero project management tool for an <a href="https://www.zotero.org/trac/ticket/704">EndNote to Zotero style converter</a>.  The <a href="http://www.endnote.com/support/helpdocs/ResearchSoft_EndNoteX1_Single_User_License.pdf" title="EndNote X1 Single User License">EndNote license agreement</a> says<br /><blockquote>RESTRICTIONS. End User may not modify, translate, decompile, reverse engineer, retransmit in any form or by any means (electronic, mechanical, photocopied, recorded or otherwise), resell or redistribute the Product, or any portion thereof, without the prior written consent of ResearchSoft. Except as expressly set forth in this Agreement, End User may not make any use of the Product.</p></blockquote><p> One suspects the heart of the lawsuit claim is that the <a href="http://www.endnote.com/support/enstyles.asp" title="EndNote Style directory">EndNote .ens style files</a> are a portion of the EndNote product and therefore cannot be reverse engineered, which <a href="https://www.zotero.org/trac/browser/extension/trunk/chrome/content/zotero/xpcom/enstyle.js?rev=2908">it appears the Zotero team has done</a>.</p><p>The suit was filed on September 5th in the civil division of <a href="http://www.courts.state.va.us/courts/circuit/Richmond/home.html" title="Richmond Circuit Court homepage">Richmond City Circuit Court</a>, case number CL08004225-00.  There is not yet any significant information online, but if you are interested in the lawsuit you may want to keep an eye on the <a href="http://wasdmz2.courts.state.va.us/CJISWeb/circuit.jsp" title="Virginia Courts Case Information (Circuit)">Virginia Circuit Court Case Information</a> website.  (Because of the way the site is built, one cannot link directly to the case.  Select &#8220;Richmond City Circuit&#8221; from the pull-down list, select &#8220;Begin&#8221;, then at the next screen select &#8220;Civil&#8221; and plug in the case number listed above.)  No public word from Zotero (nothing in the project&#8217;s <a href="http://www.zotero.org/blog" title="Zotero blog">blog</a> or the <a href="http://forums.zotero.org/discussions/" title="Zotero discussion forums">forums</a>) or Thomson Reuters (on the <a href="http://www.endnote.com/enwhatsnew.asp" title="EndNote press page">EndNote news</a> or the <span class="removed_link" title="http://thomsonreuters.com/press_room/press_releases_archive/?monthToDisplay=8&amp;yearToDisplay=2008&amp;busi_unit=scientific">Thomson Scientific news</span> pages) on the lawsuit.</p><p>This could be an interesting lawsuit to follow.  The <a href="https://www.zotero.org/trac/ticket/704">Zotero enhancement ticket</a> has a discussion about the legality of using the <a href="http://www.endnote.com/support/enstyles.asp" title="EndNote Style directory">EndNote Styles collection</a> or EndNote styles <a href="http://www.library.uq.edu.au/endnote/styles.html#alpha" title="EndNote Styles" class="broken_link" rel="nofollow">posted</a> <a href="http://www.interscience.wiley.com/jendnotes/" title="Wiley InterScience :: EndNote Reference Style Files">on</a> <a href="http://journals.iucr.org/services/endnotestyle.html" title="IUCr EndNote output style">other</a> <a href="http://www.rsc.org/Publishing/ReSourCe/AuthorGuidelines/ElectronicFiles/Templates/endnote.asp" title="RSC Endnote Style Files">sites</a>.  The EndNote software itself makes it possible to create and export the EndNote Style .ens files, so many EndNote Style files are the result of the work of entities other than Thomson Reuters.  Presumably the person that created the ENS-to-CSL translator for Zotero did not have a copy of the EndNote software and so was not bound by the EndNote license agreement.  Does the fact that the ENS files were published on open websites where they could be accessed without using EndNote itself make a difference?</p><p>Zotero is a project of the <a href="http://chnm.gmu.edu/" title="Center for History and New Media homepage">Center for History and New Media</a> at George Mason and is sponsored/funded by the <a href="http://www.imls.gov/" title="IMLS homepage">Institute for Museum and Library Services</a>, the <a href="http://www.mellon.org/" title="The Andrew W. Mellon Foundation homepage">Mellon Foundation</a>, and the <a href="http://www.sloan.org/" title="Alfred P. Sloan Foundation homepage">Sloan Foundation</a>.</p><p>Found via <a href="http://loomware.typepad.com/loomware/2008/09/from-the-how-to.html" title="LoomWare: From the &quot;How to Know When You&#039;re a Success&quot; Department">Mark Leggott&#8217;s</a> and <a href="http://catalogablog.blogspot.com/2008/09/zotero-news.html" title="">David Bigwood&#8217;s</a> blogs.</p><p><h2 id="511-updates">Updates</h2><br /><b>28-Sep-2008</b> <a href="http://blogs.talis.com/panlibus/archives/2008/09/thomson-reuters-sends-zotero-a-10-million-endnote.php" title="Panlibus  &raquo; Blog Archive   &raquo; Thomson Reuters Sends Zotero a $10 Million EndNote" class="broken_link" rel="nofollow">Richard Wallis notes</a>:<br /><blockquote>Following that link to Endnote export styles [<a href="http://www.endnote.com/support/enstyles.asp" title="http://www.endnote.com/support/enstyles.asp">link</a>] you end up on a page containing the following words: &#8220;EndNote output styles are provided solely for use by licensed owners of EndNote and with the EndNote product.&#8221;</p></blockquote><p>What&#8217;s interesting is the fact that this sentence was recently (within the last 8 months) added to the site.  The <del><a href="http://web.archive.org/web/20080113182331/http://www.endnote.com/support/enstyles.asp" title="http://web.archive.org/web/20080113182331/http://www.endnote.com/support/enstyles.asp">January 13th</a></del> <a href="http://web.archive.org/web/20080103002708/http://www.endnote.com/support/enstyles.asp" title="http://web.archive.org/web/20080103002708/http://www.endnote.com/support/enstyles.asp">January 3rd snapshot of that page in the Wayback Machine</a> doesn&#8217;t have that sentence.  I wonder when it was added.  In both cases (the current page and the Wayback Machine snapshot), the note at the bottom says &#8220;This page was last modified on: November 4, 2005&#8243; &#8212; I would disagree.</p><p>Also &#8212; I just found <a href="http://www.courthousenews.com/2008/09/17/ReutersvVirginia.pdf" title="http://www.courthousenews.com/2008/09/17/ReutersvVirginia.pdf">a copy of the Thomson Reuters&#8217; complaint</a> [PDF] on the Courthouse News Service website.</p><p><b>31-Oct-2008</b> As Rick notes in the comments, the January 13th version on the Wayback Machine of the EndNote Styles page is no longer there.  It has been replaced with a link to the January 3rd version, and you can periodically check the <a href="http://web.archive.org/web/*/http://www.endnote.com/support/enstyles.asp" title="Internet Archive Wayback Machine">list of all versions of the page in available in the Wayback Machine</a>.  Odd &#8212; I didn&#8217;t think pages were supposed to go away on the Internet Archive.<p style="padding:0;margin:0;font-style:italic;" class="removed_link">The text was modified to remove a link to http://thomsonreuters.com/press_room/press_releases_archive/?monthToDisplay=8&#038;yearToDisplay=2008&#038;busi_unit=scientific on January 28th, 2011.</p><div class='series_links'> <a href='http://dltj.org/article/zotero-lawsuit-extracts/' title='Extracts from the Thomson Reuters Lawsuit Against Zotero'>Next in series</a></div>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/endnote-zotero-lawsuit/feed/</wfw:commentRss> <slash:comments>29</slash:comments> </item> </channel> </rss>
<!-- Served from: dltj.org @ 2012-05-24 17:50:17 by W3 Total Cache -->
