<!--
RSS generated by JIRA (4.4#649-r158309) at Wed May 22 07:16:11 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+DXML+ORDER+BY+status+DESC%2C+priority+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+DXML+ORDER+BY+status+DESC%2C+priority+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="16" total="16"/>
                <build-info>
            <version>4.4</version>
            <build-number>649</build-number>
            <build-date>25-07-2011</build-date>
        </build-info>
<item>
            <title>[DXML-1] Stack overflow when parsing huge XML file</title>
                <link>http://dev.clojure.org/jira/browse/DXML-1</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;This is using Ryan Senior&apos;s new 0.0.3-SNAPSHOT.&lt;/p&gt;

&lt;p&gt;While trying to parse a huge XML file (7.5 GB compressed, a dump of Wikipedia), got a stack overflow error. Some digging turned up this bug:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6440214&quot;&gt;http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6440214&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Modifying &lt;tt&gt;clojure.data.xml/source-seq&lt;/tt&gt; to disable the &lt;tt&gt;IS_COALESCING&lt;/tt&gt; property got rid of the error.&lt;/p&gt;

&lt;p&gt;The old lazy-xml contrib code worked (although used up tons more memory).&lt;/p&gt;

&lt;p&gt;Attached is a patch that adds keyword options to &lt;tt&gt;source-seq&lt;/tt&gt;, &lt;tt&gt;parse&lt;/tt&gt;, and &lt;tt&gt;parse-str&lt;/tt&gt;, allowing the consumer to disable coalescing and sidestep the upstream bug.&lt;/p&gt;</description>
                <environment>OS X</environment>
            <key id="15218">DXML-1</key>
            <summary>Stack overflow when parsing huge XML file</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="jkkramer">Justin Kramer</reporter>
                        <labels>
                        <label>patch,</label>
                    </labels>
                <created>Fri, 10 Feb 2012 09:13:18 -0600</created>
                <updated>Tue, 20 Mar 2012 08:05:15 -0500</updated>
                    <resolved>Tue, 20 Mar 2012 08:05:15 -0500</resolved>
                                                                    <due></due>
                    <votes>1</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="27971" author="ryansenior" created="Tue, 20 Mar 2012 08:05:15 -0500"  >&lt;p&gt;Thanks Justin!&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10903" name="data-xml-kwopts.patch" size="3539" author="jkkramer" created="Fri, 10 Feb 2012 09:13:18 -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="10002">Code and Test</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[DXML-5] OutOfMemory errors when emitting large XML documents</title>
                <link>http://dev.clojure.org/jira/browse/DXML-5</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;Emitting large XML documents, fed from lazy-seqs in data.xml does not work.  Currently, the lazy-seq is held in a defrecord, which holds onto the head of the lazy-seq and will force it to all be in memory (eventually consuming all available memory).  Example code to reproduce the issue below:&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;div class=&quot;error&quot;&gt;&lt;span class=&quot;error&quot;&gt;Unable to find source-code formatter for language: clojure.&lt;/span&gt; Available languages are: javascript, sql, xhtml, actionscript, none, html, xml, java&lt;/div&gt;&lt;pre class=&quot;code-clojure&quot;&gt;(with-open [fw (java.io.FileWriter. &lt;span class=&quot;code-quote&quot;&gt;&quot;/tmp/lots-of-foo.xml&quot;&lt;/span&gt;)]
    (xml/emit
       (Element. :some-tags
           {}
           (map #(Element. :foo {} [(str &lt;span class=&quot;code-quote&quot;&gt;&quot;foo&quot;&lt;/span&gt; %)])
                (range 0 10000000)))
       fw))&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;  </description>
                <environment></environment>
            <key id="15369">DXML-5</key>
            <summary>OutOfMemory errors when emitting large XML documents</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="ryansenior">Ryan Senior</reporter>
                        <labels>
                    </labels>
                <created>Fri, 27 Apr 2012 08:01:40 -0500</created>
                <updated>Tue, 26 Jun 2012 13:37:51 -0500</updated>
                    <resolved>Tue, 26 Jun 2012 13:37:11 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="28565" author="ryansenior" created="Tue, 22 May 2012 10:57:43 -0500"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                    <comment id="28907" author="ryansenior" created="Tue, 26 Jun 2012 12:18:05 -0500"  >&lt;p&gt;Found this to be fixed only in the simplest case.  If you have a large lazy-seq nested below 2+ tags it will hold onto the head of the lazy-seq and consume memory.&lt;/p&gt;</comment>
                    <comment id="28908" author="ryansenior" created="Tue, 26 Jun 2012 13:37:11 -0500"  >&lt;p&gt;Added an intermediate step to emitting elements to the stream writer.  Now elements get flattened to a stream of events that get written to the stream writer.&lt;/p&gt;</comment>
                    <comment id="28909" author="ryansenior" created="Tue, 26 Jun 2012 13:37:51 -0500"  >&lt;p&gt;Not sure how to set a &quot;Fix Version&quot; in Jira, but this was fixed in 0.0.5&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>[DXML-3] Build release on JDK 1.6</title>
                <link>http://dev.clojure.org/jira/browse/DXML-3</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;See &lt;a href=&quot;https://groups.google.com/d/topic/clojure-dev/Z-wrRTcUs6U/discussion&quot;&gt;https://groups.google.com/d/topic/clojure-dev/Z-wrRTcUs6U/discussion&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
            <key id="15228">DXML-3</key>
            <summary>Build release on JDK 1.6</summary>
                <type id="3" iconUrl="http://dev.clojure.org/jira/images/icons/task.gif">Task</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="amalloy">Alan Malloy</assignee>
                                <reporter username="stuart.sierra">Stuart Sierra</reporter>
                        <labels>
                    </labels>
                <created>Fri, 17 Feb 2012 13:54:54 -0600</created>
                <updated>Fri, 24 Feb 2012 15:13:18 -0600</updated>
                    <resolved>Fri, 24 Feb 2012 15:13:18 -0600</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="27785" author="ryansenior" created="Mon, 20 Feb 2012 21:58:56 -0600"  >&lt;p&gt;Patch for adding JDK version to a Hudson job config&lt;/p&gt;</comment>
                    <comment id="27850" author="stuart.sierra" created="Fri, 24 Feb 2012 15:13:18 -0600"  >&lt;p&gt;Patch applied to build.ci. Rebuilding Hudson configs now.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10935" name="jdk_16_jobs.patch" size="4985" author="ryansenior" created="Mon, 20 Feb 2012 21:58:56 -0600" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Approval</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10003">Vetted</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[DXML-6] data.xml tests fail on clojure 1.2.0 and 1.2.1</title>
                <link>http://dev.clojure.org/jira/browse/DXML-6</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;See the test matrix here: &lt;a href=&quot;http://build.clojure.org/job/data.xml-test-matrix/&quot;&gt;http://build.clojure.org/job/data.xml-test-matrix/&lt;/a&gt;.  Looks like the mixed-quotes test is to blame, just a reordering of attributes when they are emitted to a string.&lt;/p&gt;</description>
                <environment></environment>
            <key id="15463">DXML-6</key>
            <summary>data.xml tests fail on clojure 1.2.0 and 1.2.1</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="ryansenior">Ryan Senior</reporter>
                        <labels>
                    </labels>
                <created>Tue, 22 May 2012 11:32:10 -0500</created>
                <updated>Tue, 22 May 2012 12:54:41 -0500</updated>
                    <resolved>Tue, 22 May 2012 12:54:41 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="28566" author="ryansenior" created="Tue, 22 May 2012 12:54:41 -0500"  >&lt;p&gt;Tests now run successfully on 1.2.0 and 1.2.1&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>[DXML-2] lein deps fails</title>
                <link>http://dev.clojure.org/jira/browse/DXML-2</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>
