<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=DB_NestedSet</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/12981" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12343" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12341" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12334" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12332" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12330" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12329" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12328" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12327" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/12981">
      <title>DB_NestedSet: Feature/Change Request 12981 [Open] new method: updateBranch()</title>
      <link>http://pear.php.net/bugs/12981</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by denny
2008-01-26T11:23:31+00:00
PHP: Irrelevant OS: N/A Package Version: 1.4.0RC1

Description:
------------
It would be handy to be able to update fields for an entire branch in one query. For instance --

$nset-&gt;updateBranch($branch_rootid, array('is_active' =&gt; 0));
$nset-&gt;updateBranch($branch_rootid, array('access_flags' =&gt; 255));

This class is pretty handy as is though. Thanks much for all your hard work! :)</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by denny
2008-01-26T11:23:31+00:00
PHP: Irrelevant OS: N/A Package Version: 1.4.0RC1

Description:
------------
It would be handy to be able to update fields for an entire branch in one query. For instance --

$nset-&gt;updateBranch($branch_rootid, array('is_active' =&gt; 0));
$nset-&gt;updateBranch($branch_rootid, array('access_flags' =&gt; 255));

This class is pretty handy as is though. Thanks much for all your hard work! :)</pre>]]></description>
      <dc:date>2008-01-26T11:23:31+00:00</dc:date>
      <dc:creator>dhscompguy &amp;#x61;&amp;#116; yahoo &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12343">
      <title>DB_NestedSet: Bug 12343 [Open] getAllNodes performance suggestion</title>
      <link>http://pear.php.net/bugs/12343</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Bug
Reported by analgiins
2007-10-25T03:37:25+00:00
PHP: Irrelevant OS:  Package Version: 1.4.0RC1

Description:
------------
For example, I have 5 root nodes. To get all tree when _sortMode is NESE_SORT_PREORDER, getAllNodes execute 6 queries - one for getting all root nodes and then in cycle for each root node get sub branch. If we have ordering by NORDER then in lieu of can use only one query, which do sorting, also. 
Just join table to itself (it is needed for get root node for each node in list) and add two fields in order by clause, primary order by node root node NORDER and second order by node LEFT. This one query retrieves all tree with sorting by NORDER.
Here is function from my own NestedSet driver:

function getAllNodes($keepAsArray = false, $aliasFields = true, $addSQL = array())
{
	if ($this-&gt;_sortMode == NESE_SORT_PREORDER &amp;&amp; $this-&gt;secondarySort == $this-&gt;flparams['norder'] )
	{
		$nodeSet = array();
		$rootTableAlias = $this-&gt;node_table . '_root';
		$systemJoin = sprintf(&quot;LEFT JOIN %s AS %s ON %s.%s = %s.%s&quot;
								, $this-&gt;_quoteIdentifier($this-&gt;node_table), $rootTableAlias
								, $this-&gt;node_table, $this-&gt;flparams['rootid']
								, $rootTableAlias, $this-&gt;flparams['id']
						);
		$addSQL['join'] = !empty($addSQL['join']) ? $systemJoin . ' ' . $addSQL['join'] : $systemJoin ;
		$sql = sprintf('SELECT %s %s
						FROM %s
						%s
						%s
						%s
						ORDER BY %s.%s ASC, %s.%s ASC'
					// Select fields
						, $this-&gt;_getSelectFields($aliasFields), $this-&gt;_addSQL($addSQL, 'cols')
					// From
						, $this-&gt;node_table
					// Joins
						, $this-&gt;_addSQL($addSQL, 'join')
					// Where
						, $this-&gt;_addSQL($addSQL, 'where', 'WHERE')
					// Group by
						, $this-&gt;_addSQL($addSQL, 'append')
					// Order by
						, $rootTableAlias, $this-&gt;flparams['norder'], $this-&gt;node_table, $this-&gt;flparams['l']
					);
		
        if ($this-&gt;debug) {
			$this-&gt;_debugMessage('&lt;b&gt;getAllNodes() sql:&lt;/b&gt; ' . $sql . '&lt;br /&gt;sortMode == ' . $this-&gt;_sortMode);
		}
		
		if (!$this-&gt;_caching) {
            $nodeSet = $this-&gt;_processResultSet($sql, $keepAsArray, $aliasFields);
        } else {
            $nodeSet = $this-&gt;cache-&gt;call('DB_NestedSet-&gt;_processResultSet', $sql, $keepAsArray, $aliasFields);
        }

        if (!$this-&gt;_skipCallbacks &amp;&amp; isset($this-&gt;_hasListeners['nodeLoad'])) {
            // EVENT (nodeLoad)
            foreach (array_keys($nodeSet) as $key) {
                $this-&gt;triggerEvent('nodeLoad', $nodeSet[$key]);
            }
        }
        return $nodeSet;
	}
	else {
		$nodeSet = parent::getAllNodes($keepAsArray, $aliasFields, $addSQL);
		return $nodeSet;
	}
}</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Bug
Reported by analgiins
2007-10-25T03:37:25+00:00
PHP: Irrelevant OS:  Package Version: 1.4.0RC1

