<?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/"
	>

<channel>
	<title>τεχνοσοφια &#187; APIs</title>
	<atom:link href="http://lackoftalent.org/michael/blog/category/development/apis/feed/" rel="self" type="application/rss+xml" />
	<link>http://lackoftalent.org/michael/blog</link>
	<description>The occasional rambling of a digital library artisan</description>
	<lastBuildDate>Sun, 24 Jan 2010 18:30:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linking World Digital Library Data</title>
		<link>http://lackoftalent.org/michael/blog/2009/08/10/linking-world-digital-library-data/</link>
		<comments>http://lackoftalent.org/michael/blog/2009/08/10/linking-world-digital-library-data/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 22:44:29 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Cataloging and Metadata]]></category>
		<category><![CDATA[Digital Libraries and Archives]]></category>
		<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[OAI-ORE]]></category>
		<category><![CDATA[World Digital Library]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/?p=457</guid>
		<description><![CDATA[
As I mentioned earlier, I&#039;ve been learning about linked data in the context of dropping it into the World Digital Library project.  I am hopeful we&#039;ll be able to deploy the RDF views[1] before too long.  In advance of that, I thought it might be helpful to share a sample of what our [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:457"><!-- &nbsp; --></abbr>
<p>As I <a href="/michael/blog/2009/07/31/validating-ore-from-the-command-line/">mentioned earlier</a>, I&#039;ve been learning about linked data in the context of dropping it into the <a href="http://www.wdl.org">World Digital Library</a> project.  I am hopeful we&#039;ll be able to deploy the RDF views[1] before too long.  In advance of that, I thought it might be helpful to share a sample of what our RDF would look like.  The RDF below represents the WDL item for the U.S. Constitution.  I appreciate constructive criticism.</p>
<p>A few things to note:</p>
<ul>
<li>Mmm, Unicode.</li>
<li>Item types are from the <a href="http://bibliontology.com/">Bibliographic Ontology</a>.</li>
<li>Most of the properties are from the <a href="http://dublincore.org/documents/dces/">Dublin Core Metadata Element Set</a> ontology, especially used where literals are objects rather than resources identified by URI. </li>
<li>Where possible I dug up or found URIs and used the <a href="http://dublincore.org/documents/dcmi-terms/">Dublin Core Metadata Terms</a> ontology.</li>
<li>An item is modeled as an aggregation of its constituent files, as defined in <a href="http://www.openarchives.org/ore/">OAI-ORE</a>.  The notion here is that an ORE aggregation of an item, as expressed in a resource map which is discoverable via a link header in each item detail page, is a &#034;whole&#034; item, including all of its files[2], metadata, and translations.</li>
<li>I&#039;m also making light use of the <a href="http://www.semanticdesktop.org/ontologies/nfo/">NEPOMUK File Ontology</a> to express that constituent files are files, and to be explicit about file sizes so that folks know in advance of retrieving it how large files are.</li>
<li>Links out to <a href="http://purl.org/NET/decimalised#">DDC</a> (Decimalised Database of Concepts), <a href="http://www.lingvoj.org/">Lingvoj</a>, <a href="http://dbpedia.org/">DBpedia</a>, and <a href="http://id.loc.gov/authorities/">Library of Congress Authorities &amp; Vocabularies</a> (e.g., LC Subject Headings) are included where possible. [3] I&#039;d be especially stoked to hear of other vocabs I might link to.  The more linked the data, the better.</li>
<li>The output below is Turtle for readability, but the application will offer up RDF/XML.</li>
</ul>
<p>The data after the jump:<br />
<span id="more-457"></span></p>

<div class="wp_syntax"><div class="code"><pre class="ttl" style="font-family:monospace;">@prefix rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt; .
@prefix dc: &lt;http://purl.org/dc/elements/1.1/&gt; .
@prefix dcterms: &lt;http://purl.org/dc/terms/&gt; .
@prefix nfo: &lt;http://www.semanticdesktop.org/ontologies/nfo#&gt; .
@prefix ore: &lt;http://www.openarchives.org/ore/terms/&gt; .
@prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt; .
&nbsp;
&lt;http://localhost/static/c/2708/service/00303_2003_001_pr.jpg&gt;
    dc:format &quot;image/jpeg&quot; ;
    nfo:fileSize &quot;259485&quot;^^&lt;http://www.w3.org/2001/XMLSchema#long&gt; ;
    a nfo:FileDataObject .
&nbsp;
&lt;http://localhost/static/c/2708/service/00303_2003_003_pr.jpg&gt;
    dc:format &quot;image/jpeg&quot; ;
    nfo:fileSize &quot;267031&quot;^^&lt;http://www.w3.org/2001/XMLSchema#long&gt; ;
    a nfo:FileDataObject .
&nbsp;
&lt;http://localhost/static/c/2708/reference/00303_2003_004_pr_thumb_item.gif&gt;
    dc:format &quot;image/gif&quot; ;
    nfo:fileSize &quot;56620&quot;^^&lt;http://www.w3.org/2001/XMLSchema#long&gt; ;
    a nfo:FileDataObject .
&nbsp;
&lt;http://localhost/static/c/2708/service/00303_2003_004_pr.jpg&gt;
    dc:format &quot;image/jpeg&quot; ;
    nfo:fileSize &quot;233875&quot;^^&lt;http://www.w3.org/2001/XMLSchema#long&gt; ;
    a nfo:FileDataObject .
&nbsp;
&lt;http://localhost/static/c/2708/service/00303_2003_002_pr.jpg&gt;
    dc:format &quot;image/jpeg&quot; ;
    nfo:fileSize &quot;245809&quot;^^&lt;http://www.w3.org/2001/XMLSchema#long&gt; ;
    a nfo:FileDataObject .
&nbsp;
&lt;http://localhost/item/2708/about.rdf&gt;
    dcterms:created &quot;2009-08-10T18:11:25-04:00&quot;^^dcterms:W3CDTF ;
    dcterms:creator &lt;http://dbpedia.org/resource/World_Digital_Library&gt; ;
    dcterms:modified &quot;2009-08-10T18:11:25-04:00&quot;^^dcterms:W3CDTF ;
    ore:describes &lt;http://localhost/item/2708/about.rdf#item&gt; ;
    a ore:ResourceMap .
&nbsp;
&lt;http://localhost/item/2708/about.rdf#item&gt;
    dc:created &quot;17 Septembre 1787&quot;@fr, &quot;17 de septiembre de 1787&quot;@es, &quot;17 de setembro de 1787&quot;@pt, &quot;17 сентября 1787 г.&quot;@ru, &quot;1787年9月17日&quot;@zh, &quot;September 17, 1787&quot;@en, &quot;&quot;&quot;١٧ ايلول ١٧٨٧
&quot;&quot;&quot;@ar ;
    dc:creator &quot;Constitutional Convention, United States&quot;@en, &quot;Convención Constituyente, Estados Unidos&quot;@es, &quot;Convention constitutionnelle, États-Unis&quot;@fr, &quot;Convenção Constitucional, Estados Unidos&quot;@pt, &quot;Конституционная Конвенция, Соединенные Штаты&quot;@ru, &quot;الاتفاقية الدستورية، الولايات المتحدة&quot;@ar, &quot;制宪会议，美国&quot;@zh ;
    dc:extent &quot;Manuscript (4 pages of parchment)&quot;@en, &quot;Manuscrit (4 pages de parchemin)&quot;@fr, &quot;Manuscrito (4 páginas de pergamino)&quot;@es, &quot;Manuscrito (4 páginas em pergaminho)&quot;@pt, &quot;Рукопись (4 пергаментных страницы)&quot;@ru, &quot;مخطوطة (٤ صفحات من الورق النفيس)&quot;@ar, &quot;手草本（4 页羊皮纸）&quot;@zh ;
    dc:language &quot;Anglais&quot;@fr, &quot;English&quot;@en, &quot;Inglés&quot;@es, &quot;Inglês&quot;@pt, &quot;Английский язык&quot;@ru, &quot;الإنجليزية&quot;@ar, &quot;英语&quot;@zh ;
    dc:publisher &quot;Administração de Registros e Arquivos Nacionais&quot;@pt, &quot;Archives Nationales et Administration des documents (NARA) des États-Unis d'Amérique &quot;@fr, &quot;Los Archivos Nacionales y Administración de Documentos (NARA) de los Estados Unidos de América&quot;@es, &quot;National Archives and Records Administration&quot;@en, &quot;Управление национальных архивов и документов&quot;@ru, &quot;الإدارة الأمريكية للوثائق والسجلات الوطنية&quot;@ar, &quot;美国国家文件与档案管理局&quot;@zh ;
    dc:subject &quot;Constituciones&quot;@es, &quot;Constituições&quot;@pt, &quot;Constitutional &amp; administrative law&quot;@en, &quot;Constitutions&quot;@en, &quot;Constitutions&quot;@fr, &quot;Derecho constitucional y administrativo&quot;@es, &quot;Direito constitucional e administrativo&quot;@pt, &quot;Droit constitutionnel et administratif&quot;@fr, &quot;Politics and government&quot;@en, &quot;Politique et gouvernement&quot;@fr, &quot;Política e governo&quot;@pt, &quot;Política y gobierno&quot;@es, &quot;Конституции&quot;@ru, &quot;Конституционное и административное право&quot;@ru, &quot;Политика и правительство&quot;@ru, &quot;الدساتير&quot;@ar, &quot;السياسة والحكومة&quot;@ar, &quot;القانون الدستوري والإداري.&quot;@ar, &quot;宪法&quot;@zh, &quot;宪法 &amp; 行政法&quot;@zh, &quot;政治和政府&quot;@zh ;
    dc:title &quot;Constitución de los Estados Unidos&quot;@es, &quot;Constituição dos Estados Unidos&quot;@pt, &quot;Constitution des États-Unis&quot;@fr, &quot;Constitution of the United States&quot;@en, &quot;Конституция Соединенных Штатов&quot;@ru, &quot;دستور الولايات المتحدة&quot;@ar, &quot;美国宪法&quot;@zh ;
    dcterms:DDC &quot;342&quot; ;
    dcterms:LCSH &lt;http://id.loc.gov/authorities/label/Constitutions&gt; ;
    dcterms:alternative &quot;Constitution of the United States&quot;@en ;
    dcterms:dateSubmitted &quot;2009-05-07T06:45:21-04:00&quot;^^dcterms:W3CDTF ;
    dcterms:description &quot;1787 年 5 月 14 日，制宪会议在费城的议会大楼（独立厅）召开，目的是修订《邦联条例》。 由于开始时只有两个州的代表团出席，成员不得不一天天地休会，直到 5 月 25 日与会人数达到法定的七个州。 通过讨论和争辩，6 月中旬时明确显示大会与其修改现有的《联邦条例》不如为政府重新起草一份全新的框架。 整个夏季，代表们都在非公开会议中辩论、起草、重新起草新宪法的条款。 主要的争论问题包括要赋予中央政府多大权利、允许各州在国会中有多少个代表席位以及这些代表应该如何选举产生——由人民直接选举还是由各州立法人员选举产生。 这部宪法是很多人智慧的结晶，是合作政治运作和妥协艺术的典范。&quot;@zh, &quot;A Convenção Federal reuniu-se na Casa de Estado (Hall da Independência), em Filadélfia, em 14 de maio de 1787 para revisar os Artigos da Confederação. Em virtude de estarem presentes, inicialmente, as delegações de apenas dois estados, os membros suspenderam os trabalhos, dia após dia, até que fosse atingido o quórum de sete estados em 25 de maio. Através de discussões e debates ficou claro, em meados de junho que, em vez de alterar os atuais artigos da Confederação, a convenção deveria elaborar uma estrutura inteiramente nova para o governo. Ao longo de todo o verão, os delegados debateram, elaboraram e reelaboraram os artigos da nova Constituição em sessões fechadas. Entre os principais pontos em questão estavam o grau de poder permitido ao governo central, o número de representantes no Congresso para cada Estado, e como estes representantes deveriam ser eleitos - diretamente pelo povo ou pelos legisladores do estado. A Constituição foi o trabalho de muitas mentes e permanece como um modelo de cooperação entre lideranças políticas e da arte da condescendência.&quot;@pt, &quot;La Convención Federal se reunió en la Cámara del Estado (Salón de la Independencia) en Filadelfia el 14 de mayo de 1787, para revisar los artículos de la Confederación. Debido a que las delegaciones de sólo dos estados estuvieron presentes inicialmente, los miembros levantaron sesión de un día para el siguiente hasta que se obtuvo un quórum de siete estados el 25 de mayo. A través de la discusión y el debate se hizo evidente a mediados de junio que, en lugar de modificar los actuales artículos de la Confederación, la convención prepararía un marco totalmente nuevo para el gobierno. Durante todo el verano, los delegados debatieron, prepararon y redactaron nuevamente los artículos de la nueva Constitución en sesiones a puerta cerrada. Entre los principales puntos en cuestión estuvieron cuánto poder otorgar al gobierno central, el número de representantes en el Congreso que se iban a permitir a cada Estado y la forma en que estos representantes debían ser elegidos, directamente por el pueblo o por los legisladores estatales. La Constitución fue el resultado del trabajo de muchas mentes y se erige como modelo de cooperación política y del arte del compromiso.&quot;@es, &quot;La Convention Fédérale s'assembla dans la Chambre Législative (Independence Hall) à Philadelphie le 14 mai 1787, pour réviser les articles de la Confédération. En raison de la seule présence initiale des délégations de deux États, les membres ajournèrent d'un jour à l'autre jusqu'à ce que le quorum de sept États soit obtenu le 25 mai. Â travers les discussions et les débats, il devint clair dès la mi-juin que, plutôt que de modifier les articles existants de la Confédération, la convention allait plutôt ébaucher un cadre entièrement nouveau pour le gouvernement. Tout au long de l'été, les délégués débattirent, élaborèrent, et remanièrent les articles de la nouvelle Constitution, à huis clos. Les principaux points litigieux portaient sur la puissance à accorder au gouvernement central, sur le nombre de représentants au Congrès pour chaque État, et sur le mode d'élection de ces représentants - directement par le peuple ou par les législateurs de l'état. La Constitution fut l'œuvre de nombreux esprits et reste un modèle de coopération politique et de l'art du compromis.&quot;@fr, &quot;The Federal Convention convened in the State House (Independence Hall) in Philadelphia on May 14, 1787, to revise the Articles of Confederation. Because the delegations from only two states were present initially, the members adjourned from one day to the next until a quorum of seven states was obtained on May 25. Through discussion and debate it became clear by mid-June that, rather than amend the existing Articles of Confederation, the convention would draft an entirely new framework for the government. All through the summer, the delegates debated, drafted, and redrafted the articles of the new Constitution in closed sessions. Among the chief points at issue were how much power to allow the central government, how many representatives in Congress to allow each state, and how these representatives should be elected--directly by the people or by the state legislators. The Constitution was the work of many minds and stands as a model of cooperative statesmanship and the art of compromise.&quot;@en, &quot;Федеральное собрание собралось на заседание в Доме правительства (зал Независимости) 14 мая 1787 года для пересмотра Статей Конфедерации. Поскольку вначале на заседании присутствовали представители только двух штатов, Собрание было распущено на несколько дней до тех пор, пока 25 мая не был обеспечен кворум из представителей семи штатов. В ходе дискуссий и дебатов к середине июня стало понятно, что собрание было намерено скорее составить новый вариант структуры правительства, нежели чем пересматривать существующие Статьи Конфедерации. В течение всего лета делегаты обсуждали, составляли черновые варианты статей новой Конституции и тут же их пересматривали в ходе закрытых заседаний. Среди основных обсуждавшихся вопросов были вопросы степени власти и полномочий, которыми должно быть наделено центральное правительство, количества представителей в Конгрессе от каждого штата, а также процедуры переизбрания этих представителей — непосредственно жителями штатов или законодательными собраниями штатов. Конституция была плодом работы многих политиков и является ярким примером сотрудничества государственных деятелей и искусства компромисса.&quot;@ru, &quot;اجتمع ممثلو الاتحاد الفدرالي في قصر الدولة (قاعة الاستقلال) في فيلادلفيا يوم ١٤  أيار ١٧٨٧ لتعديل النظام الأساسي للاتحاد. وحيث حضر وفدان اثنان فقط من وفود الولايات في البداية، رفع الأعضاء الحضور الجلسة من يوم إلى آخر حتى اكتمل النصاب القانوني بحضور وفود سبع ولايات في ٢٥ أيار. وقد اتضح خلال المناقشات والحوار بحلول منتصف حزيران أنه بدلا من تعديل مواد الاتحاد الكونفدرالي القائمة، كان على المؤتمرين صياغة إطار جديد تماما بالنسبة للحكومة. وطوال ذلك الصيف، ناقش المندوبون وصاغوا ثم أعادوا صياغة مواد الدستور الجديد في جلسات مغلقة. ومن بين النقاط الرئيسية التي دار حولها الجدل مدى صلاحيات الحكومة المركزية وعدد الممثلين في الكونغرس لكل ولاية ، وكيفية انتخاب هؤلاء ممثلين -- بالانتخاب المباشر من الشعب أو من قبل مشرّعي الولايات. لقد كان الدستور من عمل عقول كثيرة وهو يمثل نموذجا لفن الحكم التعاوني حنكة التوصل إلى الحلول الوسط.&quot;@ar ;
    dcterms:identifier &quot;http://localhost/item/2708/about.rdf#item&quot; ;
    dcterms:language &lt;http://www.lingvoj.org/lang/en&gt; ;
    dcterms:publisher &lt;http://dbpedia.org/resource/National_Archives_and_Records_Administration&gt; ;
    dcterms:spatial &lt;http://dbpedia.org/resource/North_America&gt;, &lt;http://dbpedia.org/resource/United_States_of_America&gt;, &quot;América del Norte&quot;@es, &quot;América do Norte&quot;@pt, &quot;Amérique du Nord&quot;@fr, &quot;Estados Unidos da América&quot;@pt, &quot;Estados Unidos de América&quot;@es, &quot;North America&quot;@en, &quot;United States of America&quot;@en, &quot;États-Unis d'Amérique&quot;@fr, &quot;Северная Америка&quot;@ru, &quot;Соединенные Штаты Америки&quot;@ru, &quot;أمريكا الشمالية&quot;@ar, &quot;الولايات المتحدة الأمريكية&quot;@ar, &quot;北美&quot;@zh, &quot;美国&quot;@zh ;
    dcterms:subject &lt;http://dbpedia.org/resource/Constitutions&gt; ;
    dcterms:temporal &quot;1700 AD - 1799 AD&quot;@en, &quot;1700 ap. J.-C. - 1799 ap. J.-C.&quot;@fr, &quot;1700 d.C. - 1799 d.C.&quot;@es, &quot;1700 d.C. - 1799 d.C.&quot;@pt, &quot;1700 н.э. - 1799 н.э.&quot;@ru, &quot;1700 公元 - 1799 公元&quot;@zh, &quot;١٧٠٠ م - ١٧٩٩ م&quot;@ar ;
    dcterms:title &lt;http://dbpedia.org/resource/Constitution_of_the_United_States&gt; ;
    ore:aggregates &lt;http://localhost/static/c/2708/reference/00303_2003_004_pr_thumb_item.gif&gt;, &lt;http://localhost/static/c/2708/service/00303_2003_001_pr.jpg&gt;, &lt;http://localhost/static/c/2708/service/00303_2003_002_pr.jpg&gt;, &lt;http://localhost/static/c/2708/service/00303_2003_003_pr.jpg&gt;, &lt;http://localhost/static/c/2708/service/00303_2003_004_pr.jpg&gt; ;
    ore:isDescribedBy &lt;http://localhost/item/2708/about.rdf&gt; ;
    a &lt;http://purl.org/ontology/bibo/Manuscript&gt; ;
    rdfs:seeAlso &lt;http://hdl.loc.gov/loc.wdl/dna.2708&gt; .</pre></div></div>

<h5>Notes</h5><ol class="footnotes"><li id="footnote_0_457" class="footnote">Sadly, the URIs are uglyish due to some constraints from our caching configuration.  I figure we can redirect uglyish URIs to cool ones and make use of owl:sameAs if those constraints go away.</li><li id="footnote_1_457" class="footnote"><em>sans</em> certain low-quality derivatives such as small thumbnails and tiles for the zoom interface</li><li id="footnote_2_457" class="footnote">I was poking through the DBpedia output for <a href="http://www.geonames.org/">Geonames</a> URIs as well, but my method was way too slow and clunky, so that&#039;s disabled for the time being.  Clients can always follow their noses from the DBpedia output.</li></ol><br/>
<hr/>]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2009/08/10/linking-world-digital-library-data/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>ORE plugin updated</title>
		<link>http://lackoftalent.org/michael/blog/2008/07/25/ore-plugin-updated/</link>
		<comments>http://lackoftalent.org/michael/blog/2008/07/25/ore-plugin-updated/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 17:19:29 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OAI-ORE]]></category>
		<category><![CDATA[Repositories]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/?p=135</guid>
		<description><![CDATA[
I&#039;ve been using my time at RepoCamp today to get the OAI-ORE plugin for WordPress validating again.  I&#039;m having some trouble using the validator so I say that with some diffidence.  But the latest code which is now checked in to the WordPress plugins svn repo ought to be close, if not fully conformant, to [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:135"><!-- &nbsp; --></abbr>
<p>I&#039;ve been using my time at <a href="http://barcamp.org/RepoCamp" target="_blank">RepoCamp</a> today to get the OAI-ORE <a href="http://lackoftalent.org/michael/blog/ore-wordpress-plug-in/" target="_blank">plugin</a> for WordPress <a href="http://african.lanl.gov/ovalnet/validate.jsp" target="_blank">validating</a> again.  I&#039;m having some trouble using the validator so I say that with some diffidence.  But the latest code which is now checked in to the WordPress plugins svn repo ought to be close, if not fully conformant, to the 0.9 version of the ORE spec.</p>
<p>I&#039;m not sure the plugin is really useful; it&#039;s just an Atom feed of all posts and pages in a WP instance.  I can think of some ways to make this more useful, by allowing blog authors to create their own aggregations, pulling in content outside of the particular instance.  I am certain that others can come up with even better uses.  I&#039;m open to suggestions.</p>
<p>Thanks to Jay Datema for <a href="http://www.bookism.org/open/2008/07/17/repurposing-metadata/" target="_blank">prodding</a> me a bit, if indirectly.</p>
]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2008/07/25/ore-plugin-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OAI-ORE ResourceMap for WordPress</title>
		<link>http://lackoftalent.org/michael/blog/2007/12/14/oai-ore-resourcemap-for-wordpress/</link>
		<comments>http://lackoftalent.org/michael/blog/2007/12/14/oai-ore-resourcemap-for-wordpress/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 21:14:38 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Digital Libraries and Archives]]></category>
		<category><![CDATA[OAI-ORE]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/2007/12/14/oai-ore-resourcemap-for-wordpress/</guid>
		<description><![CDATA[
This is very rough, but here&#039;s a WordPress plugin that provides a resource map for the aggregation of all posts within an installation of WordPress.  I&#039;ll be working on this some more, but for now, it does appear to work and validate (as Atom).  Useful?  If so, I&#039;ll zip it up and [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:111"><!-- &nbsp; --></abbr>
<p>This is very rough, but here&#039;s a WordPress plugin that provides a <a href="http://lackoftalent.org/michael/blog/wp-content/plugins/oai-ore/rem.php" target="_blank">resource map</a> for the aggregation of all posts within an installation of WordPress.  I&#039;ll be working on this some more, but for now, it does appear to work and validate (as Atom).  Useful?  If so, I&#039;ll zip it up and commit it to the wp-plugins svn.</p>
<p>Note:<a href="http://inkdroid.org/journal/" target="_blank">Ed</a> reminds me that xsltproc can be used to transform the Atom-based resource map into RDF via GRDDL:</p>
<p><code>xsltproc http://www.openarchives.org/ore/atom-grddl.xsl http://lackoftalent.org/michael/blog/wp-content/plugins/oai-ore/rem.php</code></p>
<p><strong>Update:</strong> The plugin has its own <a href="http://lackoftalent.org/michael/blog/ore-wordpress-plug-in/" target="_blank">page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2007/12/14/oai-ore-resourcemap-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RESTful Fedora?</title>
		<link>http://lackoftalent.org/michael/blog/2007/06/19/restful-fedora/</link>
		<comments>http://lackoftalent.org/michael/blog/2007/06/19/restful-fedora/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 23:40:26 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[REST]]></category>
		<category><![CDATA[Repositories]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/2007/06/19/restful-fedora/</guid>
		<description><![CDATA[
Matt Zumwalt of MediaShelf, LLC has been hard at work thinking about how to make Fedora RESTful.  There is now a proposal on the Fedora wiki based on a PDF he sent to the fedora-commons-developers list.
It&#039;s an interesting proposal.  I&#039;ve read over the PDF version quickly but it does bear a closer read. [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:97"><!-- &nbsp; --></abbr>
<p>Matt Zumwalt of <a href="http://yourmediashelf.com/" target="_blank">MediaShelf, LLC</a> has been hard at work thinking about how to make <a href="http://fedora.info/" target="_blank">Fedora</a> <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer" target="_blank">RESTful</a>.  There is now a <a href="http://www.fedora.info/wiki/index.php/RESTful_Fedora_Proposal" target="_blank">proposal on the Fedora wiki</a> based on a PDF he sent to the <a href="http://sourceforge.net/mailarchive/forum.php?forum_name=fedora-commons-developers" target="_blank">fedora-commons-developers list</a>.</p>
<p>It&#039;s an interesting proposal.  I&#039;ve read over the PDF version quickly but it does bear a closer read.  </p>
<p>Whether SOAP or REST is more appropriate for a Fedora API is something I&#039;m not sure about, though I don&#039;t mean to imply it&#039;s an either/or situation.</p>
]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2007/06/19/restful-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora marches forward</title>
		<link>http://lackoftalent.org/michael/blog/2006/12/22/fedora-marches-forward/</link>
		<comments>http://lackoftalent.org/michael/blog/2006/12/22/fedora-marches-forward/#comments</comments>
		<pubDate>Fri, 22 Dec 2006 22:31:51 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Digital Libraries and Archives]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Libraries]]></category>
		<category><![CDATA[Repositories]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/2006/12/22/fedora-marches-forward/</guid>
		<description><![CDATA[
I was pleased to see the note that Sandy Payette sent to the fedora-users mailing list earlier today, updating the community on the Fedora 2.2 release date.  Version 2.2 is going to include a bunch of features, some of which have been long-awaited and are quite, well, sexy.  Some of the highlights:

Database support [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:65"><!-- &nbsp; --></abbr>
<p>I was pleased to see the note that Sandy Payette sent to the fedora-users mailing list earlier today, updating the community on the <a target="_blank" href="http://comm.nsdl.org/pipermail/fedora-users/2006-December/002330.html">Fedora 2.2 release date</a>.  Version 2.2 is going to include a bunch of features, some of which have been long-awaited and are quite, well, sexy.  Some of the highlights:</p>
<ul>
<li>Database support has been extended to include Postgres, which should make all the MySQL-haters happy</li>
<li>Fedora may now be deployed via a .war file in an existing servlet container, such as Tomcat, rather than requiring its very own Tomcat server</li>
<li>A Lucene- or Zebra-backed search service has been included, which is more robust than the previous search service that used the built-in Dublin Core-populated database</li>
</ul>
<p>These are but a few of the enhancements, and I can&#039;t wait to put it through its paces when it&#039;s released on January 19th.</p>
<p>For a more complete set of feature enhancements, click on the link above to read Sandy&#039;s message.</p>
<p>Now if we can come together as a community and work on some more UIs, and get them used in some high-profile projects, many of the gripes against Fedora may be silenced.  It&#039;s still not a perfect product, but what is?   That it uses XML as a storage format and exposes its functions via web-services APIs and allows use of any metadata schema, in my humble opinion, puts it <strong>head and shoulders above</strong> many other library repository solutions.  And for that, it&#039;s at least worth consideration.</p>
]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2006/12/22/fedora-marches-forward/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>unAPI revision 1-compliant</title>
		<link>http://lackoftalent.org/michael/blog/2006/03/08/unapi-revision-1-compliant/</link>
		<comments>http://lackoftalent.org/michael/blog/2006/03/08/unapi-revision-1-compliant/#comments</comments>
		<pubDate>Wed, 08 Mar 2006 08:04:33 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code4lib]]></category>
		<category><![CDATA[unAPI]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/2006/03/08/unapi-revision-1-compliant/</guid>
		<description><![CDATA[
I noticed Dan Chudnov&#039;s earlier note about the launch of the unAPI website and noted in particular the the unAPI revision 1 specification.  I decided to give Technosophia a run through some error cases and some of the errors came up as 400 where they should have been 404 or 406.  I made a few minor tweaks [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:29"><!-- &nbsp; --></abbr>
<p>I noticed <a title="dchud's unAPI.info announcement" href="http://onebiglibrary.net/projects/unapi/unapi-info" target="_blank">Dan Chudnov&#039;s earlier note</a> about the launch of the <a title="unAPI.info" href="http://unapi.info/" target="_blank">unAPI website</a> and noted in particular the the <a title="unAPI revision 1 spec" href="http://unapi.info/specs/" target="_blank">unAPI revision 1 specification</a>.  I decided to give Technosophia a run through some error cases and some of the errors came up as 400 where they should have been 404 or 406.  I made a few minor tweaks to <a title="unAPI WP plugin" href="http://www.wallandbinkley.com/quaedam/?p=59" target="_blank">pbinkley&#039;s unAPI WordPress plug-in</a> and I believe Technosophia is now fully compliant with unAPI revision 1. </p>
<p>Here are the test cases I used:</p>
<ul>
<li><a href="http://www.lackoftalent.org/michael/blog/unapi.php" target="_blank">/unapi.php</a><br />
<strong>200 Ok</strong></li>
<li><a href="http://www.lackoftalent.org/michael/blog/unapi.php?uri=oai%3Alackoftalent.org%3Atechnosophia%3A25" target="_blank">/unapi.php?uri=oai%3Alackoftalent.org%3Atechnosophia%3A25</a><br />
<strong>300 Multiple Choices</strong></li>
<li><a href="http://www.lackoftalent.org/michael/blog/unapi.php?uri=oai%3Alackoftalent.org%3Atechnosophia%3A25&#038;format=mods" target="_blank">/unapi.php?uri=oai%3Alackoftalent.org%3Atechnosophia%3A25&#038;format=mods</a><br />
<strong>200 Ok</strong></li>
<li><a href="http://www.lackoftalent.org/michael/blog/unapi.php?uri=oai%3Alackoftalent.org%3Atechnosophia%3A25&#038;format=BADFORMAT" target="_blank">/unapi.php?uri=oai%3Alackoftalent.org%3Atechnosophia%3A25&#038;format=BADFORMAT</a><br />
<strong>406 Not Acceptable</strong></li>
<li><a href="http://www.lackoftalent.org/michael/blog/unapi.php?uri=BADURI&#038;format=mods" target="_blank">/unapi.php?uri=BADURI&#038;format=mods</a><br />
<strong>404 Not Found</strong></li>
<li><a href="http://www.lackoftalent.org/michael/blog/unapi.php?format=mods" target="_blank">/unapi.php?format=mods</a><br />
<strong>400 Bad Request</strong></li>
</ul>
<p>Woohoo?</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2006/03/08/unapi-revision-1-compliant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps JavaScript problem in IE</title>
		<link>http://lackoftalent.org/michael/blog/2005/12/02/google-maps-javascript-problem-in-ie/</link>
		<comments>http://lackoftalent.org/michael/blog/2005/12/02/google-maps-javascript-problem-in-ie/#comments</comments>
		<pubDate>Sat, 03 Dec 2005 06:51:00 +0000</pubDate>
		<dc:creator>Michael Giarlo</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://lackoftalent.org/michael/blog/2005/12/02/google-maps-javascript-problem-in-ie/</guid>
		<description><![CDATA[
Internet Explorer likes to throw the &#034;Operation Aborted&#034; error when trying to hook into the Google Maps API via JavaScript, at least when the JavaScript is placed where it is supposed to, i.e., a reference to the Google Maps JavaScript in the page HEAD and the actual rendering of the map within the DIV tag.
To [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="oai:lackoftalent.org:technosophia:13"><!-- &nbsp; --></abbr>
<p>Internet Explorer likes to throw the &#034;Operation Aborted&#034; error when trying to hook into the Google Maps API via JavaScript, at least when the JavaScript is placed where it is supposed to, i.e., a reference to the Google Maps JavaScript in the page HEAD and the actual rendering of the map within the DIV tag.</p>
<p>To fix this in IE, move the DIV block JavaScript code near the bottom of your HTML. Place it right between the terminating BODY tag and the terminating HTML tag. The problem seems to be that IE gets all confused when JavaScript attempts to make modifications to the page &#8212; e.g., sucking down a map from Google &#8212; while still rendering the body HTML. There are a couple other fix options here:</p>
<p>http://www.mapki.com/index.php?title=FAQs#Browser_Problems</p>
<p>It is worth noting that this &#034;fix&#034; does not break functionality in Firefox. And, really, who cares about the other browsers? Communists and robots, my friend.</p>
<p>In the HEAD of your page, you may include the initial JavaScript</p>
<blockquote><p><code>&lt;script src="http://maps.google.com/maps?file=api&#038;v=1&#038;key=BLAHBLAHBLAHBLAHBLAHBLAHBLAHBLAHBLAH" mce_src="http://maps.google.com/maps?file=api&#038;v=1&#038;key=BLAHBLAHBLAHBLAHBLAHBLAHBLAHBLAHBLAH" type="text/javascript"&gt;&lt;/script&gt;</code> </p></blockquote>
<p>Though it surprised me that I couldn&#039;t remove the terminating SCRIPT tag and instead make the first SCRIPT tag self-terminating, i.e., instead of <code>&lt;script foo="bar"&gt;&lt;/script&gt;</code>, I tried <code>&lt;script foo="bar"/&gt;</code> and it didn&#039;t work.</p>
<p>The JavaScript that actually renders the map within the DIV tag, <em>cleverly</em> named &#034;map&#034;, should look similar to the following:</p>
<blockquote><p><code><br />
&lt;/BODY&gt;<br />
&lt;script type="text/javascript"&gt;<br />
//&lt;![CDATA[ </p>
<p>var map = new GMap(document.getElementById("map"));<br />
map.setMapType(G_HYBRID_TYPE);<br />
map.addControl(new GSmallMapControl());<br />
map.addControl(new GMapTypeControl());<br />
map.centerAndZoom(new GPoint(-666.666,66.6666), 2);<br />
map.openInfoWindowHtml(map.getCenterLatLng(), "100 Main St.&lt;BR&gt;Nowheresville, ZZ 99999<br />
ZZZ");</p>
<p>//]]&gt;<br />
&lt;/script&gt;<br />
&lt;/HTML&gt;<br />
</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://lackoftalent.org/michael/blog/2005/12/02/google-maps-javascript-problem-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
