<?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: MODx Evolution: Creating a Simple Custom Snippet Part 3 &#8211; MODx API, Placeholders, Chunks</title>
	<atom:link href="http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/feed/" rel="self" type="application/rss+xml" />
	<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/</link>
	<description>Programming blog - Discussions, Tutorials, Resources</description>
	<lastBuildDate>Wed, 08 Feb 2012 00:37:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Abner</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-10650</link>
		<dc:creator>Abner</dc:creator>
		<pubDate>Tue, 08 Feb 2011 02:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-10650</guid>
		<description>Hi Mary! I found a solution and as I told you,here it goes in case you would like to look at it:
Chunk: myrssChunk

&lt;li class=&quot;feedfetcher&quot;&gt;&lt;a class=&#039;feedfetcher&#039;
href=&quot;[+fflink+]&quot;
title=&#039;[+fftitle+]&#039;&gt;[+fftitle+]&lt;/a&gt;&lt;/li&gt;

Chunk: rssOutTpl
&lt;ol&gt;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [+rows+]
&lt;/ol&gt;


Snippets
[!RSSFetchFeed!]
&lt;?php
$RSSFetchFeed_base =
$modx-&gt;config[&#039;base_path&#039;].&#039;assets/snippets/RSSFetchFeed/&#039;;
include_once $RSSFetchFeed_base . &#039;RSSFetchFeed.inc.php&#039;;
if (class_exists(&#039;RSSFeed&#039;))
&#160;&#160;&#160; $rss = new RSSFeed;
else
&#160;&#160;&#160; return &#039;La clase no existe&#039;;
// limit existe?
$limit = (isset($limit))? $limit : 10;
// Se definió chunk CSS o uso el default?
//default parameter values
$cssStyle = (isset($cssChunk)) ? $modx-&gt;getChunk($cssChunk) :
file_get_contents($RSSFetchFeed_base.&#039;Defaultstyle.css&#039;);
$tplChunk = (!isset($tplChunk)) ? &#039;rssfeedFetchertpl&#039;: $tplChunk ;
$outTpl = isset($outTpl) ? $outTpl : &#039;&#039;;
//Inject the CSS code into the head section
$modx-&gt;regClientCSS($cssStyle);

// Argumento URL?
if (isset($URL))
&#160;&#160;&#160; {
&#160;&#160;&#160; &#160;&#160;&#160; $URL=
str_replace(array(&#039;&#124;xq&#124;&#039;,&#039;&#124;xe&#124;&#039;,&#039;&#124;xa&#124;&#039;), array(&#039;?&#039;,&#039;=&#039;,&#039;&amp;&#039;), $URL);
&#160;&#160;&#160; &#160;&#160;&#160; $output=$rss-&gt;FetchFeed($URL,
$limit, $tplChunk,$outTpl);
&#160;&#160;&#160; }
else
&#160;&#160;&#160; $output = &#039;y la URL?&#039;;
return $output;
?&gt;

RSSFetchFeed.inc.php
&lt;?php
class RSSFeed {&#160;&#160;&#160; 
&#160;&#160;&#160; function fetchFeed($feed_url,$limit,$Chunk,$outTpl)
&#160;&#160;&#160; &#160;{
&#160;&#160;&#160; &#160;&#160;&#160;&#160; global $modx;
&#160;&#160;&#160; &#160;&#160;&#160; //create a variable to hold the
output
&#160;&#160;&#160; &#160;&#160;&#160; $output = &#039;&#039;;
&#160;&#160;&#160; &#160;&#160;&#160; 
&#160;&#160;&#160; &#160;&#160;&#160; //retrieve file and return as
string&lt;/pre&gt;
&#160;&#160;&#160; &#160;&#160;&#160; $content =
file_get_contents($feed_url);
&#160;&#160;&#160; &#160;&#160;&#160; 
&#160;&#160;&#160; &#160;&#160;&#160; try {
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //all is good,
we parse the feed
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $feeditems =
new SimpleXMLElement($content);//&lt;/pre&gt;
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //iterate over
item in the channel and get the title of each item
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $i=0;
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $rowOutput =
&#039;&#039;;
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
foreach($feeditems-&gt;channel-&gt;item as $entry){
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; if($i&lt;$limit){
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; &#160;&#160;&#160;
$modx-&gt;setPlaceholder(&quot;fftitle&quot;, $entry-&gt;title);
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; &#160;&#160;&#160;
$modx-&gt;setPlaceholder(&quot;fflink&quot;, $entry-&gt;link);
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; &#160;&#160;&#160; $rowOutput .=&#160;
$modx-&gt;parseChunk($Chunk, $modx-&gt;placeholders, &#039;[+&#039;, &#039;+]&#039;);
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; }
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; $i++;
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; }
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if(!$outTpl)
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; $output = $rowOutput;
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; else
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; {
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; &#160;&#160;&#160;
$modx-&gt;setPlaceholder(&#039;rows&#039;,$rowOutput);
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; &#160;&#160;&#160; $output =
$modx-&gt;parseChunk($outTpl,$modx-&gt;placeholders,&#039;[+&#039;,&#039;+]&#039;);
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;
&#160;&#160;&#160; }
&#160;&#160;&#160; &#160;&#160;&#160; }
&#160;&#160;&#160; &#160;&#160;&#160; catch (Exception $e) {
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //some error
occured, we output an error message and a description of the error
&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $output .= &#039;An
error occurred.&#160; The feed &#039; . $feed_url . &#039; could not be read: &#039; .
$e-&gt;getMessage();
&#160;&#160;&#160; &#160;&#160;&#160; }
&#160;&#160;&#160; &#160;&#160;&#160; 
&#160;&#160;&#160; &#160;&#160;&#160; return $output;
&#160;&#160;&#160; &#160;}
}
?&gt;</description>
		<content:encoded><![CDATA[<p>Hi Mary! I found a solution and as I told you,here it goes in case you would like to look at it:<br />
Chunk: myrssChunk</p>
<p>&amp;lt;li class=&#8221;feedfetcher&#8221;&amp;gt;&amp;lt;a class=&#8217;feedfetcher&#8217;<br />
href=&#8221;[+fflink+]&#8221;<br />
title=&#8217;[+fftitle+]&#8216;&amp;gt;[+fftitle+]&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;</p>
<p>Chunk: rssOutTpl<br />
&lt;ol&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [+rows+]<br />
&lt;/ol&gt;</p>
<p>Snippets<br />
[!RSSFetchFeed!]<br />
&lt;?php<br />
$RSSFetchFeed_base =<br />
$modx-&gt;config['base_path'].&#8217;assets/snippets/RSSFetchFeed/&#8217;;<br />
include_once $RSSFetchFeed_base . &#8216;RSSFetchFeed.inc.php&#8217;;<br />
if (class_exists(&#8216;RSSFeed&#8217;))<br />
&nbsp;&nbsp;&nbsp; $rss = new RSSFeed;<br />
else<br />
&nbsp;&nbsp;&nbsp; return &#8216;La clase no existe&#8217;;<br />
// limit existe?<br />
$limit = (isset($limit))? $limit : 10;<br />
// Se definió chunk CSS o uso el default?<br />
//default parameter values<br />
$cssStyle = (isset($cssChunk)) ? $modx-&gt;getChunk($cssChunk) :<br />
file_get_contents($RSSFetchFeed_base.&#8217;Defaultstyle.css&#8217;);<br />
$tplChunk = (!isset($tplChunk)) ? &#8216;rssfeedFetchertpl&#8217;: $tplChunk ;<br />
$outTpl = isset($outTpl) ? $outTpl : &#8221;;<br />
//Inject the CSS code into the head section<br />
$modx-&gt;regClientCSS($cssStyle);</p>
<p>// Argumento URL?<br />
if (isset($URL))<br />
&nbsp;&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $URL=<br />
str_replace(array(&#8216;|xq|&#8217;,'|xe|&#8217;,'|xa|&#8217;), array(&#8216;?&#8217;,'=&#8217;,'&amp;&#8217;), $URL);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $output=$rss-&gt;FetchFeed($URL,<br />
$limit, $tplChunk,$outTpl);<br />
&nbsp;&nbsp;&nbsp; }<br />
else<br />
&nbsp;&nbsp;&nbsp; $output = &#8216;y la URL?&#8217;;<br />
return $output;<br />
?&gt;</p>
<p>RSSFetchFeed.inc.php<br />
&lt;?php<br />
class RSSFeed {&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; function fetchFeed($feed_url,$limit,$Chunk,$outTpl)<br />
&nbsp;&nbsp;&nbsp; &nbsp;{<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; global $modx;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; //create a variable to hold the<br />
output<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $output = &#8221;;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; //retrieve file and return as<br />
string&lt;/pre&gt;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $content =<br />
file_get_contents($feed_url);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; try {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; //all is good,<br />
we parse the feed<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $feeditems =<br />
new SimpleXMLElement($content);//&lt;/pre&gt;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; //iterate over<br />
item in the channel and get the title of each item<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $i=0;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $rowOutput =<br />
&#8221;;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
foreach($feeditems-&gt;channel-&gt;item as $entry){<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; if($i&lt;$limit){<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
$modx-&gt;setPlaceholder(&#8220;fftitle&#8221;, $entry-&gt;title);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
$modx-&gt;setPlaceholder(&#8220;fflink&#8221;, $entry-&gt;link);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $rowOutput .=&nbsp;<br />
$modx-&gt;parseChunk($Chunk, $modx-&gt;placeholders, &#8216;[+', '+]&#8216;);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; $i++;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(!$outTpl)<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; $output = $rowOutput;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
$modx-&gt;setPlaceholder(&#8216;rows&#8217;,$rowOutput);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $output =<br />
$modx-&gt;parseChunk($outTpl,$modx-&gt;placeholders,&#8217;[+','+]&#8216;);<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; catch (Exception $e) {<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; //some error<br />
occured, we output an error message and a description of the error<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $output .= &#8216;An<br />
error occurred.&nbsp; The feed &#8216; . $feed_url . &#8216; could not be read: &#8216; .<br />
$e-&gt;getMessage();<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $output;<br />
&nbsp;&nbsp;&nbsp; &nbsp;}<br />
}<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abner</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-10632</link>
		<dc:creator>Abner</dc:creator>
		<pubDate>Sat, 05 Feb 2011 15:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-10632</guid>
		<description>hI Mary, thanks for your prompt reply!
Seeing how wayfinder behaves I guess I need to use an outer template which isparsed only once, containing a wrapper placeholder...
I&#039;m not sure but I guess I know how to do it. If I success, I&#039;ll come back to you with my solution if you like...
Abner</description>
		<content:encoded><![CDATA[<p>hI Mary, thanks for your prompt reply!<br />
Seeing how wayfinder behaves I guess I need to use an outer template which isparsed only once, containing a wrapper placeholder&#8230;<br />
I&#8217;m not sure but I guess I know how to do it. If I success, I&#8217;ll come back to you with my solution if you like&#8230;<br />
Abner</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mary</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-10625</link>
		<dc:creator>mary</dc:creator>
		<pubDate>Sat, 05 Feb 2011 07:06:50 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-10625</guid>
		<description>I&#039;m not entirely sure I understand your question since it seems like some things got cut out of your comment. 
From what I gather though, I can say that yes, you can add as many templating chunks as you want. These chunks should come out of the HTML you&#039;re using to set up the formatting of your output.  Does this make sense?  If you have a specific example of what you&#039;re trying to do I can try to help you further

mary</description>
		<content:encoded><![CDATA[<p>I&#8217;m not entirely sure I understand your question since it seems like some things got cut out of your comment.<br />
From what I gather though, I can say that yes, you can add as many templating chunks as you want. These chunks should come out of the HTML you&#8217;re using to set up the formatting of your output.  Does this make sense?  If you have a specific example of what you&#8217;re trying to do I can try to help you further</p>
<p>mary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abner</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-10624</link>
		<dc:creator>Abner</dc:creator>
		<pubDate>Sat, 05 Feb 2011 06:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-10624</guid>
		<description>I meant including &lt;ul&gt; and &lt;/ul&gt;</description>
		<content:encoded><![CDATA[<p>I meant including &lt;ul&gt; and &lt;/ul&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abner</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-10623</link>
		<dc:creator>Abner</dc:creator>
		<pubDate>Sat, 05 Feb 2011 06:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-10623</guid>
		<description>Hi Mary! thanks for this!
This chunk is repeated for each item in the list.
including  and 
for unordered lists itś no big deal if you don&#039;t setup a different margin top and margin bottom for 
I guess but I am not sure how to do this that we need to use two separate chunks, an outer tpl and a rowTpl, like wayfinder does
Do you know how it could be done?</description>
		<content:encoded><![CDATA[<p>Hi Mary! thanks for this!<br />
This chunk is repeated for each item in the list.<br />
including  and<br />
for unordered lists itś no big deal if you don&#8217;t setup a different margin top and margin bottom for<br />
I guess but I am not sure how to do this that we need to use two separate chunks, an outer tpl and a rowTpl, like wayfinder does<br />
Do you know how it could be done?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mary</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-9299</link>
		<dc:creator>mary</dc:creator>
		<pubDate>Sat, 01 May 2010 16:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-9299</guid>
		<description>Thanks for the feedback Jon!

mary</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback Jon!</p>
<p>mary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-9288</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sun, 25 Apr 2010 17:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-9288</guid>
		<description>Wow what can I say, thank you for another brilliant set of tutorials, I find them very easy to follow and have learned more about MODx in the past few days than ever before, I will definitely use MODx for my current project, I hadn&#039;t realised just how flexible it could be.

Thanks again Mary for all of your hard work and I look forward to going through more of your tutorials, I really like your writing style.</description>
		<content:encoded><![CDATA[<p>Wow what can I say, thank you for another brilliant set of tutorials, I find them very easy to follow and have learned more about MODx in the past few days than ever before, I will definitely use MODx for my current project, I hadn&#8217;t realised just how flexible it could be.</p>
<p>Thanks again Mary for all of your hard work and I look forward to going through more of your tutorials, I really like your writing style.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mary</title>
		<link>http://codingpad.maryspad.com/2010/01/15/modx-custom-snippet-api/comment-page-1/#comment-9074</link>
		<dc:creator>mary</dc:creator>
		<pubDate>Tue, 16 Feb 2010 01:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://codingpad.maryspad.com/?p=1252#comment-9074</guid>
		<description>Thanks Bruce! Don&#039;t know how I missed that :)</description>
		<content:encoded><![CDATA[<p>Thanks Bruce! Don&#8217;t know how I missed that <img src='http://codingpad.maryspad.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

