<!--
RSS generated by JIRA (4.4#649-r158309) at Thu May 23 11:14:03 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+AND+status+%3D+Resolved+ORDER+BY+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+AND+status+%3D+Resolved+ORDER+BY+priority+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="10" total="10"/>
                <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>
</channel>
</rss>