<?xml version="1.0"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>CKAN: Ticket #2204: [super] Related (Stuff) Extension</title>
    <link>http://localhost/ticket/2204</link>
    <description>&lt;p&gt;
This is a reworking of the existing apps extension.
&lt;/p&gt;
&lt;p&gt;
Initial proposal at &lt;a class="ext-link" href="http://wiki.ckan.org/Proposals#Apps_in_CKAN"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;http://wiki.ckan.org/Proposals#Apps_in_CKAN&lt;/a&gt; and &lt;a class="ext-link" href="http://wiki.ckan.org/Proposals#References.2FLinks_in_CKAN"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;http://wiki.ckan.org/Proposals#References.2FLinks_in_CKAN&lt;/a&gt;
&lt;/p&gt;
&lt;h2 id="Naming"&gt;Naming&lt;/h2&gt;
&lt;p&gt;
What do we call this extension?
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;related
&lt;ul&gt;&lt;li&gt;RP best IMO but perhaps too close to separate relationships concept?
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;relatedstuff
&lt;/li&gt;&lt;li&gt;links
&lt;/li&gt;&lt;li&gt;references
&lt;/li&gt;&lt;/ul&gt;&lt;h2 id="Proposal"&gt;Proposal&lt;/h2&gt;
&lt;p&gt;
"Related Stuff": Apps as in an application (website/service/tool) that uses this dataset (as in Apps and Ideas extension)
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;This case seems a general example of wanting to link some external thing to a dataset (e.g. this policy paper refs this dataset, this application uses this dataset, this visualization is built on this dataset cf &lt;a class="ext-link" href="http://lists.okfn.org/pipermail/ckan-discuss/2011-August/001607.html"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;http://lists.okfn.org/pipermail/ckan-discuss/2011-August/001607.html&lt;/a&gt;)
&lt;/li&gt;&lt;/ul&gt;&lt;h2 id="Implementation"&gt;Implementation&lt;/h2&gt;
&lt;p&gt;
New table named Related with following structure
&lt;/p&gt;
&lt;pre class="wiki"&gt;|| id (int) || type || title || description (markdown) || image_url || owner_id || url || created (timestamp)
&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;type = Idea | App | API | Visualization | Post | Paper | News Article
&lt;ul&gt;&lt;li&gt;Suggest we make this a ckan.ini config option (comma separated ...?)
&lt;ul&gt;&lt;li&gt;Do we want the possibility of different templates for different types of Related objects?
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;image: ?? Depends where we store images. Simplest option would be to change to image_url and leave it to users to have already uploaded an image somewhere. If not we need to support image uploading and storage. See &lt;a class="closed ticket" href="http://localhost/ticket/1692" title="enhancement: Add image attribute to Dataset and Group (closed: wontfix)"&gt;#1692&lt;/a&gt; (add image attribute to datasets and groups) for more discussion, once implemented the URL here can be an internal url.
&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;owner_id = user_id or creating user (see authorization below)
&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;
Related2Dataset (note that related_id, dataset_id tuple should be unique). This allows for m2m connections. If a given related item is only with one dataset this could be simplified. May contain status so dataset owner can turn this on/off.
&lt;/p&gt;
&lt;pre class="wiki"&gt;|| id || dataset_id || related_id || status
&lt;/pre&gt;&lt;p&gt;
status should be used to allow for a dataset owner (for dataset_id) to de-activate the relationship between the dataset and the related.
&lt;/p&gt;
&lt;h3 id="Url"&gt;Url&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;/dataset/{dataset-name}/related/{related-item-id}/{related-item-title-stringified}
&lt;ul&gt;&lt;li&gt;If a reference item could exist in its own right (and perhaps refer to multiple datasets then it should get its own url at e.g. /related/{id}
&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;/dataset/{dataset-name}/related/add =&amp;gt; Modal dialog on related tab so we can use API to create them.
&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;
/dataset/{id}/related &amp;lt;- list
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;use image_url for small icon etc, title description (shortened?)
&lt;/li&gt;&lt;li&gt;Click through to full related item (optional)
&lt;/li&gt;&lt;li&gt;dataset owner is shown show / hide button ... (or on /dataset/{id}/related/{id} )
&lt;/li&gt;&lt;li&gt;related owner sees an edit button / icon (pops up modal)
&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;
/dataset/{id}/related/{id} (optional)
&lt;/p&gt;
&lt;p&gt;
/dataset/{id} will have a Related tab (with bubble with count).
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Drop down with Add Related -&amp;gt; Pop-up modal and save via API
&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;
(Not used: /related/add with dataset prefilled ... )
&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;p&gt;
/related/{id}/edit
&lt;/p&gt;
&lt;h3 id="Authorization"&gt;Authorization&lt;/h3&gt;
&lt;p&gt;
Addition of related item be considered orthogonal to datasets (and hence with separate authorization i.e. i can add the info that site X uses dataset Y without needing permission to edit dataset Y).
&lt;/p&gt;
&lt;p&gt;
Thus any logged in user could add a Related item. We set the owner of the related item to creating user and going forward only that user or a sysadmin can update or delete.
&lt;/p&gt;
&lt;p&gt;
NB: we could have a system where datasets owners have to approve related items before they show up next to their dataset. This would add substantial complexity so I propose we leave out of phase 1.
&lt;/p&gt;
&lt;h3 id="Tasksandestimates7.5d"&gt;Tasks and estimates {7.5d}&lt;/h3&gt;
&lt;p&gt;
[x] Model + Migration for Related table. {0.75d}
&lt;/p&gt;
&lt;p&gt;
[x] Controller for Related (or relevant sections in Package controller). {0.75d}
&lt;/p&gt;
&lt;p&gt;
[x] Routing setup. {0.25d}
&lt;/p&gt;
&lt;p&gt;
[x] Schema for related. {0.5d}
&lt;/p&gt;
&lt;p&gt;
[x] Logic layer actions. {1.0d}
&lt;/p&gt;
&lt;p&gt;
[x] Auth (default + publisher). {0.5d}
&lt;/p&gt;
&lt;p&gt;
[x] Templates + Dataset changes (new tab etc). {1.0d}
&lt;/p&gt;
&lt;p&gt;
[x] JS Application for adding Related objects in a modal. {1.0d}
&lt;/p&gt;
&lt;p&gt;
[x] Testing. {0.75d}
&lt;/p&gt;
&lt;p&gt;
[x] Dataset owner disabling of Related (via M2M table). {0.5d}
&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Updated to allow author of related to delete as well
&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;
[ ] Documentation. {0.25d}
&lt;/p&gt;
</description>
    <language>en-us</language>
    <image>
      <title>CKAN</title>
      <url>http://assets.okfn.org/p/ckan/img/ckan_logo_shortname.png</url>
      <link>http://localhost/ticket/2204</link>
    </image>
    <generator>Trac 0.12.3</generator>
    <item>
      
        <dc:creator>rgrp</dc:creator>

      <pubDate>Fri, 09 Mar 2012 16:07:58 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:1</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:1</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=1"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>rgrp</dc:creator>

      <pubDate>Mon, 19 Mar 2012 12:16:03 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:2</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:2</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=2"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>rgrp</dc:creator>

      <pubDate>Wed, 21 Mar 2012 12:32:20 GMT</pubDate>
      <title>owner, status, milestone changed</title>
      <link>http://localhost/ticket/2204#comment:3</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:3</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;owner&lt;/strong&gt;
              changed from &lt;em&gt;amercader&lt;/em&gt; to &lt;em&gt;toby&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;
                changed from &lt;em&gt;new&lt;/em&gt; to &lt;em&gt;assigned&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;milestone&lt;/strong&gt;
                changed from &lt;em&gt;ckan-v1.7&lt;/em&gt; to &lt;em&gt;current-ckan-sprint-2012-04-02&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>toby</dc:creator>

      <pubDate>Wed, 21 Mar 2012 14:44:04 GMT</pubDate>
      <title></title>
      <link>http://localhost/ticket/2204#comment:4</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:4</guid>
      <description>
        &lt;p&gt;
needs discussion - planned for 23-3-2012
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>toby</dc:creator>

      <pubDate>Wed, 21 Mar 2012 14:44:40 GMT</pubDate>
      <title></title>
      <link>http://localhost/ticket/2204#comment:5</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:5</guid>
      <description>
        &lt;p&gt;
&lt;a class="ext-link" href="http://ckan.okfnpad.org/feature-2204-related-stuff"&gt;&lt;span class="icon"&gt;​&lt;/span&gt;http://ckan.okfnpad.org/feature-2204-related-stuff&lt;/a&gt;
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>toby</dc:creator>

      <pubDate>Tue, 27 Mar 2012 10:13:52 GMT</pubDate>
      <title></title>
      <link>http://localhost/ticket/2204#comment:6</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:6</guid>
      <description>
        &lt;p&gt;
still awaiting discussion
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 13:46:47 GMT</pubDate>
      <title>owner changed</title>
      <link>http://localhost/ticket/2204#comment:7</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:7</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;owner&lt;/strong&gt;
              changed from &lt;em&gt;toby&lt;/em&gt; to &lt;em&gt;ross&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 13:47:26 GMT</pubDate>
      <title>milestone changed; keywords set</title>
      <link>http://localhost/ticket/2204#comment:8</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:8</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;keywords&lt;/strong&gt;
              &lt;em&gt;[?d]&lt;/em&gt; added
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;milestone&lt;/strong&gt;
                changed from &lt;em&gt;ckan-sprint-2012-04-02&lt;/em&gt; to &lt;em&gt;current-ckan-sprint-2012-04-16&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 14:07:57 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:9</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:9</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=9"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 14:11:10 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:10</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:10</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=10"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 14:46:26 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:11</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:11</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=11"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 15:16:39 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:12</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:12</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=12"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 02 Apr 2012 15:32:57 GMT</pubDate>
      <title>keywords, description changed</title>
      <link>http://localhost/ticket/2204#comment:13</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:13</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;keywords&lt;/strong&gt;
              &lt;em&gt;[7.5d]&lt;/em&gt; added; &lt;em&gt;[?d]&lt;/em&gt; removed
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=13"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Wed, 04 Apr 2012 10:16:22 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:14</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:14</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=14"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>rgrp</dc:creator>

      <pubDate>Tue, 10 Apr 2012 17:12:16 GMT</pubDate>
      <title></title>
      <link>http://localhost/ticket/2204#comment:15</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:15</guid>
      <description>
        &lt;p&gt;
Important comment: not sure how much we have thought through using this for storing queries / views / visualizations coming from our data viewer. In particular, wonder if this necessitates some kind of support for arbitrary json data ...
&lt;/p&gt;
&lt;p&gt;
Also (@icmurray): does this interact with our desire to do embedding?
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Thu, 12 Apr 2012 08:18:55 GMT</pubDate>
      <title></title>
      <link>http://localhost/ticket/2204#comment:16</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:16</guid>
      <description>
        &lt;p&gt;
I'd be happier adding this to another ticket rather than moving the target for this ticket half way through so have created &lt;a class="assigned ticket" href="http://localhost/ticket/2284" title="enhancement: Local queries/views/viz in Related stuff. (assigned)"&gt;#2284&lt;/a&gt;
Should only be a short ticket in the next sprint.
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 16 Apr 2012 08:44:44 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:17</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:17</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=17"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 16 Apr 2012 11:37:23 GMT</pubDate>
      <title>keywords changed</title>
      <link>http://localhost/ticket/2204#comment:18</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:18</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;keywords&lt;/strong&gt;
              &lt;em&gt;[7.5d][r:3d]&lt;/em&gt; added; &lt;em&gt;[7.5d]&lt;/em&gt; removed
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 16 Apr 2012 13:11:30 GMT</pubDate>
      <title>milestone changed</title>
      <link>http://localhost/ticket/2204#comment:19</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:19</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;milestone&lt;/strong&gt;
                changed from &lt;em&gt;ckan-sprint-2012-04-16&lt;/em&gt; to &lt;em&gt;current-ckan-sprint-2012-04-30&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Thu, 19 Apr 2012 14:01:31 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:20</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:20</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=20"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>aron.carroll</dc:creator>

      <pubDate>Tue, 24 Apr 2012 17:13:56 GMT</pubDate>
      <title></title>
      <link>http://localhost/ticket/2204#comment:21</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:21</guid>
      <description>
        &lt;p&gt;
Making some notes of front-end changes that I think need to be implemented sooooon.
&lt;/p&gt;
&lt;pre class="wiki"&gt;Implement better truncation (the expanded text should pop out on hover rather than expand the entire row)
Show the type of related item (an icon would be good here)
Test in IE
Make the form work without JavaScript by accepting x-www-form-urlencoded.
Add classes to first item in a row to clear the row (currently uses :nth-child CSS)
Touch gestures and re-ordering (David's request)
&lt;/pre&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Fri, 27 Apr 2012 08:48:08 GMT</pubDate>
      <title>description changed</title>
      <link>http://localhost/ticket/2204#comment:22</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:22</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=22"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 30 Apr 2012 14:21:05 GMT</pubDate>
      <title>owner changed</title>
      <link>http://localhost/ticket/2204#comment:23</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:23</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;owner&lt;/strong&gt;
              changed from &lt;em&gt;ross&lt;/em&gt; to &lt;em&gt;aron.carroll&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
        &lt;p&gt;
Giving this ticket to Aron to fix the front end
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>rgrp</dc:creator>

      <pubDate>Mon, 21 May 2012 06:47:23 GMT</pubDate>
      <title>owner changed</title>
      <link>http://localhost/ticket/2204#comment:24</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:24</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;owner&lt;/strong&gt;
              changed from &lt;em&gt;aron.carroll&lt;/em&gt; to &lt;em&gt;rossjones&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
        &lt;p&gt;
Surely this ticket was closed 3w ago?
&lt;/p&gt;
&lt;p&gt;
@Ross: can you close ...
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>rgrp</dc:creator>

      <pubDate>Mon, 21 May 2012 07:01:34 GMT</pubDate>
      <title>owner, priority changed</title>
      <link>http://localhost/ticket/2204#comment:25</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:25</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;owner&lt;/strong&gt;
              changed from &lt;em&gt;rossjones&lt;/em&gt; to &lt;em&gt;ross&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;priority&lt;/strong&gt;
                changed from &lt;em&gt;awaiting triage&lt;/em&gt; to &lt;em&gt;critical&lt;/em&gt;
            &lt;/li&gt;
          &lt;/ul&gt;
      </description>
      <category>Ticket</category>
    </item><item>
      
        <dc:creator>ross</dc:creator>

      <pubDate>Mon, 21 May 2012 10:05:23 GMT</pubDate>
      <title>status, description changed; resolution set</title>
      <link>http://localhost/ticket/2204#comment:26</link>
      <guid isPermaLink="false">http://localhost/ticket/2204#comment:26</guid>
      <description>
          &lt;ul&gt;
            &lt;li&gt;&lt;strong&gt;status&lt;/strong&gt;
                changed from &lt;em&gt;assigned&lt;/em&gt; to &lt;em&gt;closed&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;resolution&lt;/strong&gt;
                set to &lt;em&gt;fixed&lt;/em&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;
              modified (&lt;a href="/ticket/2204?action=diff&amp;amp;version=26"&gt;diff&lt;/a&gt;)
            &lt;/li&gt;
          &lt;/ul&gt;
        &lt;p&gt;
Was waiting for documentation, can close now.
&lt;/p&gt;
      </description>
      <category>Ticket</category>
    </item>
 </channel>
</rss>