<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Webscriptz.be &#187; php</title>
	<atom:link href="http://webscriptz.be/tags/php/feed" rel="self" type="application/rss+xml" />
	<link>http://webscriptz.be</link>
	<description></description>
	<lastBuildDate>Sat, 17 Apr 2010 12:45:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Annoyed&#8230;with coding</title>
		<link>http://webscriptz.be/2010/02/22/annoyed-with-coding/259</link>
		<comments>http://webscriptz.be/2010/02/22/annoyed-with-coding/259#comments</comments>
		<pubDate>Sun, 21 Feb 2010 23:39:23 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[annoyed]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[yii]]></category>
		<category><![CDATA[yii framework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=259</guid>
		<description><![CDATA[I&#8217;ve been coding away all week, that is between my other jobs at home In all my &#8216;wisdom&#8217; and persistence i made a small app with Yii which stores data in an array and serializes it into a db, and a basic CRUD, a proof of concept to see if the framework was capable of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been coding away all week, that is between my other jobs at home <img src='http://webscriptz.be/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>In all my &#8216;wisdom&#8217; and persistence i made a small app with Yii which stores data in an array and serializes it into a db, and a basic CRUD, a proof of concept to see if the framework was capable of doing this <span style="text-decoration: line-through;">and in the fastest way possible.</span></p>
<p>No problem so far, getting it is simple, but apparently you Yii doesn&#8217;t permit everything. So you need a $temp variable to store the model data in, suffice to say that it isn&#8217;t really the shortest route to take nor in my opinion the fastest bus alas I have to do with it. This little app of not more then a 60 lines of code took me four days, four damn days to figure out the error,  honestly if we have methods to &#8216;save space&#8217; in your coding why not permit them?</p>
<p>I&#8217;m not going to bother everybody with my nagging so, I&#8217;ll stop here.</p>
<p><a href="http://www.yiiframework.com/forum/index.php?/topic/7409-ar-array-problem/">For those who want to see the topic on the yii forums.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2010/02/22/annoyed-with-coding/259/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YII framework configuration</title>
		<link>http://webscriptz.be/2009/12/20/yii-framework-configuration/253</link>
		<comments>http://webscriptz.be/2009/12/20/yii-framework-configuration/253#comments</comments>
		<pubDate>Sun, 20 Dec 2009 22:47:49 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[yii]]></category>
		<category><![CDATA[yii framework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=253</guid>
		<description><![CDATA[I&#8217;m toying with the Yii Framework for some time now and even if i cost me a lot of anger and frustration in the beginning I&#8217;m starting to like it more and more, alas I do have to say that the documentation isn&#8217;t always that clear and for someone who begins or who&#8217;ll write some [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m toying with the Yii Framework for some time now and even if i cost me a lot of anger and frustration in the beginning I&#8217;m starting to like it more and more, alas I do have to say that the documentation isn&#8217;t always that clear and for someone who begins or who&#8217;ll write some large applications the configuration file can be a hassle so here&#8217;s my solution:</p>
<blockquote><p>Brake down the configuration file in multiple files, this will give you some speed disadvantage and some will  saying that I&#8217;m raping Yii framework purpose for speed but at least to me it seems more clear</p></blockquote>
<p>This is the protected.config/main.php</p>
<pre class="brush:[php]">
dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=&gt;'WEBSITENAME',
'modules'=&gt;array(
'users'=&gt;array(
//sub modules in the module users
'modules'=&gt;array(
'messaging',
'profile',
'dashboard',
)
),
'about',
'forums',
),
// preloading 'log' component active loading
'preload'=&gt;array('log'),

// autoloading model and component classes lazy loading
// I make the difference between CformModel and CActiveRecord
'import'=&gt;array(
'application.models.*',
'application.models.forms.*',
'application.models.database.*',
),

// application components
'components'=&gt;array(
// enable cookie-based authentication
'user'=&gt;array('allowAutoLogin'=&gt;true),

// data relinquished to database.php
// for easy access and usability as also for the future
// installation procedure, it's less to write to a file
'db'=&gt;include(dirname(__FILE__).'/database.php'),

// for a better overview we exculded url routes to a seperate file
'urlManager'=&gt;include(dirname(__FILE__).'/routes.php'),

//authentication component needs data from db for CdbConnection
'authManager'=&gt;array(
'class'=&gt;'CDbAuthManager',
'connectionID'=&gt;'db',
'defaultRoles'=&gt;array('authenticated', 'guest'),
),

//security measures
'request'=&gt;array(
'enableCsrfValidation'=&gt;true,
'enableCookieValidation'=&gt;true,
),
),

// application-level parameters that can be accessed
// using Yii::app()-&gt;params['paramName']
// uncomment the following if you want static params in the application
//'params'=&gt;array(include(dirname(__FILE__).'/params.php'))
);</pre>
<p>database.php</p>
<pre class="brush:[php]">
'CDbConnection',
'connectionString'=&gt;'mysql:host=localhost;dbname=mysql',
//'connectionString'=&gt;'pgsql:host=localhost;port=5432;dbname=mysql',
'username' =&gt; 'root',
'password' =&gt; '',
);
?&gt;
</pre>
<p>routes.php</p>
<pre class="brush:[php]">
'path', // path or get
'urlSuffix' =&gt; '', //.html .whateverextentionyouwant
'showScriptName' =&gt; true,
'rules'=&gt;array(
'users/recovery/perimeterSecurity/'=&gt;'users/recovery/perimeterSecurity',
),
);
?&gt;
</pre>
<p>param.php</p>
<pre class="brush:[php]">//nothing in it at the moment</pre>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/12/20/yii-framework-configuration/253/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yii framework very first findings</title>
		<link>http://webscriptz.be/2009/09/07/yii-framework-very-first-findings/240</link>
		<comments>http://webscriptz.be/2009/09/07/yii-framework-very-first-findings/240#comments</comments>
		<pubDate>Mon, 07 Sep 2009 21:46:51 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[yii]]></category>
		<category><![CDATA[yii framework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=240</guid>
		<description><![CDATA[Yii framework (yiiframework.com) is a very fast php5 framework. At first it seems like a jungle in the code, everything is put into motion to make the framework very fast. It&#8217;s been really a steep lurning curve, even if you seen oop programming, alas seen it in a totally different way that corresponds to nothing [...]]]></description>
			<content:encoded><![CDATA[<p>Yii framework (yiiframework.com) is a very fast php5 framework. At first it seems like a jungle in the code, everything is put into motion to make the framework very fast. It&#8217;s been really a steep lurning curve, even if you seen oop programming, alas seen it in a totally different way that corresponds to nothing in yii. So you have to adapt to it&#8217;s style of coding, writing and thinking.</p>
<p>It&#8217;s not a regular MVC framework, yii had a module concept integrated, if you want to use it that it. Tinny mini applications, pull them out and they don&#8217;t work but in the larger application they work just fine.</p>
<p>The logic as said is a bit different, in the configuration of the app you got one large file that has everything in it, but it&#8217;s messy, so i sacrificed a bit of my speed to put it into separate files, separated db config and routes as this gave a more clear picture of the code and you find your environment variables really fast, if you need to switch dbs</p>
<p>The documentation of yii could be better, some things are left up to your sense, chuncks of code are left out instead of leaving the whole things standing which would be far more handy. Luckily for he who wants to contunie with it there is a good forum with dedicated people answering even the most idiotic questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/09/07/yii-framework-very-first-findings/240/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony php framework</title>
		<link>http://webscriptz.be/2009/07/27/symfony-php-framework/233</link>
		<comments>http://webscriptz.be/2009/07/27/symfony-php-framework/233#comments</comments>
		<pubDate>Mon, 27 Jul 2009 19:15:27 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[Ci]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[webframework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=233</guid>
		<description><![CDATA[I&#8217;m attached to codeigniter, I know my way around but codeigniter as a a easy to use but now I want something more darring and so this is it, Symfony framework, I think I&#8217;ll be doing that in my vacation that starts in about a week]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m attached to codeigniter, I know my way around but codeigniter as a a easy to use but now I want something more darring and so this is it, Symfony framework, I think I&#8217;ll be doing that in my vacation that starts in about a week <img src='http://webscriptz.be/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/07/27/symfony-php-framework/233/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeigniter Redirect</title>
		<link>http://webscriptz.be/2009/06/30/codeigniter-redirect/231</link>
		<comments>http://webscriptz.be/2009/06/30/codeigniter-redirect/231#comments</comments>
		<pubDate>Tue, 30 Jun 2009 19:45:08 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[CI function]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=231</guid>
		<description><![CDATA[redirect() Does a &#8220;header redirect&#8221; to the local URI specified. Just like other functions in this helper, this one is designed to redirect to a local URL within your site. You will not specify the full site URL, but rather simply the URI segments to the controller you want to direct to. The function will [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<h2>redirect()</h2>
<p>Does a &#8220;header redirect&#8221; to the local URI specified. Just like other functions in this helper, this one is designed to redirect to a local URL within your site.  You will <strong>not</strong> specify the full site URL, but rather simply the URI segments to the controller you want to direct to. The function will build the URL based on your config file values.</p>
<p>The optional second parameter allows you to choose between the &#8220;location&#8221; method (default) or the &#8220;refresh&#8221; method. Location is faster, but on Windows servers it can sometimes be a problem. The optional third parameter allows you to send a specific HTTP Response Code &#8211; this could be used for example to create 301 redirects for search engine purposes. The default Response Code is 302. The third parameter is <em>only</em> available with &#8216;location&#8217; redirects, and not &#8216;refresh&#8217;. Examples:</p>
<p><code>if ($logged_in == FALSE)<br />
{<br />
redirect('/login/form/', 'refresh');<br />
}</p>
<p>// with 301 redirect<br />
redirect('/article/13', 'location', 301);</code></p></blockquote>
<p>This was the excerpt from the codeigniter userguide but what they don&#8217;t really tell is the essential:</p>
<p>redirect(&#8216;controller/function/param&#8217;, &#8216;refresh&#8217;);</p>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/06/30/codeigniter-redirect/231/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile Application with php &amp; mySQL</title>
		<link>http://webscriptz.be/2009/03/28/agile-application-with-php-mysql/227</link>
		<comments>http://webscriptz.be/2009/03/28/agile-application-with-php-mysql/227#comments</comments>
		<pubDate>Sat, 28 Mar 2009 19:35:14 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[dbal]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[my]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorisql]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=227</guid>
		<description><![CDATA[I'm working on a website system an facing this problem where and how to store my configurations in the database. ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a website system an facing this problem where and how to store my configurations in the database.  So you want to store your configuration vars in a configuration table in the database, that&#8217;s great and fun to do too.</p>
<p>Why do it?</p>
<p>Your application becomes easier to update to a newer version, most of the time, when creating a newer version you will strip &#8211; change &#8211; add some variables for configurations, with a database it&#8217;s easier and you (or the admin) can change things on the fly.</p>
<p>How?</p>
<p>One or more tables like this:</p>
<p><code><br />
Mysql table:<br />
+------------------+<br />
|       config           |<br />
+------------------+<br />
|  id                      |<br />
|  name                 |<br />
|  value                 |<br />
+------------------+<br />
</code></p>
<p>If you want you can add an selection column to get only the ones needed for that function but this is the best way when being in a development environment I think</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/28/agile-application-with-php-mysql/227/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CodeIgniter the views and .htaccess</title>
		<link>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219</link>
		<comments>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219#comments</comments>
		<pubDate>Sat, 14 Mar 2009 20:23:53 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Ci]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=219</guid>
		<description><![CDATA[I must admit that I not a huge fan of Frameworks and Patterns because: A) They make things complicated B) Subject you to some nasty code stuff and rules C) Because templating and Frameworks can be water and fire. Codeigniter on the opposite has some advantage on it side for the templating stuff. This is [...]]]></description>
			<content:encoded><![CDATA[<p>I must admit that I not a huge fan of Frameworks and Patterns because:</p>
<blockquote><p>A) They make things complicated</p>
<p>B) Subject you to some nasty code stuff and rules</p>
<p>C) Because templating and Frameworks can be water and fire.</p></blockquote>
<p>Codeigniter on the opposite has some advantage on it side for the templating stuff. This is really a short explanation for a common problem in other framework.</p>
<p>What to do if you want a nice folder structure or have different template styles, remember this is just a basic thing which happen to work in CI 1.7.</p>
<p><code><br />
function index(){<br />
$this-&gt;load-&gt;view('Themename/news/index);<br />
}</code></p>
<p>Just add some slashes an it works so normally it should work if you would make an adaptation for themes too with a variable in it.</p>
<p>The next thing was kind of hard to find on the web so let me share it. It&#8217;s for when you develop with CI and your not working in the root directory of your server.</p>
<p><code><br />
DirectoryIndex index.php<br />
RewriteEngine on<br />
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] </code></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MVC again</title>
		<link>http://webscriptz.be/2009/03/09/mvc-again/214</link>
		<comments>http://webscriptz.be/2009/03/09/mvc-again/214#comments</comments>
		<pubDate>Mon, 09 Mar 2009 21:49:06 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[exp]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=214</guid>
		<description><![CDATA[I&#8217;ve grew bored of having to deal with some irritating PHP issues so I&#8217;ve turned my back to those and began testing codeIgniter. It seems strait forward but templating already has me intrigued with problems and mod_rewrite needs a look too I think :p .]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve grew bored of having to deal with some irritating PHP issues so I&#8217;ve turned my back to those and began testing codeIgniter. It seems strait forward but templating already has me intrigued with problems and mod_rewrite needs a look too I think :p .</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/09/mvc-again/214/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP app installer</title>
		<link>http://webscriptz.be/2009/02/09/php-app-installer/210</link>
		<comments>http://webscriptz.be/2009/02/09/php-app-installer/210#comments</comments>
		<pubDate>Mon, 09 Feb 2009 22:41:55 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[ongoing]]></category>
		<category><![CDATA[part of]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Webscriptz.be]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=210</guid>
		<description><![CDATA[The last 2 to 3 days I&#8217;ve been working on a system that can be easely integrated into any application so that it can install itself on a server. I&#8217;ve added some ideas to suit myself, one is that data is installed to 2 databases. One for the users and one for the data of [...]]]></description>
			<content:encoded><![CDATA[<p>The last 2 to 3 days I&#8217;ve been working on a system that can be easely integrated into any application so that it can install itself on a server. I&#8217;ve added some ideas to suit myself, one is that data is installed to 2 databases. One for the users and one for the data of the users.</p>
<p>Why? Because you can scale a lot easier if parts are in other databases. And it includes some of my projects that I want to start, see Google, users tend to user a website more when they are registerated but what if, like google, I register for Gmail and I can have Google docs with the same account but not the annoying registration? That is what I want to do.</p>
<p>Great and Free? &#8230;..I&#8217;m not yet at that stage</p>
<p>TODO:</p>
<ul>
<li>The things that are left for me to do is basically that I scale everything more</li>
<li>Maybe port to smarty all the vars and everything</li>
<li>Maybe make a installer creator script for the people who want to implement my script.</li>
<li>Do something to the mysql files</li>
<li>Make more comments in the code</li>
<li>Document the script</li>
<li>&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/02/09/php-app-installer/210/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cakephp and windows seven Beta 1 powershell</title>
		<link>http://webscriptz.be/2009/01/13/cakephp-and-windows-seven-beta-1-powershell/199</link>
		<comments>http://webscriptz.be/2009/01/13/cakephp-and-windows-seven-beta-1-powershell/199#comments</comments>
		<pubDate>Tue, 13 Jan 2009 14:51:16 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[Ms]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=199</guid>
		<description><![CDATA[I&#8217;ve been testing windows seven beta one for a few days, been testing some software basically and untill my suprise the new windows shell can already work with cakephp without any problem alto wamp has issues especially Apache 2.x.x has problems because mysql server runs great on the new beast. I&#8217;ve changed to XAMP server, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been testing windows seven beta one for a few days, been testing some software basically and untill my suprise the new windows shell can already work with cakephp without any problem alto wamp has issues especially Apache 2.x.x has problems because mysql server runs great on the new beast.</p>
<p>I&#8217;ve changed to XAMP server, everything works but know cakephp doesn&#8217;t want to run anymore not in the powershell not in cmd :&#8217;(</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/01/13/cakephp-and-windows-seven-beta-1-powershell/199/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