&lt;p&gt;    C:\Users\ralphm\workspace\dbxml-env&amp;gt;lein version&lt;br/&gt;
    Leiningen 1.6.2 on Java 1.7.0_02 Java HotSpot(TM) Client VM&lt;br/&gt;
    C:\Users\ralphm\workspace\dbxml-env&amp;gt;lein deps&lt;br/&gt;
    Downloading: org/clojure/data.xml/0.0.2-SNAPSHOT/data.xml-0.0.2-SNAPSHOT.pom from repository clojars at &lt;a href=&quot;http://clojars.org/repo/&quot;&gt;http://clojars.org/repo/&lt;/a&gt;&lt;br/&gt;
    Unable to locate resource in repository&lt;br/&gt;
    &lt;span class=&quot;error&quot;&gt;&amp;#91;INFO&amp;#93;&lt;/span&gt; Unable to find resource &apos;org.clojure:data.xml:pom:0.0.2-SNAPSHOT&apos; in repository clojars (&lt;a href=&quot;http://clojars.org/repo/&quot;&gt;http://clojars.org/repo/&lt;/a&gt;)&lt;br/&gt;
    Downloading: org/clojure/data.xml/0.0.2-SNAPSHOT/data.xml-0.0.2-SNAPSHOT.jar from repository clojars at &lt;a href=&quot;http://clojars.org/repo/&quot;&gt;http://clojars.org/repo/&lt;/a&gt;&lt;br/&gt;
    Unable to locate resource in repository&lt;br/&gt;
    &lt;span class=&quot;error&quot;&gt;&amp;#91;INFO&amp;#93;&lt;/span&gt; Unable to find resource &apos;org.clojure:data.xml:jar:0.0.2-SNAPSHOT&apos; in repository clojars (&lt;a href=&quot;http://clojars.org/repo/&quot;&gt;http://clojars.org/repo/&lt;/a&gt;)&lt;br/&gt;
    An error has occurred while processing the Maven artifact tasks.&lt;br/&gt;
     Diagnosis:&lt;/p&gt;

