<?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.mail.sup.general">
    <title>gmane.mail.sup.general</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general</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.mail.sup.general/4571"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4570"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4569"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4568"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4567"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4566"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4564"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4563"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4562"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4561"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4560"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4559"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4558"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4557"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4556"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4555"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4554"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4553"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4552"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.sup.general/4551"/>
      </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.mail.sup.general/4571">
    <title>Re: Release 0.13.0</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4571</link>
    <description>&lt;pre&gt;Hey everyone,

Excerpts from Gaute Hope's message of mer. mai 15 10:30:27 +0200 2013:

I'd like to thank every one of you for reviving sup. After having left
heliotrope on the side, I was longing for an alternative but couldn't
find anything as pleasant to hack on as heliotrope. I can now use all
the power of a search-driven MUA, and I can do it because you pushed it
to this release. You are awesome, thank you!

&lt;/pre&gt;</description>
    <dc:creator>Matthieu Rakotojaona</dc:creator>
    <dc:date>2013-05-17T20:34:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4570">
    <title>Re: [PATCH] Fix search-for-next function when using Ruby 1.9</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4570</link>
    <description>&lt;pre&gt;Thanks, is merged into develop and line-0.13-develop.

Regards, Gaute

On fr. 17. mai 2013 kl. 18.51 +0200, Mark Alexander wrote:
&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-05-17T16:58:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4569">
    <title>[PATCH] Fix search-for-next function when using Ruby 1.9</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4569</link>
    <description>&lt;pre&gt;[Note: I've submitted a pull request for this fix.]

The use of the 'n' key to search for the next occurrence
of a string stopped working when running sup in Ruby 1.9.
This simple patch fixes that problem.
---
 lib/sup/buffer.rb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/sup/buffer.rb b/lib/sup/buffer.rb
index 444589a..859e0c7 100644
--- a/lib/sup/buffer.rb
+++ b/lib/sup/buffer.rb
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -271,7 +271,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; EOS
 
   def handle_input c
     if &amp;lt; at &amp;gt;focus_buf
-      if &amp;lt; at &amp;gt;focus_buf.mode.in_search? &amp;amp;&amp;amp; c != CONTINUE_IN_BUFFER_SEARCH_KEY[0]
+      if &amp;lt; at &amp;gt;focus_buf.mode.in_search? &amp;amp;&amp;amp; c != CONTINUE_IN_BUFFER_SEARCH_KEY.ord
         &amp;lt; at &amp;gt;focus_buf.mode.cancel_search!
         &amp;lt; at &amp;gt;focus_buf.mark_dirty
       end
&lt;/pre&gt;</description>
    <dc:creator>Mark Alexander</dc:creator>
    <dc:date>2013-05-17T16:51:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4568">
    <title>Re: Release 0.13.0</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4568</link>
    <description>&lt;pre&gt;
Seems to have been a glitch, is back up now.

https://status.github.com/messages

- gaute
&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-05-15T14:38:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4567">
    <title>Re: Release 0.13.0</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4567</link>
    <description>&lt;pre&gt;
The new website seems to be down!
~d
&lt;/pre&gt;</description>
    <dc:creator>Daniel Wagner</dc:creator>
    <dc:date>2013-05-15T13:28:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4566">
    <title>Release 0.13.0</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4566</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Greetings fellow Suppers,

We have just released version 0.13.0 at Rubygems:

  https://rubygems.org/gems/sup

to install:

  gem install sup

for more information check out the wiki:

  https://github.com/sup-heliotrope/sup/wiki

or the new web site:

  http://supmua.org


Thanks a lot to all who have contributed over the last years since the
previous release, and in particular all those who have been part of
effort to get Sup going again and getting this release out as well as
William Morgan who has let us keep working on Sup. I hope it will last!


Please report bugs too:

  https://github.com/sup-heliotrope/sup/issues


- - The Sup maintainers


Note: The gem has been signed with my key (included below), note
however that Rubygems signing is still only in its infancy.

- -----BEGIN CERTIFICATE-----
MIIDVDCCAjygAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQDDAJlZzEV
MBMGCgmSJomT8ixkARkWBWdhdXRlMRUwEwYKCZImiZPyLGQBGRYFdmV0c2oxEzAR
BgoJkiaJk/IsZAEZFgNjb20wHhcNMTMw&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-05-15T08:30:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4564">
    <title>Re: Getting ready for sup-0.13</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4564</link>
    <description>&lt;pre&gt; 

Yay, this makes my day, Thanks to all involved!
 

&lt;/pre&gt;</description>
    <dc:creator>Ico Doornekamp</dc:creator>
    <dc:date>2013-04-28T20:33:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4563">
    <title>Re: Getting ready for sup-0.13</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4563</link>
    <description>&lt;pre&gt;Hi Gaute,

thanks to you guys for giving some focus - I'm very happy that sup
development is gaining some traction again!

Excerpts from Gaute Hope's message of 2013-04-28 21:01:28 +0200:

Sure, I definitely want to finish what I started :-) I just added myself.