Description:
------------
For example, I have 5 root nodes. To get all tree when _sortMode is NESE_SORT_PREORDER, getAllNodes execute 6 queries - one for getting all root nodes and then in cycle for each root node get sub branch. If we have ordering by NORDER then in lieu of can use only one query, which do sorting, also. 
Just join table to itself (it is needed for get root node for each node in list) and add two fields in order by clause, primary order by node root node NORDER and second order by node LEFT. This one query retrieves all tree with sorting by NORDER.
Here is function from my own NestedSet driver:

function getAllNodes($keepAsArray = false, $aliasFields = true, $addSQL = array())
{
	if ($this-&gt;_sortMode == NESE_SORT_PREORDER &amp;&amp; $this-&gt;secondarySort == $this-&gt;flparams['norder'] )
	{
		$nodeSet = array();
		$rootTableAlias = $this-&gt;node_table . '_root';
		$systemJoin = sprintf(&quot;LEFT JOIN %s AS %s ON %s.%s = %s.%s&quot;
								, $this-&gt;_quoteIdentifier($this-&gt;node_table), $rootTableAlias
								, $this-&gt;node_table, $this-&gt;flparams['rootid']
								, $rootTableAlias, $this-&gt;flparams['id']
						);
		$addSQL['join'] = !empty($addSQL['join']) ? $systemJoin . ' ' . $addSQL['join'] : $systemJoin ;
		$sql = sprintf('SELECT %s %s
						FROM %s
						%s
						%s
						%s
						ORDER BY %s.%s ASC, %s.%s ASC'
					// Select fields
						, $this-&gt;_getSelectFields($aliasFields), $this-&gt;_addSQL($addSQL, 'cols')
					// From
						, $this-&gt;node_table
					// Joins
						, $this-&gt;_addSQL($addSQL, 'join')
					// Where
						, $this-&gt;_addSQL($addSQL, 'where', 'WHERE')
					// Group by
						, $this-&gt;_addSQL($addSQL, 'append')
					// Order by
						, $rootTableAlias, $this-&gt;flparams['norder'], $this-&gt;node_table, $this-&gt;flparams['l']
					);
		
        if ($this-&gt;debug) {
			$this-&gt;_debugMessage('&lt;b&gt;getAllNodes() sql:&lt;/b&gt; ' . $sql . '&lt;br /&gt;sortMode == ' . $this-&gt;_sortMode);
		}
		
		if (!$this-&gt;_caching) {
            $nodeSet = $this-&gt;_processResultSet($sql, $keepAsArray, $aliasFields);
        } else {
            $nodeSet = $this-&gt;cache-&gt;call('DB_NestedSet-&gt;_processResultSet', $sql, $keepAsArray, $aliasFields);
        }

        if (!$this-&gt;_skipCallbacks &amp;&amp; isset($this-&gt;_hasListeners['nodeLoad'])) {
            // EVENT (nodeLoad)
            foreach (array_keys($nodeSet) as $key) {
                $this-&gt;triggerEvent('nodeLoad', $nodeSet[$key]);
            }
        }
        return $nodeSet;
	}
	else {
		$nodeSet = parent::getAllNodes($keepAsArray, $aliasFields, $addSQL);
		return $nodeSet;
	}
}</pre>]]></description>
      <dc:date>2007-10-25T03:37:25+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12341">
      <title>DB_NestedSet: Bug 12341 [Open] Bug with root nodes</title>
      <link>http://pear.php.net/bugs/12341</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Bug
Reported by analgiins
2007-10-25T03:06:52+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 1.4.0RC1

Description:
------------
Clear table. Create one root node: root_1. For this node left (L) is 1 and right is 2. Everything is ok.
Create second root node: root_2. For this node L is 1 and R is 2 (the same as first). So, again everything is ok.
Now create one sub node under root_1, for example sub_node_1.

