Changeset 396

Show
Ignore:
Timestamp:
01/12/03 23:23:44 (6 years ago)
Author:
sholloway
Message:

Updated references from Foundation to RBFoundation, or removed them where appropriate

Files:

Legend:

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

    r257 r396  
    2424#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2525 
    26 from Foundation import ContextApply 
     26from RBFoundation import ContextApply 
    2727 
    2828#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  • trunk/RBFoundation/RBFoundation/SubObs/LogicRules/BaseCollection.py

    r285 r396  
    2525 
    2626import weakref 
    27 from Foundation import WeakBind 
     27from RBFoundation import WeakBind 
    2828 
    2929#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  • trunk/RBFoundation/RBFoundation/TaskProgress.py

    r368 r396  
    2424#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2525 
    26 from Foundation.AOSubjectObserver.StandardSubjects import Subject 
     26from AOSubjectObserver.StandardSubjects import Subject 
    2727 
    2828#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  • trunk/RBFoundation/RBFoundation/XMLBuilder.py

    r272 r396  
    3939from xml.parsers.expat import ParserCreate as _ParserCreate 
    4040from WeakBind import BindCallable as _BindCallable 
    41 from Foundation.ChainedDict import ChainedDict 
     41from ChainedDict import ChainedDict 
    4242 
    4343#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  • trunk/RBFoundation/RBFoundation/XMLClassBuilder.py

    r393 r396  
    2424#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2525 
    26 from Foundation import XMLBuilder 
     26import XMLBuilder 
    2727import keyword 
    2828 
  • trunk/RBFoundation/RBFoundation/XMLObjectify.py

    r393 r396  
    3434Example: 
    3535 
    36     from Foundation.XMLObjectify import Objectify 
     36    from RBFoundation.XMLObjectify import Objectify 
    3737     
    3838    obj = Objectify('''<stream:stream xmlns:stream="Test Stream Namespace"> 
     
    6060    from modules found on disk, and subsequently raising an exception if a suitable module is not found. 
    6161    (Raising that exception is one of the essential reasons for the 2nd rewrite, as I did not factor it 
    62     in the 1st.)  This requirement provides the Foundation of the Skinning framework found in the  
     62    in the 1st.)  This requirement provides the RBFoundation of the Skinning framework found in the  
    6363    RuneBlade distribution, as well as XMLClassBuilder module. 
    6464 
     
    9292 
    9393from __future__ import generators 
    94 from Foundation import XMLBuilder 
     94import XMLBuilder 
    9595from xml.sax.saxutils import escape, quoteattr 
    9696 
     
    104104    Example: 
    105105     
    106         from Foundation.XMLObjectify import Objectify 
     106        from RBFoundation.XMLObjectify import Objectify 
    107107         
    108108        obj = Objectify('''<stream:stream xmlns:stream="Test Stream Namespace"> 
     
    538538    print ' ~ ' * 20 
    539539 
    540     from Foundation.AspectOriented.Aspect import Aspect 
     540    from AspectOriented.Aspect import Aspect 
    541541    class MyAspect(Aspect, AttributedObjectifiedXML): pass 
    542542    MyAspect.InsertAspect(obj) 
  • trunk/RBFoundation/RBFoundation/XSDConverter.py

    r286 r396  
    2424#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2525 
    26 from Foundation import XMLBuilder  
     26from RBFoundation import XMLBuilder  
    2727from xml.sax.saxutils import escape, quoteattr 
    2828