<!--
RSS generated by JIRA (5.2.7#850-sha1:b2af0c8dc8537b36121c6a579fabbdf79fc919e5) at Sat May 25 09:14:30 UTC 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://www.doctrine-project.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+DCOM+AND+fixVersion+%3D+%222.0.0-RC1%22+ORDER+BY+updated+DESC%2C+priority+DESC%2C+created+ASC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://www.doctrine-project.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Doctrine Project</title>
        <link>http://www.doctrine-project.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+DCOM+AND+fixVersion+%3D+%222.0.0-RC1%22+ORDER+BY+updated+DESC%2C+priority+DESC%2C+created+ASC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="4" total="4"/>
                <build-info>
            <version>5.2.7</version>
            <build-number>850</build-number>
            <build-date>21-02-2013</build-date>
        </build-info>
<item>
            <title>[DCOM-17] Add Collection::slice($offset, $length)</title>
                <link>http://www.doctrine-project.org/jira/browse/DCOM-17</link>
                <project id="10043" key="DCOM">Doctrine Common</project>
                        <description>&lt;p&gt;Since we are still at a point were bc breaks are potentially not so harming:&lt;/p&gt;

&lt;p&gt;We need a slice() method on the Collection for forward compatibility, the support for large and very large collections using FETCH_EXTRA would heavily benefit from a method like this.&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;/**
 * Extract a slice of $length elements starting at position $offset from the Collection.
 * 
 * If $length is &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt; it returns all elements from $offset to the end of the Collection.
 * Keys have to be preserved by &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt; method.
 * 
 * @param &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; $offset
 * @param &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; $length
 * @&lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; array
 */
&lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; function slice($offset, $length = &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The ArrayCollection implement would be:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; function slice($offset, $length = &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;);
{
    &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; array_slice($&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;-&amp;gt;_elements, $offset, $length, &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;); &lt;span class=&quot;code-comment&quot;&gt;// preserve keys
&lt;/span&gt;}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="11739">DCOM-17</key>
            <summary>Add Collection::slice($offset, $length)</summary>
                <type id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                                <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Sun, 8 Aug 2010 11:30:23 +0000</created>
                <updated>Fri, 14 Jan 2011 05:39:16 +0000</updated>
                    <resolved>Tue, 24 Aug 2010 15:49:22 +0000</resolved>
                            <version>2.0.0-BETA4</version>
                                <fixVersion>2.0.0-RC1</fixVersion>
                                <component>Collections</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="13864" author="beberlei" created="Sun, 8 Aug 2010 11:32:03 +0000"  >&lt;p&gt;Updated preserve paragraph&lt;/p&gt;</comment>
                    <comment id="14058" author="beberlei" created="Tue, 24 Aug 2010 15:49:22 +0000"  >&lt;p&gt;Implemented&lt;/p&gt;</comment>
                    <comment id="15142" author="jpieper" created="Fri, 14 Jan 2011 05:39:16 +0000"  >&lt;p&gt;Is there any reason why slice() returns an array although methods like filter() and map() return an instance of Doctrine\Common\Collections\ArrayCollection?&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DCOM-6] Non existant namespace alias throws a PHP Notice </title>
                <link>http://www.doctrine-project.org/jira/browse/DCOM-6</link>
                <project id="10043" key="DCOM">Doctrine Common</project>
                        <description>&lt;p&gt;@nonalias:Annot results in a php notice.&lt;/p&gt;
</description>
                <environment></environment>
            <key id="11419">DCOM-6</key>
            <summary>Non existant namespace alias throws a PHP Notice </summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                                <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="merk">Tim Nagel</reporter>
                        <labels>
                    </labels>
                <created>Thu, 27 May 2010 04:37:37 +0000</created>
                <updated>Wed, 1 Sep 2010 13:13:34 +0000</updated>
                    <resolved>Wed, 1 Sep 2010 13:13:34 +0000</resolved>
                            <version>2.0.0-BETA2</version>
                                <fixVersion>2.0.0-RC1</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="13068" author="merk" created="Thu, 27 May 2010 04:46:10 +0000"  >&lt;p&gt;Proposed tests and fix&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://github.com/merk/common/commit/65e8c10b74201c39dbe291c36230205d9b08ed65&quot; class=&quot;external-link&quot;&gt;http://github.com/merk/common/commit/65e8c10b74201c39dbe291c36230205d9b08ed65&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="14208" author="guilhermeblanco" created="Tue, 31 Aug 2010 22:43:00 +0000"  >&lt;p&gt;In commit: &lt;a href=&quot;http://github.com/doctrine/common/commit/ad49a676269af368563bd9a848c904b81a825622&quot; class=&quot;external-link&quot;&gt;http://github.com/doctrine/common/commit/ad49a676269af368563bd9a848c904b81a825622&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I fixed this issue.&lt;br/&gt;
The validation on unexistent classes cannot be done correctly, otherwise it&apos;d conflict with phpDoc tags.&lt;/p&gt;</comment>
                    <comment id="14209" author="merk" created="Tue, 31 Aug 2010 23:03:57 +0000"  >&lt;p&gt;What will your change do if there are multiple implementations of the Reader working on entities that dont have common namespaces, but still use namespaces?&lt;/p&gt;

&lt;p&gt;Would it not make more sense to skip something that the Reader doesnt understand, rather than throwing an error?&lt;/p&gt;

&lt;p&gt;(For example, Symfony2&apos;s validator system might have namespaced validators, which would then cause the &apos;Doctrine&apos; reader to throw an exception)&lt;/p&gt;
</comment>
                    <comment id="14217" author="guilhermeblanco" created="Wed, 1 Sep 2010 13:06:56 +0000"  >&lt;p&gt;Yes, you&apos;re right...&lt;/p&gt;

&lt;p&gt;I think we&apos;ll have to silently bypass unknown aliases... this makes debug harder, but we don&apos;t have any other option. =(&lt;/p&gt;

&lt;p&gt;Reopening it&lt;/p&gt;</comment>
                    <comment id="14218" author="beberlei" created="Wed, 1 Sep 2010 13:13:34 +0000"  >&lt;p&gt;Fixed to skip the unknown alias annotation.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DCOM-21] Bug with annotations parser and tags that are not annotations (stripped tags)</title>
                <link>http://www.doctrine-project.org/jira/browse/DCOM-21</link>
                <project id="10043" key="DCOM">Doctrine Common</project>
                        <description></description>
                <environment></environment>
            <key id="11798">DCOM-21</key>
            <summary>Bug with annotations parser and tags that are not annotations (stripped tags)</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                                <assignee username="romanb">Roman S. Borschel</assignee>
                                <reporter username="jwage">Jonathan H. Wage</reporter>
                        <labels>
                    </labels>
                <created>Wed, 18 Aug 2010 14:33:58 +0000</created>
                <updated>Wed, 18 Aug 2010 14:34:29 +0000</updated>
                    <resolved>Wed, 18 Aug 2010 14:34:29 +0000</resolved>
                            <version>2.0.0-BETA4</version>
                                <fixVersion>2.0.0-RC1</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="14010" author="jwage" created="Wed, 18 Aug 2010 14:34:29 +0000"  >&lt;p&gt;Fixed in &lt;a href=&quot;http://github.com/doctrine/common/commit/df50f65ee707bb148682232c516d5168cf46d987&quot; class=&quot;external-link&quot;&gt;http://github.com/doctrine/common/commit/df50f65ee707bb148682232c516d5168cf46d987&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DCOM-18] ArrayCollection::removeElement() violates Interface Contract</title>
                <link>http://www.doctrine-project.org/jira/browse/DCOM-18</link>
                <project id="10043" key="DCOM">Doctrine Common</project>
                        <description>&lt;p&gt;It return the element, not true.&lt;/p&gt;</description>
                <environment></environment>
            <key id="11744">DCOM-18</key>
            <summary>ArrayCollection::removeElement() violates Interface Contract</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/resolved.png">Resolved</status>
                    <resolution id="1">Fixed</resolution>
                                <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Mon, 9 Aug 2010 15:27:04 +0000</created>
                <updated>Mon, 9 Aug 2010 15:52:47 +0000</updated>
                    <resolved>Mon, 9 Aug 2010 15:52:47 +0000</resolved>
                            <version>2.0.0-BETA4</version>
                                <fixVersion>2.0.0-RC1</fixVersion>
                                <component>Collections</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="13881" author="beberlei" created="Mon, 9 Aug 2010 15:52:47 +0000"  >&lt;p&gt;Fixed&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>
</channel>
</rss>