当前位置: 首页>>代码示例>>Python>>正文


Python Container.create方法代码示例

本文整理汇总了Python中pyasm.common.Container.create方法的典型用法代码示例。如果您正苦于以下问题:Python Container.create方法的具体用法?Python Container.create怎么用?Python Container.create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyasm.common.Container的用法示例。


在下文中一共展示了Container.create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from pyasm.common import Container [as 别名]
# 或者: from pyasm.common.Container import create [as 别名]
    def __init__(self, project_code=None, login_code=None, site=None):
        self.set_app_server("batch")

        if not site:
            # if not explicitly set, keep the current site
           site = Site.get_site() 


        plugin_dir = Environment.get_plugin_dir()
        if plugin_dir not in sys.path:
            sys.path.insert(0, plugin_dir)

        super(Batch,self).__init__()

        self.login_code = login_code

        # clear the main container
        Container.create()

        if site:
            Site.set_site(site)

        # set this as the environment
        if not project_code:
            self.context = self.get_default_context()
        else:
            self.context = project_code

        Environment.set_env_object( self )

        # set up the security object
        security = Security()
        Environment.set_security(security)

        self._do_login()
        site_dir = Environment.get_site_dir()
        if site_dir not in sys.path:
            sys.path.insert(0, site_dir)

        # set the project
        from pyasm.biz import Project

        if self.context == "batch":
            Project.set_project("admin")
        else:
            Project.set_project(self.context)

        self.initialize_python_path()


        # start workflow engine
        #from pyasm.command import Workflow
        #Workflow().init()

        DbContainer.commit_thread_sql()
开发者ID:mincau,项目名称:TACTIC,代码行数:57,代码来源:batch.py

示例2: execute

# 需要导入模块: from pyasm.common import Container [as 别名]
# 或者: from pyasm.common.Container import create [as 别名]
    def execute(my):
        my.buffer = cStringIO.StringIO()
        try:
            # clear the main containers
            Container.create()
            # clear the buffer
            WebContainer.clear_buffer()

            # initialize the web environment object and register it
            adapter = my.get_adapter()
            WebContainer.set_web(adapter)

            # get the display
            my._get_display()
        finally:
            WebContainer.get_buffer().write(my.buffer.getvalue())
开发者ID:hellios78,项目名称:TACTIC,代码行数:18,代码来源:simple_app_server.py

示例3: __init__

# 需要导入模块: from pyasm.common import Container [as 别名]
# 或者: from pyasm.common.Container import create [as 别名]
    def __init__(my, project_code=None, login_code=None, site=None):
        my.set_app_server("batch")

        plugin_dir = Environment.get_plugin_dir()
        if plugin_dir not in sys.path:
            sys.path.insert(0, plugin_dir)

        super(Batch,my).__init__()

        my.login_code = login_code

        # clear the main container
        Container.create()

        if site:
            Site.set_site(site)

        # set this as the environment
        if not project_code:
            my.context = my.get_default_context()
        else:
            my.context = project_code

        Environment.set_env_object( my )

        # set up the security object
        security = Security()
        Environment.set_security(security)

        my._do_login()
        site_dir = Environment.get_site_dir()
        if site_dir not in sys.path:
            sys.path.insert(0, site_dir)

        # set the project
        from pyasm.biz import Project

        if my.context == "batch":
            Project.set_project("admin")
        else:
            Project.set_project(my.context)

        my.initialize_python_path()

        DbContainer.commit_thread_sql()
开发者ID:2gDigitalPost,项目名称:tactic_src,代码行数:47,代码来源:batch.py


注:本文中的pyasm.common.Container.create方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。