&lt;p&gt;    Unable to resolve artifact: Missing:&lt;br/&gt;
    ----------&lt;br/&gt;
    1) org.clojure:data.xml:jar:0.0.2-SNAPSHOT&lt;/p&gt;

&lt;p&gt;      Try downloading the file manually from the project website.&lt;/p&gt;

&lt;p&gt;      Then, install it using the command:&lt;br/&gt;
          mvn install:install-file -DgroupId=org.clojure -DartifactId=data.xml -Dversion=0.0.2-SNAPSHOT&lt;br/&gt;
    -Dpackaging=jar -Dfile=/path/to/file&lt;/p&gt;

&lt;p&gt;      Alternatively, if you host your own repository you can deploy the file there:&lt;br/&gt;
          mvn deploy:deploy-file -DgroupId=org.clojure -DartifactId=data.xml -Dversion=0.0.2-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=&lt;span class=&quot;error&quot;&gt;&amp;#91;url&amp;#93;&lt;/span&gt; -DrepositoryId=&lt;span class=&quot;error&quot;&gt;&amp;#91;id&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;      Path to dependency:&lt;br/&gt;
            1) org.apache.maven:super-pom:pom:2.0&lt;br/&gt;
            2) org.clojure:data.xml:jar:0.0.2-SNAPSHOT&lt;/p&gt;

&lt;p&gt;    ----------&lt;br/&gt;
    1 required artifact is missing.&lt;/p&gt;

&lt;p&gt;    for artifact:&lt;br/&gt;
      org.apache.maven:super-pom:pom:2.0&lt;/p&gt;

