<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:series="http://organizeseries.com/"
	
	>
<channel>
	<title>Comments on: Make AnthroSource and CiteULike Play Well Together</title>
	<atom:link href="/2005/06/25/make-anthrosource-and-citeulike-play-well-together/feed/" rel="self" type="application/rss+xml" />
	<link>/2005/06/25/make-anthrosource-and-citeulike-play-well-together/</link>
	<description>Notes and Queries in Anthropology</description>
	<lastBuildDate>Fri, 08 Dec 2017 18:00:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.9.1</generator>
	<item>
		<title>By: DigitalKoans  &#187; Blog Archive   &#187; Open Access News Update</title>
		<link>/2005/06/25/make-anthrosource-and-citeulike-play-well-together/comment-page-1/#comment-532</link>
		<dc:creator><![CDATA[DigitalKoans  &#187; Blog Archive   &#187; Open Access News Update]]></dc:creator>
		<pubDate>Tue, 28 Jun 2005 13:39:54 +0000</pubDate>
		<guid isPermaLink="false">/2005/06/25/make-anthrosource-and-citeulike-play-well-together/#comment-532</guid>
		<description><![CDATA[[...] http://www.anthrosource.net/ .  For details, see this blog posting by Rex on Savage Minds, /2005/06/25/make-anthrosource-and-citeuli [...]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://www.anthrosource.net/" rel="nofollow">http://www.anthrosource.net/</a> .  For details, see this blog posting by Rex on Savage Minds, <a href="/2005/06/25/make-anthrosource-and-citeuli" rel="nofollow">/2005/06/25/make-anthrosource-and-citeuli</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerim</title>
		<link>/2005/06/25/make-anthrosource-and-citeulike-play-well-together/comment-page-1/#comment-513</link>
		<dc:creator><![CDATA[Kerim]]></dc:creator>
		<pubDate>Sun, 26 Jun 2005 23:01:18 +0000</pubDate>
		<guid isPermaLink="false">/2005/06/25/make-anthrosource-and-citeulike-play-well-together/#comment-513</guid>
		<description><![CDATA[Hmm. Thanks. I noticed that something was triggering the SPAM filtering on my wiki as well. But unlike WordPress there doesn&#039;t seem to be any way to moderate or override the settings. I probably need to upgrade to a newer version of the software...]]></description>
		<content:encoded><![CDATA[<p>Hmm. Thanks. I noticed that something was triggering the SPAM filtering on my wiki as well. But unlike WordPress there doesn&#8217;t seem to be any way to moderate or override the settings. I probably need to upgrade to a newer version of the software&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckelty</title>
		<link>/2005/06/25/make-anthrosource-and-citeulike-play-well-together/comment-page-1/#comment-510</link>
		<dc:creator><![CDATA[ckelty]]></dc:creator>
		<pubDate>Sun, 26 Jun 2005 18:15:10 +0000</pubDate>
		<guid isPermaLink="false">/2005/06/25/make-anthrosource-and-citeulike-play-well-together/#comment-510</guid>
		<description><![CDATA[kerim, i can&#039;t post on your wiki, it doesn&#039;t like any thing i put there.  

in principle, it should be possible to simply send a post request to get the bibtex file, 

here is approx what the anthrousource citation page sends:  

http://www.anthrosource.net/action/downloadCitation

doi=10.1525%2Faa.2005.107.2.183&#038;downloadFileName=aaa_aa107_183

include=cit

format=bibtex

direct=1

or something like that

and this, or something like it, should mimic that.  this doesn&#039;t work yet though:

&lt;code&gt;
 #!/usr/bin/perl -w                                                              
 use strict;
 use warnings;
 use LWP;

 my $browser = LWP::UserAgent-&#062;new;
 my $url=&quot;http://www.anthrosource.net/action/downloadCitation&quot;; 

 my $response = $browser-&#062;post( $url,
    [
     &#039;doi&#039; =&#062; &#039;10.1525%2Faa.2005.107.2.183&#039;,  #example
     &#039;downloadFileName&#039; =&#062; &#039;aaa_aa107_183&#039;,
     &#039;include&#039; =&#062; &#039;cit&#039;,
     &#039;format&#039; =&#062; &#039;bibtex&#039;,
     &#039;direct&#039; =&#062; &#039;1&#039;
    ]
                     );
 print &quot;$response\n&quot;;
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>kerim, i can&#8217;t post on your wiki, it doesn&#8217;t like any thing i put there.  </p>
<p>in principle, it should be possible to simply send a post request to get the bibtex file, </p>
<p>here is approx what the anthrousource citation page sends:  </p>
<p><a href="http://www.anthrosource.net/action/downloadCitation" rel="nofollow">http://www.anthrosource.net/action/downloadCitation</a></p>
<p>doi=10.1525%2Faa.2005.107.2.183&amp;downloadFileName=aaa_aa107_183</p>
<p>include=cit</p>
<p>format=bibtex</p>
<p>direct=1</p>
<p>or something like that</p>
<p>and this, or something like it, should mimic that.  this doesn&#8217;t work yet though:</p>
<p><code><br />
 #!/usr/bin/perl -w<br />
 use strict;<br />
 use warnings;<br />
 use LWP;</p>
<p> my $browser = LWP::UserAgent-&gt;new;<br />
 my $url="http://www.anthrosource.net/action/downloadCitation"; </p>
<p> my $response = $browser-&gt;post( $url,<br />
    [<br />
     'doi' =&gt; '10.1525%2Faa.2005.107.2.183',  #example<br />
     'downloadFileName' =&gt; 'aaa_aa107_183',<br />
     'include' =&gt; 'cit',<br />
     'format' =&gt; 'bibtex',<br />
     'direct' =&gt; '1'<br />
    ]<br />
                     );<br />
 print "$response\n";<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerim</title>
		<link>/2005/06/25/make-anthrosource-and-citeulike-play-well-together/comment-page-1/#comment-508</link>
		<dc:creator><![CDATA[Kerim]]></dc:creator>
		<pubDate>Sun, 26 Jun 2005 15:59:30 +0000</pubDate>
		<guid isPermaLink="false">/2005/06/25/make-anthrosource-and-citeulike-play-well-together/#comment-508</guid>
		<description><![CDATA[The CiteULike developer confirmed that this short cut should work. There are perl script plugins that will automate the process of navigating to the BibTex output page from the citation page. If we can send the BibTex output to CiteULike, they can handle the rest!

In other words, this means there is no need to develop special code to parse the  AnthroSource web site citation pages. We just need code to tell CiteULike how to navigate to the BibTex output page from the citation page.

That&#039;s about as much as I can do on this. We need someone who knows Perl to do the rest!

See the &lt;a href=&quot;http://wiki.oxus.net/Anthrosource_plugin&quot; rel=&quot;nofollow&quot;&gt;wiki&lt;/a&gt; for more info.]]></description>
		<content:encoded><![CDATA[<p>The CiteULike developer confirmed that this short cut should work. There are perl script plugins that will automate the process of navigating to the BibTex output page from the citation page. If we can send the BibTex output to CiteULike, they can handle the rest!</p>
<p>In other words, this means there is no need to develop special code to parse the  AnthroSource web site citation pages. We just need code to tell CiteULike how to navigate to the BibTex output page from the citation page.</p>
<p>That&#8217;s about as much as I can do on this. We need someone who knows Perl to do the rest!</p>
<p>See the <a href="http://wiki.oxus.net/Anthrosource_plugin" rel="nofollow">wiki</a> for more info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerim</title>
		<link>/2005/06/25/make-anthrosource-and-citeulike-play-well-together/comment-page-1/#comment-503</link>
		<dc:creator><![CDATA[Kerim]]></dc:creator>
		<pubDate>Sun, 26 Jun 2005 01:51:55 +0000</pubDate>
		<guid isPermaLink="false">/2005/06/25/make-anthrosource-and-citeulike-play-well-together/#comment-503</guid>
		<description><![CDATA[Lets do it collaboratively! I&#039;ve set up a &lt;a href=&quot;http://wiki.oxus.net/Anthrosource_plugin&quot; rel=&quot;nofollow&quot;&gt;page on my wiki&lt;/a&gt; which will allow us to discuss and work on the code. If you know some code please take a look, as I&#039;ve already found some short-cuts that might help us. (e.g. did you know that AnthroSource can produce an on-screen BibTex file?)]]></description>
		<content:encoded><![CDATA[<p>Lets do it collaboratively! I&#8217;ve set up a <a href="http://wiki.oxus.net/Anthrosource_plugin" rel="nofollow">page on my wiki</a> which will allow us to discuss and work on the code. If you know some code please take a look, as I&#8217;ve already found some short-cuts that might help us. (e.g. did you know that AnthroSource can produce an on-screen BibTex file?)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