Cheers,
Eric
&lt;/pre&gt;</description>
    <dc:creator>Eric Weikl</dc:creator>
    <dc:date>2013-04-28T19:59:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4562">
    <title>Re: Getting ready for sup-0.13</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4562</link>
    <description>&lt;pre&gt;
Kudos and thanks to all the sup maintainers and contributors. It is 
really exciting to see sup get the attention it deserves.

I will definitely stay on top of the develop branch to assist in any way 
possible.

Regards,
Steven

Excerpts from Gaute Hope's message of 2013-04-28 14:23:29 -0400:
&lt;/pre&gt;</description>
    <dc:creator>Steven Hum</dc:creator>
    <dc:date>2013-04-28T19:05:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4561">
    <title>Re: Getting ready for sup-0.13</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4561</link>
    <description>&lt;pre&gt;
thanks, I am not at all alone.

That'd be great. Don't hesitate to add yourself to homepage/webpage
responsible:
https://github.com/sup-heliotrope/sup/wiki/Development#roles-and-tasks
if you wish to.

&amp;lt; at &amp;gt;ericweikl: you already did some work to keep the maildir branch up to
date so if you wish you could add yourself to the maildir-sync branch
responsible at the same wikipage.

neither of you will be alone of course.

when we get around to it sup.rubyforge.org should redirect to the new site.

Regards, Gaute
&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-04-28T19:01:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4560">
    <title>Re: Getting ready for sup-0.13</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4560</link>
    <description>&lt;pre&gt;Gaute -- thank you so much for organizing and calling out what needs to get
done.

It's great to see sup getting some love again!

On Sun, Apr 28, 2013 at 11:23 AM, Gaute Hope &amp;lt;eg&amp;lt; at &amp;gt;gaute.vetsj.com&amp;gt; wrote:


I'd love to help contribute to testing, but am short on time these days.
However, I setup the site, and will work to fix up the content on there.
Please file requests here:
https://github.com/sup-heliotrope/sup-heliotrope.github.io/issues

Cheers,
jof

_______________________________________________
sup-talk mailing list
sup-talk&amp;lt; at &amp;gt;rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-talk
&lt;/pre&gt;</description>
    <dc:creator>Jonathan Lassoff</dc:creator>
    <dc:date>2013-04-28T18:47:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4559">
    <title>Getting ready for sup-0.13</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4559</link>
    <description>&lt;pre&gt;Greetings list,

William has graciously given us access to the rest of the Sup
infrastructure and the plan is to move as much as possible to GitHub.

At the moment we are three maintainers: Hamish Downer, Matthieu
Rakotojaona and myself.

There are three categories for the sup repository team:
Owner, Commiter, Contributor. Pretty much any kind of contribution would
mean we would add you to the contributor team if you asked to be.

The plan for sup is:
Release sup-0.13 relatively soon:
 - including the last bugfixes otherwise leave out the major changes
   that have been discussed lately

And the proposed roadmap for sup-0.14:
 - support ruby 2.0.0
 - migrate to psych
 - remove all deprecated and abandoned dependencies (e.g. switch from
RMail to Mail)
 - implement IMAP syncback support
 - get uft-8 encoding right

We have documented this setup and the roadmap in the wiki at:
 -
https://github.com/sup-heliotrope/sup/wiki/Development%3A-Administration-and-Team
 - https://github.com/sup-heliotrope/sup/wiki/Devel&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-04-28T18:23:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4558">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4558</link>
    <description>&lt;pre&gt;hey William -- as a happy sup user, let me add my voice to the 'thanks
and no worries' list.  Life happens! ;)

--j.