&lt;p&gt;    from the specified remote repositories:&lt;br/&gt;
      central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;),&lt;br/&gt;
      clojars (&lt;a href=&quot;http://clojars.org/repo/&quot;&gt;http://clojars.org/repo/&lt;/a&gt;)&lt;/p&gt;</description>
                <environment>Leiningen</environment>
            <key id="15227">DXML-2</key>
            <summary>lein deps fails</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="2">Declined</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="ralmoritz">Ralph M&#246;ritz</reporter>
                        <labels>
                    </labels>
                <created>Fri, 17 Feb 2012 02:42:43 -0600</created>
                <updated>Tue, 22 May 2012 10:56:32 -0500</updated>
                    <resolved>Tue, 22 May 2012 10:56:32 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="27786" author="ryansenior" created="Mon, 20 Feb 2012 22:03:55 -0600"  >&lt;p&gt;As far as I know, there haven&apos;t been any releases of data.xml (SNAPSHOT or regular) to the maven repositories.  I&apos;m working on this and will hopefully have something out soon.&lt;/p&gt;</comment>
                    <comment id="28564" author="ryansenior" created="Tue, 22 May 2012 10:56:32 -0500"  >&lt;p&gt;data.xml doesn&apos;t get deployed to clojars.  Look for it in maven central: &lt;a href=&quot;http://search.maven.org/#search&quot;&gt;http://search.maven.org/#search&lt;/a&gt;|ga|1|data.xml . 0.0.3 is the most recent version released, but 0.0.4 will be released soon.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10917" name="project.clj" size="261" author="ralmoritz" created="Fri, 17 Feb 2012 02:42:43 -0600" />
                </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>[DXML-8] Cannot pass strings when keywords are expected</title>
                <link>http://dev.clojure.org/jira/browse/DXML-8</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;This error does not present till you attempt to emit xml that has a string where the element function is expecting a keyword.  This is double hard to figure out at first because the error message is vague.  I am requesting that the element function is allowed to use strings instead of keywords or the error message is cleaned up so that the &quot;user&quot; error is clear.&lt;/p&gt;</description>
                <environment>Windows 7</environment>
            <key id="15725">DXML-8</key>
            <summary>Cannot pass strings when keywords are expected</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="bsiebert">Brian Siebert</reporter>
                        <labels>
                    </labels>
                <created>Thu, 27 Sep 2012 13:31:07 -0500</created>
                <updated>Wed, 14 Nov 2012 07:28:10 -0600</updated>
                    <resolved>Wed, 14 Nov 2012 07:28:10 -0600</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="29941" author="ryansenior" created="Wed, 14 Nov 2012 07:28:10 -0600"  >&lt;p&gt;I have added this.  Supporting keywords and strings seems to be common in some of the other contrib libraries.  Now you can use the keyword :foo or the string &quot;foo&quot; for tags and attributes.&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>
                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Patch</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10000">None</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[DXML-11] Support cdata with sexp-as-element</title>
                <link>http://dev.clojure.org/jira/browse/DXML-11</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;prxml allowed something like this:&lt;/p&gt;

&lt;p&gt;(prxml [:foo &lt;span class=&quot;error&quot;&gt;&amp;#91;:cdata! &amp;quot;all my cdata&amp;quot;&amp;#93;&lt;/span&gt;])&lt;/p&gt;

&lt;p&gt;It doesn&apos;t look like that is currently allowed in data.xml.  It looked like maybe I could extend the AsElements protocol to get this behavior, but I couldn&apos;t quite figure it out, seems like I&apos;d have to have access to the XmlStreamWriter to get the string representation of the cdata.&lt;/p&gt;</description>
                <environment></environment>
            <key id="15842">DXML-11</key>
            <summary>Support cdata with sexp-as-element</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="jweiss">Jeff Weiss</reporter>
                        <labels>
                    </labels>
                <created>Wed, 21 Nov 2012 05:58:20 -0600</created>
                <updated>Tue, 8 Jan 2013 22:07:06 -0600</updated>
                    <resolved>Tue, 8 Jan 2013 22:07:06 -0600</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="30411" author="ryansenior" created="Tue, 8 Jan 2013 22:07:06 -0600"  >&lt;p&gt;Added, released in 0.0.7&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>[DXML-12] Do the right thing if cdata content contains the cdata end-tag &quot;]]&gt;&quot;</title>
                <link>http://dev.clojure.org/jira/browse/DXML-12</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;(xml/emit-str (xml/cdata &quot;fooo]]&amp;gt;bar&quot;))&lt;/p&gt;

&lt;p&gt;&quot;&amp;lt;?xml version=\&quot;1.0\&quot; encoding=\&quot;UTF-8\&quot;?&amp;gt;&amp;lt;![CDATA&lt;span class=&quot;error&quot;&gt;&amp;#91;fooo&amp;#93;&lt;/span&gt;]&amp;gt;bar]]&amp;gt;&quot;&lt;/p&gt;

&lt;p&gt;This is invalid xml.  The contract for cdata states that it cannot contain the end tag &quot;]]&amp;gt;&quot;, so if the cdata function gets passed content that contains it, it should do the right thing, which is probably this:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://stackoverflow.com/questions/223652/is-there-a-way-to-escape-a-cdata-end-token-in-xml&quot;&gt;http://stackoverflow.com/questions/223652/is-there-a-way-to-escape-a-cdata-end-token-in-xml&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;(split the content so it is emitted as multiple cdata blocks, none of which contain the entire end-tag &quot;]]&amp;gt;&quot;).&lt;/p&gt;

