<?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>For the Developer &#187; mac</title>
	<atom:link href="http://forthedeveloper.com/category/os/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://forthedeveloper.com</link>
	<description>By Developers, For Developers</description>
	<lastBuildDate>Tue, 20 Jul 2010 23:54:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Railo Express with Multiple Local Hosts</title>
		<link>http://forthedeveloper.com/2009/railo-express-multiple-local-hosts/</link>
		<comments>http://forthedeveloper.com/2009/railo-express-multiple-local-hosts/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 05:47:46 +0000</pubDate>
		<dc:creator>Randy Merrill</dc:creator>
				<category><![CDATA[railo]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[cfml]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[jetty]]></category>
		<category><![CDATA[linux windows]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://forthedeveloper.com/?p=154</guid>
		<description><![CDATA[This is how you can configure Railo Express to use Jetty virtual hosts and local host file entries to point to a single Railo Express installation. This was extremely useful while developing applications that power multiple domains. For this example, we are going to add a virtual host for the snow.ftd host. Jetty Setup Jetty [...]]]></description>
			<content:encoded><![CDATA[<p>This is how you can configure <a href="http://www.getrailo.org/index.cfm/download/">Railo Express</a> to use Jetty virtual hosts and local host file entries to point to a single Railo Express installation. This was extremely useful while developing applications that power multiple domains.</p>
<p><span id="more-154"></span></p>
<p>For this example, we are going to add a virtual host for the <code>snow.ftd</code> host.</p>
<h3>Jetty Setup</h3>
<p><a href="http://www.mortbay.org/jetty/">Jetty</a> makes it really easy to <a href="http://docs.codehaus.org/display/JETTY/Virtual+hosts">configure virtual hosts</a> for a context.</p>
<p>The configuration file in Railo Express at <code><em>{railo-express-directory}</em>/contexts/railo.xml</code> already has the configuration setup to start us off:</p>
<p><code>
<pre>&lt;!-- virtual hosts
&lt;Set name="virtualHosts"&gt;
	&lt;Array type="String"&gt;
		&lt;Item&gt;www.myVirtualDomain.com&lt;/Item&gt;
		&lt;Item&gt;localhost&lt;/Item&gt;
		&lt;Item&gt;127.0.0.1&lt;/Item&gt;
	&lt;/Array&gt;
&lt;/Set&gt;
--&gt;</pre>
<p></code></p>
<p>Uncomment the block of code and change the item to match the <code>snow.ftd</code> host name like so:</p>
<p><code>
<pre>&lt;!-- virtual hosts --&gt;
&lt;Set name="virtualHosts"&gt;
	&lt;Array type="String"&gt;
		&lt;Item&gt;snow.ftd&lt;/Item&gt;
	&lt;/Array&gt;
&lt;/Set&gt;</pre>
<p></code></p>
<h3>Local Host Setup</h3>
<p>I already posted <a href="http://forthedeveloper.com/2009/local-host-entries-snow-leopard/">instructions for adding local hosts to your Snow Leopard</a>. You can follow the directions there to setup your desired host. In linux you can <a href="http://www.google.com/search?q=linux+hosts+file">modify your hosts file</a> in a similar fashion. There may even be a way to <a href="http://www.google.com/search?q=windows+hosts+file">change your hosts file on windows</a>, although I have never done so.</p>
<h3>Testing</h3>
<p>Once the Jetty config and the local hosts have been updated, restart Railo—if it is running—and go to <code><a href="snow.ftd">snow.ftd:8888</a></code> in your browser. You should see the same page available at <code><a href="localhost:8888">localhost:8888</a></code>.</p>
<p>And you are done! You can now add as many hosts as you need!</p>
]]></content:encoded>
			<wfw:commentRss>http://forthedeveloper.com/2009/railo-express-multiple-local-hosts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local Host Entries on OS X Snow Leopard</title>
		<link>http://forthedeveloper.com/2009/local-host-entries-snow-leopard/</link>
		<comments>http://forthedeveloper.com/2009/local-host-entries-snow-leopard/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 03:35:23 +0000</pubDate>
		<dc:creator>Randy Merrill</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://forthedeveloper.com/?p=146</guid>
		<description><![CDATA[Today I wanted to setup local host entries on my MacBook. Searching around I found several articles about editing the /private/etc/hosts file to add local domains entries pointing back to my computer. I don&#8217;t know if it is something that changed with Leopard or Snow Leopard but it just wasn&#8217;t working for me. Even restarting [...]]]></description>
			<content:encoded><![CDATA[<p>Today I wanted to setup local host entries on my MacBook. Searching around I found several articles about editing the <code>/private/etc/hosts</code> file to add local domains entries pointing back to my computer. I don&#8217;t know if it is something that changed with Leopard or Snow Leopard but it just wasn&#8217;t working for me. Even restarting the computer was a no go.</p>
<p><span id="more-146"></span></p>
<h3>Using the dscl Utility</h3>
<p>With the wonder of Google searching and the <a href="http://www.andyjarrett.com/blog/index.php/2007/11/1/NetInfo-manager-and-HOST-file-in-Leopard/">generous comments</a> of others I found out about the <code>dscl</code> utility.</p>
<h4>Listing Host Entries</h4>
<p>To see what is listed for your hosts at any time just run this command:</p>
<blockquote><p><code>dscl localhost -readall /Local/Default/Hosts</code></p></blockquote>
<h4>Adding a New Entry</h4>
<p>In this example I am going to have the <code>snow.ftd</code> host point to my <code>127.0.0.1</code> IP address:</p>
<blockquote><p><code>sudo dscl localhost -create /Local/Default/Hosts/snow.ftd IPAddress 127.0.0.1</code></p></blockquote>
<p>You should now be able to <code>ping snow.ftd</code> and have it resolve to your local computer.</p>
<h4>Removing an Existing Entry</h4>
<p>If you decide you do not want an entry anymore just run this command to remove it:</p>
<blockquote><p><code>sudo dscl localhost -delete /Local/Default/Hosts/snow.ftd</code></p></blockquote>
<h4>Reading the BSD Flat File</h4>
<p>It was also noted that you can read the BSD flat file using this command:</p>
<blockquote><p><code>dscl localhost -readall /BSD/local/Hosts</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://forthedeveloper.com/2009/local-host-entries-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ColdFusion Development using VirtualBox and Ubuntu 9.10</title>
		<link>http://forthedeveloper.com/2009/coldfusion-virtualbox-and-ubuntu/</link>
		<comments>http://forthedeveloper.com/2009/coldfusion-virtualbox-and-ubuntu/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 19:29:41 +0000</pubDate>
		<dc:creator>Randy Merrill</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://forthedeveloper.com/?p=123</guid>
		<description><![CDATA[Here is how I setup a VirtualBox Virtual Machine (VM) running Ubuntu 9.10 Server edition for ColdFusion development on my MacBook Pro. Step 1: Download Needed Files The first step is to download all the files you will need. Since the downloads usually take some time we&#8217;ll get them out of the way first. For [...]]]></description>
			<content:encoded><![CDATA[<p>Here is how I setup a <a title="VirtualBox" href="http://www.virtualbox.org/">VirtualBox</a> Virtual Machine (VM) running <a title="Ubuntu" href="http://www.ubuntu.com/">Ubuntu 9.10</a> Server edition for <a title="Adobe ColdFusion" href="http://www.adobe.com/products/coldfusion/">ColdFusion</a> development on my MacBook Pro.</p>
<p><span id="more-123"></span></p>
<h3>Step 1: Download Needed Files</h3>
<p>The first step is to download all the files you will need. Since the downloads usually take some time we&#8217;ll get them out of the way first.</p>
<p>For my installation I wanted to get more familiar with the Server edition of Ubuntu and to require fewer resources. You should be able to do a similar installation with the Desktop edition.</p>
<ul>
<li><strong>Download VirtualBox</strong> &#8211; The <a title="VirtualBox Downloads" href="http://www.virtualbox.org/wiki/Downloads">official VirtualBox download page</a>.</li>
<li><strong>Download Ubuntu</strong> &#8211; To download the Server edition you will need to <a title="Ubuntu Download Mirrors" href="http://www.ubuntu.com/getubuntu/downloadmirrors#mirrors">find a mirror</a> that hosts the installer images. Once you find a mirror navigate to the 9.10 directory and find the download link for the <code>ubuntu-9.10-server-i386.iso</code> file.</li>
<li><strong>Download ColdFusion</strong> &#8211; The <a title="ColdFusion Edition Downloads" href="http://www.adobe.com/products/coldfusion/editions/">official Developer Edition Download</a> is available on the <a title="Adobe ColdFusion" href="http://www.adobe.com/products/coldfusion/">Adobe ColdFusion</a> page. Download the Linux 32 bit installer.</li>
</ul>
<h3>Step 2: Install VirtualBox</h3>
<p>Once you have downloaded all the files, run the VirtualBox installer.</p>
<p>If you would like to learn more about VirtualBox the installation comes with a user manual or you can download a pdf copy from their <a title="VirtualBox Downloads" href="http://www.virtualbox.org/wiki/Downloads">download page</a>.</p>
<h3>Step 3: Create an Ubuntu Virtual Machine</h3>
<p>Click the <code>New</code> icon in VirtualBox to start the wizard for adding a new VM.</p>
<ol>
<li>Click <code>Next</code> to start the wizard.</li>
<li>Enter <code>Ubuntu CF</code> for the <code>Name</code> of the VM.</li>
<li>Select <code>Linux</code> and <code>Ubuntu</code> in the <code>OS Type</code> drop downs.</li>
<li>Click <code>Next</code>.</li>
<li>Click <code>Next</code> to accept the default amount of RAM. (You can adjust if you want to&#8230;)</li>
<li>Click <code>Next</code> to create a new hard disk image to use for the VM.
<ol>
<li>Click <code>Next</code> to start the wizard .</li>
<li>Click <code>Next</code> to create a dynamically expanding storage.</li>
<li>Click <code>Next</code> to accept the default name and size.</li>
<li>Click <code>Finish</code> to accept the choices for the disk image.</li>
</ol>
</li>
<li>Click <code>Finish</code> to end the wizard.</li>
</ol>
<h3>Step 4: Install Ubuntu</h3>
<p>Now that there is a VM setup to hold the guest Ubuntu system we need to install Ubuntu on it.</p>
<p>In VirtualBox Double Click on the <code>Ubuntu CF</code> listed in the left column to start up the VM. Since this is the first time you are starting the VM it will bring a up a First Run Wizard to guide you in setting up the new VM.</p>
<ol>
<li>Click <code>Next</code> to start the wizard.</li>
<li>Change the <code>Media Source</code> to <code>Image File</code> and click the <code>Other...</code> icon.
<ol>
<li>Click the <code>Add</code> icon along the top.</li>
<li>Select the <code>ubuntu-9.10-server-i386.iso</code> file we downloaded earlier.</li>
<li>Click <code>Select</code> with the <code>ubuntu-9.10-server-i386.iso</code> item selected.</li>
</ol>
</li>
<li>Click <code>Next</code> to continue.</li>
<li>Click <code>Finish</code> to end the wizard.</li>
</ol>
<p>The VM should now startup and bring up the installation the Ubuntu. I&#8217;m not going to go into the details of installing Ubuntu here, so just continue with the next step once Ubuntu installation is complete. Also, since we are going to be using apache you may wish to have the setup create a LAMP server configuration when choosing features or you can install it manually afterwards.</p>
<h3>Step 5: Setup Guest Additions</h3>
<p>In order to have the Shared Folders work we will need to install the Guest Additions.</p>
<p>Before we install the Guest Additions we will need to install dkms:</p>
<pre style="padding-left: 30px; ">sudo apt-get install dkms</pre>
<p>To mount the Guest Additions disc image to the VM press <code>Command + D</code> or select <code>Devices &gt; Install Guest Additions...</code> from the VM menu. Then install the Guest Additions by running:</p>
<pre style="padding-left: 30px; ">cd /cdrom</pre>
<pre style="padding-left: 30px; ">sudo sh ./VBoxLinuxAdditions-x86.run</pre>
<h3>Step 6: Setup Shared Folders</h3>
<p>One of the goals when creating the virtual machine was to be able to edit the files natively but run them on the guest operating system that reflects the production environment.</p>
<p>With shared folders we are able to use a local directory as a share on the guest VM.</p>
<p>Before we add the shared folder we need to have a folder to share. For this example I&#8217;m using the directory I created at <code>/Users/randy/Documents/cf9/</code>.</p>
<p>With the VM powered off edit the <code>Settings</code> and select the <code>Shared Folder</code> icon.</p>
<ol>
<li>Click the <code>Add a new shared folder definition</code> icon on the right side.</li>
<li>Enter the <code>Folder Path</code> (<code>/Users/randy/Documents/cf9/</code>) or select <code>Other...</code> from the drop down and locate the directory.</li>
<li>Enter the name you would like the share to be referenced as in the <code>Folder Name</code> field. In this case I am going to call it <code>cf9</code>.</li>
</ol>
<p>Now that we have the shared folder available to the VM we want it to mount the share each time the VM starts. To do this we startup the Ubuntu VM and edit the <code>/etc/fstab</code> file and add the following line at the end of the file (note that you will need to change the username to match your user):</p>
<pre style="padding-left: 30px;"><code>cf9	/home/randy/Documents/cf9	vboxsf	uid=randy,gid=users	0	0</code></pre>
<p>You will also need to create a blank directory at <code>/home/randy/Documents/cf9</code> that the share will mount to.</p>
<p>The next time your VM is started it should have access to <code>/Users/randy/Documents/cf9</code> on the host machine at <code>/home/randy/Documents/cf9</code> on the guest machine.</p>
<h3>Step 7: Enable Port Forwarding</h3>
<p>To setup the port forwarding you will need to stop the VM. In the terminal run the following commands to setup the port forwarding. (Note that <code>"Ubuntu CF"</code> needs to match the name of the VM created above.)</p>
<pre style="padding-left: 30px;"><code>VBoxManage setextradata "Ubuntu CF" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guesthttp/Protocol" TCP
VBoxManage setextradata "Ubuntu CF" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guesthttp/GuestPort" 80
VBoxManage setextradata "Ubuntu CF" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guesthttp/HostPort" 8580</code></pre>
<p>This will change the VM settings to have the guest port of <code>80</code> (which is the default apache port) of the guest forwarded to port <code>8580</code> on the host. Without this you would not be able to talk to the guest operating system.</p>
<h3>Step 8: Install ColdFusion</h3>
<p>Since we already downloaded the installer for ColdFusion we just need to get that file to the VM. Luckily we already setup a shared folder so if you move the installer to the <code>/Users/randy/Documents/cf9/</code> directory it will be available in the VM.</p>
<p>To run the ColdFusion installer:</p>
<pre style="padding-left: 30px; "><code>cd /home/randy/Documents/cf9/</code></pre>
<pre style="padding-left: 30px; "><code>chmod +x ColdFusion_9_WWE_linux.bin</code></pre>
<pre style="padding-left: 30px; "><code>sudo ./ColdFusion_9_WWE_linux.bin</code></pre>
<p>This should start the installer. During the installation, apache should be configured to run with ColdFusion.</p>
<h3>Step 9: Test Environment</h3>
<p>To test that the development environment is working correctly you should be able to place an <code>index.cfm</code> file in your <code>/Users/randy/Documents/cf9/</code> directory. Make sure that you place some CFML in the file to test that ColdFusion is doing it&#8217;s thing. Then visit <a href="http://localhost:8580/">http://localhost:8580/</a> in a browser on your host to test out the new development environment!</p>
]]></content:encoded>
			<wfw:commentRss>http://forthedeveloper.com/2009/coldfusion-virtualbox-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aperture Vault on Amazon S3</title>
		<link>http://forthedeveloper.com/2009/aperture-vault-on-amazon-s3/</link>
		<comments>http://forthedeveloper.com/2009/aperture-vault-on-amazon-s3/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 03:27:03 +0000</pubDate>
		<dc:creator>Randy Merrill</dc:creator>
				<category><![CDATA[amazon]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[amazon S3]]></category>
		<category><![CDATA[aperture]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[jungle disk]]></category>

		<guid isPermaLink="false">http://forthedeveloper.com/?p=58</guid>
		<description><![CDATA[As I amass more photos I get squeamish. Photos are some of the most valuable data on my computer besides the code I write. My code generally isn&#8217;t a big worry because it is being versioned and usually exists in several working copies so the risk of loss is smaller. With photos I have at [...]]]></description>
			<content:encoded><![CDATA[<p>As I amass more photos I get squeamish. Photos are some of the most valuable data on my computer besides the code I write. My code generally isn&#8217;t a big worry because it is being versioned and usually exists in several working copies so the risk of loss is smaller. With photos I have at best have a dvd backup of the originals along with a time machine backup. But if my apartment and computer goes up in smoke? It&#8217;s all gone.</p>
<p>With the wonderful advances in the cloud I decided to see what it could do for me. After doing a little searching I found a <a href="http://www.oreillynet.com/digitalmedia/blog/2007/01/backing_up_aperture_with_amazo.html">post</a> or <a href="http://tech.kateva.org/2007/01/using-amazon-s3-and-jungle-disk-to.html">two</a> about it and I decided to try it out myself.</p>
<p><span id="more-58"></span></p>
<p>To use Amazon&#8217;s S3 for the vault I need to have it be mounted as a drive. I chose to use a product called <a href="http://www.jungledisk.com/">Jungle Disk</a> to mount and manage my S3 account. Jungle Disk has clients for all the operating systems and a version for portable drives that has all three clients.</p>
<p>Once I had setup a bucket with Jungle Disk I was ready to create my vault with Aperture. The way that Aperture is programmed it won&#8217;t allow you to directly setup the vault on a network drive. To get around that I create the vault onto the desktop. Once the vault is created you will notice that it has the locked symbol next to it. I closed Aperture and removed the locked status from the file. Then I moved the vault onto the S3 drive.</p>
<p>I had about 35GB library of photos when I created the vault. Since this is all going over the internet it is going to take a while for all the files to copy over, which is to be expected. I was luckly on a university connection so the wait wasn&#8217;t <a href="http://www.neuski.com/post/29086209">as long as it was for some</a>.</p>
<p>After the files all successfully copied over to the S3 account load up Aperture. Right click on the vault that was just created and select the Update Vault Path&#8230; From there you should be able to browse to your S3 network drive and select your vault.</p>
<p>When I had taken some more pictures and went to update the vault I found the big reason that I probably would not use the S3 for anything but periodic (quarterly or semi-annually) backups. When I updated the vault it seemed to want to touch and/or copy every file. If you are on a local drive this wouldn&#8217;t be much of a problem, but since you are doing this over the internet it seemed to take about as long as the original move of the library. It might not have taken as long since I just left it working overnight I didn&#8217;t know for sure.</p>
<p>Just remember, if you do plan on using the S3 for aperture not only are you paying for the space, which is very inexpensive, but you are also paying for each request for a file so it does add a few dollars each time you do a vault update. Overall I would still use it as a periodic off-site backup but would not rely upon it for my day-to-day backups.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthedeveloper.com/2009/aperture-vault-on-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terminal Sweetness with reverse-i-search</title>
		<link>http://forthedeveloper.com/2008/terminal-sweetness-reverse-i-search/</link>
		<comments>http://forthedeveloper.com/2008/terminal-sweetness-reverse-i-search/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 03:56:47 +0000</pubDate>
		<dc:creator>Randy Merrill</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://forthedeveloper.com/?p=64</guid>
		<description><![CDATA[I am a terminal n00b, but I&#8217;m liking it. I grew up on a M$ box and didn&#8217;t take the &#8216;leap&#8217; to a linux / unix based operating system until about a year and a half ago when we got new computers at work. Since that time I have been trying to learn more about [...]]]></description>
			<content:encoded><![CDATA[<p>I am a terminal n00b, but I&#8217;m liking it. I grew up on a M$ box and didn&#8217;t take the &#8216;leap&#8217; to a linux / unix based operating system until about a year and a half ago when we got new computers at work. Since that time I have been trying to learn more about the terminal and am very impressed by it. I&#8217;ve been using OS X at work and Ubuntu at home and haven&#8217;t booted into windows (except for playing games) for almost a year.</p>
<p>Something that I found out in the recent months and finding very useful is the reverse-i-search. By pressing <code>ctrl + r</code> in the terminal (works at least in ubuntu and OS X, probably all real terminals) you are given a console line like the following:</p>
<blockquote><p><code>(reverse-i-search)`':</code></p></blockquote>
<p>As you type the terminal will search through your terminal history and locate any commands that contain what you search.</p>
<p><span id="more-64"></span></p>
<p>For instance if you type <code>ssh</code> it will start searching through the history and show you the last one that you used that had <code>ssh</code> in the command. If the first result isn&#8217;t the one that you are looking for you can press <code>ctrl + r</code> to keep the search going and cycle back through your history.</p>
<p>I am still amazed by all the things that I am learning about *nux operating systems and I am only touching the surface.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthedeveloper.com/2008/terminal-sweetness-reverse-i-search/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
