Home
last modified time | relevance | path

Searched refs:ChatterElement (Results 1 – 3 of 3) sorted by relevance

/dports/www/py-nevow/Nevow-0.14.0/doc/howto/chattutorial/part01/
H A Dindex.rst129 - a means of instantiating new ``ChatterElement`` clients;
130 - a "singleton" instance for keeping track of all ``ChatterElement``
135 new ``ChatterElement`` is created whenever a user connects, so we will
138 these. If we create an object that can keep the ``ChatterElement``\ es
146 instantiating a ``ChatterElement``. Before we return the instance,
162 ``ChatterElement``\ s;
168 Keep in mind that ``ChatterElement`` entails several duties: it
172 room. Being a ``LiveElement`` subclass, ``ChatterElement`` is also
192 have more moving parts: not only do we have the ``ChatterElement``
194 keeping track of many ``ChatterElement``\ es. By defining the ``chat``
[all …]
/dports/www/py-nevow/Nevow-0.14.0/nevow/test/
H A Dtest_howtolistings.py187 from chatthing.chatterbox import ChatterElement, ChatRoom
189 cb = ChatterElement(ChatRoom())
205 from chatthing.chatterbox import ChatterElement, ChatRoom
206 cb = ChatterElement(ChatRoom())
/dports/www/py-nevow/Nevow-0.14.0/doc/howto/chattutorial/part01/listings/chatthing/
H A Dchatterbox.py19 elem = ChatterElement(self)
26 class ChatterElement(LiveElement): class