For root_1: L = 1, R = 4. Ok.
For sub_node_1: L = 2, R = 3. Ok.
For root_2: L = 1, R = 4. Not ok. root_2 doesn't hold any children so R for the root_2 must be 2.

I fix this bug in this way. In four funciton (createSubNode, createLeftNode, createRightNode, deleteNode) where are generating UPDATE queries wiht sprintf I remove checking for root nodes. In SQL part it's like:
    WHERE %s=%s,

but in sprintf arguments it's like
    $this-&gt;flparams['rootid'], $thisnode['rootid'],


In createSubNode - one Update query
In createLeftNode - two Update queries
In createRightNode - one Update query where comment are
    // Update all nodes which have dependent left and right values
And in deleteNode - one Update query where comment are
    // The node isn't a rootnode so close the gap

Kaspars Bizuns</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Bug
Reported by analgiins
2007-10-25T03:06:52+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 1.4.0RC1

Description:
------------
Clear table. Create one root node: root_1. For this node left (L) is 1 and right is 2. Everything is ok.
Create second root node: root_2. For this node L is 1 and R is 2 (the same as first). So, again everything is ok.
Now create one sub node under root_1, for example sub_node_1.

For root_1: L = 1, R = 4. Ok.
For sub_node_1: L = 2, R = 3. Ok.
For root_2: L = 1, R = 4. Not ok. root_2 doesn't hold any children so R for the root_2 must be 2.

I fix this bug in this way. In four funciton (createSubNode, createLeftNode, createRightNode, deleteNode) where are generating UPDATE queries wiht sprintf I remove checking for root nodes. In SQL part it's like:
    WHERE %s=%s,

but in sprintf arguments it's like
    $this-&gt;flparams['rootid'], $thisnode['rootid'],


In createSubNode - one Update query
In createLeftNode - two Update queries
In createRightNode - one Update query where comment are
    // Update all nodes which have dependent left and right values
And in deleteNode - one Update query where comment are
    // The node isn't a rootnode so close the gap

Kaspars Bizuns</pre>]]></description>
      <dc:date>2007-10-25T03:06:52+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12334">
      <title>DB_NestedSet: Feature/Change Request 12334 [Open] getChildren doesn't use parameter $forceNorder</title>
      <link>http://pear.php.net/bugs/12334</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T12:20:44+00:00
PHP: Irrelevant OS:  Package Version: 1.4.0RC1

Description:
------------
Function getChildren doesn't use parameter $forceNorder</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T12:20:44+00:00
PHP: Irrelevant OS:  Package Version: 1.4.0RC1

Description:
------------
Function getChildren doesn't use parameter $forceNorder</pre>]]></description>
      <dc:date>2009-04-24T11:18:24+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12332">
      <title>DB_NestedSet: Feature/Change Request 12332 [Open] Passing DB_NestedSet object instance in DB_NestedSet_Event</title>
      <link>http://pear.php.net/bugs/12332</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:52:56+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 1.4.0RC1

Description:
------------
In DB_NestedSet_Event method callEvent there is no access to DB_NestedSet object. It can be do just passing an object instance in place where event is executed, see function triggerEvent ( $val-&gt;callEvent($event, $node, $eparams); )
Need to change $val-&gt;callEvent($this, $event, $node, $eparams);</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:52:56+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 1.4.0RC1

Description:
------------
In DB_NestedSet_Event method callEvent there is no access to DB_NestedSet object. It can be do just passing an object instance in place where event is executed, see function triggerEvent ( $val-&gt;callEvent($event, $node, $eparams); )
Need to change $val-&gt;callEvent($this, $event, $node, $eparams);</pre>]]></description>
      <dc:date>2007-10-24T11:52:56+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12330">
      <title>DB_NestedSet: Feature/Change Request 12330 [Open] new function isLeaf</title>
      <link>http://pear.php.net/bugs/12330</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:41:33+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there was a function isLeaf

// {{{ isLeaf()
/**
 * Check if node by given id is leaf
 *
 * @access public
 * @param integer $id Id of node to check
 * @return bool True if node is leaf otherwise false
 */
