<?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.mozilla.sameplace">
    <title>gmane.comp.mozilla.sameplace</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace</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.mozilla.sameplace/161"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/160"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/159"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/158"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/157"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/156"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/155"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/154"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/153"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/152"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/151"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/150"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/149"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/148"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/147"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/146"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/145"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/144"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/143"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/142"/>
      </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.mozilla.sameplace/161">
    <title>How to perform TLS handshaking with SASL using DIGEST-MD5 mechanism</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/161</link>
    <description>&lt;pre&gt;Hi,

I've been trying to use xmpp4moz to connect to my facebook account,
and realized that facebook uses SASL DIGEST-MD5 mechanism.

I've setup my connection host and port correctly, yet I always's get
"XMPP: Error during authentication".

This article (http://xmpp.org/rfcs/rfc3920.html#tls) mentioned that
there's a few steps need to be performed in order to perform TLS/SASL
authentication succefully, including decoding and encoding some base64
info.

So, is there a function in xmpp4moz that can handle the handshake
process? Or do I have to create my own listeners and respond
accordingly?

Feel free to let me know if I'm looking at this in a wrong way :D

Best,
Sylver

&lt;/pre&gt;</description>
    <dc:creator>sylver</dc:creator>
    <dc:date>2012-03-15T07:14:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/160">
    <title>Re: How to close "connecting" session on Mac OSX</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/160</link>
    <description>&lt;pre&gt;Just some codes cleanup :D The setInterval in above post seems
irrelevant.

===============================================

var interval;

channel.on({event:'connector', state:'disconnected'},
  function(e){
    interval = setInterval(function(){
      reconnect();
    }, 2000);
});

function reconnect(){
  //if im connecting , stop connecting &amp;lt;-- how to do?

 XMPP.up(jid, function(){ //this works fine in windows, but OSX seems
to ignore multiple XMPP.up()?
  clearInterval(interval );
  return;
 });

}

&lt;/pre&gt;</description>
    <dc:creator>sylver</dc:creator>
    <dc:date>2010-05-26T02:38:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/159">
    <title>How to close "connecting" session on Mac OSX</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/159</link>
    <description>&lt;pre&gt;Hi,

How can I close "connecting" session on Mac OSX? I'm trying to make a
reconnect function than tries to reconnect

Code:
===========

channel.on({event:'connector', state:'disconnected'},
  function(e){
    reconnect(); //will loop
});

function reconnect(){
  //if im connecting , stop connecting &amp;lt;-- how to do?

 XMPP.up(jid, function(){ //this works fine in windows, but OSX seems
to ignore multiple XMPP.up()?
  clearInterval(interval );
  return;
 });

 var interval = setInterval(function(){
  reconnect();
 }, 2000);
}

Thanks :D

&lt;/pre&gt;</description>
    <dc:creator>sylver</dc:creator>
    <dc:date>2010-05-25T07:21:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/158">
    <title>Re: How to get "actual" resource from JID</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/158</link>
    <description>&lt;pre&gt;Hi Sonny, Thanks for bringing that up :D

I did some testing and these are my results:

Format : &amp;lt;original resource&amp;gt; ==&amp;gt; &amp;lt;after xmpp4moz added some chars&amp;gt;
lu ==&amp;gt; lu335C6C3E
ThisResourceIsLong ==&amp;gt; ThisResour543A3C91
ThisResourceIsEvenLonger ==&amp;gt; ThisResour031D14AD
lukewarm ==&amp;gt; lukewarm211CE668

Another friend of mine suggested to get the "to" value, in the &amp;lt;iq&amp;gt;
roster reply stanza. I'll do that for now :D

On Apr 27, 5:41 pm, Sonny Piers &amp;lt;sonny.pi...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>sylver</dc:creator>
    <dc:date>2010-04-28T02:18:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/157">
    <title>Re: How to get "actual" resource from JID</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/157</link>
    <description>&lt;pre&gt;I've never noticed that x4m append chars to the resource.

Maybe x4m do it because you are already connected with the resource "luke" ?

On 04/27/2010 05:15 AM, sylver wrote:


&lt;/pre&gt;</description>
    <dc:creator>Sonny Piers</dc:creator>
    <dc:date>2010-04-27T09:41:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/156">
    <title>How to get "actual" resource from JID</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/156</link>
    <description>&lt;pre&gt;Hi,

For login, I've set my account object like so:

account = XMPP.accounts;
account.jid = "star-2OxmpI07eQs&amp;lt; at &amp;gt;public.gmane.org/luke";
account.password = "lucas";

But during chat session, and by looking at XMPP console, I notice that
X4M append 8 more chars to my resource, making it looking like so:

"star-2OxmpI07eQs&amp;lt; at &amp;gt;public.gmane.org/lukeAC5D5EFA"

My question is, is there a function in X4M that returns
"lukeAC5D5EFA" ?

If not, then my next move will be to listen to an incoming message,
grab the "to" value, and then grab the resource. But that sounds quite
a lot to do :D

Any suggestion would be greatly appreciated.

Thanks :D

&lt;/pre&gt;</description>
    <dc:creator>sylver</dc:creator>
    <dc:date>2010-04-27T03:15:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/155">
    <title>Re: STARTTLS?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/155</link>
    <description>&lt;pre&gt;
It does, thanks!

Peter

&lt;/pre&gt;</description>
    <dc:creator>Peter Saint-Andre</dc:creator>
    <dc:date>2010-03-09T22:12:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/154">
    <title>Re: STARTTLS?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/154</link>
    <description>&lt;pre&gt;*** STARTTLS is supported on port 5222.

Tested with Firefox 3.5.8 against sameplace.cc (eJabberd?) and Psyced.

The latest mention of STARTTLS:
http://github.com/bard/sameplace/commit/d6f5f8bd71a8d52d21bc696d0e1951ede824a031
says it's no longer default because of a problem with Firefox. But it
worked for me with an existing PSYC account and a new XMPP account.

Also, the wizard interface doesn't switch port when STARTTLS is
selected, you have to do it manually.

Hope that helps,

==
hk

&lt;/pre&gt;</description>
    <dc:creator>Hellekin O. Wolf</dc:creator>
    <dc:date>2010-02-27T07:09:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/153">
    <title>STARTTLS?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/153</link>
    <description>&lt;pre&gt;Does SamePlace support STARTTLS on port 5222 for an encrypted
connection, or only the legacy SSL-only port 5223?

&lt;/pre&gt;</description>
    <dc:creator>stpeter</dc:creator>
    <dc:date>2010-02-27T03:47:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/152">
    <title>Re: Re: Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/152</link>
    <description>&lt;pre&gt;The devel branch is compatible with 3.6 already, I'm just not rushing
to release an updated package since it's not meant for the general
public anyway.  I suggest you work from the source at
http://github.com/bard/sameplace, "master" branch.
M.

On Tue, Jan 26, 2010 at 1:11 PM, Alberto &amp;lt;alberto.aresca-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Massimiliano Mirra</dc:creator>
    <dc:date>2010-01-26T12:43:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/151">
    <title>Re: Re: Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/151</link>
    <description>&lt;pre&gt;Hi all, I've just realized that this new version doesn't come with the
javascript module as the development version (available  at
http://repo.hyperstruct.net/xmpp4moz/devel/ ) did.
Is this to be back compatible with firefox 2.0? Since my extension
uses a lot those js module I was wondering if the version of xmpp4moz
based on those module will be upgraded to be compatible with Firefox
3.6 or if it's development will be dismissed.
Best reguards

On Mon, Jan 25, 2010 at 7:25 PM, Alberto &amp;lt;alberto.aresca-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Alberto</dc:creator>
    <dc:date>2010-01-26T12:11:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/150">
    <title>R: Re: Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/150</link>
    <description>&lt;pre&gt;You are absolutely right, i was stuck on the old development channel and i
didn't see the last few changes. Tnx for your help

Alberto Aresca

Il giorno 22 gen, 2010 5:08 p., "Massimiliano Mirra" &amp;lt;hyperstruct-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
ha scritto:

I just re-checked and the release available from sameplace.cc is
declared compatible with 3.6 already.
M.

On Fri, Jan 22, 2010 at 4:42 PM, Alberto &amp;lt;alberto.aresca-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote: &amp;gt;
From sameplace.cc, som...

Discussions: http://groups.googl...

&lt;/pre&gt;</description>
    <dc:creator>Alberto</dc:creator>
    <dc:date>2010-01-25T18:25:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/149">
    <title>Re: Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/149</link>
    <description>&lt;pre&gt;I just re-checked and the release available from sameplace.cc is
declared compatible with 3.6 already.
M.

On Fri, Jan 22, 2010 at 4:42 PM, Alberto &amp;lt;alberto.aresca-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Massimiliano Mirra</dc:creator>
    <dc:date>2010-01-22T16:08:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/148">
    <title>Re: Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/148</link>
    <description>&lt;pre&gt;From sameplace.cc, some times ago because I saw it was already
implemented using jsm, while the one available &amp;lt; at &amp;gt; addons.mozilla.org
was (at that time) a bit behind.

On Fri, Jan 22, 2010 at 4:29 PM, Massimiliano Mirra
&amp;lt;hyperstruct-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Alberto</dc:creator>
    <dc:date>2010-01-22T15:42:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/147">
    <title>Re: Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/147</link>
    <description>&lt;pre&gt;It should be already available.  Did you install from sameplace.cc or
addons.mozilla.org?

On Fri, Jan 22, 2010 at 10:33 AM, Alberto &amp;lt;alberto.aresca-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Massimiliano Mirra</dc:creator>
    <dc:date>2010-01-22T15:29:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/146">
    <title>Is new version of xmpp4moz compatible with firefox 3.6 planned?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/146</link>
    <description>&lt;pre&gt;Hi all, i'm a developing an firefox addon that relies on this fantastc
lib to perform all the xmpp operation I need. I already changed the
rdf file inside the xpi to extend the compatibility up to firefox 3.6
and so far everything worked just fine ( i perform an intensive
one2one message exchanging inside my addon).
I was wondering if I have to keep editing the rdf by myself or, if an
update will be available soon.
tnx in advance

&lt;/pre&gt;</description>
    <dc:creator>Alberto</dc:creator>
    <dc:date>2010-01-22T09:33:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/145">
    <title>Re: Forgotten variables issue in Firefox?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/145</link>
    <description>&lt;pre&gt;Hi,

Thank you for your reply. My replies below...

On 12/30/2009 4:34 PM, Marco Pivetta wrote:

Yes. I'm not using this in an overlay though, so it is just my 
extension. I generally avoid globals normally.

But in any case, my problem remains of the object being referenced 
somehow disappearing sometimes...

I might have mentioned too that I'm importing "debug" from a JavaScript 
module into the global scope (or rather, I'm using a loader to load a 
script into the global scope which in turn both imports a JavaScript 
module into the global scope and (then) adds the observers). Maybe 
there's a problem in there...

Brett



&lt;/pre&gt;</description>
    <dc:creator>Brett Zamir</dc:creator>
    <dc:date>2009-12-30T10:09:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/144">
    <title>Re: Forgotten variables issue in Firefox?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/144</link>
    <description>&lt;pre&gt;Since Javascript 2 is science-fiction for now, I could suggest you tu place
all your libraries inside some kind of "package".
Just define

* MyLibObj = {
  mycustomfunc : function () { /*blah*/ },
  debug : function (m) { alert(m); }
 }*

That way your "debug" function will not be overwritten, as it is too
difficult to find a software that uses and defines another time "MyLibObj".
This way you also avoid scope pollution :)
If you really made some function called "debug" it's easy to get in conflict
with other software using a function/var called the same way...
Just place MyLibObj in your window scope and you can use it almost anywhere
:)

