Changeset 672

Show
Ignore:
Timestamp:
05/12/08 14:17:04 (6 months ago)
Author:
sylvain
Message:

various updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • oss/headstock/headstock/example/simplechat/simplechat.py

    r668 r672  
    1919  * dispatching to the RosterHandler the fact the server supports the feature 
    2020 
     21* RegisterHandler: 
     22  * registring a new user using in-band registration if supported 
    2123 
    2224The actual XMPP client is the Client component that sets up the different 
  • oss/headstock/setup.py

    r667 r672  
    11""" 
    2 Some XMPP extensions 
     2XMPP implementation using the Kamaelia library 
    33""" 
    44 
     
    1212setup(name = "headstock", 
    1313      version = '0.1.0', 
    14       description = "Some XMPP extensions", 
     14      description = "XMPP implementation using the Kamaelia library", 
    1515      maintainer = "Sylvain Hellegouarch", 
    1616      maintainer_email = "sh@defuze.org", 
     
    2323      platforms = ["any"], 
    2424      license = 'BSD', 
    25       long_description = "", 
     25      long_description = "XMPP implementation using the Kamaelia library", 
     26      install_requires= ['bridge>=0.3.5'], 
    2627     ) 
    2728