<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user">
    <title>gmane.comp.web.zope.plone.calendarx.user</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/801"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/800"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/799"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/798"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/797"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/796"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/795"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/794"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/793"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/792"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/791"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/790"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/789"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/788"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/787"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/786"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/785"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/784"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/783"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/782"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/801">
    <title>Re: unsubscribe</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/801</link>
    <description>&lt;pre&gt;On Sat, Jun 4, 2011 at 8:03 AM,
&amp;lt;calendarx-users-request&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt; wrote:




Sending your request to 'calendarx-users' won't work; send your
request instead to 'calendarx-users-request'.

~John

------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Discover what all the cheering's about.
Get your free trial download today. 
http://p.sf.net/sfu/quest-dev2dev2 &lt;/pre&gt;</description>
    <dc:creator>John DeStefano</dc:creator>
    <dc:date>2011-06-04T18:26:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/800">
    <title>Re: Update Calendar Question</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/800</link>
    <description>&lt;pre&gt;Hi Mark,



Not sure if anyone's created this yet, but it should be relatively straightforward to implement.  First, I think you'd need to create either a BrowserView or ExternalMethod to calculate a date one week in the past.  You'll need to do this as the datetime library is not available in restricted python.

You could do something like this:

def getSevenDaysAgo():
   now = datetime.datetime.now()
   then = now - datetime.timedelta(days=7)
   return then

Then, inside the macro for rending an individual event, you could use tal:condition to check to see if the modified date is within the last 7 days.  That might look something like this:

&amp;lt;div tal:define="sevenDaysAgo context.context.getSevenDaysAgo()"&amp;gt;
...
&amp;lt;span tal:condition="python: obj.modified &amp;gt; sevenDaysAgo" class="modified-event"&amp;gt;Modified&amp;lt;/span&amp;gt;
...
&amp;lt;/div&amp;gt;

It's an interesting use case.  Let us know how this works out for you.

--
David Siedband
http://zentraal.com




------------------------------------------------------------------------------&lt;/pre&gt;</description>
    <dc:creator>David Siedband</dc:creator>
    <dc:date>2011-06-02T22:28:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/799">
    <title>Update Calendar Question</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/799</link>
    <description>&lt;pre&gt;Has anyone created a way to add an "updated" image/tag/text to an event that
is updated on a calendarx calendar? I haven't thought through how it would
be implemented, but it might be useful to have text or an image associated
with a calendar entry when it is changed, and then disappear a week later,
or even by request url. The use case is a group calendar that shows users as
they view the calendar what has changed with added text/image and what is
still the same. An email could be sent out, but for those groups who visit
the calendar infrequently, it would be useful to have this indication of an
updated event.

Thanks!

Mark
------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger.
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Discover what all the cheering's about.
Get your free trial download today. 
http://p.sf.net/sfu/quest-dev2dev2 _________&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2011-06-02T16:19:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/798">
    <title>Re: Calendar X on Plone 4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/798</link>
    <description>&lt;pre&gt;Hi David,
   Your help would be greatly appreciated.  I've been unPloned personally
for a couple years now, so I have little motivation to do this myself, but
am always tickled to see how many Plone sites still use CalendarX and how I
would be tickled to see someone else move it forward.  I'll help as much as
I can, within limits of my time.

#1 - Yep, absolutely trivial.  CalendarX has always had the code for both
AdvancedQuery and standard Plone catalog queries.  All that needs to be done
is to change the default behavior from using AQ to using the standard
approach.  I believe both sets of queries are in working order otherwise,
unless there are in Plone4 changes to the names of the parts of the standard
Event.

#2 - This is what flummoxed me.  I got CalendarX to run (using the above)
just fine, except none of the Javascript and CSS were loading for the
Calendar, so it lacked key functionality as well as styling.  I didn't
immediately find instructions on how to do this, but it sounds like you're
the one &lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2011-05-12T15:59:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/797">
    <title>Calendar X on Plone 4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/797</link>
    <description>&lt;pre&gt;Hi,

I saw the earlier thread about making CalendarX work on Plone 4 and I'm following up to see if anyone has made progress on this goal.  I'm interested to move this forward and I'm reaching out to connect with people who might want to work together to make this happen.  If you're interested in working on this or pooling resources, ping me on email or irc (siebo on freenode).

Lupa, you mentioned in an earlier thread two tasks that needed to be done to get CalendarX working on Plone 4, specifically (1) migrating from AdvancedQuery to standard Plone catalog queries, and (2) changing how the css/javascripts are registered with Plone.  You mentioned that you had made some progress getting #1 working, and that you were looking for help with #2.  I think with a bit more information I could take this on.  I assume this means registering the CSS/scripts using GenericSetup.  I'm just a little unclear on which css/scripts to associate and what kind of conditionals we'd be using to limit their rendering to CalX page&lt;/pre&gt;</description>
    <dc:creator>David Siedband</dc:creator>
    <dc:date>2011-05-12T15:05:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/796">
    <title>Plone 4 Compatibility?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/796</link>
    <description>&lt;pre&gt;I tried adding calendarX from