2009/12/30 Brett Zamir &amp;lt;brettz9-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;





&lt;/pre&gt;</description>
    <dc:creator>Marco Pivetta</dc:creator>
    <dc:date>2009-12-30T08:34:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/143">
    <title>Forgotten variables issue in Firefox?</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/143</link>
    <description>&lt;pre&gt;Since xmpp4moz uses a lot of handlers or objects being passed around, I 
was wondering if anyone else has encountered Firefox occasionally 
apparently forgetting variables which were in its scope at the time of 
function definition? I'm not encountering this in xmpp4moz now, but 
thought I'd ask here before fishing around Firefox lists, since I'd 
imagine users here might have encountered this...

Do object references (as opposed to copies) ever "expire" if they are 
passed around too much (e.g., if called/applied in a different 'this' 
scope)? I really don't think I'm making copies so I don't see how this 
information could get lost, and I have seen this work a lot of the time, 
but it periodically does give me errors about such variables being 
undefined...

For example, I'm adding observers like:

var debug = function (m) {alert(m);};

obj.addObservers({
     action1 : function () {
         debug('warning'); // Debug should be in scope but I sometimes 
get errors saying debug is undefined
     }
     act&lt;/pre&gt;</description>
    <dc:creator>Brett Zamir</dc:creator>
    <dc:date>2009-12-30T07:48:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/142">
    <title>Bug in Socket.jsm</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/142</link>
    <description>&lt;pre&gt;Hi,

In Socket.jsm, line 298 uses destructured assignment from a regular 
expression.

     var [match, code] = response.match(/^HTTP\/1.\d (\d{3})/);

However, if this returns null (as I did when the response was 
"&amp;lt;/stream:stream&amp;gt;" due to an error, the assignment causes an error (it 
doesn't just assign to the first variable match). I believe you need to 
either put this in a try-catch block or avoid destructured assignment, 
as nice as it would be to do it that way...

best wishes,
Brett

&lt;/pre&gt;</description>
    <dc:creator>Brett Zamir</dc:creator>
    <dc:date>2009-12-29T08:58:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mozilla.sameplace/141">
    <title>XMPPTCPConnector error</title>
    <link>http://permalink.gmane.org/gmane.comp.mozilla.sameplace/141</link>
    <description>&lt;pre&gt;
Hi all, I'm deploying a firefox extension that use intensively xmpp
and the best solution I found out there was relying on xmpp4moz. Since
I'm a linux developer I had no problem until I tested my application
on windows. On the Microsoft OS (both Vista and XP) sometimes I got
the following error:
Error: Invalid state' when calling method:
[nsISAXContentHandler::endElement]" nsresult: "0x8057001c happening in
the XMPPTCPConnector.prototype.onDataAvailable function (line 367).
When this happens the first time,it will keep happening every
following login.
Anyone can help me out?
Thanks in advance

&lt;/pre&gt;</description>
    <dc:creator>Alberto</dc:creator>
    <dc:date>2009-10-27T15:14:21</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.mozilla.sameplace">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.mozilla.sameplace</link>
  </textinput>
</rdf:RDF>
