<DIV>Hi</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thanks for the reply.I need further clarification on Twisted word chat server.Your previous reply to my query mentions that "Twisted word provides&nbsp; a server that is accessible via IRC and PB.And it does support groups and multilanguages."</DIV>
<DIV>I downloaded the implementation from <A href="http://twistedmatrix.com/projects/words/">http://twistedmatrix.com/projects/words/</A></DIV>
<DIV>As such there is no "Twisted Word Chat <STRONG>Server "</STRONG> implementation available here.</DIV>
<DIV>Could you please suggest that from where can I get the server implementation for it ?</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thanks for your time.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Regards</DIV>
<DIV>Pooja</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR><BR><B><I>twisted-python-request@twistedmatrix.com</I></B> wrote:</DIV>
<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">Send Twisted-Python mailing list submissions to<BR>twisted-python@twistedmatrix.com<BR><BR>To subscribe or unsubscribe via the World Wide Web, visit<BR>http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR>or, via email, send a message with subject or body 'help' to<BR>twisted-python-request@twistedmatrix.com<BR><BR>You can reach the person managing the list at<BR>twisted-python-owner@twistedmatrix.com<BR><BR>When replying, please edit your Subject line so it is more specific<BR>than "Re: Contents of Twisted-Python digest..."<BR><BR><BR>Today's Topics:<BR><BR>1. Re: Twisted-Python Digest, Vol 17, Issue 12 (pooja bector)<BR>2. Re: SSL Example? (Eric Hsu)<BR>3. Australian Twisted folk at the OSDC: Melbourne Dec 5th - 7th<BR>2005 (Mary Gardiner)<BR>4. Re: Australian Twisted folk at the OSDC: Melbourne Dec 5th -<BR>7th 2005 (Mary Gardiner)<BR>5. Re: SSL Example?
 (markw)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message: 1<BR>Date: Sun, 14 Aug 2005 11:55:28 -0700 (PDT)<BR>From: pooja bector <PBECTOR@YAHOO.COM><BR>Subject: [Twisted-Python] Re: Twisted-Python Digest, Vol 17, Issue 12<BR>To: twisted-python@twistedmatrix.com, exarkun@divmod.com<BR>Message-ID: &lt;20050814185528.49160.qmail@web34312.mail.mud.yahoo.com&gt;<BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi<BR><BR>Thanks for the quick reply.<BR><BR>PLease let me know if the twisted word chat server is available as a software download??<BR>&gt;From where can i download the server and client software?<BR><BR>Thanks<BR>twisted-python-request@twistedmatrix.com wrote:<BR>Send Twisted-Python mailing list submissions to<BR>twisted-python@twistedmatrix.com<BR><BR>To subscribe or unsubscribe via the World Wide Web, visit<BR>http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR>or, via email, send a message with subject or
 body 'help' to<BR>twisted-python-request@twistedmatrix.com<BR><BR>You can reach the person managing the list at<BR>twisted-python-owner@twistedmatrix.com<BR><BR>When replying, please edit your Subject line so it is more specific<BR>than "Re: Contents of Twisted-Python digest..."<BR><BR><BR>Today's Topics:<BR><BR>1. Re: twisted-compliant interactive interpreter (Antony Kummel)<BR>2. Query (pooja bector)<BR>3. SSL Example? (markw)<BR>4. Re: Query (Jp Calderone)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message: 1<BR>Date: Sun, 14 Aug 2005 05:15:27 -0700 (PDT)<BR>From: Antony Kummel <BR>Subject: Re: [Twisted-Python] twisted-compliant interactive<BR>interpreter<BR>To: Twisted general discussion <BR>Message-ID: &lt;20050814121527.92362.qmail@web33908.mail.mud.yahoo.com&gt;<BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi,<BR><BR>Here is a version of PyCrust I hooked up that uses<BR>Manhole. I'm trying to figure out if there's a
 way to<BR>easily mix together some free tools to make Twisted<BR>development on Windows easier. Comments wanted.<BR><BR>Antony Kummel<BR><BR>__________________________________________________<BR>Do You Yahoo!?<BR>Tired of spam? Yahoo! Mail has the best spam protection around <BR>http://mail.yahoo.com <BR>-------------- next part --------------<BR>"""<BR>PyCrust is a python shell and namespace browser application.<BR>tCrust is a version of PyCrust that works with Twisted.<BR>"""<BR><BR># The next two lines, and the other code below that makes use of<BR># ``__main__`` and ``original``, serve the purpose of cleaning up the<BR># main namespace to look as much as possible like the regular Python<BR># shell environment.<BR>import __main__<BR>original = __main__.__dict__.keys()<BR><BR>__original_author__ = "Patrick K. O'Brien <BR>"<BR><BR>import wx<BR><BR>class App(wx.App):<BR>"""PyCrust standalone application."""<BR><BR>def OnInit(self):<BR>import wx<BR>from wx import
 py<BR><BR>wx.InitAllImageHandlers()<BR><BR># !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR># make some adaptations<BR>self.frame = py.crust.CrustFrame(title="Twisted PyCrust!",<BR>InterpClass=self.getInterpClass())<BR>def myOnClose(self, event):<BR>from twisted.internet import reactor<BR>reactor.addSystemEventTrigger('after', 'shutdown', self._OnClose, (None,))<BR>reactor.stop()<BR>self.frame._OnClose = self.frame.OnClose<BR>self.frame.OnClose = myOnClose<BR># !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR><BR>self.frame.SetSize((800, 600))<BR>self.frame.Show()<BR>self.SetTopWindow(self.frame)<BR>return True<BR><BR>def getInterpClass(self):<BR>import sys<BR>from wx import py<BR>from twisted.conch.manhole import ManholeInterpreter<BR><BR>class ManholeCrustInterpreter(py.interpreter.Interpreter):<BR>"""A version of the PyCrust interpreter that uses the manhole display hook"""<BR>def __init__(self, locals=None,
 rawin=None,<BR>stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr):<BR>py.interpreter.Interpreter.__init__(self, locals, rawin,<BR>stdin, stdout, stderr)<BR>self.manhole = ManholeInterpreter(self, locals)<BR><BR>def addOutput(self, data, async):<BR>self.write(data)<BR><BR>def runcode(self, *a, **kw):<BR>orighook, sys.displayhook = sys.displayhook, self.manhole.displayhook<BR>try:<BR>py.interpreter.Interpreter.runcode(self, *a, **kw)<BR>finally:<BR>sys.displayhook = orighook<BR><BR>return ManholeCrustInterpreter <BR><BR>'''<BR>The main() function needs to handle being imported, such as with the<BR>pycrust script that wxPython installs:<BR><BR>#!/usr/bin/env python<BR><BR>from wx.py.PyCrust import main<BR>main()<BR>'''<BR><BR>def main():<BR>"""The main function for the PyCrust program."""<BR># Cleanup the main namespace, leaving the App class.<BR>import __main__<BR>md = __main__.__dict__<BR>keepers = original<BR>keepers.append('App')<BR>for key in md.keys():<BR>if key not in
 keepers:<BR>del md[key]<BR># Create an application instance.<BR>app = App(0)<BR># Mimic the contents of the standard Python shell's sys.path.<BR>import sys<BR>if sys.path[0]:<BR>sys.path[0] = ''<BR># Add the application object to the sys module's namespace.<BR># This allows a shell user to do:<BR># &gt;&gt;&gt; import sys<BR># &gt;&gt;&gt; sys.app.whatever<BR>sys.app = app<BR>del sys<BR># Cleanup the main namespace some more.<BR>if md.has_key('App') and md['App'] is App:<BR>del md['App']<BR>if md.has_key('__main__') and md['__main__'] is __main__:<BR>del md['__main__']<BR># Start the wxPython event loop.<BR><BR># !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR># this is to integrate Twisted and wxPython<BR>from twisted.internet import threadedselectreactor<BR>threadedselectreactor.install()<BR>from twisted.internet import reactor<BR>import wx<BR>reactor.interleave(wx.CallAfter)<BR>#
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<BR><BR>app.MainLoop()<BR><BR>if __name__ == '__main__':<BR>main()<BR><BR>------------------------------<BR><BR>Message: 2<BR>Date: Sun, 14 Aug 2005 07:11:39 -0700 (PDT)<BR>From: pooja bector <BR><BR>Subject: [Twisted-Python] Query<BR>To: twisted-python@twistedmatrix.com<BR>Message-ID: &lt;20050814141139.57997.qmail@web34305.mail.mud.yahoo.com&gt;<BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi All<BR><BR>I am new to Twisted networks.I read its documentation that it is a network over which we can build network applications like chat server.<BR>I have queries regarding , Twisted Word chat server , written in python.<BR>I just know that it is available under free BSD license.<BR>I want to know that is it available as a free download.Can I download the server and a compatible client ? <BR>are the APIs of the server available?<BR>How many simlutaneuos users does it support.<BR>Does it supports group chat and
 multilanguage chatting.<BR><BR>Thanks <BR><BR>__________________________________________________<BR>Do You Yahoo!?<BR>Tired of spam? Yahoo! Mail has the best spam protection around <BR>http://mail.yahoo.com <BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: http://twistedmatrix.com/pipermail/twisted-python/attachments/20050814/0a106808/attachment-0001.htm<BR><BR>------------------------------<BR><BR>Message: 3<BR>Date: Sun, 14 Aug 2005 18:11:18 +0100<BR>From: markw <BR>Subject: [Twisted-Python] SSL Example?<BR>To: Twisted general discussion <BR>Message-ID: <BR>Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed<BR><BR>Hi,<BR><BR>I am contemplating running XML-RPC over SSL (basically for site to <BR>site process communication over the internet). Has anyone got any <BR>example code that would point me in the right direction (or just some <BR>clues :-) )<BR><BR>cheers<BR><BR>mark
 <BR><BR><BR><BR>------------------------------<BR><BR>Message: 4<BR>Date: Sun, 14 Aug 2005 13:28:44 -0400<BR>From: Jp Calderone <BR>Subject: Re: [Twisted-Python] Query<BR>To: Twisted general discussion <BR>Message-ID: &lt;20050814172844.3914.304813179.divmod.quotient.4866@ohm&gt;<BR>Content-Type: text/plain; format=flowed<BR><BR>On Sun, 14 Aug 2005 07:11:39 -0700 (PDT), pooja bector <BR>wrote:<BR>&gt;Hi All<BR>&gt;<BR>&gt;I am new to Twisted networks.I read its documentation that it is a network over which we can build network applications like chat server.<BR>&gt;I have queries regarding , Twisted Word chat server , written in python.<BR>&gt;I just know that it is available under free BSD license.<BR>&gt;I want to know that is it available as a free download.Can I download the server and a compatible client ?<BR>&gt;are the APIs of the server available?<BR>&gt;How many simlutaneuos users does it support.<BR>&gt;Does it supports group chat and multilanguage chatting.<BR><BR>Twisted
 Words provides a server accessible via IRC and PB. Any IRC client should be able to connect to it. The PB interface allows for easy programmatic access. It does support groups. It uses unicode internally, and transcodes messages received/delivered via IRC. The PB interface is just natively unicode.<BR><BR>It is written in a way intended to make it easy to plug in new access mechanisms. For example, one such plugin that has already been written is a Nevow LivePage-based web interface.<BR><BR>Jp<BR><BR><BR><BR>------------------------------<BR><BR>_______________________________________________<BR>Twisted-Python mailing list<BR>Twisted-Python@twistedmatrix.com<BR>http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR><BR><BR>End of Twisted-Python Digest, Vol 17, Issue 12<BR>**********************************************<BR><BR><BR>---------------------------------<BR>Start your day with Yahoo! - make it your home page <BR>-------------- next part --------------<BR>An HTML
 attachment was scrubbed...<BR>URL: http://twistedmatrix.com/pipermail/twisted-python/attachments/20050814/62d0e620/attachment-0001.htm<BR><BR>------------------------------<BR><BR>Message: 2<BR>Date: Mon, 15 Aug 2005 10:11:40 +0800<BR>From: Eric Hsu <NKERIC@GMAIL.COM><BR>Subject: Re: [Twisted-Python] SSL Example?<BR>To: Twisted general discussion <TWISTED-PYTHON@TWISTEDMATRIX.COM><BR>Message-ID: &lt;43c0d2b505081419113dacfc12@mail.gmail.com&gt;<BR>Content-Type: text/plain; charset=ISO-8859-1<BR><BR>here're some code examples from the official website, may them helpful<BR>for you :)<BR><BR>http://twistedmatrix.com/projects/core/documentation/examples/<BR><BR>2005/8/15, markw <MARK@JUNKLIGHT.COM>:<BR>&gt; Hi,<BR>&gt; <BR>&gt; I am contemplating running XML-RPC over SSL (basically for site to<BR>&gt; site process communication over the internet). Has anyone got any<BR>&gt; example code that would point me in the right direction (or just some<BR>&gt; clues :-) )<BR>&gt; <BR>&gt;
 cheers<BR>&gt; <BR>&gt; mark<BR><BR><BR><BR>------------------------------<BR><BR>Message: 3<BR>Date: Mon, 15 Aug 2005 13:22:57 +1000<BR>From: Mary Gardiner <MARY-TWISTED@PUZZLING.ORG><BR>Subject: [Twisted-Python] Australian Twisted folk at the OSDC:<BR>Melbourne Dec 5th - 7th 2005<BR>To: Twisted general discussion <TWISTED-PYTHON@TWISTEDMATRIX.COM><BR>Message-ID: &lt;20050815032257.GF27318@home.puzzling.org&gt;<BR>Content-Type: text/plain; charset=us-ascii<BR><BR>We haven't even gotten to the second sprint yet (this weekend, Sydney,<BR>see you there), and there's talk of a third one.<BR><BR>The Australian Open Source Developers Conference is being held at Monash<BR>University, Caulfield, Melbourne from December 5th to 7th this year.<BR>Seems like all of the Tassie Twisted folk are submitting papers and a<BR>few others are thinking of submitting or attending.<BR><BR>Hence, while it probably won't be even as formally informal (or<BR>informally formal?) as the Hobart and Sydney
 sprints, it seems likely<BR>that critical mass will be achieved in Melbourne and Twisted coding<BR>might take place...<BR><BR>....<BR><BR>Conference details:<BR><BR>Monday, December the 5th to Wednesday December the 7th, 2005<BR><BR>Call for papers is currently open:<BR>http://osdc2005.cgpublisher.com/cfp.html but deadline is *this Friday*<BR>19th August.<BR><BR>Details at http://www.osdc2005.com.au/<BR><BR>....<BR><BR>And after that... anyone going to linux.conf.au 2006 in Dunedin New<BR>Zealand...?<BR><BR>-Mary<BR><BR><BR><BR>------------------------------<BR><BR>Message: 4<BR>Date: Mon, 15 Aug 2005 13:26:26 +1000<BR>From: Mary Gardiner <MARY-TWISTED@PUZZLING.ORG><BR>Subject: Re: [Twisted-Python] Australian Twisted folk at the OSDC:<BR>Melbourne Dec 5th - 7th 2005<BR>To: twisted-python@twistedmatrix.com<BR>Message-ID: &lt;20050815032626.GG27318@home.puzzling.org&gt;<BR>Content-Type: text/plain; charset=us-ascii<BR><BR>On Mon, Aug 15, 2005, Mary Gardiner wrote:<BR>&gt; Details at
 http://www.osdc2005.com.au/<BR><BR>Sorry, just http://www.osdc.com.au/<BR><BR>-Mary<BR><BR><BR><BR>------------------------------<BR><BR>Message: 5<BR>Date: Mon, 15 Aug 2005 07:21:02 +0100<BR>From: markw <MARK@JUNKLIGHT.COM><BR>Subject: Re: [Twisted-Python] SSL Example?<BR>To: Twisted general discussion <TWISTED-PYTHON@TWISTEDMATRIX.COM><BR>Message-ID: &lt;1EAEDD24-055A-4942-8C23-804B7600BFDA@junklight.com&gt;<BR>Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed<BR><BR>Ok - there is an ssl example. Missed it the first time round. Thank <BR>you for your help<BR><BR>On 15 Aug 2005, at 03:11, Eric Hsu wrote:<BR><BR>&gt; here're some code examples from the official website, may them helpful<BR>&gt; for you :)<BR>&gt;<BR>&gt; http://twistedmatrix.com/projects/core/documentation/examples/<BR>&gt;<BR>&gt; 2005/8/15, markw <MARK@JUNKLIGHT.COM>:<BR>&gt;<BR>&gt;&gt; Hi,<BR>&gt;&gt;<BR>&gt;&gt; I am contemplating running XML-RPC over SSL (basically for site to<BR>&gt;&gt;
 site process communication over the internet). Has anyone got any<BR>&gt;&gt; example code that would point me in the right direction (or just some<BR>&gt;&gt; clues :-) )<BR>&gt;&gt;<BR>&gt;&gt; cheers<BR>&gt;&gt;<BR>&gt;&gt; mark<BR>&gt;&gt;<BR>&gt;<BR>&gt; _______________________________________________<BR>&gt; Twisted-Python mailing list<BR>&gt; Twisted-Python@twistedmatrix.com<BR>&gt; http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR>&gt;<BR><BR><BR><BR><BR>------------------------------<BR><BR>_______________________________________________<BR>Twisted-Python mailing list<BR>Twisted-Python@twistedmatrix.com<BR>http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python<BR><BR><BR>End of Twisted-Python Digest, Vol 17, Issue 13<BR>**********************************************<BR></BLOCKQUOTE><p>
                <hr size=1> <a href="http://us.rd.yahoo.com/evt=34442/*http://www.yahoo.com/r/hs">Start your day with Yahoo! - make it your home page </a>