<?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/"
		>
<channel>
	<title>Comments for hedtek</title>
	<atom:link href="http://hedtek.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://hedtek.com</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 14:12:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on DSpace REST API testing by Work in progress for Jorum</title>
		<link>http://hedtek.com/2011/dspace-rest-api-testing/comment-page-1/#comment-1985</link>
		<dc:creator>Work in progress for Jorum</dc:creator>
		<pubDate>Thu, 02 Feb 2012 14:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=554#comment-1985</guid>
		<description>[...] Skip to content hedtekblogcurrent projectspast projectstechnologyabout uscontact    hedtek        &#171; DSpace REST API testing [...]</description>
		<content:encoded><![CDATA[<p>[...] Skip to content hedtekblogcurrent projectspast projectstechnologyabout uscontact    hedtek        &laquo; DSpace REST API testing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DSpace REST API testing by Ash S &#38; Danny G</title>
		<link>http://hedtek.com/2011/dspace-rest-api-testing/comment-page-1/#comment-1815</link>
		<dc:creator>Ash S &#38; Danny G</dc:creator>
		<pubDate>Fri, 02 Dec 2011 12:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=554#comment-1815</guid>
		<description>&lt;b&gt;Notes on test results&lt;b /&gt;
1. Didn&#039;t test sorting in the list returned in index queries [ie list of communities, list of collections]

2. Request parameter &quot;detail&quot; doesn&#039;t seem to be doing anything [in get and list communities, the  only place this was tested]. Results appear the same for the three specified values &quot;extended&quot;, &quot;standard&quot; and &quot;minimum&quot;.

3. &quot;Failure processing entity request&quot; error in many places in the API due to badly handled context object. FIXED in many places in DSpace REST API in our branch on github. 

4. Copyright and Intro text sections returned null in the API for /collections request. The issue was FIXED in our branch.

5. /collections/id/invalid_element should return BAD REQUEST error code but returns a response with NULL in the data attribute.

6. When fetching items, the field &quot;collection&quot; has a field &quot;countItems&quot; that is set to 0. This should be set to number of items in collections. The issue was FIXED in our branch.

7. In retrieving a specific item, the attribute &quot;communities&quot; should have the listed item in the &quot;Recent Submissions&quot; array within the community. But it does not have this.

8. When you retrieve a particular element for any entity, if the data for the element is of a simple data type (string/number/boolean), it is returned in the key &quot;data&quot; in the response object. However, if the data to be returned is another entity (in form of another JSON object) then the keys inside the expected JSON object are returned as a part of the response JSON object itself, instead of appearing as a JSON object value for the &quot;data&quot; field. For example, if we request &quot;anchester&quot; element on a specific community with a resquest such as GET community/1/anchester, we get the following structure:

    {
        &quot;name&quot;: ....,
        &quot;id&quot;: ...,
        &quot;collections&quot;: ..., 
        ...
        &quot;entityURL&quot;: ...,
        &quot;entity&quot;: ...
    }
Whereas the expected behaviour should be:

    {
        &quot;data&quot;: {
            &quot;name&quot;:...,
            &quot;id&quot;: ...,
            &quot;collections&quot;: ..., 
            ...
        }
        &quot;entityURL&quot;: ...,
        &quot;entity&quot;: ...
    }
NOTE: This behaviour is not exhibited when the requested element is a list of entities. (eg. collections).

9. Elements with &quot;null&quot; in data return with a &quot;Not Found Exception&quot; and a 404 status code rather than response JSON object with &quot;data&quot; key with null value. We are not sure whether this is the expected behaviour or a bug. 

10. Handle for bitstreams is null. Is there supposed to be one?

11. Result count in search results returns &quot;actual_count - 1&quot;. So if the search returns 10 items then the item count will be 9.

12. Harvest request with &quot;withdrawn=true&quot; parameter returns items with withdrawn as false as well.</description>
		<content:encoded><![CDATA[<p><b>Notes on test results<b /><br />
1. Didn&#8217;t test sorting in the list returned in index queries [ie list of communities, list of collections]</p>
<p>2. Request parameter &#8220;detail&#8221; doesn&#8217;t seem to be doing anything [in get and list communities, the  only place this was tested]. Results appear the same for the three specified values &#8220;extended&#8221;, &#8220;standard&#8221; and &#8220;minimum&#8221;.</p>
<p>3. &#8220;Failure processing entity request&#8221; error in many places in the API due to badly handled context object. FIXED in many places in DSpace REST API in our branch on github. </p>
<p>4. Copyright and Intro text sections returned null in the API for /collections request. The issue was FIXED in our branch.</p>
<p>5. /collections/id/invalid_element should return BAD REQUEST error code but returns a response with NULL in the data attribute.</p>
<p>6. When fetching items, the field &#8220;collection&#8221; has a field &#8220;countItems&#8221; that is set to 0. This should be set to number of items in collections. The issue was FIXED in our branch.</p>
<p>7. In retrieving a specific item, the attribute &#8220;communities&#8221; should have the listed item in the &#8220;Recent Submissions&#8221; array within the community. But it does not have this.</p>
<p>8. When you retrieve a particular element for any entity, if the data for the element is of a simple data type (string/number/boolean), it is returned in the key &#8220;data&#8221; in the response object. However, if the data to be returned is another entity (in form of another JSON object) then the keys inside the expected JSON object are returned as a part of the response JSON object itself, instead of appearing as a JSON object value for the &#8220;data&#8221; field. For example, if we request &#8220;anchester&#8221; element on a specific community with a resquest such as GET community/1/anchester, we get the following structure:</p>
<p>    {<br />
        &#8220;name&#8221;: &#8230;.,<br />
        &#8220;id&#8221;: &#8230;,<br />
        &#8220;collections&#8221;: &#8230;,<br />
        &#8230;<br />
        &#8220;entityURL&#8221;: &#8230;,<br />
        &#8220;entity&#8221;: &#8230;<br />
    }<br />
Whereas the expected behaviour should be:</p>
<p>    {<br />
        &#8220;data&#8221;: {<br />
            &#8220;name&#8221;:&#8230;,<br />
            &#8220;id&#8221;: &#8230;,<br />
            &#8220;collections&#8221;: &#8230;,<br />
            &#8230;<br />
        }<br />
        &#8220;entityURL&#8221;: &#8230;,<br />
        &#8220;entity&#8221;: &#8230;<br />
    }<br />
NOTE: This behaviour is not exhibited when the requested element is a list of entities. (eg. collections).</p>
<p>9. Elements with &#8220;null&#8221; in data return with a &#8220;Not Found Exception&#8221; and a 404 status code rather than response JSON object with &#8220;data&#8221; key with null value. We are not sure whether this is the expected behaviour or a bug. </p>
<p>10. Handle for bitstreams is null. Is there supposed to be one?</p>
<p>11. Result count in search results returns &#8220;actual_count &#8211; 1&#8243;. So if the search returns 10 items then the item count will be 9.</p>
<p>12. Harvest request with &#8220;withdrawn=true&#8221; parameter returns items with withdrawn as false as well.</b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on #uniproj and #wikiquals by Mark van Harmelen</title>
		<link>http://hedtek.com/2011/uniproj-and-wikiquals/comment-page-1/#comment-1628</link>
		<dc:creator>Mark van Harmelen</dc:creator>
		<pubDate>Sat, 15 Oct 2011 17:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=550#comment-1628</guid>
		<description>wikiquals@googlegroups.com are your friends!</description>
		<content:encoded><![CDATA[<p><a href="mailto:wikiquals@googlegroups.com">wikiquals@googlegroups.com</a> are your friends!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with OpenURL Router Data by Looking out towards an ever widening horizon &#171; Discovery</title>
		<link>http://hedtek.com/2011/playing-with-openurl-router-data/comment-page-1/#comment-1539</link>
		<dc:creator>Looking out towards an ever widening horizon &#171; Discovery</dc:creator>
		<pubDate>Thu, 22 Sep 2011 12:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=478#comment-1539</guid>
		<description>[...] ranged from those aimed squarely at folks with technical expertise, such as Mark van Harmelen’s ‘Command Line Ruby Database-free Processor’ through to applications aimed at end users with no technical or specialist knowledge, such as Alex [...]</description>
		<content:encoded><![CDATA[<p>[...] ranged from those aimed squarely at folks with technical expertise, such as Mark van Harmelen’s ‘Command Line Ruby Database-free Processor’ through to applications aimed at end users with no technical or specialist knowledge, such as Alex [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scaling and productising MOSAIC search and recommendation services by Recent and current projects</title>
		<link>http://hedtek.com/2010/scaling-and-productising-mosaic-search-and-recommendation-services/comment-page-1/#comment-1466</link>
		<dc:creator>Recent and current projects</dc:creator>
		<pubDate>Sat, 13 Aug 2011 13:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=371#comment-1466</guid>
		<description>[...] and recommenders based on cohort activity (eg a prototype social search engine we developed for the MOSAIC Project) to learning analytics, where the idea is to identify students at risk of failing or dropping out [...]</description>
		<content:encoded><![CDATA[<p>[...] and recommenders based on cohort activity (eg a prototype social search engine we developed for the MOSAIC Project) to learning analytics, where the idea is to identify students at risk of failing or dropping out [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with OpenURL Router Data by Mark van Harmelen</title>
		<link>http://hedtek.com/2011/playing-with-openurl-router-data/comment-page-1/#comment-1276</link>
		<dc:creator>Mark van Harmelen</dc:creator>
		<pubDate>Wed, 08 Jun 2011 09:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=478#comment-1276</guid>
		<description>@Tony We do get the same results! That&#039;s satisfying :) 
Just shows how it is a good idea to cross check results in the morning</description>
		<content:encoded><![CDATA[<p>@Tony We do get the same results! That&#8217;s satisfying <img src='http://hedtek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Just shows how it is a good idea to cross check results in the morning</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with OpenURL Router Data by Tony Hirst</title>
		<link>http://hedtek.com/2011/playing-with-openurl-router-data/comment-page-1/#comment-1273</link>
		<dc:creator>Tony Hirst</dc:creator>
		<pubDate>Wed, 08 Jun 2011 08:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=478#comment-1273</guid>
		<description>Mark-
Great comparative technique:-)
By the by, yousaid: &quot;In the end I had a slightly different set of results.&quot;
I took this to mean you got different summary data (which would be a Bad Thing) but the numbers look the same to me? Or do you mean you took a slightly different route to the solution (to use the Perl mantra, I guess there&#039;s always more than one way to do it ;-)</description>
		<content:encoded><![CDATA[<p>Mark-<br />
Great comparative technique:-)<br />
By the by, yousaid: &#8220;In the end I had a slightly different set of results.&#8221;<br />
I took this to mean you got different summary data (which would be a Bad Thing) but the numbers look the same to me? Or do you mean you took a slightly different route to the solution (to use the Perl mantra, I guess there&#8217;s always more than one way to do it <img src='http://hedtek.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Personalisation is the supply of services and/or data based on a model of a user by JISC personalisation projects survey and synthesis</title>
		<link>http://hedtek.com/2010/a-new-definition-of-prersonalisation/comment-page-1/#comment-400</link>
		<dc:creator>JISC personalisation projects survey and synthesis</dc:creator>
		<pubDate>Sun, 09 Jan 2011 23:23:55 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=342#comment-400</guid>
		<description>[...] we took Hedtek&#8217;s broad definition of personalisation as our starting point, the major areas addressed in the projects boiled down to six areas as shown [...]</description>
		<content:encoded><![CDATA[<p>[...] we took Hedtek&#8217;s broad definition of personalisation as our starting point, the major areas addressed in the projects boiled down to six areas as shown [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iDoc: Hedtek&#8217;s open source community documentation system by November 2010 progress update</title>
		<link>http://hedtek.com/2010/idoc-hedteks-open-source-community-documentation-system/comment-page-1/#comment-235</link>
		<dc:creator>November 2010 progress update</dc:creator>
		<pubDate>Thu, 18 Nov 2010 14:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=285#comment-235</guid>
		<description>[...] provided by the use of mySparql in conjunction with a modified open source documentation system, iDoc (this is a Hedtek product).  We expect results here very [...]</description>
		<content:encoded><![CDATA[<p>[...] provided by the use of mySparql in conjunction with a modified open source documentation system, iDoc (this is a Hedtek product).  We expect results here very [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scaling and productising MOSAIC search and recommendation services by INF11 &#8211; Activity Data incubation workshop 2 &#187; Overdue Ideas</title>
		<link>http://hedtek.com/2010/scaling-and-productising-mosaic-search-and-recommendation-services/comment-page-1/#comment-214</link>
		<dc:creator>INF11 &#8211; Activity Data incubation workshop 2 &#187; Overdue Ideas</dc:creator>
		<pubDate>Mon, 11 Oct 2010 15:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://hedtek.com/?p=371#comment-214</guid>
		<description>[...] David Kay recommends a starting point from a technical perspective is &#8216;Scaling and productising MOSAIC search and recommendation services&#8217; at http://hedtek.com/?p=371 [...]</description>
		<content:encoded><![CDATA[<p>[...] David Kay recommends a starting point from a technical perspective is &#8216;Scaling and productising MOSAIC search and recommendation services&#8217; at <a href="http://hedtek.com/?p=371" rel="nofollow">http://hedtek.com/?p=371</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

