<?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; integrated library system</title> <atom:link href="http://dltj.org/tag/ils/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>Mon, 06 Feb 2012 20:04:22 +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>Encryption of Patron Data in Modern Integrated Library Systems</title><link>http://dltj.org/article/ils-encryption/</link> <comments>http://dltj.org/article/ils-encryption/#comments</comments> <pubDate>Wed, 04 May 2011 00:30:24 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[L/IS Profession]]></category> <category><![CDATA[encryption]]></category> <category><![CDATA[integrated library system]]></category> <category><![CDATA[privacy]]></category> <category><![CDATA[security]]></category><guid isPermaLink="false">http://dltj.org/?p=2853</guid> <description><![CDATA[&#8220;How much effort do you want to spend securing your computer systems? Well, how much do you not want to be in front of a reporter&#8217;s microphone if a security breach happens?&#8221; I don&#8217;t remember the exact words, but that &#8230; <a href="http://dltj.org/article/ils-encryption/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=2853"></abbr><p>&#8220;How much effort do you want to spend securing your computer systems?  Well, how much do you not want to be in front of a reporter&#8217;s microphone if a security breach happens?&#8221;  I don&#8217;t remember the exact words, but that quote strongly resembles something I said to a boss at a previous job.  Securing systems is unglamorous detail work.  One slip-up plus one persistent (or lucky) attacker means years of dedicated efforts are all for naught as personal information is inadvertently released.  See, for example, what happened recently with <a href="http://news.consumerreports.org/electronics/2011/05/sony-25-million-more-accounts-hacked-but-were-really-sorry.html" title="Sony: 25 million more accounts hacked, but we're really sorry | Consumer Reports">Sony Online Entertainment&#8217;s</a> recent troubles.</p><p>It was in that frame of mind that I responded to a series of questions from a librarian taking a computer science class.  (As someone else who straddles the computer-science/library-science divide, I wanted to encourage this line of thinking!)  Now library systems typically don&#8217;t have credit card information, so they may not be attractive to individuals that seek to expose or exploit personal information.  But our systems do have physical addresses, e-mail addresses, and sometimes birthdays or other personal data.  And we have a <a href="http://www.ala.org/ala/issuesadvocacy/intfreedom/librarybill/interpretations/privacy.cfm" title="An Interpretation of the Library Bill of Rights: Privacy | ALA">professional ethic to keep patron use information private</a>.</p><p>The person that sent me these questions asked that I not mention a name or affiliation, but that it was okay that I repost the questions along with my replies.  I&#8217;m hoping this encourages some discussion because my understanding of the use of encryption in ILS products is very narrow and only somewhat deep (and is getting shallower by the day as my direct experience is going on ten years old).</p><blockquote><p>Background on the project is that during our encryption unit, I realized that I didn&#8217;t know anything about what libraries to do back up our strongly stated policies about protecting patron privacy, so I wanted to find out more about it.</p><p>Questions:</p><ol type="1" start="1"><li>What encryption tools/standards, if any, are used to safeguard patron accounts (name, items checked out, databases accessed, etc.) at the library?</li><li>Where in the systems do these tools typically fit &#8212; at the ILS level, or somewhere else? (e.g., university ID systems)</li><li>How are circulation and other records expunged? I.e., are they permanently deleted in such a way that hard drive forensics couldn&#8217;t bring them back?</li></ol></blockquote><p>In my experience, this patron information is not encrypted in integrated library systems.  The difficulty is that if those bits of information are encrypted, they must be decrypted by the program in order to be useful (generating an overdue notice means the patron&#8217;s information must be known to the program, displaying the patron&#8217;s name on his/her account information screen, etc.).  And for programs to decrypt they must have the secret key.  And if the programs know the secret key it is trivial for an attacker to get the key as well.  And since good encryption, by its nature, is computationally &#8220;expensive&#8221; there would be a lot of system load with all of the encryption and decryption of bits of information.  (Computationally expensive is good because it makes it harder for an attacker to guess the correct key.)</p><div id="attachment_2856" class="wp-caption alignright" style="width: 458px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><object width="448" height="379" type="image/svg+xml" data="http://cdn.dltj.org/wp-content/uploads/2011/05/Password-Hashing.svg.gzip"><img src="http://cdn.dltj.org/wp-content/uploads/2011/05/Password-Hashing.png" alt="" title="Password Hashing Flowchart" class="size-full wp-image-2856" /></object><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Password Hashing Flowchart</p></div><p>Note that passwords are a special case.  Passwords are not really encrypted in a database; rather the output of a &#8220;one way hash&#8221; algorithm is stored.  When the user tries to log in, the same one way hash algorithm is applied to the text string entered as a password and if the output matches what is stored in the database the user is let in.</p><p>As the diagram shows, with the login attempts the hashed password is not decrypted; the output of the hash algorithm is compared to what is known to be the hashed password.</p><p>[Aside: I'm trying an experiment in this post.  The diagram is a Scalable Vector Graphic (SVG) file.  It seems to be showing up fine in the browsers I'm testing, but I have no idea how it will appear in the RSS feed or if you are using an RSS reader or receiving this post via <a href="http://feedburner.google.com/fb/a/mailverify?uri=DisruptiveLibraryTechnologyJester&amp;loc=en_US" title="FeedBurner Email Subscription">FeedBurner e-mail</a>.  If you don't see the graphic, try viewing the post via the <a href="http://dltj.org/article/ils-encryption/"><i><acronym title="Disruptive Library Technology Jester">DLTJ</acronym></i> website.</a>]</p><p>The most effective encryption would be at the database management system layer.  For instance, Oracle has &#8220;<a href="http://www.oracle.com/technetwork/database/options/advanced-security/index-099011.html" title="Transparent Data Encryption | Oracle">Transparent Data Encryption</a>&#8221; feature.  &#8220;Data is automatically encrypted when it is written to disk and automatically decrypted when accessed by the application.&#8221;  Automatic encryption is not built into MySQL, but you can use a <a href="http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html#function_aes-encrypt" title="Encryption and Compression Functions | MySQL 5.5 Reference Manual">MySQL-specific function to encrypt a field</a>.  PostgreSQL has a <a href="http://www.postgresql.org/docs/current/static/pgcrypto.html" title="pgcrypto | PostgreSQL Documentation">contributed module</a> that performs the function.</p><p>Another option &#8212; other than database-level encryption &#8212; is to have the operating system encrypt the underlying filesystem (for example, the <a href="http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/filesysnew-efs.html" title="Encrypted File System | Red Hat documentation">Red Hat Encrypted Filesystem</a>).  That way all of the database storage files &#8212; stored in that filesystem directory &#8212; would be encrypted.</p><p>Note, though, that in any of these cases, the key is known to the computer somehow, and so it is possible for an attacker to recover the key and decrypt the data.  There are, of course, varying levels of obscurity one can apply to the key, but I think we&#8217;re getting pretty far off on a tangent.</p><p>How often circulation and other records would be expunged would depend on implementations in each software system, but as a general guideline I don&#8217;t think a strong deletion mechanism is used to obliterate data on the disk.  I&#8217;d be happy to be proven otherwise.  And as you consider hard drive forensics, also think about pulling the same information off backup tapes; that would probably be easier to get to.</p><p>In a follow-up, I was asked:</p><blockquote><p>WRT your response on Q2, do you have an idea of what level &#8220;most&#8221; or &#8220;some&#8221; libraries might have the encryption, or were you speaking purely from a view of what ideal/good situations might look like?</p><p>On 3, I have heard from a few others that there seems to be just deletion with no zeroing out features or the like and that it does take a period of time (1-2 months) for backup tapes to be overwritten. So it strikes me that the weakest link may be in the area we talk most about protecting.</p></blockquote><p>With regards to the database-level or the filesystem-level encryption, I was speaking from a point of view of what idea/good situations might look like.  One of the outcomes of posting these questions to a wider group of readers is, I hope, more real-world experience reports from people who might be running systems that actually do this.</p><p>Yes, I think those are weak links, with the backup tapes being the biggest problem.  One can&#8217;t predict when blocks on a live filesystem disk will be overwritten, but overwriting tapes is pretty predictable &#8212; and easy because one doesn&#8217;t need access to the live system.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/ils-encryption/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Thursday Threads: Ebooks in Libraries, Prognostications for the Year, Open Source Adoption, Public Domain Day</title><link>http://dltj.org/article/thursday-threads-2011w1/</link> <comments>http://dltj.org/article/thursday-threads-2011w1/#comments</comments> <pubDate>Thu, 06 Jan 2011 11:37:12 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Thursday Threads]]></category> <category><![CDATA[copyright]]></category> <category><![CDATA[ebooks]]></category> <category><![CDATA[integrated library system]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[public domain]]></category> <category><![CDATA[trends]]></category><guid isPermaLink="false">http://dltj.org/?p=2095</guid> <description><![CDATA[Receive DLTJ Thursday Threads:by&#160;E-mailby&#160;RSSDelivered by FeedBurnerThe turn of the year brings commentary on the past 12 months and thoughts on the future. This edition of DLTJ Thursday Threads looks at the relationship between libraries and electronic books with an offer &#8230; <a href="http://dltj.org/article/thursday-threads-2011w1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=2095"></abbr><div id="feedburner-thursday-threads-email-2011w01" class="wp-caption alignright" style="width: 230px;;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><form style="border: 1px solid rgb(204, 204, 204); padding: 3px; margin: 0pt; text-align: center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=thursday-threads', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Receive <i><acronym title="Disruptive Library Technology Jester">DLTJ</acronym></i> Thursday Threads:</p><p>by&nbsp;<a href="http://feedburner.google.com/fb/a/mailverify?uri=thursday-threads&amp;loc=en_US" title="D.L.T.J. Thursday Threads Email Subscription">E-mail</a><br /><input style="width: 140px;" name="email" value="Your e-mail address" onfocus="if (this.defaultValue==this.value) this.value = ''" type="text"/><input value="thursday-threads" name="uri" type="hidden"/><input name="loc" value="en_US" type="hidden"/><input value="Subscribe" type="submit"/></p><p>by&nbsp;<a href="http://feeds.dltj.org/thursday-threads/" title="D.L.T.J. Thursday Threads RSS Feed">RSS</a></p><p style="font-size: 80%;">Delivered by <a href="http://feedburner.google.com" target="_blank" title="Google Feedburner Service">FeedBurner</a></p></form></div><p>The turn of the year brings commentary on the past 12 months and thoughts on the future.  This edition of <i><acronym title="Disruptive Library Technology Jester">DLTJ</acronym> Thursday Threads</i> looks at the relationship between libraries and electronic books with an offer by Sony to explain e-reader hardware to libraries and an opinion piece that libraries need to get their act together on the adoption of e-books.  Then there is a look forward at possible trends for the new year; I try to pick out the ones that I think will have an impact on libraries.  One trend that does seem to be emerging is the migration of libraries from proprietary software to open source software for their integrated library systems.  Lastly, we&#8217;ll wrap up with a look at Public Domain Day.</p><p>If you find these threads interesting and useful, you might want to add the <a href="http://feeds.dltj.org/thursday-threads/">Thursday Threads RSS Feed</a> to your feed reader or subscribe to e-mail delivery using the form to the right.  If you would like a more raw and immediate version of these types of stories, watch <a href="http://friendfeed.com/dltj" title="Peter Murray - FriendFeed">my FriendFeed stream</a> (or subscribe to <a href="http://friendfeed.com/dltj?format=atom" title="Atom feed for Peter Murray's FriendFeed account">its feed</a> in your feed reader).  Comments and tips, as always, are welcome.</p><p><h2><a name="sony_ereader">The Changing Role of Libraries in the Digital Age</a></h2></p><blockquote><p>At Sony, we believe there is a place for public/private partnerships.  That&#8217;s why we&#8217;re so excited to be working closely with libraries and librarians across the country as part of our <a href="http://ebookstore.sony.com/library-program/" title="Sony Reader Library Program">Reader Library Program</a>. While there are several different views on the future of libraries, we believe that digital reading will be at the core of libraries, regardless of how they grow and evolve.</p><p>Sony&#8217;s Reader Library Program is designed to help libraries overcome the challenges of adopting eBooks and educating their constituencies on how to borrow, read and make the most of digital reading content.   eBooks, like traditional paper books, will play an important role in our civic and cultural life, but only if they are made broadly available and people understand how to access and use them.</p></blockquote><p>Steve Haber, President of Sony’s Digital Reading Business, publishes this <a href="http://www.huffingtonpost.com/steve-haber/the-changing-role-of-libr_b_803722.html" title="Steve Haber: The Changing Role of Libraries in the Digital Age | The Huffington Post">piece in the Huffington Post</a> about the <a href="http://ebookstore.sony.com/library-program/" title="Sony Reader Library Program">Sony Reader Library Program</a>.  The program offers a 2-3 hour training session for library staff, donation of four models of Sony e-reader devices for library staff use, promotional materials for patrons and &#8220;bi-annual update sessions designed to keep libraries and their staff current with the latest developments in digital reading content, format and devices.&#8221;  Although I found out about this via a <a href="http://twitter.com/#!/ALA_PLA/status/22339287420764161" title="Tweet from ALA_PLA">tweet from the ALA PLA account</a>, I don&#8217;t see anything in the program description that limits it to public libraries.  The only requirement is that the &#8220;library must have eBooks available through a third party such as www.overdrive.com in order to be considered for our program.&#8221;</p><p>I also can&#8217;t help but be a bit cynical that &#8220;The Changing Role of Libraries in the Digital Age&#8221; is just a front to promote Sony products.  But if it gets more libraries thinking about the role of libraries in a digital age, then it seems to be, on balance, a positive thing.</p><p><h2><a name="libraries_screwed">2010 Summary: Libraries are Still Screwed</a></h2></p><blockquote><p>In mathematics, <a href="http://en.wikipedia.org/wiki/Catastrophe_theory" title="Catastrophe theory | Wikipedia">catastrophe theory</a> is the study of nonlinear dynamical systems which exhibit points or curves of singularity. The behavior of systems near such points is characterized by sudden and dramatic changes resulting from even very small perturbations. The simplest sort of catastrophe is the fold catastrophe.</p><p>When a fold catastrophe occurs, a system that was formerly characterized by a single stable point evolves to a system with no stability. The point where stability disappears is known as the tipping point.</p><p>One of my goals for this past year was to raise awareness of the tipping point for libraries that will accompany the obsolescence of the print book.</p></blockquote><p>Eric Hellman, serial entrepreneur with an altruistic bent to make libraries stay relevant, create this <a href="http://go-to-hellman.blogspot.com/2010/12/2010-summary-libraries-are-still.html" title="2010 Summary: Libraries are Still Screwed | Go To Hellman">end-of-2010 summary of the library/ebook tensions</a>.  The title comes from a presentation (20 minute recording <a href="http://www.youtube.com/watch?v=KqAwj5ssU2c" title="Eli Neiburger at the LJ/SLJ eBook Summit: Libraries Are Screwed, Part 1 | YouTube">part 1</a>, <a href="http://www.youtube.com/watch?v=bd0lIKVstJg" title="Eli Neiburger at the LJ/SLJ eBook Summit: Libraries are Screwed, Unless... Part 2 | YouTube">part 2</a>) by Eli Neiburger at the <a href="http://ebook-summit.com/program/" title="Ebooks: Libraries at the Tipping Point">Library Journal / School Library Journal eBook Summit</a> who bluntly states, &#8220;Libraries are Screwed.&#8221;</p><p>Does the libraries&#8217; historic reliance on the physical codex doom us to obsolescence?  (The &#8220;library memorial&#8221;, as Eli puts it early in his presentation.)  Is the time, as Eric suggests at the end of his post, &#8220;for raising awareness about the catastrophic future of libraries&#8221; over, to be replaced by &#8220;build[ing] things that change the system dynamics&#8221;?</p><p><h2><a name="2011_watch">100 Things to Watch in 2011</a></h2></p><div class="wp-caption alignright" style="width:425px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;" id="__ss_6306251"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251" title="JWT: 100 Things to Watch in 2011">JWT: 100 Things to Watch in 2011</a></strong><object id="__sse6306251" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2f100thingstowatchin2011-101222142649-phpapp02&#038;rel=0&#038;stripped_title=2f-100-things-to-watch-in-2011-6306251&#038;userName=jwtintelligence" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse6306251" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=2f100thingstowatchin2011-101222142649-phpapp02&#038;rel=0&#038;stripped_title=2f-100-things-to-watch-in-2011-6306251&#038;userName=jwtintelligence" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div><blockquote><p>As part of our annual forecast, JWT presents 100 Things to Watch in 2011. Some of the items on our list reflect broader shifts we’ve been following:</p><ul><li>Mobile as the Everything Hub: More consumers and brands are embracing a trend we outlined two years ago, one that will manifest in a multitude of ways next year—from mobile memes to “moblogging” to waning interest in point-and-shoot cameras.</li><li>The evolution of media as content becomes digitized over various platforms: Books will take new forms, entertainment will go transmedia, and journalists will get more entrepreneurial.</li></ul><p>Some reflect counter-trends to broad shifts in consumer behavior:</p><ul><li>To balance out our increasing immersion in the digital world, people will embrace face-to-face gatherings and digital downtime, and come to fetishize physical objects once considered humdrum.</li><li>The trend toward Radical Transparency will see a growing backlash (Ignorance Is Bliss).</li></ul><p>As always, new technology is a theme.</p><ul><li>We’ll see smart infrastructure ramping up, tablets for tots as this platform gets widely adopted and some truly futuristic-seeming developments (3D printing, virtual mirrors, electronic profiling).</li></ul><p>While some of our Things to Watch may not yet reflect a broader trend, we believe they eventually will ladder up to one. Retail as the Third Space, one of our Things to Watch from last year, and De-Teching, one of our Things to Watch for 2008, both gained momentum since we first spotlighted them. This year we included them among our “10 Trends for 2011.”</p><p>The people on our list—from pop culture, sports, architecture, fashion and other realms—have the potential to drive or shape trends in the near future.</p><p>THE TRENDS: 3D Printing; Deforestation Awareness; Ignorance Is Bliss; Odyssey Trackers; Social Objects; Africa’s Middle Class; In the Flesh; Older Workforce; Space Travel Goes Private; Apps Beyond Mobile; Detroit; Jennifer Lawrence; The Oprah Winfrey Network (OWN); Art.sy; Digital Downtime; London Tourism; Storied Products; Auto Apps; Digital Etiquette; Long-Form Content; Pedro Lourenço; Stricter Green Building Standards; Digital Indoor Maps; Personal Taste Graphs; Automatic Check-Ins; Matcha; Digital Interventions; Piers Morgan; Tablets for Tots; Bamboo; mHealth; East London Tech City; Pogo; Tap-to-Pay; Banks Branch Out; Michael Jackson Lives On; E-Book Sharing; P-to-P Car Sharing; Tech Liaisons; Banner Ads Do More; Electronic Profiling; Micro-Businesses; Rooney Mara; Tech-Enabled; Beer Sommeliers Throwbacks; Biomimicry; Entrepreneurial Journalism; Mobile Blogging; Rum; Temporary Tattoos Go High-End; Bjarke Ingels; Mobile Memes; Rye Rye; Facebook Alternatives; The Nail Polish; Ryo Ishikawa; Brazil as E-Leader; Tintin the Movie; Fashion Fast-Forward Economy; Scanning Everything; Breaking the Book; Transmedia Producers; F-Commerce; Nanobrewers; Self-Powering Devices; Brigadeiro; Tube-Free Toilet Paper; Food, Ph.D.; Near Field Communication; Smart Lunchrooms; “Buy One, Give One Away&#8221;; Ukraine; Gay-Centric Hotels; Smart-Infrastructure Investment; The New Mobility Industry; Urban Industrial Parks; CAPTCHA Advertising; Global Disease, Refocused; Video Calling; Children’s E-Books; Smartphone Cameras Take Over; Green Luxury Cars; New Nordic Cuisine; Virtual Mirrors; Coming Clean with Green; Next-Generation Documentarians; Voice-Activated Apps; Group-Manipulated Pricing; Smoking on the Fringe; Costlier Cotton; YouTube the Broadcaster; Social Browsers Go Mainstream; Culinary Calling Cards; Heirloom Apples; Neymar; Decline of the Cash Register; Home Energy Monitors; NKOTBSB; Social Networking Surveillance; Objectifying Objects</p></blockquote><p>This things-to-watch list comes in the form of <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251" title="JWT: 100 Things to Watch in 2011">presentation slides</a> from <a href="http://www.jwtintelligence.com/" title="JWT Intelligence">JWT Intelligence</a>.  It is a general list with a few things that libraries should be aware of:  #14 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/23" title="Slide #14 of JWT: 100 Things to Watch in 2011">Breaking the Book</a> (selling smaller segments of monographs); #18 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/27" title="Slide #18 of JWT: 100 Things to Watch in 2011">Children&#8217;s E-books</a> (interactive story designs); #23 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/32" title="Slide #23 of JWT: 100 Things to Watch in 2011">Deforestation Awareness</a> (<a href="http://www.saveaswwf.com/en/faqs.html" title="Save as WWF, Save a Tree : FAQs">a document file format that cannot be printed</a>); #25 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/34" title="Slide #25 of JWT: 100 Things to Watch in 2011">Digital Downtime</a> (take a break from technology); #27 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/36" title="Slide #27 of JWT: 100 Things to Watch in 2011">Digital Indoor Maps</a> (maps of library stacks, anyone?); #30 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/39" title="Slide #30 of JWT: 100 Things to Watch in 2011">E-book Sharing</a> (mentions <a href="http://www.bluefirereader.com/" title="Bluefire Reader">Bluefire Reader</a> to read <a href="http://www.bluefirereader.com/help/libraryBooks.html" title="Bluefire Reader for Libraries">library-loaned e-books</a>); #47 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/56" title="Slide #47 of JWT: 100 Things to Watch in 2011">Long-form Content</a> (journalism and other forms); #56 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/65" title="Slide #56 of JWT: 100 Things to Watch in 2011">Near Field Communications</a> (RFID-like patron card?); #67 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/76" title="Slide #67 of JWT: 100 Things to Watch in 2011">Personal Taste Graphs</a> (&#8220;helping the right information find you&#8221;); #75 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/84" title="Slide #75 of JWT: 100 Things to Watch in 2011">Scanning Anything</a> (proliferation of QR codes); and #87 &#8211; <a href="http://www.slideshare.net/jwtintelligence/2f-100-things-to-watch-in-2011-6306251/96" title="Slide #87 of JWT: 100 Things to Watch in 2011">Tablets for Tots</a> (Houghton Mifflin Harcourt to sell a <a href="http://www.engadget.com/2010/11/09/isabella-products-reveals-7-inch-fable-connected-childrens-tabl/" title="Isabella Products reveals 7-inch Fable connected children's tablet -- Engadget">tablet preloaded with childrens titles</a>).</p><p><h2><a name="ils_migrations">Koha and Evergreen Shine in Breeding ILS Survey Results</a></h2></p><blockquote><p>According the Breeding&#8217;s data, 150 libraries migrated to Evergreen (I say migrated but his stats often reflect a &#8220;contract&#8221; not necessarily a migration) and 133 migrated to Koha. In contrast, only 53 libraries migrated to a SirsiDynix product, 48 to Agent Verso, and 28 to Millennium.</p></blockquote><p>Lori Bowen Ayre <a href="http://rscel.evergreen-ils.org/node/1541" title="Koha and Evergreen Shine in Breeding ILS Survey Results | RSCEL: Resource and Sharing Cooperative of Evergreen Libraries">summarizes ILS migration trends</a> from <a href="http://www.librarytechnology.org/blog.pl?ThreadID=184&amp;BlogID=1" title="Participate in the Perceptions 2010 International Library Automation Survey | Library Technology Guides">Marshall Breeding&#8217;s annual ILS survey</a>.  The data on migrations is available in the <a href="http://www.librarytechnology.org/ils-turnover.pl" title="Library Technology Guides: ILS Turnover for 2010">forward</a> and <a href="http://www.librarytechnology.org/ils-turnover-reverse.pl" title="Library Technology Guides: ILS Turnover for 2010 by displaced system">reverse</a> directions.  Does this mark a shift in acceptance of integrated library systems based on open source software?</p><p>Update: Somehow I missed <a href="http://blog.ecorrado.us/2010/12/31/ilsturnover/" title="blog.ecorrado.us &amp;raquo; Thoughts on Library Technology Guides&amp;#8217; ILS Turnover Report">Ed Corrado&#8217;s review of the report</a> and <a href="http://blog.ecorrado.us/2011/01/04/u-s-academic-libraries-switching-to-koha-in-2010/" title="blog.ecorrado.us &amp;raquo; U.S. Academic Libraries switching to Koha in 2010">his follow-up focused on the Koha numbers</a>.  Both posts have a number of helpful and insightful comments from other readers as well.</p><p><h2><a name="public_domain_day">Public Domain Day 2011: Will the tide be turned?</a></h2></p><blockquote><p>This year’s <a href="http://www.publicdomainday.org/" title="To celebrate the role of the public domain in our societies | Public Domain Day - 1 January 2011">Public Domain Day</a>, the day on which a year’s worth of copyrights expire in many countries, is getting particular attention in Europe, where events in various European cities commemorate authors who died in 1940, and whose works are now in the public domain there.</p></blockquote><p>Many commented on Public Domain Day &#8212; a watershed day each year when copyrights terms are up and works enter the public domain &#8212; but I found <a href="http://everybodyslibraries.com/2011/01/02/public-domain-day-2011-will-the-tide-be-turned/" title="Public Domain Day 2011: Will the tide be turned? | Everybody&#039;s Libraries">John Mark Ockerbloom</a> brief review of the state of copyright extensions in North America and Europe the most interesting.  He also briefly mentions the desires by some to return to a more simple model of copyright terms and registration.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/thursday-threads-2011w1/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>When Closed Source Companies Contribute to Open Source Communities</title><link>http://dltj.org/article/company-contributions-to-open-source/</link> <comments>http://dltj.org/article/company-contributions-to-open-source/#comments</comments> <pubDate>Fri, 17 Dec 2010 02:58:06 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Open Source]]></category> <category><![CDATA[ByWater Solutions]]></category> <category><![CDATA[Equinox]]></category> <category><![CDATA[Evergreen]]></category> <category><![CDATA[integrated library system]]></category> <category><![CDATA[Koha]]></category> <category><![CDATA[open source]]></category><guid isPermaLink="false">http://dltj.org/?p=1908</guid> <description><![CDATA[I was reading a story last week about the Linux Foundation&#8216;s third annual report [PDF] of the Linux kernel, and in it was a section that talked about the affiliation of the programmers that contributed to the development of the &#8230; <a href="http://dltj.org/article/company-contributions-to-open-source/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=1908"></abbr><p>I was reading a <a href="http://www.internetnews.com/dev-news/article.php/3737761/Who-Writes-Linux-There-Are-a-Lot-of-Unknowns.htm" title="Who Writes Linux? There Are a Lot of Unknowns | InternetNews.com">story</a> last week about the <a href="http://www.linuxfoundation.org/" title="The Linux Foundation">Linux Foundation</a>&#8216;s <a href="http://www.linuxfoundation.org/docs/lf_linux_kernel_development_2010.pdf" title="Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It" class="broken_link" rel="nofollow">third annual report</a> [PDF] of the Linux kernel, and in it was a section that talked about the affiliation of the programmers that contributed to the development of the kernel.  This got me thinking about the affiliation of programmers in the library open source community.  More on that after a brief detour to explain what the &#8220;kernel&#8221; is.</p><p>For those that don&#8217;t know the inner pieces of how computers are put together, the &#8220;kernel&#8221; is that part of the operating system that governs everything else.  It gets to say what programs are run and shuts them down when they misbehave.  It arbitrates access to devices like the keyboard and the disk drive.  It is the first thing that runs when the computer starts up and the last thing to quit when the computer shuts down.  It is the heart of the device you see in front of you.  There are some parallels that could be drawn to integrated library systems.  So this is a thought exercise down one of those parallels.</p><p>Much of the Linux kernel report is about the rate of change to the Linux kernel source code (faster pace, broader base of contributers).  But there is also a section that talks about financial sponsorship of the work.  Beginning on page 12, I&#8217;ve excepted a few bits under the heading &#8220;Who is Sponsoring the Work&#8221;<br /><blockquote>The Linux kernel is a resource which is used by a large variety of companies. Many of those companies never participate in the development of the kernel; they are content with the software as it is and do not feel the need to help drive its development in any particular direction. &#8230;</p><p>There are a number of developers for whom we were unable to determine a corporate affiliation; those are grouped under “unknown” in the table below. &#8230; The category “None,” instead, represents developers who are known to be doing this work on their own, with no financial contribution happening from any company.</p><p>The top 10 contributors, including the groups “unknown” and “none” make up nearly 70% of the total contributions to the kernel. It is worth noting that, even if one assumes that all of the “unknown” contributors were working on their own time, over 70% of all kernel development is demonstrably done by developers who are being paid for their work. &#8230; The picture since [kernel version] 2.6.30 [in 2009] shows some interesting changes:</p><table><tr><th>Company Name</th><th>Number of Changes</th><th>Percent of Total</th></tr><tr><td>None</td><td>9,911</td><td>19.1%</td></tr><tr><td>Red Hat</td><td>6,219</td><td>12.0%</td></tr><tr><td>Intel</td><td>4,037</td><td>7.8%</td></tr><tr><td>Novell</td><td>2,625</td><td>5.0%</td></tr><tr><td>IBM</td><td>2,491</td><td>4.8%</td></tr><tr><td>unknown</td><td>2,456</td><td>4.7%</td></tr><tr><td>consultants</td><td>1,265</td><td>2.4%</td></tr><tr><td>Nokia</td><td>1,173</td><td>2.3%</td></tr><tr><td>Renesas Technology</td><td>1,032</td><td>2.0%</td></tr></table></blockquote><p><h2>If an Open Source ILS was Linux&#8230;</h2><br />Linux is the largest open source project in existence, so making comparisons to other open source projects is difficult simply based on scale.  I know this is a stretch, but I wonder what we could say about the nature of the library open source developer community if <a href="http://koha-community.org/" title="Koha Library Software Community">Koha</a> or <a href="http://www.open-ils.org/" title="Evergreen open source library system">Evergreen</a> were Linux.  The largest number of developers would be folks working on their own time.  The library community equivalent would be patrons who love their local library and wanted to make it better by adding features and bug fixes to the software.  We would get 20% of our total effort from this group.</p><p>The second largest contributor would be a company that bases its existence on the open source product. <a href="http://www.redhat.com/" title="Red Hat homepage">Red Hat</a> is known as the most successful commercial distributor of the Linux kernel, and its version of the kernel is used and trusted by a variety of commercial players.  In the integrated library system community, an equivalent company would be someone like <a href="http://www.esilibrary.com/" title="Equinox Software">Equinox</a> or <a href="http://bywatersolutions.com/" title="ByWater Solutions">ByWater Solutions</a>.  This might be as you would expect.</p><p>From there the list gets interesting quickly.  Intel is primarily known as a hardware manufacturer, but it ranks third in the list of contributors to the kernel.  It is hard to come up with an equivalent in the library community, but we might think of someone who is tangentially related to integrated library systems &#8212; say, Gale or ProQuest.  (Until recently, I might have put OCLC in this group.  With its introduction of <a href="http://www.oclc.org/webscale/default.htm" title="Web-scale Management Services | OCLC">Web-scale Management Services</a>, though, it probably falls into the next category.)</p><p>Then it gets really interesting.  Novell and IBM both have their own lines of operating systems and supplemental software, but they are also very large contributors of open source code to the Linux kernel.  It would be as if Innovative Interfaces and SirsiDynix, in addition to creating their own products, also contributed substantially to an open source integrated library system.</p><p>Okay, like I said, making this comparison is a stretch.  But it does lead me to think what it is about the culture of Linux community and the business opportunity of an open source kernel that makes this happen.  Is it one benevolent dictator at the top (a.k.a. <a href="http://en.wikipedia.org/wiki/Linus_Torvalds" title="Linus Torvalds | Wikipedia">Linus Torvalds</a>) looking out for the best interests of all involved?  Is it a diversity of needs (such as servers to desktops to set-top boxes to phones in the case of Linux) under a big umbrella that makes sure everyone find enough value to contribute to the whole?  Is it a form of job advertisements seeking to hire the best of 19.1% doing development on their own time?  Or is it some sense of comradeship that transcends organizational bounds?</p><p>I don&#8217;t have answers, but it does seem like a useful case study to examine as we think about how open source software is created and sustained in the library arena.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/company-contributions-to-open-source/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>OCLC&#8217;s WorldCat Local &#8220;Quick Start&#8221;</title><link>http://dltj.org/article/worldcat-local-quick-start/</link> <comments>http://dltj.org/article/worldcat-local-quick-start/#comments</comments> <pubDate>Wed, 29 Apr 2009 20:48:03 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Economies of Scale]]></category> <category><![CDATA[cloud computing]]></category> <category><![CDATA[integrated library system]]></category> <category><![CDATA[OCLC]]></category> <category><![CDATA[WorldCat]]></category><guid isPermaLink="false">http://dltj.org/?p=905</guid> <description><![CDATA[Last week, OCLC announced a &#8220;strategy to move library management services to Web scale.&#8221; With this move, OCLC is rebranding &#8220;WorldCat Local&#8221; to include functions typically associated with an integrated library system. From the press release:OCLC plans to release Web-scale &#8230; <a href="http://dltj.org/article/worldcat-local-quick-start/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=905"></abbr><p>Last week, OCLC <a href="http://www.oclc.org/us/en/news/releases/200927.htm" title="OCLC Announces WorldCat Local Strategy">announced</a> a &#8220;strategy to move library management services to Web scale.&#8221; With this move, OCLC is rebranding &#8220;WorldCat Local&#8221; to include functions typically associated with an integrated library system.  From the press release:<br /><blockquote>OCLC plans to release Web-scale delivery and circulation, print and electronic acquisitions, and license management components to WorldCat Local, continuing the integration of library management services to create the Web-scale, cooperative library service. OCLC will begin piloting the Web-scale management service components this year.</p></blockquote><p> There are many thing going on here.  So, in order to get our bearings I think it is useful to break this down into two parts:  the broader scope of web-scale integrated library system components and the narrower scope of the &#8220;quick start&#8221; trial version of the patron interface to WorldCat.org.  But first we need to tackle the phrase &#8220;WorldCat Local.&#8221;</p><p><h2>What is &#8220;WorldCat Local&#8221;?</h2><br />Until now, many of us probably thought of WorldCat Local as a locally-scoped version of the WorldCat.org database.  It is, in fact, interesting to go back to the <a href="http://www.oclc.org/us/en/news/releases/200659.htm" title="WorldCat Local pilot announcement">11 April 2007 press release announcing the pilot of WorldCat Local</a>; it says &#8220;the service will provide libraries the ability to search the entire WorldCat database and present results beginning with items most accessible to the patron.&#8221;  Further on in the same release, it says &#8220;WorldCat Local service interoperates with locally maintained services like circulation, resource sharing and resolution to full text to create a seamless experience for the end user.&#8221;</p><p>OCLC now seems to be rebranding &#8220;WorldCat Local&#8221; from a discovery layer service to a replacement of a local integrated library system (although OCLC seems to go through great pains not to use the phrase &#8220;integrated library system&#8221; to describe this new offering).  This rebranding varies depending on the page you are viewing:  the <a href="http://www.oclc.org/us/en/news/releases/200927.htm" title="OCLC Announces WorldCat Local Strategy">press release</a> has the quote at the top of this post while the first link in that press release (to the <a href="http://www.oclc.org/us/en/productworks/webscale.htm" title="OCLC ProductWorks Web-scale">Web-scale, cooperative library management service</a>) seems to speak of WorldCat Local in its 2007 definition.  Andrew Pace&#8217;s <a href="http://community.oclc.org/hecticpace/archive/2009/04/and-now-for-something-complete.html" title="And now for something completely different - Hectic Pace blog">blog post</a> is somewhere in the middle: &#8220;OCLC is extending the WorldCat Local platform to include circulation and delivery, print and electronic acquisitions, and license management components.&#8221;  In a conversation on the <a href="http://code4lib.org/irc/" title="IRC | code4lib">Code4Lib IRC channel</a>, Roy Tennant says &#8220;AFAIK (as far as I know) WorldCat Local, which formerly was completely bounded by the catalog part, now will have different components, one of which is the catalog.&#8221;</p><p>Since the branding seems to be in flux, in this post I&#8217;m going to refer to WorldCat Local Web-scale Management Service (WCL-WMS) and WorldCat Local Discovery Service (WCL-DS).  Any resemblance to current or future OCLC product names is quite definitely a coincidence.</p><p><h2>Web-Scale Integrated Library System</h2><br />Starting with WCL-WMS.  In places on the OCLC website, this effort also goes by the name of <a href="http://www.oclc.org/us/en/productworks/webscale.htm" title="OCLC ProductWorks Web-scale">Web-scale management services</a>.  OCLC describes its broad efforts this way:<br /><blockquote>OCLC&#8217;s vision is similar to Software as a Service (SaaS)<sup><a href="http://dltj.org/article/worldcat-local-quick-start/#footnote_0_905" id="identifier_0_905" class="footnote-link footnote-identifier-link" title="Software as a Service is a model for deploying software where a firm provides the hosting and support of a system for a client.  For example, Google Docs is a SaaS deployment for office automation applications and Salesforce.com is a supplier of a customer relationship management system.  As opposed to a model of software-purchase-plus-maintenance, SaaS involves a ongoing subscription fee.  For more information, see the Wikipedia article on the topic.">1</a></sup> but is distinguished by the cooperative &#8220;network effect&#8221; of all libraries using the same, shared hardware, services and data, rather than the alternative model of hosting hardware and software on behalf of individual libraries. Libraries would subscribe to Web-scale management services that include modular management functionality. Moreover, libraries would benefit from the network-level integration of numerous services that are not currently part traditional integrated library systems, e.g., Knowledge Base Integration, <a href="http://www.oclc.org/us/en/collectionanalysis/default.htm" title="OCLC Collection Analysis product ">WorldCat Collection Analysis</a>, <a href="http://www.oclc.org/us/en/selection/default.htm" title="WorldCat Selection product">WorldCat Selection</a>, <a href="http://www.oclc.org/us/en/worldcatlocal/default.htm" title="WorldCat Local product">WorldCat Local</a>, etc..</p></blockquote><p>Further down the <a href="http://www.oclc.org/us/en/productworks/webscale.htm" title="OCLC ProductWorks Web-scale">Web-scale management services</a> page there is a list of proposed services:  Web-Scale Circulation and Delivery, Web-Scale Print and Electronic Acquisitions, Web-Scale License Management, Web-Scale Self-Configuration, Web-Scale Workflow, and Web-Scale Cooperative Intelligence.  The list also has brief descriptions of each of these services.</p><p><h2>Trial Version of Patron Interface</h2><br />The second component is a feature-limited version of the (formerly branded?) WorldCat Local interface.  According to OCLC, the &#8220;quick start&#8221; version is missing the ability to have a consortial scope of holdings (between locally-owned and the-world), branch-level scoping within a local library, and local information display (such as notes and local URLs).  The &#8220;quick start&#8221; version also won&#8217;t have the forthcoming metasearch integration or the ability to place holds via NCIP.  (Holds can be place by redirecting the user to the home ILS and using whatever functionality is in place locally.)  WCL-DS will pull availability information from local systems for items in which the library&#8217;s OCLC symbol is recorded in the WorldCat database.  Status information is pulled either by Z39.50 look-up (in the case of Ex Libris Aleph systems) or HTML-scraping the Web OPAC display (all other systems).  By offering it for free, OCLC is giving libraries the option of trying out a large subset of the WCL-DS functionality.</p><p><h2>Initial Thoughts</h2><br />From an OCLC-as-business perspective, this is a shrewd move.  They may have effectively frozen two markets in one press release:  libraries looking at discovery layers and libraries looking for new automation systems.  For the former, the ability for libraries that already subscribe to OCLC FirstSearch &#8212; <a href="http://www.oclc.org/services/brochures/211374usb_firstsearch.pdf" title="FirstSearch Product brochure; see bottom of page 3">an interface that in transition to WorldCat.org</a> &#8212; to get a version of WCL-DS can be seen as a &#8220;gateway drug&#8221; that allows them to try out a thorough and robust challenger to <a href="http://www.exlibrisgroup.com/category/PrimoOverview" title="Ex Libris Primo">Primo</a>, <a href="http://encoreforlibraries.com/" title="Encore by Innovative Interfaces">Encore</a>, <a href="http://www.serialssolutions.com/summon/" title="Summon by Serials Solutions">Summon</a>, and <a href="http://www.ebscohost.com/thisTopic.php?marketID=1&amp;topicID=1245" title="EBSCO Discovery Service product description">EBSCO Discovery Service</a>, which is to say nothing about the open source contenders out there like <a href="http://www.blacklight.org/" title="The Blacklight Blog">Blacklight</a>, <a href="http://www.vufind.org/" title="VuFind: Home">VuFind</a>, and the <a href="http://www.extensiblecatalog.org/" title="The eXtensible Catalog">Extensible Catalog Project</a>.  In the case of the latter, there isn&#8217;t much movement in the ILS marketplace, but there is the 2-year-old <a href="http://bibwild.wordpress.com/2007/06/11/exlibris_urm/" title="Ex Libris&amp;#8217; &amp;#8216;URM strategy&amp;#8217;, and the future of library software &amp;laquo; Bibliographic Wilderness">Ex Libris URM</a> and the soon-to-be-released report from the <a href="http://oleproject.org/" title="The OLE Project">Open Library Environment project</a>.  (Will OCLC&#8217;s announcement of work in this area freeze out potential build partners for the OLE Project?  The Web-scale document lists a feature of &#8220;A Service-Oriented Architecture (SOA) for interoperability with local environments and 3rd party business process systems (e.g., financial management, HR systems, and course management)&#8221; &#8212; one of the hallmarks of the OLE project.)</p><p>It is this second effect that has caught my eye the most.  When pushing the back-room library automation tasks of circulation, acquisitions and such from local systems to &#8220;the cloud&#8221;, we&#8217;re fundamentally talking about a system migration.  We&#8217;ve got to unload all of the records from our current system, massage them however we need to, put put them in another system.  The twist comes from the fact that the other system is not the library&#8217;s own.  I have no doubt that OCLC can work with existing ILS vendors to migrate their information into OCLC.  My questions and concerns come at the other end &#8212; what if you want to migrate from the cloud back to a local system?</p><p>This is where considerations of OCLC-as-a-cooperative take over.  If OCLC were acting as a cooperative &#8212; acting on the best behalf of its members &#8212; there would be no question that the data could easily come back out.  The <a href="http://www.oclc.org/worldcat/catalog/policy/" title="Policy for Use and Transfer of WorldCat Records">announcement</a>, <a href="http://wiki.code4lib.org/index.php/OCLC_Policy_Change" title="OCLC Policy Change - Code4Lib">backlash</a>, and <a href="http://www.oclc.org/us/en/news/releases/20092.htm" title="Review Board on Shared Records [OCLC]">response</a> to the proposed changes to the record use policy are, however, a dark cloud<sup><a href="http://dltj.org/article/worldcat-local-quick-start/#footnote_1_905" id="identifier_1_905" class="footnote-link footnote-identifier-link" title="Please pardon the cloud-computing pun.">2</a></sup> over any reading of OCLC&#8217;s intentions.  In a world where I could trust the cooperative to provide single-item lookups and batch aggregated extracts of holdings and acquisition data from the SaaS, what OCLC is offering could be a good thing.  If it came along with demonstrations of real cost reductions (not simply <a href="http://www5.oclc.org/downloads/design/e-newsletter/260/pres.htm" title="OCLC Newsletter">&#8220;reducing the rate of rise&#8221;</a> of costs) it would be even better.  But OCLC has turned into a behemoth much larger than the collective whole of the collaborative, and I&#8217;m not sure I can trust them (collectively) at this point farther than I can throw the <a href="http://bit.ly/406fC9" title="Satellite View of the Kilgore Building">headquarters building in Dublin, OH</a>.</p><p><h2>Other Interesting Tidbits</h2><br />The <a href="http://www.libraryjournal.com/article/CA6653619.html" title="In Challenge to ILS Industry, OCLC Extends WorldCat Local To Launch New Library System">initial article</a> in Library Journal by Marshall Breeding says:  &#8220;OCLC said it will work with the more than 1,000 libraries and partners that are currently using OCLC library management systems in Europe and Asia Pacific to help build the new service.&#8221;  In this context, I think &#8220;New Service&#8221; refers to WCL-WMS, and given the description is probably in reference to the <a href="http://www.oclc.org/us/en/news/releases/200668.htm" title="OCLC acquires remaining shares of OCLC PICA [OCLC]">OCLC PICA division</a>.</p><p>In a future post, I&#8217;ll start to summarize the reactions to the OCLC announcement.</p><h2>Footnotes</h2><ol class="footnotes"><li id="footnote_0_905" class="footnote">Software as a Service is a model for deploying software where a firm provides the hosting and support of a system for a client.  For example, Google Docs is a SaaS deployment for office automation applications and Salesforce.com is a supplier of a customer relationship management system.  As opposed to a model of software-purchase-plus-maintenance, SaaS involves a ongoing subscription fee.  For more information, see the <a href="http://en.wikipedia.org/wiki/Software_as_a_service" title="Software as a service - Wikipedia">Wikipedia article on the topic</a>.</li><li id="footnote_1_905" class="footnote">Please pardon the cloud-computing pun.</li></ol>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/worldcat-local-quick-start/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> </channel> </rss>
<!-- Served from: dltj.org @ 2012-02-11 08:35:05 by W3 Total Cache -->
