<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Evolve</title>
	<atom:link href="http://evolve.crazytje.be/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolve.crazytje.be</link>
	<description>A PhpDocumentor Template</description>
	<lastBuildDate>Fri, 15 Jul 2011 05:31:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Documentation by Márcio Almada</title>
		<link>http://evolve.crazytje.be/documentation/#comment-158</link>
		<dc:creator>Márcio Almada</dc:creator>
		<pubDate>Fri, 15 Jul 2011 05:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.crazytest.be/?page_id=7#comment-158</guid>
		<description>It might be a noob question, but how can I install this template in my phpDocumentor?</description>
		<content:encoded><![CDATA[<p>It might be a noob question, but how can I install this template in my phpDocumentor?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s Evolve? by Lea Hayes</title>
		<link>http://evolve.crazytje.be/about/#comment-153</link>
		<dc:creator>Lea Hayes</dc:creator>
		<pubDate>Fri, 01 Jul 2011 22:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.crazytest.be/?page_id=2#comment-153</guid>
		<description>Hello, I have just come across your templates and am impressed.

How easy/feasible would it be to have  sub-packages behave slightly differently in the left-pane?

Given the following:
@package MyApp
@subpackage Module.Special

I would like the following tree:
+ MyApp
--+ Module
----+ Special

Many thanks!</description>
		<content:encoded><![CDATA[<p>Hello, I have just come across your templates and am impressed.</p>
<p>How easy/feasible would it be to have  sub-packages behave slightly differently in the left-pane?</p>
<p>Given the following:<br />
@package MyApp<br />
@subpackage Module.Special</p>
<p>I would like the following tree:<br />
+ MyApp<br />
&#8211;+ Module<br />
&#8212;-+ Special</p>
<p>Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s Evolve? by Dave</title>
		<link>http://evolve.crazytje.be/about/#comment-101</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 05 May 2011 03:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.crazytest.be/?page_id=2#comment-101</guid>
		<description>This is nice but it would be better if you were able to link to a certain part of the documentation, like a particular class method. Right now the links like &quot;http://evolve.crazytje.be/demo/#getEvent&quot; can&#039;t be sent to someone to point out a particular method.</description>
		<content:encoded><![CDATA[<p>This is nice but it would be better if you were able to link to a certain part of the documentation, like a particular class method. Right now the links like &#8220;http://evolve.crazytje.be/demo/#getEvent&#8221; can&#8217;t be sent to someone to point out a particular method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download by David Artiss</title>
		<link>http://evolve.crazytje.be/download/#comment-98</link>
		<dc:creator>David Artiss</dc:creator>
		<pubDate>Wed, 04 May 2011 19:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.crazytest.be/?page_id=5#comment-98</guid>
		<description>I&#039;ve tried placing the unzipped folder in the above folder structure but the template doesn&#039;t appear in phpDocumentor.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried placing the unzipped folder in the above folder structure but the template doesn&#8217;t appear in phpDocumentor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download by Raphael Horber</title>
		<link>http://evolve.crazytje.be/download/#comment-64</link>
		<dc:creator>Raphael Horber</dc:creator>
		<pubDate>Fri, 15 Apr 2011 08:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://evolve.crazytest.be/?page_id=5#comment-64</guid>
		<description>Hello

First of all, that&#039;s a great template :). Thank you very much.

I had a problem with inline links and methods ({@link}). They didn&#039;t work, so I changed some things:
function.tpl:
&lt;code&gt;
&lt;!-- remove the link on the line 2, and change the div on the new line 2 --&gt;
&lt;div class=&quot;{cycle values=&quot;evenrow,oddrow&quot;}&quot; id=&quot;{$functions[func].function_dest}&quot;&gt;
&lt;/code&gt;
method.tpl
&lt;code&gt;
&lt;!-- remove the link on the line 4, and change the div on the new line 4 --&gt;
&lt;div class=&quot;{cycle values=&quot;evenrow,oddrow&quot;}&quot; id=&quot;{$methods[methods].method_dest}&quot;&gt;
&lt;!-- same story on new line 78, remove the link, and change the div --&gt;
&lt;div class=&quot;{cycle values=&quot;evenrow,oddrow&quot;}&quot; id=&quot;{$methods[methods].method_dest}&quot;&gt;
&lt;/code&gt;
Because of that changes, the method list wouldn&#039;t work, so change the class.tpl too:
&lt;code&gt;
&lt;!-- on the line 258 change the href --&gt;
&lt;a href=&quot;#{$methods[methods].method_dest}&quot; title=&quot;details&quot; ...
&lt;!-- and on the line 247 --&gt;
&lt;a href=&quot;#{$methods[methods].method_dest}&quot; title=&quot;details&quot; ...
&lt;/code&gt;

Hope this could help somebody too.

Greetings.</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>First of all, that&#8217;s a great template <img src='http://evolve.crazytje.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Thank you very much.</p>
<p>I had a problem with inline links and methods ({@link}). They didn&#8217;t work, so I changed some things:<br />
function.tpl:<br />
<code><br />
&lt;!-- remove the link on the line 2, and change the div on the new line 2 --&gt;<br />
&lt;div class="{cycle values="evenrow,oddrow"}" id="{$functions[func].function_dest}"&gt;<br />
</code><br />
method.tpl<br />
<code><br />
&lt;!-- remove the link on the line 4, and change the div on the new line 4 --&gt;<br />
&lt;div class="{cycle values="evenrow,oddrow"}" id="{$methods[methods].method_dest}"&gt;<br />
&lt;!-- same story on new line 78, remove the link, and change the div --&gt;<br />
&lt;div class="{cycle values="evenrow,oddrow"}" id="{$methods[methods].method_dest}"&gt;<br />
</code><br />
Because of that changes, the method list wouldn&#8217;t work, so change the class.tpl too:<br />
<code><br />
&lt;!-- on the line 258 change the href --&gt;<br />
&lt;a href="#{$methods[methods].method_dest}" title="details" ...<br />
&lt;!-- and on the line 247 --&gt;<br />
&lt;a href="#{$methods[methods].method_dest}" title="details" ...<br />
</code></p>
<p>Hope this could help somebody too.</p>
<p>Greetings.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

