<?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: Syntax Highlighter plugin for WordPress-MU</title>
	<atom:link href="http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/</link>
	<description>Blogging, WordPress MU, monetization, tips, how to and reviews</description>
	<lastBuildDate>Thu, 18 Feb 2010 10:20:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Useful WordPress Resources &#124; Bui4Ever &#124; Bui4Ever.com</title>
		<link>http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/comment-page-1/#comment-25927</link>
		<dc:creator>Useful WordPress Resources &#124; Bui4Ever &#124; Bui4Ever.com</dc:creator>
		<pubDate>Wed, 23 Dec 2009 20:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/#comment-25927</guid>
		<description>[...] Syntax Code Highlighter [...]</description>
		<content:encoded><![CDATA[<p>[...] Syntax Code Highlighter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: muan</title>
		<link>http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/comment-page-1/#comment-8917</link>
		<dc:creator>muan</dc:creator>
		<pubDate>Mon, 20 Oct 2008 17:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/#comment-8917</guid>
		<description>can do support for ActionScript? its like Java</description>
		<content:encoded><![CDATA[<p>can do support for ActionScript? its like Java</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elad</title>
		<link>http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/comment-page-1/#comment-3309</link>
		<dc:creator>Elad</dc:creator>
		<pubDate>Sun, 18 May 2008 04:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/#comment-3309</guid>
		<description>Yes please, do send over the code to:
elad dot salomons at gmail dot com</description>
		<content:encoded><![CDATA[<p>Yes please, do send over the code to:<br />
elad dot salomons at gmail dot com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Agus SA</title>
		<link>http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/comment-page-1/#comment-3307</link>
		<dc:creator>Agus SA</dc:creator>
		<pubDate>Sun, 18 May 2008 02:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/#comment-3307</guid>
		<description>In my alternatif, you can change /add some code ini syntaxPost function and syntaxFooter

in syntaxPost function,
1. Add global variable just below $IsCodeInPost variable, define as array of codetype, and initilize to zero (0). like below:

global $CodeType;

$CodeType = array (&quot;cpp&quot;=&gt; 0, &quot;csharp&quot;=&gt;0, &quot;css&quot; =&gt; 0, &quot;delphi&quot; =&gt; 0,&quot;java&quot;=&gt;0, &quot;jscript&quot; =&gt; 0, &quot;php&quot;=&gt; 0, &quot;python&quot;=&gt;0, &quot;ruby&quot; =&gt; 0, &quot;sql&quot; =&gt; 0, &quot;vb&quot;=&gt; 0, &quot;xml&quot; =&gt; 0);

	
2. In loop to search/replace [source] add the following code to set the CodeType match to 1

foreach( $theSources[2] as $sourceID =&gt; $sourceBlock ) {
   $theBrush= ......
.		
   $CodeType[$theBrush] = 1;
}

in syntaxFooter: check if $CodeType[&quot;vb&quot;] if its value is 1 then include shBrushVb.js and none otherwise.

ok, hope this help. 
i have practiced it in my pemikiran.com, i will send the modified code if you like.</description>
		<content:encoded><![CDATA[<p>In my alternatif, you can change /add some code ini syntaxPost function and syntaxFooter</p>
<p>in syntaxPost function,<br />
1. Add global variable just below $IsCodeInPost variable, define as array of codetype, and initilize to zero (0). like below:</p>
<p>global $CodeType;</p>
<p>$CodeType = array (&#8220;cpp&#8221;=&gt; 0, &#8220;csharp&#8221;=&gt;0, &#8220;css&#8221; =&gt; 0, &#8220;delphi&#8221; =&gt; 0,&#8221;java&#8221;=&gt;0, &#8220;jscript&#8221; =&gt; 0, &#8220;php&#8221;=&gt; 0, &#8220;python&#8221;=&gt;0, &#8220;ruby&#8221; =&gt; 0, &#8220;sql&#8221; =&gt; 0, &#8220;vb&#8221;=&gt; 0, &#8220;xml&#8221; =&gt; 0);</p>
<p>2. In loop to search/replace [source] add the following code to set the CodeType match to 1</p>
<p>foreach( $theSources[2] as $sourceID =&gt; $sourceBlock ) {<br />
   $theBrush= &#8230;&#8230;<br />
.<br />
   $CodeType[$theBrush] = 1;<br />
}</p>
<p>in syntaxFooter: check if $CodeType["vb"] if its value is 1 then include shBrushVb.js and none otherwise.</p>
<p>ok, hope this help.<br />
i have practiced it in my pemikiran.com, i will send the modified code if you like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elad</title>
		<link>http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/comment-page-1/#comment-3300</link>
		<dc:creator>Elad</dc:creator>
		<pubDate>Sat, 17 May 2008 14:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ringofblogs.com/2007/09/22/syntax-highlighter-plugin-for-wordpress-mu/#comment-3300</guid>
		<description>Agus, thanks, I&#039;m aware of this issue and would like to solve it but still didn&#039;t find the correct way - any suggestions?</description>
		<content:encoded><![CDATA[<p>Agus, thanks, I&#8217;m aware of this issue and would like to solve it but still didn&#8217;t find the correct way &#8211; any suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