&lt;p&gt;This is not a purely academic bug report - I actually hit this problem in prxml and fixed it on my fork.&lt;/p&gt;</description>
                <environment></environment>
            <key id="15843">DXML-12</key>
            <summary>Do the right thing if cdata content contains the cdata end-tag &quot;]]&gt;&quot;</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="jweiss">Jeff Weiss</reporter>
                        <labels>
                    </labels>
                <created>Wed, 21 Nov 2012 06:06:06 -0600</created>
                <updated>Tue, 8 Jan 2013 22:07:25 -0600</updated>
                    <resolved>Tue, 8 Jan 2013 22:07:25 -0600</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="30412" author="ryansenior" created="Tue, 8 Jan 2013 22:07:25 -0600"  >&lt;p&gt;Fixed, released in 0.0.7&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>[DXML-7] cannot change encoding when using the indent function</title>
                <link>http://dev.clojure.org/jira/browse/DXML-7</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;When using the Indent function, and trying to change the encoding, an exception is thrown.&lt;/p&gt;

&lt;p&gt;java.lang.IllegalArgumentException: No value supplied for key: &lt;span class=&quot;error&quot;&gt;&amp;#91;:encoding &amp;quot;UTF-8&amp;quot;&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;This seems to be that the options are not being passed from indent to emit correctly.&lt;/p&gt;</description>
                <environment>Window 7</environment>
            <key id="15724">DXML-7</key>
            <summary>cannot change encoding when using the indent function</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="4" iconUrl="http://dev.clojure.org/jira/images/icons/priority_minor.gif">Minor</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="bsiebert">Brian Siebert</reporter>
                        <labels>
                    </labels>
                <created>Thu, 27 Sep 2012 13:28:01 -0500</created>
                <updated>Tue, 9 Oct 2012 22:46:20 -0500</updated>
                    <resolved>Tue, 9 Oct 2012 22:46:20 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="29627" author="ryansenior" created="Tue, 9 Oct 2012 22:46:20 -0500"  >&lt;p&gt;Thanks for finding the bug.  It&apos;s fixed in the repo and will be included in the next release.&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>[DXML-9] Remove some use of reflection in data.xml</title>
                <link>http://dev.clojure.org/jira/browse/DXML-9</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;There are a couple of occurrences of reflection in the data.xml library&lt;/p&gt;</description>
                <environment></environment>
            <key id="15792">DXML-9</key>
            <summary>Remove some use of reflection in data.xml</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="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ryansenior">Ryan Senior</assignee>
                                <reporter username="jafingerhut">Andy Fingerhut</reporter>
                        <labels>
                    </labels>
                <created>Sun, 28 Oct 2012 18:09:07 -0500</created>
                <updated>Wed, 14 Nov 2012 07:26:09 -0600</updated>
                    <resolved>Wed, 14 Nov 2012 07:26:09 -0600</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="29842" author="jafingerhut" created="Sun, 28 Oct 2012 18:10:39 -0500"  >&lt;p&gt;dxml-9-remove-reflection-v1.txt dated Oct 28 2012 removes one use of reflection in data.xml.  There is still one remaining, to which I have added a comment explaining why it cannot be removed with a single type hint.&lt;/p&gt;</comment>
                    <comment id="29940" author="ryansenior" created="Wed, 14 Nov 2012 07:26:09 -0600"  >&lt;p&gt;Thanks Andy.  Will be in the next release.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="11628" name="dxml-9-remove-reflection-v1.txt" size="1484" author="jafingerhut" created="Sun, 28 Oct 2012 18:10:39 -0500" />
                </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="10012">Accepted</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[DXML-10] Support for DOCTYPE when emitting XML</title>
                <link>http://dev.clojure.org/jira/browse/DXML-10</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;Some consumers of XML files require an explicit DOCTYPE to accept an XML file. data.xml does not currently support the specification of doctypes when emitting XML. When XML is parsed, I believe DOCTYPEs are silently ignored, so there is no representation in the data model for them. The best design is possibly an :doctype option in clojure.data.xml/emit ?&lt;/p&gt;

