Changeset 423

Show
Ignore:
Timestamp:
01/26/03 20:56:14 (6 years ago)
Author:
sholloway
Message:

*** empty log message ***

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RBFoundation/RBFoundation/__init__.py

    r290 r423  
    2020##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2121 
    22 """RuneBlade Foundation Components 
     22"""RBFoundation Components""" 
    2323 
    24 XML Objectify Inspiration: 
    25     David Mertz at Gnosis software just has a head for Python,  
    26     and for thinking out of his dodecahedron, as he seems to  
    27     be very many sided.  One of my favorites of his work takes 
    28     XML and makes it read like Python.  I couldn't be more at  
    29     home, unless I made it my own.  Oh wait, thats what this is 
    30     about, isn't it? 
    31      
    32     Please see http://gnosis.cx 
     24__version__ = '0.4.0' 
     25__license__ = 'BSD-style (See LICENSE)' 
     26__platforms__ ='Linux, BSD, Windows, OSX',  
     27__author__ = 'Shane Holloway' 
     28__author_email__ = 'shane.holloway@runeblade.com' 
     29__url__ = 'http://www.runeblade.com/' 
     30__keywords__ = ['select', 'weakbind', 'xml', 'objectify', 'xmlobjectify', 'aspect', 'oriented', 'AOP', 'aspect', 'pointcut', 'advice', 'advise'], 
     31__packages__ = ['RBFoundation',  
     32                'RBFoundation.AspectOriented',  
     33                'RBFoundation.AOSubjectObserver',  
     34                'RBFoundation.AOSubjectObserver.AccessRules',  
     35                'RBFoundation.AOSubjectObserver.Interface',  
     36                'RBFoundation.AOSubjectObserver.LogicRules', ] 
    3337 
    34 Skinning: 
    35     wxPython is a great cross platform windowing toolkit.  This  
    36     xml "resource" toolkit is similar to many others, only it is  
    37     allowed to wiggle because it is python powered! 
    38      
    39     Please see http://www.wxpython.org 
    40  
    41 Jabber: 
    42     Well, I never thought I'd meet a talking snake, much less teach 
    43     one to chat.   
    44      
    45     Please see http://www.jabber.org 
    46 """ 
    47  
    48 __version__         = '0.3.3' 
    49 __author__          = 'Shane Holloway' 
    50 __author_email__    = 'shane.holloway@runeblade.com' 
    51 __url__             = 'http://www.runeblade.com/' 
    52  
    53 from __license__ import __license__ 
  • trunk/RBJabber/RBJabber/__init__.py

    r253 r423  
    2020##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2121 
    22 """TODO: Document""" 
     22"""RBJabber Components""" 
     23 
     24__version__ = '0.4.0' 
     25__license__ = 'BSD-style (See LICENSE)' 
     26__platforms__ ='Linux, BSD, Windows, OSX',  
     27__author__ = 'Shane Holloway' 
     28__author_email__ = 'shane.holloway@runeblade.com' 
     29__url__ = 'http://www.runeblade.com/' 
     30__keywords__ = ['jabber'] 
     31__packages__ = ['RBJabber', 'RBJabber.SubjectObserver'] 
     32 
  • trunk/RBRapier/CHANGES

    r337 r423  
    11<?xml version='1.0'?> 
    2 <history title='RuneBlade Rapier History' xmlns:xhtml='http://www.w3.org/1999/xhtml' xmlns='http://namespaces.runeblade.com/product/history' > 
     2<history title='RBRapier History' xmlns:xhtml='http://www.w3.org/1999/xhtml' xmlns='http://namespaces.runeblade.com/product/history' > 
    33    <about> 
    4         $Id: CHANGES,v 1.1 2002/10/28 20:58:57 sholloway Exp $ 
     4        TODO: Need some about text 
     5        $Id: CHANGES,v 1.2 2003/01/27 03:56:14 sholloway Exp $ 
    56    </about> 
    67 
     
    89        Copyright (C) 2002  TechGame Networks, LLC. 
    910        All rights reserved, see LICENSE for details. 
     11 
     12        This software is OSI Certified Open Source Software. 
     13        OSI Certified is a certification mark of the Open Source Initiative. 
    1014    </copyright> 
    1115 
    12     <release title='RuneBlade Rapier' version='' date=''> 
     16    <release title='RBRapier' version='0.1.0' date=''> 
     17        TODO Label goes here 
     18 
     19        <features title='TODO'> 
     20            TODO 
     21        </features> 
     22 
     23        <bugfixes> 
     24            TODO 
     25        </bugfixes> 
    1326    </release> 
    1427</history> 
  • trunk/RBRapier/INSTALL

    r337 r423  
    1 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2 #~ RuneBlade Rapier 
    3 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     1======== 
     2RBRapier 
     3======== 
    44 
    55Copyright (C) 2002  TechGame Networks, LLC. 
     
    99OSI Certified is a certification mark of the Open Source Initiative. 
    1010 
    11 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    12 #~ Installing 
    13 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     11---------- 
     12Installing 
     13---------- 
    1414 
    1515From the source distribution, simply: 
  • trunk/RBRapier/RBRapier/__init__.py

    r337 r423  
    2020##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2121 
     22"""RBRapier Components""" 
    2223 
     24__version__ = '0.1.0' 
     25__license__ = 'BSD-style (See LICENSE)' 
     26__platforms__ ='Windows',  
     27__author__ = 'Shane Holloway' 
     28__author_email__ = 'shane.holloway@runeblade.com' 
     29__url__ = 'http://www.runeblade.com/' 
     30__keywords__ = ['OpenGL', 'PyOpenGL', 'PIL'] 
     31__packages__ = ['RBRapier',  
     32                'RBRapier.Models',  
     33                'RBRapier.Formats',  
     34                'RBRapier.Renderer',  
     35                'RBRapier.Tools', 
     36                ] 
     37 
  • trunk/RBSkinning/RBSkinning/__init__.py

    r395 r423  
    2020##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2121 
    22 """TODO: Document""" 
     22"""RBSkinning Components""" 
     23 
     24__version__ = '0.4.0' 
     25__license__ = 'BSD-style (See LICENSE)' 
     26__platforms__ ='same as wxPython', 
     27__author__ = 'Shane Holloway' 
     28__author_email__ = 'shane.holloway@runeblade.com' 
     29__url__ = 'http://www.runeblade.com/' 
     30__keywords__ = ['skinning', 'xml', 'user interface', 'UI'] 
     31__packages__ = ['RBSkinning',  
     32                'RBSkinning.skin',  
     33                'RBSkinning.xmlPython',  
     34                'RBSkinning.xmlObjectifySkin',  
     35                'RBSkinning.wxPythonSkin',  
     36                'RBSkinning.wxTools',  
     37                'RBSkinning.xhtml',  
     38                'RBSkinning.svg',  
     39                'RBSkinning.dotSkin'] 
    2340 
    2441#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  • trunk/RBTelepathy/RBTelepathy/__init__.py

    r390 r423  
    128128Resource advertisement and discovery protocol 
    129129""" 
     130 
     131#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     132 
     133__version__ = '0.1.0' 
     134__license__ = 'BSD-style (See LICENSE)' 
     135__platforms__ ='Linux, BSD, Windows, OSX',  
     136__author__ = 'Shane Holloway' 
     137__author_email__ = 'shane.holloway@runeblade.com' 
     138__url__ = 'http://www.runeblade.com/' 
     139__keywords__ = ['sockets', 'IM', 'peer-to-peer', 'P2P'] 
     140__packages__ = ['RBMessaging',  
     141                'RBMessaging.Packet',  
     142                'RBMessaging.Routing',  
     143                'RBMessaging.Stream'] 
     144