Example #1
0
def reload_Red9(*args):
    '''
    careful reload of the systems to maintain the integrity of the 
    MetaData registry setups for pro_pack, client_core and internals
    '''
    #global LANGUAGE_MAP
    #reload(LANGUAGE_MAP)
    import Red9.core
    Red9.core._reload()
    
    if has_pro_pack():
        print '\nReloading ProPack Systems (INTERNAL USE)'
        print '='*40
        import Red9.pro_pack.core
        Red9.pro_pack.core._reload()
        
    if has_internal_systems():
        print '\nReloading Internal Codebase'
        print '='*40
        import Red9_Internals
        Red9_Internals._reload()

    if has_client_modules():
        print '\nReloading Client Codebase'
        print '='*40
        __reload_clients__()
Example #2
0
def reload_Red9(*args):
    '''
    careful reload of the systems to maintain the integrity of the 
    MetaData registry setups for pro_pack, client_core and internals
    '''
    #global LANGUAGE_MAP
    #reload(LANGUAGE_MAP)
    import Red9.core
    Red9.core._reload()

    if has_pro_pack():
        import Red9.pro_pack.core
        Red9.pro_pack.core._reload()

    if has_internal_systems():
        import Red9_Internals
        Red9_Internals._reload()

    if has_client_modules():
        __reload_clients__()
Example #3
0
def reload_Red9(*args):
    '''
    careful reload of the systems to maintain the integrity of the 
    MetaData registry setups for pro_pack, client_core and internals
    '''
    #global LANGUAGE_MAP
    #reload(LANGUAGE_MAP)
    import Red9.core
    Red9.core._reload()
    
    if has_pro_pack():
        import Red9.pro_pack.core
        Red9.pro_pack.core._reload()
        
    if has_internal_systems():
        import Red9_Internals
        Red9_Internals._reload()

    if has_client_modules():
        __reload_clients__()