<?xml version="1.0" encoding="ISO-8859-1"?><!-- generator="wordpress/2.0.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: WP Plugin: Download Count</title>
	<link>http://mikaelb.net/2007/wp-plugin-download-count/</link>
	<description>PHP, MySQL, CSS, XHTML, JavaScript</description>
	<pubDate>Wed, 19 Nov 2008 03:38:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>

	<item>
		<title>by: Roman</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-20642</link>
		<pubDate>Thu, 06 Nov 2008 03:58:00 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-20642</guid>
					<description>Ready to argue with the themes of education-all. All the same, you can very well write about it</description>
		<content:encoded><![CDATA[<p>Ready to argue with the themes of education-all. All the same, you can very well write about it
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Malissa</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-20169</link>
		<pubDate>Mon, 27 Oct 2008 14:50:01 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-20169</guid>
					<description>Good post.</description>
		<content:encoded><![CDATA[<p>Good post.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mikael Brevik</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-5150</link>
		<pubDate>Thu, 20 Sep 2007 17:30:59 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-5150</guid>
					<description>Hey,

If you look beneeth the class you'll see
[php]
&lt; ?php
// Declare the class
$download = new Download ();

// Check the parent directory of the script, to only add filter when its not included.
$path = $_SERVER['SCRIPT_FILENAME'];
$path = str_replace($_SERVER['DOCUMENT_ROOT'], '', $path);

// Not add_filter when i include it in index.php in the download_trach directory
if(htmlentities($path) != 'download_track') {
	add_filter('the_content', array($download, 'insert_downloaded'));
	add_action('admin_head', array($download, 'add_css_admin') );
	add_action('admin_menu', array($download, 'add_pages' ) );
}
?&gt;
[/php]

If you change that to something like:

[php]
&lt; ?php
// Declare the class
$download = new Download ();

// Check the parent directory of the script, to only add filter when its not included.
$path = $_SERVER['SCRIPT_FILENAME'];
$path = str_replace($_SERVER['DOCUMENT_ROOT'], '', $path);

// Not add_filter when i include it in index.php in the download_trach directory
if(htmlentities($path) != 'download_track') {
	$content = $download-&gt;insert_downloaded($content);
}
?&gt;
[/php]

And it'll work without WP. Might need some other mods. If so, contact me and I'll help you out.


Good Luck!</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>If you look beneeth the class you'll see</p>
<div class="syntax_hilite">
<div id="php-1">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600;">&lt;?php</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9900; font-size: 0.9em; font-style: italic;">// Declare the class</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: red;">$download</span> = <span style="color:#006600;">new</span> Download <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;<span style="color:#FF9900; font-size: 0.9em; font-style: italic;">// Check the parent directory of the script, to only add filter when its not included.</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: red;">$path</span> = <span style="color: red;">$_SERVER</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">'SCRIPT_FILENAME'</span><span style="color:#006600; font-weight:bold;">&#93;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: red;">$path</span> = <a href="http://www.php.net/str_replace"><span style="color:#0000FF;">str_replace</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$_SERVER</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">'DOCUMENT_ROOT'</span><span style="color:#006600; font-weight:bold;">&#93;</span>, <span style="color:#CC0000;">''</span>, <span style="color: red;">$path</span><span style="color:#006600; font-weight:bold;">&#41;</span>;&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;<span style="color:#FF9900; font-size: 0.9em; font-style: italic;">// Not add_filter when i include it in index.php in the download_trach directory</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#03B903;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span><a href="http://www.php.net/htmlentities"><span style="color:#0000FF;">htmlentities</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$path</span><span style="color:#006600; font-weight:bold;">&#41;</span> != <span style="color:#CC0000;">'download_track'</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; add_filter<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'the_content'</span>, <a href="http://www.php.net/array"><span style="color:#0000FF;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$download</span>, <span style="color:#CC0000;">'insert_downloaded'</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; add_action<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'admin_head'</span>, <a href="http://www.php.net/array"><span style="color:#0000FF;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$download</span>, <span style="color:#CC0000;">'add_css_admin'</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; add_action<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'admin_menu'</span>, <a href="http://www.php.net/array"><span style="color:#0000FF;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$download</span>, <span style="color:#CC0000;">'add_pages'</span> <span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>If you change that to something like:</p>
<p>
<div class="syntax_hilite">
<div id="php-2">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600;">&lt;?php</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9900; font-size: 0.9em; font-style: italic;">// Declare the class</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: red;">$download</span> = <span style="color:#006600;">new</span> Download <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;<span style="color:#FF9900; font-size: 0.9em; font-style: italic;">// Check the parent directory of the script, to only add filter when its not included.</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: red;">$path</span> = <span style="color: red;">$_SERVER</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">'SCRIPT_FILENAME'</span><span style="color:#006600; font-weight:bold;">&#93;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: red;">$path</span> = <a href="http://www.php.net/str_replace"><span style="color:#0000FF;">str_replace</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$_SERVER</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">'DOCUMENT_ROOT'</span><span style="color:#006600; font-weight:bold;">&#93;</span>, <span style="color:#CC0000;">''</span>, <span style="color: red;">$path</span><span style="color:#006600; font-weight:bold;">&#41;</span>;&lt;/p&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p&gt;<span style="color:#FF9900; font-size: 0.9em; font-style: italic;">// Not add_filter when i include it in index.php in the download_trach directory</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#03B903;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span><a href="http://www.php.net/htmlentities"><span style="color:#0000FF;">htmlentities</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$path</span><span style="color:#006600; font-weight:bold;">&#41;</span> != <span style="color:#CC0000;">'download_track'</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: red;">$content</span> = <span style="color: red;">$download</span>-&gt;<span style="color:#0000FF;">insert_downloaded</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: red;">$content</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#000000; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>And it'll work without <acronym title="WordPress">WP</acronym>. Might need some other mods. If so, contact me and I'll help you out.</p>
<p>Good Luck!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: bonefied</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-5148</link>
		<pubDate>Thu, 20 Sep 2007 13:22:48 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-5148</guid>
					<description>I am looking to do this as a self contained function to use outside of WordPress. What would be the function to count the times a zip file is accessed?</description>
		<content:encoded><![CDATA[<p>I am looking to do this as a self contained function to use outside of WordPress. What would be the function to count the times a zip file is accessed?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mikael Brevik</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-3449</link>
		<pubDate>Tue, 12 Jun 2007 01:04:14 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-3449</guid>
					<description>I replyed your e-mail, and hope it's working out for you.

To all: Remember to check the directory configuration.</description>
		<content:encoded><![CDATA[<p>I replyed your e-mail, and hope it's working out for you.</p>
<p>To all: Remember to check the directory configuration.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ian</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-3442</link>
		<pubDate>Mon, 11 Jun 2007 18:47:57 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-3442</guid>
					<description>Hi, I'm having the same problem as BlueDevil... can you help? :)</description>
		<content:encoded><![CDATA[<p>Hi, I'm having the same problem as BlueDevil... can you help? :)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: WP Plugins DB &#187; Blog Archive &#187; Download Count</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-3053</link>
		<pubDate>Sun, 20 May 2007 07:57:20 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-3053</guid>
					<description>[...] Visit [...]</description>
		<content:encoded><![CDATA[<p>[...] Visit [...]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mikael Brevik</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2728</link>
		<pubDate>Wed, 25 Apr 2007 12:55:54 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2728</guid>
					<description>Vell, det burde kanskje vært nevnt at det ikke skal være noe mellomrom nei. Det ble skrevet i bloggen for å unngå at plugin skal slå seg inn. Men, ja. Kan føre opp det i teksten nå.</description>
		<content:encoded><![CDATA[<p>Vell, det burde kanskje vært nevnt at det ikke skal være noe mellomrom nei. Det ble skrevet i bloggen for å unngå at plugin skal slå seg inn. Men, ja. Kan føre opp det i teksten nå.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Magnus Gule</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2723</link>
		<pubDate>Tue, 24 Apr 2007 21:02:33 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2723</guid>
					<description>Merk at det ikke skal være noe mellomrom imellom første hakeparentes ( [ ) som det er vist i Readme.txt og guiden her: 

&lt;strong&gt;[ &lt;/strong&gt;link:FILE] =&amp;#62; Add file and get the link.
&lt;strong&gt;[ &lt;/strong&gt;print_dl_list] =&amp;#62; Get the list of all files, and the count
&lt;strong&gt;[ &lt;/strong&gt;downloaded:FILE] =&amp;#62; Get the count of downloaded-times.

Fant ikke feilen med en gang, men det var jo selvsagt logisk at det ikke skal finnes noe mellomrom.

English: Notice that's there's not supposed to be any space between the first [ and the rest of the code-syntax.</description>
		<content:encoded><![CDATA[<p>Merk at det ikke skal være noe mellomrom imellom første hakeparentes ( [ ) som det er vist i Readme.txt og guiden her: </p>
<p><strong>[ </strong>link:FILE] =&gt; Add file and get the link.<br />
<strong>[ </strong>print_dl_list] =&gt; Get the list of all files, and the count<br />
<strong>[ </strong>downloaded:FILE] =&gt; Get the count of downloaded-times.</p>
<p>Fant ikke feilen med en gang, men det var jo selvsagt logisk at det ikke skal finnes noe mellomrom.</p>
<p>English: Notice that's there's not supposed to be any space between the first [ and the rest of the code-syntax.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mikael Brevik</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2568</link>
		<pubDate>Thu, 12 Apr 2007 16:51:11 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2568</guid>
					<description>An e-mail is sent, and we'll find a answare for this. 
Two possible errors:
 - Wrong path.
 - MySQL error.</description>
		<content:encoded><![CDATA[<p>An e-mail is sent, and we'll find a answare for this.<br />
Two possible errors:<br />
 - Wrong path.<br />
 - MySQL error.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: BlueDeviL</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2566</link>
		<pubDate>Thu, 12 Apr 2007 14:09:20 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-2566</guid>
					<description>dude it is a good plugin
but in my wordpress it doesnt work!!!
i did what you said above all the thing 
i have a static dir.
but it doesnt work!!
it says there is not such a file but it is?
i cant undertake the situation dude??</description>
		<content:encoded><![CDATA[<p>dude it is a good plugin<br />
but in my wordpress it doesnt work!!!<br />
i did what you said above all the thing<br />
i have a static dir.<br />
but it doesnt work!!<br />
it says there is not such a file but it is?<br />
i cant undertake the situation dude??
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mikael Brevik</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1651</link>
		<pubDate>Wed, 31 Jan 2007 13:10:06 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1651</guid>
					<description>Hey!

Yes, it also works in pages. All input submittet by post or pages.</description>
		<content:encoded><![CDATA[<p>Hey!</p>
<p>Yes, it also works in pages. All input submittet by post or pages.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: skridge</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1648</link>
		<pubDate>Wed, 31 Jan 2007 03:40:53 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1648</guid>
					<description>you say it only works in posts... does it work with pages?  all my filles are set up in pages.</description>
		<content:encoded><![CDATA[<p>you say it only works in posts... does it work with pages?  all my filles are set up in pages.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mikael Brevik</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1564</link>
		<pubDate>Sun, 14 Jan 2007 14:19:46 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1564</guid>
					<description>Hepp!

Det kan du selvfølgelig gjøre...
Foreløpig bruker jeg &lt;a href=&quot;http://wordpress.org/support/topic/10533&quot; title=&quot;iG:Syntax Hiliter Plugin&quot; rel=&quot;nofollow&quot;&gt;iG:Syntax Hiliter Plugin&lt;/a&gt;, men spørs om jeg kommer til å lage min egen en dag. Noe jeg ikke liker helt ved highlightern. Blant annet at instillingene resetter seg hele tiden.</description>
		<content:encoded><![CDATA[<p>Hepp!</p>
<p>Det kan du selvfølgelig gjøre...<br />
Foreløpig bruker jeg <a href="http://wordpress.org/support/topic/10533" title="iG:Syntax Hiliter Plugin" rel="nofollow">iG:Syntax Hiliter Plugin</a>, men spørs om jeg kommer til å lage min egen en dag. Noe jeg ikke liker helt ved highlightern. Blant annet at instillingene resetter seg hele tiden.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Hans-Kristian</title>
		<link>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1562</link>
		<pubDate>Sun, 14 Jan 2007 12:03:42 +0000</pubDate>
		<guid>http://mikaelb.net/2007/wp-plugin-download-count/#comment-1562</guid>
					<description>Ser bra ut, har dog ikke fått testet det ut enda.

Men er det lov å spørre hvilken syntax highlight plugin du bruker?</description>
		<content:encoded><![CDATA[<p>Ser bra ut, har dog ikke fått testet det ut enda.</p>
<p>Men er det lov å spørre hvilken syntax highlight plugin du bruker?
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
