<!--
RSS generated by JIRA (4.4#649-r158309) at Thu May 23 18:46:00 CDT 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://dev.clojure.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+DCSV+AND+resolution+%3D+Unresolved+ORDER+BY+priority+DESC%2C+key+DESC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://dev.clojure.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Clojure JIRA</title>
        <link>http://dev.clojure.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+DCSV+AND+resolution+%3D+Unresolved+ORDER+BY+priority+DESC%2C+key+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="3" total="3"/>
                <build-info>
            <version>4.4</version>
            <build-number>649</build-number>
            <build-date>25-07-2011</build-date>
        </build-info>
<item>
            <title>[DCSV-5] No option for parsing into maps</title>
                <link>http://dev.clojure.org/jira/browse/DCSV-5</link>
                <project id="10074" key="DCSV">data.csv</project>
                        <description>&lt;p&gt;I imagine a very common use case for parsing CSVs is to get the output as a sequence of maps. I&apos;m happy to provide a patch for this but wanted to make sure I had the right design.&lt;/p&gt;

&lt;p&gt;My initial idea is to add another option to read-csv with the name :headers which can be a sequence of values, or a flag such as :first-row. Presumably though we ought to also support using the first row as keywords rather than strings, so I&apos;m not sure whether that ought to be another option or a different flag (e.g., :first-row-keywords).&lt;/p&gt;</description>
                <environment></environment>
            <key id="16197">DCSV-5</key>
            <summary>No option for parsing into maps</summary>
                <type id="4" iconUrl="http://dev.clojure.org/jira/images/icons/improvement.gif">Enhancement</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="1" iconUrl="http://dev.clojure.org/jira/images/icons/status_open.gif">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jonase">Jonas Enlund</assignee>
                                <reporter username="gfredericks">Gary Fredericks</reporter>
                        <labels>
                    </labels>
                <created>Tue, 21 May 2013 11:30:25 -0500</created>
                <updated>Tue, 21 May 2013 13:28:44 -0500</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="31129" author="jonase" created="Tue, 21 May 2013 13:28:44 -0500"  >&lt;p&gt;I&apos;ve seen this feature request before so I think that something like this should be added. One approach would be to provide a helper function:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;(defn csv-data-&amp;gt;maps [vecs]
  (map zipmap (repeat (first vecs)) (&lt;span class=&quot;code-keyword&quot;&gt;rest&lt;/span&gt; vecs)))

(csv-data-&amp;gt;maps (read-csv reader))&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[DCSV-4] \return as record separator with unquoted fields is read as part of the field</title>
                <link>http://dev.clojure.org/jira/browse/DCSV-4</link>
                <project id="10074" key="DCSV">data.csv</project>
                        <description>&lt;p&gt;This regards the gray area of being &quot;more forgiving.&quot; If I understand RFC 4180 correctly, I want to suggest substituting one bit of forgiveness for another: rather than supporting unquoted, multi-line cell values, I suggest supporting CSVs with just \return as the record-separator. Would you accept a patch for that?&lt;/p&gt;

&lt;p&gt;A file with \return as record-separator is interpreted by read-csv as a single row like (&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;quot;Header1&amp;quot; &amp;quot;Header2\rval1&amp;quot; &amp;quot;val2&amp;quot;&amp;#93;&lt;/span&gt;). I believe the RFC only allows fields to contain CR and LF when they&apos;re &lt;tt&gt;escaped&lt;/tt&gt; (i.e., surrounded in double quotes). See the ABNF at the end of &lt;a href=&quot;http://tools.ietf.org/html/rfc4180#section-2&quot;&gt;section 2&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;As far as implementation, I believe this would require wrapping any Reader w/o markSupported in one that does, so that the LF following a CR can be consumed when present.&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;I&amp;#39;ve classified this as a major defect because I ran into a \return-delimited file as soon as I passed a CSV from a Linux machine to a Windows machine, so I&amp;#39;m guessing these files are common. Feel free to reclassify.&amp;#93;&lt;/span&gt;&lt;/p&gt;</description>
                <environment></environment>
            <key id="15777">DCSV-4</key>
            <summary>\return as record separator with unquoted fields is read as part of the field</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="1" iconUrl="http://dev.clojure.org/jira/images/icons/status_open.gif">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jonase">Jonas Enlund</assignee>
                                <reporter username="duelin_markers">John Hume</reporter>
                        <labels>
                    </labels>
                <created>Wed, 24 Oct 2012 13:55:57 -0500</created>
                <updated>Wed, 24 Oct 2012 15:00:49 -0500</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="29795" author="jonase" created="Wed, 24 Oct 2012 15:00:49 -0500"  >&lt;p&gt;&amp;gt; rather than supporting unquoted, multi-line cell values, I suggest supporting CSVs with just \return as the record-separator. Would you accept a patch for that?&lt;/p&gt;

&lt;p&gt;Sounds good to me.&lt;/p&gt;

&lt;p&gt;&amp;gt; As far as implementation, I believe this would require wrapping any Reader w/o markSupported in one that does&lt;/p&gt;

&lt;p&gt;I think that&apos;s ok, since BufferedReader supports it.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[DCSV-1] pom.xml directives</title>
                <link>http://dev.clojure.org/jira/browse/DCSV-1</link>
                <project id="10074" key="DCSV">data.csv</project>
                        <description>&lt;p&gt;If you build data.csv alone with the current pom.xml you get a couple of warnings and test are not executed. With the recent versions of Maven, these warnings can break the build.&lt;/p&gt;

&lt;p&gt;A fixed (I hope!) version is attached.&lt;/p&gt;</description>
                <environment>Apache Maven 3.0.3 (r1075438; 2011-02-28 18:31:09+0100)&lt;br/&gt;
Maven home: /usr/share/maven&lt;br/&gt;
Java version: 1.6.0_29, vendor: Apple Inc.&lt;br/&gt;
Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home&lt;br/&gt;
Default locale: it_IT, platform encoding: MacRoman&lt;br/&gt;
OS name: &amp;quot;mac os x&amp;quot;, version: &amp;quot;10.7.2&amp;quot;, arch: &amp;quot;x86_64&amp;quot;, family: &amp;quot;mac&amp;quot;</environment>
            <key id="15216">DCSV-1</key>
            <summary>pom.xml directives</summary>
                <type id="4" iconUrl="http://dev.clojure.org/jira/images/icons/improvement.gif">Enhancement</type>
                                <priority id="4" iconUrl="http://dev.clojure.org/jira/images/icons/priority_minor.gif">Minor</priority>
                    <status id="1" iconUrl="http://dev.clojure.org/jira/images/icons/status_open.gif">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="jonase">Jonas Enlund</assignee>
                                <reporter username="giorgio_v">Giorgio Valoti</reporter>
                        <labels>
                    </labels>
                <created>Fri, 10 Feb 2012 04:59:36 -0600</created>
                <updated>Fri, 10 Feb 2012 04:59:36 -0600</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                    <attachment id="10900" name="pom.xml" size="2182" author="giorgio_v" created="Fri, 10 Feb 2012 04:59:36 -0600" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Patch</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10009">Fixed</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>
</channel>
</rss>