function isLeaf($id)
{
	if ($this-&gt;debug){
		$this-&gt;_debugMessage('isLeaf($id)');
	}
	
	if (!($node = $this-&gt;pickNode($id, true))){
		$epr = array('isLeaf()', $id);
		return $this-&gt;_raiseError(NESE_ERROR_NOT_FOUND, PEAR_ERROR_TRIGGER, E_USER_NOTICE, $epr);
	}
	
	return ($node['r'] - $node['l']) == 1;
}
// }}}</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:41:33+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there was a function isLeaf

// {{{ isLeaf()
/**
 * Check if node by given id is leaf
 *
 * @access public
 * @param integer $id Id of node to check
 * @return bool True if node is leaf otherwise false
 */
function isLeaf($id)
{
	if ($this-&gt;debug){
		$this-&gt;_debugMessage('isLeaf($id)');
	}
	
	if (!($node = $this-&gt;pickNode($id, true))){
		$epr = array('isLeaf()', $id);
		return $this-&gt;_raiseError(NESE_ERROR_NOT_FOUND, PEAR_ERROR_TRIGGER, E_USER_NOTICE, $epr);
	}
	
	return ($node['r'] - $node['l']) == 1;
}
// }}}</pre>]]></description>
      <dc:date>2007-10-24T11:41:33+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12329">
      <title>DB_NestedSet: Feature/Change Request 12329 [Open] new function hasChildren</title>
      <link>http://pear.php.net/bugs/12329</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:38:38+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there was a function hasChildren like this:

// {{{ hasChildren()
/**
 * Check if node by given id has children
 *
 * @access public
 * @param integer $id Id of node to check
 * @return bool True if node has children otherwise false
 */
function hasChildren($id)
{
	if ($this-&gt;debug){
		$this-&gt;_debugMessage('hasChildren($id)');
	}
	
	if (!($node = $this-&gt;pickNode($id, true))){
		$epr = array('hasChildren()', $id);
		return $this-&gt;_raiseError(NESE_ERROR_NOT_FOUND, PEAR_ERROR_TRIGGER, E_USER_NOTICE, $epr);
	}
	
	return ($node['r'] - $node['l']) &gt; 1;
}
// }}}</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:38:38+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there was a function hasChildren like this:

// {{{ hasChildren()
/**
 * Check if node by given id has children
 *
 * @access public
 * @param integer $id Id of node to check
 * @return bool True if node has children otherwise false
 */
function hasChildren($id)
{
	if ($this-&gt;debug){
		$this-&gt;_debugMessage('hasChildren($id)');
	}
	
	if (!($node = $this-&gt;pickNode($id, true))){
		$epr = array('hasChildren()', $id);
		return $this-&gt;_raiseError(NESE_ERROR_NOT_FOUND, PEAR_ERROR_TRIGGER, E_USER_NOTICE, $epr);
	}
	
	return ($node['r'] - $node['l']) &gt; 1;
}
// }}}</pre>]]></description>
      <dc:date>2007-10-24T11:38:38+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12328">
      <title>DB_NestedSet: Feature/Change Request 12328 [Open] getBreadcrumbs</title>
      <link>http://pear.php.net/bugs/12328</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:35:17+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there was a function like getBreadcrumbs. Function getParents doesn't return node itself for wat a need to get breadcrumbs.</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:35:17+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there was a function like getBreadcrumbs. Function getParents doesn't return node itself for wat a need to get breadcrumbs.</pre>]]></description>
      <dc:date>2007-10-24T11:35:17+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12327">
      <title>DB_NestedSet: Feature/Change Request 12327 [Open] New functions</title>
      <link>http://pear.php.net/bugs/12327</link>
      <content:encoded><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:31:58+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there were functions getFirstSibling, getLastSibling, getPreviuosSibling (alias getPrevNode) and getNextSibling (alias getNextNode)</pre>]]></content:encoded>
      <description><![CDATA[<pre>DB_NestedSet Feature/Change Request
Reported by analgiins
2007-10-24T11:31:58+00:00
PHP: 5.2.3 OS:  Package Version: 1.4.0RC1

Description:
------------
It will be greate if there were functions getFirstSibling, getLastSibling, getPreviuosSibling (alias getPrevNode) and getNextSibling (alias getNextNode)</pre>]]></description>
      <dc:date>2007-10-24T11:31:58+00:00</dc:date>
      <dc:creator>k &amp;#x64;&amp;#111;&amp;#x74; bizuns &amp;#x61;&amp;#116; inbox &amp;#x64;&amp;#111;&amp;#x74; lv</dc:creator>
      <dc:subject>DB_NestedSet Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