http://svn.plone.org/svn/collective/Products.CalendarX to a fresh Plone
4.0.2 install without any buildout errors and got these errors when running
plonecfg fg:

orca:/usr/local/Plone/zinstance# bin/plonectl fg
instance: 2011-01-06 06:49:55 INFO ZServer HTTP server started at Thu Jan  6
06:49:55 2011
    Hostname: 0.0.0.0
    Port: 4040
2011-01-06 06:49:55 INFO Zope Set effective user to "plone"
/usr/local/Plone/buildout-cache/eggs/Products.CalendarX-0.9.6stable-py2.6.egg/Products/CalendarX/__init__.py:46:
DeprecationWarning: package_home is deprecated. import from App.Common
instead
  from Globals import package_home
2011-01-06 06:49:57 ERROR Application Couldn't install CalendarX
Traceback (most recent call last):
  File
"/usr/local/Plone/buildout-cache/eggs/Zope2-2.12.13-py2.6-linux-x86_64.egg/OFS/Application.py",
line 671, in install_product
    initmethod(context)
  File
"/usr/local/Plone/buildout-cache/eggs/Products.CalendarX-0.9.6stable-py2.6.egg/Products/CalendarX/__init&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2011-01-06T14:32:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/795">
    <title>Re: Is it possible to display non-event objects</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/795</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev_______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2010-09-18T01:36:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/794">
    <title>Is it possible to display non-event objects</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/794</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev_______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2010-09-17T00:43:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/793">
    <title>Re: Installing CalendarX on Plone 4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/793</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd_______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2010-09-03T15:31:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/792">
    <title>Re: Odd Behavior for October 31</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/792</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2010-08-11T03:27:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/791">
    <title>Re: Odd Behavior for October 31</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/791</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2010-08-11T03:18:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/790">
    <title>Re: Odd Behavior for October 31</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/790</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2010-08-11T03:07:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/789">
    <title>Re: Odd Behavior for October 31</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/789</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2010-08-11T02:42:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/788">
    <title>Odd Behavior for October 31</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/788</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2010-08-10T23:41:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/787">
    <title>Re: Import iCal into CalendarX?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/787</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2010-08-10T17:13:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/786">
    <title>Import iCal into CalendarX?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/786</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev _______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2010-08-10T15:08:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/785">
    <title>main calendar</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/785</link>
    <description>&lt;pre&gt;I am working in Plone 3 and have created several calendars that work great. Now
I want to create another calendar that shows (display only) all events from all
the calendars in the same folder - I theoretically should be able to do that by
listing all the event types I want to display but that doesn't work. I don't
want to use subfolders - and that doesn't seems to work in Plone 3 anyway. 

Can anyone help?


------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
&lt;/pre&gt;</description>
    <dc:creator>Ann W</dc:creator>
    <dc:date>2010-07-19T20:02:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/784">
    <title>Re: export/import/sync from other calendars ?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/784</link>
    <description>&lt;pre&gt;Am 01.06.2010 13:40, schrieb Lupa Zurven:

Hello Lupa, Hello Marc,

I think I have found a good solution for my purpose.
I'm using two different calendar products concurrently:

* CalendarX: far more display features
* Plone4ArtistsCalendar (Plone 3.0 bundle):
  poor display features, but ical/val-Import/Export for all events at once

When I want to export/import my events in ical format I switch to
Plone4ArtistsCalendar, for the rest I use CalendarX :-)

It's seems to be a good solution, most other ical Plone products
seem to be outdated (only for Plone2 etc).

Thank you for your help !

Stefan







------------------------------------------------------------------------------
&lt;/pre&gt;</description>
    <dc:creator>stefanx</dc:creator>
    <dc:date>2010-06-02T11:35:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/783">
    <title>Re: export/import/sync from other calendars ?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/783</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------

_______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Mark Phillips</dc:creator>
    <dc:date>2010-06-01T12:56:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/782">
    <title>Re: export/import/sync from other calendars ?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/782</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------

_______________________________________________
CalendarX-users mailing list
CalendarX-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/calendarx-users
&lt;/pre&gt;</description>
    <dc:creator>Lupa Zurven</dc:creator>
    <dc:date>2010-06-01T11:40:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/781">
    <title>export/import/sync from other calendars ?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.calendarx.user/781</link>
    <description>&lt;pre&gt;
Hello,

I'm searching for a usable plone calendar product. At
first calendarx seems to be the best tool, but it
seems to have no instrument to communicate with other
calendar software (with vcal,ical,syncml etc).
Am I right?

Stefan





------------------------------------------------------------------------------
&lt;/pre&gt;</description>
    <dc:creator>stefanx</dc:creator>
    <dc:date>2010-06-01T10:09:23</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.zope.plone.calendarx.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.zope.plone.calendarx.user</link>
  </textinput>
</rdf:RDF>