&lt;p&gt;I&apos;ve attached a web.xml as example.&lt;/p&gt;</description>
                <environment></environment>
            <key id="15824">DXML-10</key>
            <summary>Support for DOCTYPE when emitting XML</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="ryansenior">Ryan Senior</assignee>
                                <reporter username="tgk">Thomas Greve Kristensen</reporter>
                        <labels>
                    </labels>
                <created>Wed, 14 Nov 2012 02:06:10 -0600</created>
                <updated>Wed, 14 Nov 2012 02:06:10 -0600</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                    <attachment id="11675" name="web.xml" size="427" author="tgk" created="Wed, 14 Nov 2012 02:06:10 -0600" />
                </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>[DXML-13] Support for preserving whitespace between tags</title>
                <link>http://dev.clojure.org/jira/browse/DXML-13</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;XML parsers can support preserving white space nodes, but clojure.data.xml does not seem to support this functionality.&lt;/p&gt;

&lt;p&gt;For example, the following should be able to return true (perhaps with an option to parse-str):&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-style: solid;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-style: solid;&quot;&gt;&lt;b&gt;Desired Behavior&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;(= (clojure.data.xml/element :x {}
                             (clojure.data.xml/element :a {} &lt;span class=&quot;code-quote&quot;&gt;&quot;foo&quot;&lt;/span&gt;)
                             &lt;span class=&quot;code-quote&quot;&gt;&quot; &quot;&lt;/span&gt;
                             (clojure.data.xml/element :a {} &lt;span class=&quot;code-quote&quot;&gt;&quot;bar&quot;&lt;/span&gt;))
   (clojure.data.xml/parse-str
     (str &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;?xml version=\&quot;&lt;/span&gt;1.0\&lt;span class=&quot;code-quote&quot;&gt;&quot; encoding=\&quot;&lt;/span&gt;UTF-8\&lt;span class=&quot;code-quote&quot;&gt;&quot;?&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;x&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;a&amp;gt;foo&amp;lt;/a&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot; &quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;a&amp;gt;bar&amp;lt;/a&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;/x&amp;gt;&quot;&lt;/span&gt;)))
;=&amp;gt; &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;This is the current behavior:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-style: solid;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-style: solid;&quot;&gt;&lt;b&gt;Current Behavior&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;(= (clojure.data.xml/element :x {}
                             (clojure.data.xml/element :a {} &lt;span class=&quot;code-quote&quot;&gt;&quot;foo&quot;&lt;/span&gt;)
                             (clojure.data.xml/element :a {} &lt;span class=&quot;code-quote&quot;&gt;&quot;bar&quot;&lt;/span&gt;))
   (clojure.data.xml/parse-str
     (str &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;?xml version=\&quot;&lt;/span&gt;1.0\&lt;span class=&quot;code-quote&quot;&gt;&quot; encoding=\&quot;&lt;/span&gt;UTF-8\&lt;span class=&quot;code-quote&quot;&gt;&quot;?&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;x&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;a&amp;gt;foo&amp;lt;/a&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot; &quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;a&amp;gt;bar&amp;lt;/a&amp;gt;&quot;&lt;/span&gt;
          &lt;span class=&quot;code-quote&quot;&gt;&quot;&amp;lt;/x&amp;gt;&quot;&lt;/span&gt;)))
