<?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>The Technical Entrepreneur &#187; Website Design</title>
	<atom:link href="http://blog.beamstyle.com.hk/category/website-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.beamstyle.com.hk</link>
	<description>Web Design and Marketing Tips</description>
	<lastBuildDate>Sat, 16 Oct 2010 14:30:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Tutorial on integrating CKFinder/CKEditor into CakePHP with session CheckAuthentication.</title>
		<link>http://blog.beamstyle.com.hk/tutorial-on-integrating-ckfinderckeditor-into-cakephp-with-session-authentication/</link>
		<comments>http://blog.beamstyle.com.hk/tutorial-on-integrating-ckfinderckeditor-into-cakephp-with-session-authentication/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:23:15 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[CheckAuthentication]]></category>
		<category><![CDATA[CKEditor]]></category>
		<category><![CDATA[CKFinder]]></category>
		<category><![CDATA[File Manager]]></category>
		<category><![CDATA[Image Upload]]></category>
		<category><![CDATA[Session]]></category>

		<guid isPermaLink="false">http://blog.beamstyle.com.hk/?p=170</guid>
		<description><![CDATA[
&#8220;How to integrate CKEditor + CKFinder with Session CheckAuthentication into CakePHP&#8221;
 
In the process of web development such as CMS (Content Management System), there are many cases where you may find a WYSIWYG editor or a file manager useful.  However from my experience, I noticed that most web application frameworks provide from crappy to no backend [...]]]></description>
			<content:encoded><![CDATA[<p><strong></p>
<h1><font color=#000000>&#8220;How to integrate CKEditor + CKFinder with Session CheckAuthentication into CakePHP&#8221;</font></h1>
<p> </p>
<p></strong>In the process of web development such as CMS (Content Management System), there are many cases where you may find a WYSIWYG editor or a file manager useful.  However from my experience, I noticed that most web application frameworks provide from crappy to no backend interface for WYSIWYG editors or file managers or uploading functions.</p>
<p>In BeamStyle, we use the CakePHP web application framework.  The CakePHP framework is very easy to use and keeps our code clean.  That&#8217;s the reason why we are using it.  But of course, nothing is perfect.  The form filling API is crappy and there is no file management system.</p>
<p>To resolve such an issue, the use of external applications is unavoidable.</p>
<p>In this tutorial, I will introduce the method on how to setup CKEditor (WYSIWYG editor) and CKFinder (File Manager, Upload) with CakePHP with CakePHP Authentication.</p>
<p>== Requirements ==</p>
<p>1) CakePHP has already been setup and working. (<a href="http://cakephp.org/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://cakephp.org/');">http://cakephp.org/</a>)</p>
<p>2) CakePHP Authentication has been setup and working inside CakePHP. (<a href="http://book.cakephp.org/view/172/Authentication" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://book.cakephp.org/view/172/Authentication');">http://book.cakephp.org/view/172/Authentication</a>)</p>
<p>== What you need to get ==</p>
<p>1) Download CKEditor (<a href="http://ckeditor.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ckeditor.com/');">http://ckeditor.com/</a>)</p>
<p>   &#8211; I used CKEditor 3.0.1, released on 16 October 2009</p>
<p>2) Download CKFinder (<a href="http://ckfinder.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ckfinder.com/');">http://ckfinder.com/</a>)</p>
<p>   &#8211; I used CKFinder 1.4.1.1, updated 02.10.2009</p>
<p>  </p>
<p>== Instructions ==</p>
<p>1) Extract your CKEditor and CKFinder into your /app/webroot/js/ directory</p>
<p>   It should look like the following:</p>
<p>     /app/webroot/js/ckeditor/</p>
<p>  /app/webroot/js/ckfinder/</p>
<p>2) Setup CKEditor in your view:</p>
<p> a) Assuming that you already have your form and Javascript enabled in your controller, and your controller is named AdminController, and your Admin view is already password protected by CakePHP&#8217;s Authentication method (<a href="http://book.cakephp.org/view/172/Authentication" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://book.cakephp.org/view/172/Authentication');">http://book.cakephp.org/view/172/Authentication</a>), first you need to tell your view about the classname for CKEditor.  Let&#8217;s use the controller to tell the view about it because we want to follow some engineering ethics and the rules of MVC.</p>
<p>  
<pre>

  class AdminController extends AppController {

   ...

   var $helpers = array('Form', 'Html', 'Javascript', 'Time');

  

   $ckeditorClass = 'CKEDITOR';

   $this-&gt;set('ckeditorClass', $ckeditorClass);

   ...

  }
