<?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 on: Developer Formatter</title>
	<atom:link href="http://projects.pro.br/gsaraiva/developer-formatter/feed/" rel="self" type="application/rss+xml" />
	<link>http://projects.pro.br/gsaraiva</link>
	<description>Step by step</description>
	<lastBuildDate>Sun, 30 Aug 2009 01:10:08 -0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ViruSoul</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-3695</link>
		<dc:creator>ViruSoul</dc:creator>
		<pubDate>Sun, 30 Aug 2009 01:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-3695</guid>
		<description>Thanks for a wonderful Plug-in (-:
but in FAQ you must add about changing permissions for geshi folder (-:

-ViruSoul</description>
		<content:encoded><![CDATA[<p>Thanks for a wonderful Plug-in (-:<br />
but in FAQ you must add about changing permissions for geshi folder (-:</p>
<p>-ViruSoul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnny</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-2290</link>
		<dc:creator>johnny</dc:creator>
		<pubDate>Fri, 23 Jan 2009 06:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-2290</guid>
		<description>I&#039;m using devformatter 2009.0.1.14.  Thanks for the useful plugin.

Some thoughts:
1. I ran into this when moving wp-content outside the siteurl.  Since 2.6, WP_PLUGINS_URL is a better method for determining plugin directory rather than get_option(&#039;siteurl&#039;) in devformatter.php at line 17.

2. Some themes, iNove in particular, like to add a background-image to pre tags.  It would be a good idea to set the main containers to have no background-image for the default values.  Though thanks for making this setting easily editable.

3. While I eventually found the configuration panel in the admin interface, it would be useful to document which heading is used to find the settings.  (I might just be a newbie though.)

4. While having all of the documentation for geshi is useful, it might be useful to trim some of the developer oriented documentation.

Thanks again for the plugin.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using devformatter 2009.0.1.14.  Thanks for the useful plugin.</p>
<p>Some thoughts:<br />
1. I ran into this when moving wp-content outside the siteurl.  Since 2.6, WP_PLUGINS_URL is a better method for determining plugin directory rather than get_option(&#8217;siteurl&#8217;) in devformatter.php at line 17.</p>
<p>2. Some themes, iNove in particular, like to add a background-image to pre tags.  It would be a good idea to set the main containers to have no background-image for the default values.  Though thanks for making this setting easily editable.</p>
<p>3. While I eventually found the configuration panel in the admin interface, it would be useful to document which heading is used to find the settings.  (I might just be a newbie though.)</p>
<p>4. While having all of the documentation for geshi is useful, it might be useful to trim some of the developer oriented documentation.</p>
<p>Thanks again for the plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wzrd</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-2162</link>
		<dc:creator>wzrd</dc:creator>
		<pubDate>Sun, 11 Jan 2009 20:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-2162</guid>
		<description>Hi there, thanks for this mod, really needed.
After installation i have this error when i go to the settings&gt;Devformatter
:
Warning: Invalid argument supplied for foreach() in /fullpath/wp-content/plugins/devformatter/devinterface.php on line 79

How to fix it?
I&#039;m using WordPress version 2.6.3
Thanks in advance :)</description>
		<content:encoded><![CDATA[<p>Hi there, thanks for this mod, really needed.<br />
After installation i have this error when i go to the settings&gt;Devformatter<br />
:<br />
Warning: Invalid argument supplied for foreach() in /fullpath/wp-content/plugins/devformatter/devinterface.php on line 79</p>
<p>How to fix it?<br />
I&#8217;m using WordPress version 2.6.3<br />
Thanks in advance <img src='http://projects.pro.br/gsaraiva/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crusty Applesniffer</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-1338</link>
		<dc:creator>Crusty Applesniffer</dc:creator>
		<pubDate>Mon, 10 Nov 2008 14:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-1338</guid>
		<description>It&#039;s me again...
I&#039;ve parsed your code and I think the problem is in String.prototype.pad (devfmt_common.js file)

I&#039;m not very fluent in javascript but I think changing this method as follow could fix the bug.
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #006600; font-style: italic;">/*</span></li><li><span style="color: #006600; font-style: italic;">String.prototype.pad = function(l, s, t){</span></li><li><span style="color: #006600; font-style: italic;">	return s || (s = &quot; &quot;), (l -= this.length) &amp;gt; 0 ? (s = new Array(Math.ceil(l / s.length)</span></li><li><span style="color: #006600; font-style: italic;">		+ 1).join(s)).substr(0, t = !t ? l : t == 1 ? 0 : Math.ceil(l / 2))</span></li><li><span style="color: #006600; font-style: italic;">		+ this + s.substr(0, l - t) : this;</span></li><li><span style="color: #006600; font-style: italic;">}</span></li><li><span style="color: #006600; font-style: italic;">*/</span></li><li>String.<span style="color: #660066;">prototype</span>.<span style="color: #660066;">pad</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>l<span style="color: #339933;">,</span> s<span style="color: #339933;">,</span> t<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>	tmp<span style="color: #339933;">=</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">;</span></li><li>	<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>tmp.<span style="color: #660066;">length</span><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>l<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>		tmp<span style="color: #339933;">=</span>s<span style="color: #339933;">+</span>tmp<span style="color: #339933;">;</span></li><li>	<span style="color: #009900;">&#125;</span></li><li>	<span style="color: #000066; font-weight: bold;">return</span> tmp<span style="color: #339933;">;</span></li><li><span style="color: #009900;">&#125;</span></li><li></li></ol></div></pre><!--END_DEVFMTCODE-->

I hope it will help :)</description>
		<content:encoded><![CDATA[<p>It&#8217;s me again&#8230;<br />
I&#8217;ve parsed your code and I think the problem is in String.prototype.pad (devfmt_common.js file)</p>
<p>I&#8217;m not very fluent in javascript but I think changing this method as follow could fix the bug.<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #006600; font-style: italic;">/*</span></li><li><span style="color: #006600; font-style: italic;">String.prototype.pad = function(l, s, t){</span></li><li><span style="color: #006600; font-style: italic;">	return s || (s = &quot; &quot;), (l -= this.length) &amp;gt; 0 ? (s = new Array(Math.ceil(l / s.length)</span></li><li><span style="color: #006600; font-style: italic;">		+ 1).join(s)).substr(0, t = !t ? l : t == 1 ? 0 : Math.ceil(l / 2))</span></li><li><span style="color: #006600; font-style: italic;">		+ this + s.substr(0, l - t) : this;</span></li><li><span style="color: #006600; font-style: italic;">}</span></li><li><span style="color: #006600; font-style: italic;">*/</span></li><li>String.<span style="color: #660066;">prototype</span>.<span style="color: #660066;">pad</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>l<span style="color: #339933;">,</span> s<span style="color: #339933;">,</span> t<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>	tmp<span style="color: #339933;">=</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">;</span></li><li>	<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>tmp.<span style="color: #660066;">length</span><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>l<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>		tmp<span style="color: #339933;">=</span>s<span style="color: #339933;">+</span>tmp<span style="color: #339933;">;</span></li><li>	<span style="color: #009900;">&#125;</span></li><li>	<span style="color: #000066; font-weight: bold;">return</span> tmp<span style="color: #339933;">;</span></li><li><span style="color: #009900;">&#125;</span></li><li></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>I hope it will help <img src='http://projects.pro.br/gsaraiva/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crusty Applesniffer</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-1337</link>
		<dc:creator>Crusty Applesniffer</dc:creator>
		<pubDate>Mon, 10 Nov 2008 10:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-1337</guid>
		<description>There is a bug when code contains more than 99 lines (line count is 010, 020, 030, 040, 050, 060, 070, 080, 090, 010, 110, 120, ...)</description>
		<content:encoded><![CDATA[<p>There is a bug when code contains more than 99 lines (line count is 010, 020, 030, 040, 050, 060, 070, 080, 090, 010, 110, 120, &#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-984</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Sat, 18 Oct 2008 19:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-984</guid>
		<description>Hi! I think this is a great plugin. It&#039;s actually the only one that doesn&#039;t interfere with the wysiwyg editor in Wordpress 2.6.2. Unfortunately I have a problem with the position the code is pasted in the editor, it is always on the top of the page and not on the cursors position. Is this a known problem?</description>
		<content:encoded><![CDATA[<p>Hi! I think this is a great plugin. It&#8217;s actually the only one that doesn&#8217;t interfere with the wysiwyg editor in Wordpress 2.6.2. Unfortunately I have a problem with the position the code is pasted in the editor, it is always on the top of the page and not on the cursors position. Is this a known problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP GUY</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-781</link>
		<dc:creator>PHP GUY</dc:creator>
		<pubDate>Tue, 23 Sep 2008 03:47:21 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-781</guid>
		<description>I have noticed in Word Press 2.6.2 when I add PHP source code to an post, and save it as a draft then try to edit it later, the text editor in word press removes some of my code.  Is there anyway to stop this ?</description>
		<content:encoded><![CDATA[<p>I have noticed in Word Press 2.6.2 when I add PHP source code to an post, and save it as a draft then try to edit it later, the text editor in word press removes some of my code.  Is there anyway to stop this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-337</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Wed, 20 Aug 2008 10:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-337</guid>
		<description>Hi! You should have a contact page or anything easy for contact with you.
I sent the next to geshi-devel@lists.sourceforge.net but it was not accepted:

* There is a bug in: **

because the language attribute is deprecated.

It should be used: **

* When it&#039;s activated, my blog shows the next error:
Fatal error: Function name must be a string in /path/to/my/wordpress/wp-content/plugins/devformatter/devformatter.php on line 850


Greetings!</description>
		<content:encoded><![CDATA[<p>Hi! You should have a contact page or anything easy for contact with you.<br />
I sent the next to <a href="mailto:geshi-devel@lists.sourceforge.net">geshi-devel@lists.sourceforge.net</a> but it was not accepted:</p>
<p>* There is a bug in: **</p>
<p>because the language attribute is deprecated.</p>
<p>It should be used: **</p>
<p>* When it&#8217;s activated, my blog shows the next error:<br />
Fatal error: Function name must be a string in /path/to/my/wordpress/wp-content/plugins/devformatter/devformatter.php on line 850</p>
<p>Greetings!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-319</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Mon, 18 Aug 2008 20:23:22 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-319</guid>
		<description>Hi again!

Whatever you did from version 2008.0.1.3 to 2008.0.1.4 -- it works very well.
Thanks for reacting to my request so quickly!

Cheers</description>
		<content:encoded><![CDATA[<p>Hi again!</p>
<p>Whatever you did from version 2008.0.1.3 to 2008.0.1.4 &#8212; it works very well.<br />
Thanks for reacting to my request so quickly!</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-306</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 15 Aug 2008 14:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-306</guid>
		<description>Hi!

DevFormatter seems to be what I need, thanks for your work on this.
I have noticed that in your last example the grey background (behind the devcodetools) does not grow to the right as far as the scrollable window goes. How would I go about setting it to the same width?

Cheers</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>DevFormatter seems to be what I need, thanks for your work on this.<br />
I have noticed that in your last example the grey background (behind the devcodetools) does not grow to the right as far as the scrollable window goes. How would I go about setting it to the same width?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>
