<?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>Yet another web log &#187; Office</title>
	<atom:link href="http://blog.philippheckel.com/category/office/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.philippheckel.com</link>
	<description>Life, Linux and other things</description>
	<lastBuildDate>Thu, 17 Mar 2011 10:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Extract text from PDF files</title>
		<link>http://blog.philippheckel.com/2009/08/09/extract-text-from-pdf-files/</link>
		<comments>http://blog.philippheckel.com/2009/08/09/extract-text-from-pdf-files/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 17:17:05 +0000</pubDate>
		<dc:creator>Philipp C. Heckel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://blog.philippheckel.com/2009/08/09/extract-text-from-pdf-files/</guid>
		<description><![CDATA[Adobe&#8217;s Portable Document Format (PDF) has reached great popularity over the last years and is the number one format for easy document exchange. It comes with great features such as embeddable images and multimedia, but also has rather unpleasant properties. The so called Security Features represent a simple Digital Rights Management (DRM) system and allow [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe&#8217;s Portable Document Format (PDF) has reached great popularity over the last years and is the number one format for easy document exchange. It comes with great features such as embeddable images and multimedia, but also has rather unpleasant properties. The so called <em>Security Features</em> represent a simple Digital Rights Management (DRM) system and allow PDF authors to restrict the file usage. Using the DRM system, authors can allow or deny actions such as printing a file, commenting or copying content.</p>
<p>Even though this is a good idea for some situations, most of the times, it&#8217;s just annoying: Collecting ideas for seminar papers or a thesis, for instance, is almost impossible without being able to Copy &amp; Paste certain paragraphs from the PDF. </p>
<p><span id="more-24"></span></p>
<p>Fortunately, Linux can solve this problem with a simple tool called <strong>pdf to text</strong>. This command line tool simply strips all text from the PDF file and saves it to a given text-file.</p>
<h3 id="toc-installation">Installation</h3>
<p>The tool is part of the package <strong>poppler-utils</strong> and can be installed via your favorite package manager, e.g. apt-get:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> poppler-utils</pre></div></div>

<h3 id="toc-extract-text-from-pdf-files">Extract text from PDF files</h3>
<p>This is also pretty simple and the man-page gives the instructions: <em>pdftotext [options] &lt;PDF&gt; [&lt;text-file&gt;]</em>.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ pdftotext PDF-file-with-copy-and-paste-restriction.pdf</pre></div></div>

<p>In case you&#8217;d like to perform this for every PDF-file in a folder (recursive search), simple do that:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #660033;">-name</span> <span style="color: #ff0000;">'*.pdf'</span> <span style="color: #660033;">-exec</span> pdftotext <span style="color: #ff0000;">&quot;{}&quot;</span> \;</pre></div></div>

<p>After executing the command, there will be a *.txt-file for each PDF file in the folder, &#8211; containing the plain-text of the corresponding PDF file.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.philippheckel.com/2009/08/09/extract-text-from-pdf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GCALDaemon deb-package for Ubuntu/Kubuntu</title>
		<link>http://blog.philippheckel.com/2008/09/30/gcaldaemon-deb-package-for-ubuntu-kubuntu/</link>
		<comments>http://blog.philippheckel.com/2008/09/30/gcaldaemon-deb-package-for-ubuntu-kubuntu/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 16:50:38 +0000</pubDate>
		<dc:creator>Philipp C. Heckel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Synchronization]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.philippheckel.com/2008/09/30/gcaldaemon-deb-package-for-ubuntu-kubuntu/</guid>
		<description><![CDATA[GCALDaemon is a great tool to synchronise many of Google&#8217;s services such as Google Calendar and Contacts with your local PC. Unfortunately, the installation on Ubuntu/Kubuntu and any other Linux distribution is still not the most comfortable. For this reason, I sat down some hours and packed the tool into a deb-package and additionally added [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://gcaldaemon.sourceforge.net/">GCALDaemon</a> is a great tool to synchronise many of Google&#8217;s services such as Google Calendar and Contacts with your local PC. </p>
<p>Unfortunately, the installation on Ubuntu/Kubuntu and any other Linux distribution is still not the most comfortable. For this reason, I sat down some hours and packed the tool into a <strong>deb-package</strong> and additionally added a nice command line tool to simplify some of the basics.</p>
<p><span id="more-12"></span></p>
<p>For those who can&#8217;t wait, here&#8217;s the package: <a href="/uploads/2008/09/gcaldaemon_1.0beta16~ubuntu0_all.deb">gcaldaemon_1.0beta16~ubuntu0_all.deb</a></p>
<p><strong>Update Nov &#8217;08: Ubuntu Intrepid</strong>: I just re-installed my Ubuntu and successfully tested the provided version for the new system. Works like a charm for Hardy and for Intrepid.<br />
~ 150 downloads so far, no complains/malfunctions!</p>
<p><strong>Update Feb &#8217;09: Launchpad</strong>: I just uploaded the code that creates the deb-package on <a href="https://code.launchpad.net/~binwiederhier/+junk/gcaldaemon">Launchpad</a>. Maybe somebody of the Ubuntu team will pick it up and integrate it into the distribution. There is also a <a href="https://bugs.launchpad.net/ubuntu/+bug/305446">bug report</a> for this issue, &#8211; feel free to contribute. </p>
<p>For all of you interested how to create your own package from my sources, follow these steps:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ bzr branch <span style="color: #c20cb9; font-weight: bold;">lp</span>:~binwiederhier<span style="color: #000000; font-weight: bold;">/</span>+junk<span style="color: #000000; font-weight: bold;">/</span>gcaldaemon
$ <span style="color: #7a0874; font-weight: bold;">cd</span> gcaldaemon
$ <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>downloads.sourceforge.net<span style="color: #000000; font-weight: bold;">/</span>gcaldaemon<span style="color: #000000; font-weight: bold;">/</span>gcaldaemon-linux-<span style="color: #000000;">1.0</span>-beta16.zip
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> .<span style="color: #000000; font-weight: bold;">/</span>create-package.sh gcaldaemon-linux-<span style="color: #000000;">1.0</span>-beta16.zip <span style="color: #ff0000;">'gcaldaemon_1.0beta16~ubuntu0_all.deb'</span>
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> gcaldaemon_1.0beta16~ubuntu0_all.deb</pre></div></div>

<p><strong>Update Apr &#8217;09: Ubuntu 9.04, Jaunty Jackalope</strong>: As <a href="#comment-4872">Jens</a> just wrote in the comments-section, the deb-package seems to work for Jaunty as well without complications. Yeyy!</p>
<p><strong>Update Jan &#8217;11: Ubuntu 10.04 &amp; 10.10</strong>: According to my tests, the package still works perfectly with both Lucid Lynx and Maverick Meerkat.</p>
<h3 id="toc-download-and-install">Download and install</h3>
<p>Alternatively to creating the package from my source, you can just download and install it from <a href="/uploads/2008/09/gcaldaemon_1.0beta16~ubuntu0_all.deb">my deb-file</a>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>blog.philippheckel.com<span style="color: #000000; font-weight: bold;">/</span>uploads<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2008</span><span style="color: #000000; font-weight: bold;">/</span>09<span style="color: #000000; font-weight: bold;">/</span>gcaldaemon_1.0beta16~ubuntu0_all.deb
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> gcaldaemon_1.0beta16~ubuntu0_all.deb</pre></div></div>

<p>The following tools will be available:</p>
<ul>
<li><strong>gcaldaemon</strong><br />Start/stop/restart the daemon.</li>
<li><strong>gcaldaemon-sync-now</strong><br />For immediate synchronization.</li>
<li><strong>gcaldaemon-config</strong><br />Open the graphical config editor.<br />Also available via the menu &bdquo;Utilities -> Configure GCALDaemon&rdquo;.</li>
<li><strong>gcaldaemon-password-encoder</strong><br />Encode passwords for the config file.</li>
</ul>
<h3 id="toc-configuration">Configuration</h3>
<p>Each user of the system can have his or her own instance of the daemon running.<br />
The config file is located at <strong>~/.gcaldaemon/conf/gcal-daemon.cfg</strong>.</p>
<p>To edit the config file, you can either use your favorite editor, e.g. <em>vi</em> or use the GCALDaemon config editor GUI:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ gcaldaemon-config</pre></div></div>

<p>You can also open the config editor via the menu:  &bdquo;Utilities -&gt; Configure GCALDaemon&rdquo;.</p>
<p>To create passwords for the config file use the <em>gcaldaemon-password-encoder</em>-script. For details about the config options, please read the <a href="http://gcaldaemon.sourceforge.net/usage.html">GCALDaemon documentation</a>.</p>
<h3 id="toc-running-gcaldaemon">Running GCALDaemon</h3>
<p>I have simplified the way how to start/stop the daemon with a small script. Simply type &#8220;gcaldaemon&#8221; to see what it can do. </p>
<p>To start, restart, stop and check the status (just like in an init-script), type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ gcaldaemon start
Starting GCALDaemon ... ok
&nbsp;
$ gcaldaemon status
GCALDaemon is running <span style="color: #c20cb9; font-weight: bold;">as</span> PID <span style="color: #000000;">30543</span>.
&nbsp;
$ gcaldaemon restart
Stopping GCALDaemon ... ok
Starting GCALDaemon ... ok
&nbsp;
$ gcaldaemon stop
Stopping GCALDaemon ... ok</pre></div></div>

<h3 id="toc-enable-autostart-for-gcaldaemon">Enable autostart for GCALDaemon</h3>
<p>To enable the autostart-option for GNOME or KDE, type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ gcaldaemon <span style="color: #7a0874; font-weight: bold;">enable</span> kde
$ gcaldaemon <span style="color: #7a0874; font-weight: bold;">enable</span> kde4
$ gcaldaemon <span style="color: #7a0874; font-weight: bold;">enable</span> gnome</pre></div></div>

<p>As a GNOME user, it&#8217;s also possible to enable/disable the daemon autostart via the menu &bdquo;System -&gt; Settings -&gt; Sessions&rdquo;</p>
<h2>Finally &#8230;</h3>
<p>I know that the package is far from perfect, but it&#8217;s a lot easier to install/configure than the original package. Feedback is always welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.philippheckel.com/2008/09/30/gcaldaemon-deb-package-for-ubuntu-kubuntu/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>Excel: add weekdays to date (VBA)</title>
		<link>http://blog.philippheckel.com/2008/07/29/excel-add-weekdays-to-date-vba/</link>
		<comments>http://blog.philippheckel.com/2008/07/29/excel-add-weekdays-to-date-vba/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 15:07:29 +0000</pubDate>
		<dc:creator>Philipp C. Heckel</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://blog.philippheckel.com/2008/07/29/excel-add-weekdays-to-date-vba/</guid>
		<description><![CDATA[Since many companies work with Microsoft Excel it is often necessary to be inventive in order to implement the required functionality in your worksheet. In some applications you might want to calculate a deadline date within the week, e.g. to make sure that a product or service will be delivered within a time frame of [...]]]></description>
			<content:encoded><![CDATA[<p>Since many companies work with Microsoft Excel it is often necessary to be inventive in order to implement the required functionality in your worksheet. </p>
<p>In some applications you might want to calculate a deadline date within the week, e.g. to make sure that a product or service will be delivered within a time frame of max. 10 working days. </p>
<p><span id="more-7"></span></p>
<h3 id="toc-the-vb-function">The VB function</h3>
<p>The following small function adds weekdays to a given start date and calculates a dealine date within the week (Mo &#8211; Fr):</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Function</span> AddWeekDays(StartDate <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>, Days <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Date</span>
    <span style="color: #151B8D; font-weight: bold;">Dim</span> i <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
    <span style="color: #151B8D; font-weight: bold;">Dim</span> d <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Date</span>
&nbsp;
    d = StartDate
    i = 0
&nbsp;
    <span style="color: #8D38C9; font-weight: bold;">While</span> i &lt; Days
        d = DateSerial(Year(d), Month(d), Day(d) + 1)
        <span style="color: #8D38C9; font-weight: bold;">If</span> Weekday(d, vbMonday) &lt; 6 <span style="color: #8D38C9; font-weight: bold;">Then</span>
            i = i + 1
        <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
    Wend
&nbsp;
    AddWeekDays = d
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Function</span></pre></div></div>

<h3 id="toc-sample-usage">Sample usage</h3>
<p>The function above can either be used in a spreadsheet or within a VB script.</p>
<h4 id="toc-usage-in-a-spreadsheet">Usage in a spreadsheet</h4>
<p>Here&#8217;s how you would add it to a spreadsheet, e.g. in Microsoft Excel or in OpenOffice.org Spreadsheet:</p>
<table>
<tr>
<th style="background-color: #ddd"></th>
<th style="background-color: #ddd">A</th>
<th style="background-color: #ddd">B</th>
<th style="background-color: #ddd">C</th>
</tr>
<tr>
<td style="background-color: #ddd; font-weight: bold; padding: 3px;">1</td>
<td><strong>Description</strong></td>
<td><strong>Order Date</strong></td>
<td><strong>Service Level Violation Date (T+10 days)</strong></td>
</tr>
<tr>
<td style="background-color: #ddd; font-weight: bold; padding: 3px;">2</td>
<td>10 workstations</td>
<td>27.07.2008</td>
<td>=AddWeekDays(B2,10)</td>
</tr>
<tr>
<td style="background-color: #ddd; font-weight: bold; padding: 3px;">3</td>
<td>2 multi function printers</td>
<td>27.07.2008</td>
<td>=AddWeekDays(C2,10)</td>
</tr>
</table>
<h4 id="toc-usage-in-a-vb-script">Usage in a VB script</h4>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Sub</span> TestWeekDays()
    <span style="color: #151B8D; font-weight: bold;">Dim</span> SLA_Violation_Date <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Date</span>
    SLA_Violation_Date = AddWeekDays(DateValue(<span style="color: #800000;">&quot;27.07.2008&quot;</span>), 10)    
&nbsp;
    <span style="color: #008000;">' Result will be 27.07.2008 + 10 Working Days = 08.08.2008
</span>    MsgBox SLA_Violation_Date
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.philippheckel.com/2008/07/29/excel-add-weekdays-to-date-vba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launch Nautilus in the current working directory</title>
		<link>http://blog.philippheckel.com/2008/05/16/launch-nautilus-with-the-current-working-directory/</link>
		<comments>http://blog.philippheckel.com/2008/05/16/launch-nautilus-with-the-current-working-directory/#comments</comments>
		<pubDate>Fri, 16 May 2008 21:33:08 +0000</pubDate>
		<dc:creator>Philipp C. Heckel</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nautilus]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://blog.philippheckel.com/2008/05/16/launch-nautilus-with-the-current-working-directory/</guid>
		<description><![CDATA[Working on the console is sometimes tiring, especially when you have to rename files. Using Nautilus is much quicker for these types of actions. The problem is, that if you&#8217;re working in a deep depth of your file tree and your path is very long, it may take you some extra seconds to open this [...]]]></description>
			<content:encoded><![CDATA[<p>Working on the console is sometimes tiring, especially when you have to rename files. Using Nautilus is much quicker for these types of actions. The problem is, that if you&#8217;re working in a deep depth of your file tree and your path is very long, it may take you some extra seconds to open this path in the Nautilus browser. So wouldn&#8217;t it be much easier to simply type <em>naut</em> on the console to <em>open Nautilus with the current working directory</em>? </p>
<p><span id="more-6"></span></p>
<h3 id="toc-update-feb09">Update Feb/09</h3>
<p>Apparently, this can be solved in a really easy way as <em>Mads Buus</em> suggested in the comments-section. The GNOME desktop environment ships with a tool called <em>gnome-open</em>, which can be used for this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ gnome-open .</pre></div></div>

<p>This opens Nautilus in the current working directory. Note: Don&#8217;t forget the dot after the command!</p>
<p>You might also want to look how to make a shortcut for this command, cmp. Mads Buus&#8217; comment below. Thanks again for this much easier solution!</p>
<h3 id="toc-the-solution">The solution</h3>
<p>The solution is basically just a one-line command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;'<span style="color: #780078;">`pwd`</span>'&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> nautilus <span style="color: #660033;">--browser</span></pre></div></div>

<p>To make it shorter, we can just put these lines in a script called <em>naut</em>. You can either save the script where you like to or put it in your very own <em>.bin</em>-directory (which I will do here).</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bin
$ <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'#!/bin/bash\necho &quot;'</span><span style="color: #000000; font-weight: bold;">\'</span><span style="color: #ff0000;">'`pwd`'</span><span style="color: #000000; font-weight: bold;">\'</span><span style="color: #ff0000;">'&quot; | xargs nautilus --browser'</span> <span style="color: #000000; font-weight: bold;">&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bin<span style="color: #000000; font-weight: bold;">/</span>naut
$ <span style="color: #c20cb9; font-weight: bold;">chmod</span> +x ~<span style="color: #000000; font-weight: bold;">/</span>.bin<span style="color: #000000; font-weight: bold;">/</span>naut</pre></div></div>

<p>Make sure to add the <em>.bin</em>-directory to your PATH variable:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'\n# Private binaries\nexport PATH=$PATH:~/.bin'</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bashrc</pre></div></div>

<h3 id="toc-usage-of-the-naut-command">Usage of the <em>naut</em>-command</h3>
<p>You can now use the <em>naut</em>-command in your console window (make sure to restart the console window before). Here is a small example:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #ff0000;">&quot;/very/long and complicated/path/to/a/very/important/directory&quot;</span>
$ naut</pre></div></div>

<p>Et voilà , the Nautilus window will pop up.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.philippheckel.com/2008/05/16/launch-nautilus-with-the-current-working-directory/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