</pre>
<p> b) Since you will be integrating the CKFinder very soon when CKEditor is complete, let&#8217;s also define what&#8217;s required by CKFinder now, so we save some trouble later :p  The following specifies the path to the CKFinder application.</p>
<p> </p>
<pre>
  class AdminController extends AppController {

   ...

   var $helpers = array('Form', 'Html', 'Javascript', 'Time');

  

   $ckeditorClass = 'CKEDITOR';

   $this-&gt;set('ckeditorClass', $ckeditorClass);

   

   $ckfinderPath = 'js/ckfinder/'

   $this-&gt;set('ckfinderPath', $ckfinderPath);

   ...

  }
</pre>
<p>c1) Now you need to link the javascript libraries for CKEditor and CKFinder into your template (for this example, let&#8217;s use the default template -&gt; default.ctp)</p>
<pre>
 echo $javascript-&gt;link('ckeditor/ckeditor.js');

 echo $javascript-&gt;link('ckfinder/ckfinder.js'); 
</pre>
<p> c2) Now you need to add a CakePHP textarea in your view.  So add it!  And let&#8217;s call it &#8220;newsContent&#8221; for now</p>
<p> </p>
<p>  [app/views/admin/index.ctp]</p>
<pre>
  &lt;?php echo $form-&gt;textarea('newsContent', array('class'=&gt;$ckeditorClass)) ?&gt;
</pre>
<p>c3) Now let&#8217;s edit the ckfinder&#8217;s config.php file so that everything will link perfectly <img src='http://blog.beamstyle.com.hk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>$baseUrl = &#8216;upload/&#8217;;</p>
<pre>
$baseDir = '/home/cakeroot/app/webroot/upload/';
</pre>
<p> d) If you give a load on that page, you will see a crappy textarea in your page.</p>
<p>    You want to need to convert that into the trendy CKEditor!  And let&#8217;s add some default text to it too! XD</p>
<p>    So what you do is you assign a javascript variable to represent ur newsContent, and we called it &#8220;ck_newsContent&#8221;.</p>
<p>    After that, we set the contents of it using that variable.</p>
<p>  </p>
<p>  [app/views/admin/index.ctp]</p>
<pre>
  &lt;?php echo $form-&gt;textarea('newsContent', array('class'=&gt;$ckeditorClass)) ?&gt;

  

  &lt;script type="text/javascript"&gt;

  var ck_newsContent = CKEDITOR.replace( 'newsContent' );

  ck_newsContent.setData( '&lt;p&gt;Just click the &lt;b&gt;Image&lt;/b&gt; or &lt;b&gt;Link&lt;/b&gt; button, and then &lt;b&gt;&amp;quot;Browse Server&amp;quot;&lt;/b&gt;.&lt;/p&gt;' );

  &lt;/script&gt;

<img class="alignnone size-full wp-image-167" title="ckeditor_wysiwyg" src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/11/ckeditor_wysiwyg.jpg" alt="ckeditor_wysiwyg" width="857" height="396" />
</pre>
<p> </p>
<p> e)  Now, if you just load the page and click on the image icon (circled in red in the above image), u will see Image Properties window showing up like below (Except without the &#8220;Server Browser&#8221; button)</p>
<pre>
<img class="alignnone size-full wp-image-166" title="ckeditor_image" src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/11/ckeditor_image.jpg" alt="ckeditor_image" width="326" height="305" />
</pre>
<p>f) So what is that server browser button?  Well, that is in fact the CKFinder.  Let&#8217;s add that!</p>
<p>  </p>
<p>  [app/views/admin/index.ctp]</p>
<pre>
  &lt;?php echo $form-&gt;textarea('newsContent', array('class'=&gt;$ckeditorClass)) ?&gt;

  

  &lt;script type="text/javascript"&gt;

  var ck_newsContent = CKEDITOR.replace( 'newsContent' );

  ck_newsContent.setData( '&lt;p&gt;Just click the &lt;b&gt;Image&lt;/b&gt; or &lt;b&gt;Link&lt;/b&gt; button, and then &lt;b&gt;&amp;quot;Browse Server&amp;quot;&lt;/b&gt;.&lt;/p&gt;' );

  CKFinder.SetupCKEditor( ck_newsContent, '&lt;?php echo $ckfinderPath ?&gt;') ;

  &lt;/script&gt;