;=&amp;gt; &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="15998">DXML-13</key>
            <summary>Support for preserving whitespace between tags</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="ryansenior">Ryan Senior</assignee>
                                <reporter username="onlyafly">Kevin Albrecht</reporter>
                        <labels>
                    </labels>
                <created>Sun, 10 Feb 2013 04:35:46 -0600</created>
                <updated>Sun, 10 Feb 2013 04:35:46 -0600</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <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>[DXML-14] IllegalArgumentException when trying to emit a boolean value</title>
                <link>http://dev.clojure.org/jira/browse/DXML-14</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;I can create an element with a boolean value but I can&apos;t emit it...&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;user=&amp;gt; (emit-str (element :something {} false))&lt;br/&gt;
IllegalArgumentException No implementation of method: :gen-event of protocol:   #&apos;clojure.data.xml/EventGeneration found for class: java.lang.Boolean  clojure.core/-cache-protocol-fn (core_deftype.clj:541)&lt;/p&gt;&lt;/blockquote&gt;</description>
                <environment>JRE 1.7, OS X 10.7.5, Clojure 1.4 &amp;amp; 1.5, data.xml 0.0.7</environment>
            <key id="16061">DXML-14</key>
            <summary>IllegalArgumentException when trying to emit a boolean value</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="ryansenior">Ryan Senior</assignee>
                                <reporter username="edoloughlin">Ed O&apos;Loughlin</reporter>
                        <labels>
                    </labels>
                <created>Thu, 7 Mar 2013 05:39:08 -0600</created>
                <updated>Thu, 7 Mar 2013 05:39:08 -0600</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                                <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>[DXML-15] data.xml can&apos;t parse own output if there&apos;s a colon in an attribute name</title>
                <link>http://dev.clojure.org/jira/browse/DXML-15</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;Observe:&lt;/p&gt;