On Sun, Apr 21, 2013 at 4:31 AM, William Morgan
&amp;lt;wmorgan-sup&amp;lt; at &amp;gt;masanjin.net&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Justin Mason</dc:creator>
    <dc:date>2013-04-22T09:32:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4557">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4557</link>
    <description>&lt;pre&gt;Thanks very much for the kind words. I appreciate it.

Excerpts from Matthieu Rakotojaona's message of 2013-04-21 11:16:32 -0700:
&lt;/pre&gt;</description>
    <dc:creator>William Morgan</dc:creator>
    <dc:date>2013-04-21T22:52:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4556">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4556</link>
    <description>&lt;pre&gt;
Ah, I thought maybe you had more control over the wiki. Now we have
access to rubyforge I've opened a support request about it -
https://rubyforge.org/tracker/index.php?func=detail&amp;amp;aid=29744&amp;amp;group_id=5&amp;amp;atid=102

Fingers crossed ...

Hamish
&lt;/pre&gt;</description>
    <dc:creator>Hamish D</dc:creator>
    <dc:date>2013-04-21T19:22:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4555">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4555</link>
    <description>&lt;pre&gt;Hi William,

It's a sad thing you do not have time to spare on a project in which
you have put so much attention. Don't worry, we will take good care of
your code for you =]

I don't have much to add to the discussion, just a big thank you for
sup, heliotrope and the other gems (haha !) you have come up with.
Sometimes I wish other projects would read your code and take some
inspiration of the readability you have.

Anyway, see you around !

&lt;/pre&gt;</description>
    <dc:creator>Matthieu Rakotojaona</dc:creator>
    <dc:date>2013-04-21T18:16:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4554">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4554</link>
    <description>&lt;pre&gt;Hi William,

Thanks, this looks good. I will add Hamish and Matthieu as
administrators as well.

Regards, Gaute

On 21. april 2013 18:41, William Morgan wrote:
&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-04-21T17:53:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4553">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4553</link>
    <description>&lt;pre&gt;Excerpts from Hamish D's message of 2013-04-21 02:16:05 -0700:

Unfortunately, I do not. I didn't save any myself, and the Rubyforge admin
pages don't give you anything magical here.

&lt;/pre&gt;</description>
    <dc:creator>William Morgan</dc:creator>
    <dc:date>2013-04-21T16:43:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4552">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4552</link>
    <description>&lt;pre&gt;Ok, Gaute, I've added you as an admin of the Rubyforge page, and admin
of the Gitorious project, and as an owner of the gem. Let me know if for
some reason I've screwed any of that up. Rubyforge adminship should
allow you to change the contents of sup.rubyforge.org and administer the
mailing lists.

The freenode channel was set up by someone else... I don't remember who.
I only used it once.

Let me know what else I can do.

Excerpts from Gaute Hope's message of 2013-04-21 03:11:23 -0700:
&lt;/pre&gt;</description>
    <dc:creator>William Morgan</dc:creator>
    <dc:date>2013-04-21T16:41:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4551">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4551</link>
    <description>&lt;pre&gt;
Den 21. apr. 2013 kl. 12.11 skrev Gaute Hope:

Is #sup &amp;lt; at &amp;gt; freenode something that is in sup control? Not very important perhaps, but just to make sure it doesnt get spammed..

Gaute
&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-04-21T10:18:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.sup.general/4550">
    <title>Re: what can i help with?</title>
    <link>http://permalink.gmane.org/gmane.mail.sup.general/4550</link>
    <description>&lt;pre&gt;Hi William and list,

No stress and its nice to hear from you again.

I would be happy to take over that responsibility (and share it with for instance Hamish and Matthieu for starters, which I can fix afterwards of course).  

I will most likely stay interested in the project for a long time, but it will definitely vary how much time I can spend - so lets quickly get someone else on the admin part as well.

Den 21. apr. 2013 kl. 11.16 skrev Hamish D:


Perhaps put a note up on the Gitorious sup organization (to avoid confusion)?

As you may know we have put up an organization on GitHub we would be happy to add you there (if for nothing else than as an honorary member).  

It is great to be able to continue the original project and not fork it off which definitely would loose some of the original community. Thanks for sharing it!

Cheers, Gaute
&lt;/pre&gt;</description>
    <dc:creator>Gaute Hope</dc:creator>
    <dc:date>2013-04-21T10:11:23</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.mail.sup.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.mail.sup.general</link>
  </textinput>
</rdf:RDF>