</pre>
<p>g) After you add the above code and try again and you will see the button.  If you click on the button, you may find the following restriction screen &gt;__&lt;</p>
<pre>
<img class="alignnone size-full wp-image-169" title="ckfinder_restrict" src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/11/ckfinder_restrict.jpg" alt="ckfinder_restrict" width="519" height="342" />
</pre>
<p>h) Yes that&#8217;s right.  You need authentication check!  Let&#8217;s do that!</p>
<p> Open up app/webroot/js/ckfinder/config.php</p>
<p>And first thing, implement your CheckAuthentication() function, like the following:</p>
<pre>
function CheckAuthentication()

{

 if( isset($_SESSION['Auth']['User']) )

 {

  return true;

 }

 return false;

}
</pre>
<p>i) Now, because CakePHP uses a different session name (Not the default name), we gotta tell CKFinder to look inside THAT CAKEPHP SESSION!</p>
<p> </p>
<p> Add the following at the very top of the config.php file, right below &lt;?php</p>
<pre>
&lt;?php

// Start CakePHP Session

session_name("CAKEPHP");

session_start();
</pre>
<p>j) Let&#8217;s but not least, let&#8217;s add an upload folder and grant 757 Permissions to it:</p>
<p>-&gt;  app/webroot/upload</p>
<p> </p>
<pre>
<img class="alignnone size-full wp-image-168" title="ckfinder_allow" src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/11/ckfinder_allow.jpg" alt="ckfinder_allow" width="633" height="281" />
</pre>
<p>k) Now try loading up the Server Browser rom step (g) again and happy surfing!</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.beamstyle.com.hk/tutorial-on-integrating-ckfinderckeditor-into-cakephp-with-session-authentication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo! Store vs Self-hosted E-commerce Solution</title>
		<link>http://blog.beamstyle.com.hk/yahoo-store-vs-self-hosted-e-commerce-solution/</link>
		<comments>http://blog.beamstyle.com.hk/yahoo-store-vs-self-hosted-e-commerce-solution/#comments</comments>
		<pubDate>Sun, 31 May 2009 08:20:16 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://blog.beamstyle.com.hk/?p=134</guid>
		<description><![CDATA[Many people do not understand the differences between Yahoo! Store and a self-hosted e-commerce solution such as Prestashop. Both solution has its own advantages and disadvantages. Some customers ask us whether they need a self-hosted e-commerce solution or not. I always tell them that it really depends on what their needs are. In general, if [...]]]></description>
			<content:encoded><![CDATA[<p>Many people do not understand the differences between <a href="http://smallbusiness.yahoo.com/ecommerce/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://smallbusiness.yahoo.com/ecommerce/');">Yahoo! Store </a>and a self-hosted e-commerce solution such as <a href="http://www.prestashop.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.prestashop.com');">Prestashop</a>. Both solution has its own advantages and disadvantages. Some customers ask us whether they need a self-hosted e-commerce solution or not. I always tell them that it really depends on what their needs are. In general, if our customers are unsure of their sales target and just want to open a store, I would recommend them to first use a simplier solution such as Yahoo! Store to test the market. Otherwise, I believe a self-hosted e-commerce solution will save more money in the long run. Here is a simple comparison of the two solutions.</p>
<table border="1" cellspacing="2">
<tbody>
<tr>
<th>Feature</th>
<th>Yahoo! Store</th>
<th>Self-hosted e-commerce solution</th>
</tr>
<tr>
<td>Cost</td>
<td>Yahoo! Store costs around $400 HKD for the initial setup fee. In addition, for its starter package, it has a monthly fee of around $320 HKD and a 1.5% transaction fee (does not include credit card payment or Paypal payment fees). For its professional package, it costs around $2400 HKD monthly and a 0.75% transaction fee.</td>
<td>A self-hosted e-commerce solution has a one time setup fee (which includes web site design and programming fee) which is significantly higher than the Yahoo! store (depending on the functionality). In addition, there is a server cost to host the solution. There are no hidden fees.</td>
</tr>
<tr>
<td>Design</td>
<td>Somewhat customizable, but it requires a programmer and graphics designer to do it (cost depends on the rate of the design team).</td>
<td>Fully customizable, and the cost is already included in the solution package.</td>
</tr>
<tr>
<td>Reliability</td>
<td>Depends on Yahoo!&#8217;s server uptime</td>
<td>Depends on the hosted server uptime (you must ask yoru server provider what is its guarantee uptime)</td>
</tr>
<tr>
<td>Functionality</td>
<td>Limited to what Yahoo! offers to its customers (cannot add new functionalities)</td>
<td>Fully customizable (for example, you can integrate the shop&#8217;s user account system to an existing user database)</td>
</tr>
<tr>
<td>Ownership</td>
<td><!--StartFragment-->The shop is hosted on Yahoo and it belongs to Yahoo.  You cannot easily move your shop to another provider.</td>
<td><!--StartFragment-->The shop belongs to you, you can open the shop on several different web sites without paying anything extra (except for server fee).</td>
</tr>
<tr>
<td>Performance</td>
<td><!--StartFragment-->Depends on the performance of Yahoo!</td>
<td><!--StartFragment-->Depends on the hosted server (you can choose the location of the server.  For example, if your shop is opened in HK, then you can get a server in Hong Kong to get optimum speed)</td>
</tr>
</tbody>
</table>

]]></content:encoded>
			<wfw:commentRss>http://blog.beamstyle.com.hk/yahoo-store-vs-self-hosted-e-commerce-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supermarket and Frustrating Flash Animations</title>
		<link>http://blog.beamstyle.com.hk/supermarket-and-frustrating-flash-animations/</link>
		<comments>http://blog.beamstyle.com.hk/supermarket-and-frustrating-flash-animations/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 16:49:24 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://blog.beamstyle.com.hk/?p=70</guid>
		<description><![CDATA[Tonight, I went to the supermarket and I wanted to check the number of points my supermarket cards has.  I was greeted by this mess.  Wow.
You may think this is wierd, but actually there are so many websites which does similar things.

One time, I just want to check the minimum requirements for a [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight, I went to the supermarket and I wanted to check the number of points my supermarket cards has.  I was greeted by this mess.  Wow.</p>
<div id="attachment_71" class="wp-caption alignnone" style="width: 385px"><a href="http://blog.beamstyle.com.hk/wp-content/uploads/2009/02/shopping-machine.jpg" ><img class="size-full wp-image-71" title="shopping-machine" src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/02/shopping-machine.jpg" alt="A point card machine with a mess in front of it." width="375" height="500" /></a><p class="wp-caption-text">A point card machine with a mess in front of it.</p></div>
<p>You may think this is wierd, but actually there are so many websites which does similar things.</p>
<p><span id="more-70"></span></p>
<p>One time, I just want to check the minimum requirements for a PC game which I wanted to buy.  I went on their website and they presented me with an intro movie.  It took more than a minute to load, and I was forced to watch the entire thing.  I don&#8217;t like that.  Neither do most customers, as they just want the information.</p>
<p>Marketing on the web is different from television.  For a television advertisement, a catchy and pretty animation much give a good image for potential customers.  For Internet advertisement, potential customers just want a quick and easy way to get all the information they want.  In other words, we want to increase our conversion rate, not <a title="Decrease conversion rate." href="http://blog.beamstyle.com.hk/?p=10" >decrease the conversion rate</a>.</p>
<p>For marketing purpose, I don&#8217;t suggest anyone to put a large flash animation in the opening page.  Even if you do, please add a link to skip it.</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.beamstyle.com.hk/supermarket-and-frustrating-flash-animations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Table2CSS Converter Review: It works, but it&#8217;s not the best.</title>
		<link>http://blog.beamstyle.com.hk/table2css-converter-review-it-works-but-its-not-the-best/</link>
		<comments>http://blog.beamstyle.com.hk/table2css-converter-review-it-works-but-its-not-the-best/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 12:59:58 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://blog.beamstyle.com.hk/?p=63</guid>
		<description><![CDATA[
A couple days ago, I was given a task to convert a webpage using HTML tables for positioning to a webpage using CSS for positioning.  I was rather lazy and I looked for a free tool to do this task.  After looking up in Google for a few minutes, I found this software [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/02/software_box.jpg" alt="Table2CSS Converter Box" title="Table2CSS Converter Box" width="132" height="186" class="size-full wp-image-56" /></p>
<div>A couple days ago, I was given a task to convert a webpage using HTML tables for positioning to a webpage using CSS for positioning.  I was rather lazy and I looked for a free tool to do this task.  After looking up in Google for a few minutes, I found this software called <a title="Table2CSS converter" href="http://www.table2css.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.table2css.com');">Table2CSS Converter</a>.  This software is actually quite user friendly to use.  All you have to do is to specify a folder to convert and it&#8217;s all done for you.</div>
<p>
<span id="more-63"></span></p>
<div>Taking a look from the website, it claims that the advantages of this tool includes:</div>
<p></p>
<div>
<ul>
<li>the reduced number of HTML tags will make search engines give your page a better result</li>
<li>reduced the page size and speed up the load time</li>
<li>makes the website more maintainable</li>
</ul>
</div>
<p></p>
<div>I agree with the following points, except I am a little unsure about the reduced HTML tags will really make your page rank better.</div>
<p></p>
<div>This all sounds really great, but when I looked at the result source files, I am not all that convinced about the reduced page size.  The actual HTML page is a lot smaller(around 20kb), but in contrast, it generates a 60kb CSS stylesheet file.  All the &lt;table&gt;, &lt;tr&gt;, and &lt;td&gt; tags are replaced by the &lt;div&gt; tag with different classes.</div>
<p></p>
<div>While the results meet our objective of converting all the HTML tables into CSS, but the results are not optimized.  I ended up converting the tables manually and we got our HTML page to be 9kb and the CSS stylesheet to be 3kb (95% smaller than what the tool generated).</div>
<p></p>
<div>I guess for users who wants better SEO results and they are not too technical, this tool is great.  For the rest of us, we can do better than the tool.  For the serious people who are not too technical, they should find a web design vendor.</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.beamstyle.com.hk/table2css-converter-review-it-works-but-its-not-the-best/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Write the Website Content for your Audience, not for yourself</title>
		<link>http://blog.beamstyle.com.hk/write-the-website-content-for-your-audience-not-for-yourself/</link>
		<comments>http://blog.beamstyle.com.hk/write-the-website-content-for-your-audience-not-for-yourself/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 15:58:57 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://blog.beamstyle.com.hk/?p=49</guid>
		<description><![CDATA[
I had finished optimizing a part of my website&#8217;s content using a text analyzer and keyword density.  I showed it to my partner for his opinions.  It turns out that he is not satisfied with the content.
My partner told me to think about our target customers (also known as personas),which are generally start-up companies or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.beamstyle.com.hk/wp-content/uploads/2009/02/confused_reader.jpg" ><img class="size-full wp-image-48" title="confused_reader" src="http://blog.beamstyle.com.hk/wp-content/uploads/2009/02/confused_reader.jpg" alt="Even a baby is confused about the content of the website." width="300" height="316" /></a></p>
<p>I had finished optimizing a part of my website&#8217;s content using a <a title="A Great Tool to Improve SEO Copywriting using Keyword Density" href="http://blog.beamstyle.com.hk/?p=44"  target="_blank">text analyzer and keyword density</a>.  I showed it to my partner for his opinions.  It turns out that he is not satisfied with the content.</p>
<p><span id="more-49"></span>My partner told me to think about our target customers (also known as personas),which are generally start-up companies or small companies.  He is right about the fault of my content.  I had all the technical contents listed out.  For a CEO of a small company, he wouldn&#8217;t care if we use PHP for our solution.  He won&#8217;t care if our pages are written in XHTML instead of HTML.  He won&#8217;t care about which e-commerce script we use or the huge list of payment gateways we support.  Heck, they don&#8217;t care if we optimized our images or we minimized all the JS/CSS scripts.</p>
<p>Instead, we should step in our customer&#8217;s shoes and think about what they want to see in the website in order to buy your products or services.</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.beamstyle.com.hk/write-the-website-content-for-your-audience-not-for-yourself/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