&lt;p&gt;&amp;gt; (x/emit-str (x/element :NC {&quot;xmlns&quot; &quot;http://example.com&quot; &quot;xmlns:xsi&quot; &quot;http://www.w3.org/2001/XMLSchema-instance&quot; &quot;xsi:schemaLocation&quot; &quot;http://www.example.com/schema.xsd&quot;} (x/element :Foo {} &quot;bar&quot;)))&lt;br/&gt;
&quot;&amp;lt;?xml version=\&quot;1.0\&quot; encoding=\&quot;UTF-8\&quot;?&amp;gt;&amp;lt;NC xsi:schemaLocation=\&quot;http://www.example.com/schema.xsd\&quot; xmlns:xsi=\&quot;http://www.w3.org/2001/XMLSchema-instance\&quot; xmlns=\&quot;http://example.com\&quot;&amp;gt;&amp;lt;Foo&amp;gt;bar&amp;lt;/Foo&amp;gt;&amp;lt;/NC&amp;gt;&quot;&lt;br/&gt;
&amp;gt; (x/parse-str *1)&lt;br/&gt;
#clojure.data.xml.Element{:tag :NC, :attrs {:xsi/schemaLocation &quot;http://www.example.com/schema.xsd&quot;}, :content (#clojure.data.xml.Element{:tag :Foo, :attrs {}, :content (&quot;bar&quot;)})}&lt;br/&gt;
a&amp;gt; (x/emit-str *1)&lt;br/&gt;
XMLStreamException Prefix cannot be null  com.sun.xml.internal.stream.writers.XMLStreamWriterImpl.writeAttribute (XMLStreamWriterImpl.java:574)&lt;br/&gt;
app.services.external.experian.internal.test-data&amp;gt; &lt;/p&gt;

&lt;p&gt;(a) the xmlns and xmlns:xsi attributes have disappeared. Not the point of this issue but worth pointing out.&lt;br/&gt;
(b) &quot;xsi:schemaLocation&quot; has become :xsi/schemaLocation&lt;br/&gt;
(c) emitting a string blows up.&lt;/p&gt;</description>
                <environment>data.xml 0.0.7</environment>
            <key id="16126">DXML-15</key>
            <summary>data.xml can&apos;t parse own output if there&apos;s a colon in an attribute name</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="ryansenior">Ryan Senior</assignee>
                                <reporter username="wolfson">ben wolfson</reporter>
                        <labels>
                    </labels>
                <created>Wed, 3 Apr 2013 20:00:02 -0500</created>
                <updated>Wed, 3 Apr 2013 20:00:02 -0500</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <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>[DXML-4] Namespaces support</title>
                <link>http://dev.clojure.org/jira/browse/DXML-4</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;Add support for both parsing and emitting namespace qualified tags and namespaces URI declarations.&lt;br/&gt;
It basically follows the underlying Java XML API in giving xmlns:foo attributes &quot;special&quot; treatment.&lt;/p&gt;</description>
                <environment></environment>
            <key id="15299">DXML-4</key>
            <summary>Namespaces support</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="ryansenior">Ryan Senior</assignee>
                                <reporter username="skuro">Carlo Sciolla</reporter>
                        <labels>
                    </labels>
                <created>Tue, 27 Mar 2012 15:45:05 -0500</created>
                <updated>Sun, 21 Apr 2013 19:04:27 -0500</updated>
                                                                            <due></due>
                    <votes>3</votes>
                        <watches>4</watches>
                        <comments>
                    <comment id="28563" author="ryansenior" created="Tue, 22 May 2012 10:26:38 -0500"  >&lt;p&gt;I don&apos;t see a contributor agreement for you Carlo.  Have you signed one? &lt;a href=&quot;http://clojure.org/contributing&quot;&gt;http://clojure.org/contributing&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="28881" author="gtrak" created="Tue, 19 Jun 2012 18:09:04 -0500"  >&lt;p&gt;ping, is the patch still waiting for a signed CA?&lt;/p&gt;</comment>
                    <comment id="28906" author="ryansenior" created="Tue, 26 Jun 2012 12:14:27 -0500"  >&lt;p&gt;Yes&lt;/p&gt;</comment>
                    <comment id="30128" author="ronslow" created="Sat, 1 Dec 2012 05:07:39 -0600"  >&lt;p&gt;Is this patch due reasonable soon?&lt;/p&gt;</comment>
                    <comment id="30980" author="jafingerhut" created="Sun, 21 Apr 2013 19:04:27 -0500"  >&lt;p&gt;Link to a design page with some ideas for XML namespace support in Clojure: &lt;a href=&quot;http://dev.clojure.org/display/DXML/Fuller+XML+support&quot;&gt;http://dev.clojure.org/display/DXML/Fuller+XML+support&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="11017" name="add-namespace-support.patch" size="8171" author="skuro" created="Tue, 27 Mar 2012 15:45:05 -0500" />
                </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="10002">Code and Test</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[DXML-16] Eliminate reflection in emit-cdata</title>
                <link>http://dev.clojure.org/jira/browse/DXML-16</link>
                <project id="10077" key="DXML">data.xml</project>
                        <description>&lt;p&gt;Solvable with a type hint on emit-cdata arg &apos;writer&apos;&lt;/p&gt;</description>
                <environment></environment>
            <key id="16162">DXML-16</key>
            <summary>Eliminate reflection in emit-cdata</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="ryansenior">Ryan Senior</assignee>
                                <reporter username="jafingerhut">Andy Fingerhut</reporter>
                        <labels>
                    </labels>
                <created>Thu, 25 Apr 2013 13:28:11 -0500</created>
                <updated>Thu, 25 Apr 2013 13:30:53 -0500</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="31001" author="jafingerhut" created="Thu, 25 Apr 2013 13:30:53 -0500"  >&lt;p&gt;Patch dxml-16-eliminate-relfection-in-emit-cdata-patch-v1.txt dated Apr 25 2013 eliminates a couple of uses of reflection in function emit-cdata.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="11969" name="dxml-16-eliminate-relfection-in-emit-cdata-patch-v1.txt" size="833" author="jafingerhut" created="Thu, 25 Apr 2013 13:30:53 -0500" />
                </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>
</channel>
</rss>