[Zope3-checkins] SVN: Zope3/branches/jim-mkzopeinstance/src/zope/app/ Checkpoint initial rearrangement so svn will let me do what I want to do next.

Jim Fulton jim at zope.com
Thu Dec 15 18:29:08 EST 2005


Log message for revision 40800:
  Checkpoint initial rearrangement so svn will let me do what I want to do next. 

Changed:
  D   Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/debugzope.in
  D   Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/runzope.in
  D   Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/zopectl.in
  A   Zope3/branches/jim-mkzopeinstance/src/zope/app/server/zopeskel/bin/debugzope.in
  A   Zope3/branches/jim-mkzopeinstance/src/zope/app/server/zopeskel/bin/runzope.in
  A   Zope3/branches/jim-mkzopeinstance/src/zope/app/server/zopeskel/bin/zopectl.in
  A   Zope3/branches/jim-mkzopeinstance/src/zope/app/twisted/zopeskel/bin/debugzope.in
  A   Zope3/branches/jim-mkzopeinstance/src/zope/app/twisted/zopeskel/bin/runzope.in
  A   Zope3/branches/jim-mkzopeinstance/src/zope/app/twisted/zopeskel/bin/zopectl.in

-=-
Deleted: Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/debugzope.in
===================================================================
--- Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/debugzope.in	2005-12-15 23:18:51 UTC (rev 40799)
+++ Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/debugzope.in	2005-12-15 23:29:07 UTC (rev 40800)
@@ -1,51 +0,0 @@
-#!<<PYTHON>> -i
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Script to run the Zope Application Server from the Python prompt.
-
-$Id$
-"""
-import os
-import sys
-
-
-SOFTWARE_HOME = r"<<SOFTWARE_HOME>>"
-INSTANCE_HOME = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
-CONFIG_FILE = os.path.join(INSTANCE_HOME, "etc", "zope.conf")
-
-
-def startup():
-    # This removes the script directory from sys.path, which we do
-    # since there are no modules here.
-    #
-    basepath = filter(None, sys.path)
-
-    sys.path[:] = [os.path.join(INSTANCE_HOME, "lib", "python"),
-                   SOFTWARE_HOME] + basepath
-
-    from zope.app.twisted.main import debug
-    db = debug(["-C", CONFIG_FILE] + sys.argv[1:])
-    if "PYTHONSTARTUP" in os.environ:
-        execfile(os.environ["PYTHONSTARTUP"])
-    return db
-
-
-if __name__ == '__main__':
-    db = startup()
-    del startup
-    from zope.app.debug import Debugger
-    debugger = app = Debugger.fromDatabase(db)
-    root = app.root()
-    del db
-    del Debugger

Deleted: Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/runzope.in
===================================================================
--- Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/runzope.in	2005-12-15 23:18:51 UTC (rev 40799)
+++ Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/runzope.in	2005-12-15 23:29:07 UTC (rev 40800)
@@ -1,48 +0,0 @@
-#!<<PYTHON>>
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Script to run the Zope Application Server in the foreground.
-
-$Id$
-"""
-import os
-import sys
-
-
-SOFTWARE_HOME = r"<<SOFTWARE_HOME>>"
-INSTANCE_HOME = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
-CONFIG_FILE = os.path.join(INSTANCE_HOME, "etc", "zope.conf")
-
-
-def run():
-    if sys.version_info < ( 2,3,5 ):
-        print """\
-        ERROR: Your python version is not supported by Zope3.
-        Zope3 needs Python 2.3.5 or greater. You are running:""" + sys.version
-        sys.exit(1)
-
-    # This removes the script directory from sys.path, which we do
-    # since there are no modules here.
-    #
-    basepath = filter(None, sys.path)
-
-    sys.path[:] = [os.path.join(INSTANCE_HOME, "lib", "python"),
-                   SOFTWARE_HOME] + basepath
-
-    from zope.app.twisted.main import main
-    main(["-C", CONFIG_FILE] + sys.argv[1:])
-
-
-if __name__ == '__main__':
-    run()

Deleted: Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/zopectl.in
===================================================================
--- Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/zopectl.in	2005-12-15 23:18:51 UTC (rev 40799)
+++ Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/zopectl.in	2005-12-15 23:29:07 UTC (rev 40800)
@@ -1,43 +0,0 @@
-#!<<PYTHON>>
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Script to run the Zope Application Server in the foreground.
-
-$Id$
-"""
-import os
-import sys
-
-
-SOFTWARE_HOME = r"<<SOFTWARE_HOME>>"
-INSTANCE_HOME = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
-CONFIG_FILE = os.path.join(INSTANCE_HOME, "etc", "zdaemon.conf")
-
-
-def run():
-    # This removes the script directory from sys.path, which we do
-    # since there are no modules here.
-    #
-    basepath = filter(None, sys.path)
-
-    sys.path[:] = [os.path.join(INSTANCE_HOME, "lib", "python"),
-                   SOFTWARE_HOME] + basepath
-
-    import zope.app.twisted.controller
-    zope.app.twisted.controller.INSTANCE_HOME = INSTANCE_HOME
-    zope.app.twisted.controller.main(["-C", CONFIG_FILE] + sys.argv[1:])
-
-
-if __name__ == '__main__':
-    run()

Copied: Zope3/branches/jim-mkzopeinstance/src/zope/app/server/zopeskel/bin/debugzope.in (from rev 40799, Zope3/branches/Zope-3.1/zopeskel/bin/debugzope.in)

Copied: Zope3/branches/jim-mkzopeinstance/src/zope/app/server/zopeskel/bin/runzope.in (from rev 40799, Zope3/branches/Zope-3.1/zopeskel/bin/runzope.in)

Copied: Zope3/branches/jim-mkzopeinstance/src/zope/app/server/zopeskel/bin/zopectl.in (from rev 40799, Zope3/branches/Zope-3.1/zopeskel/bin/zopectl.in)

Copied: Zope3/branches/jim-mkzopeinstance/src/zope/app/twisted/zopeskel/bin/debugzope.in (from rev 40799, Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/debugzope.in)

Copied: Zope3/branches/jim-mkzopeinstance/src/zope/app/twisted/zopeskel/bin/runzope.in (from rev 40799, Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/runzope.in)

Copied: Zope3/branches/jim-mkzopeinstance/src/zope/app/twisted/zopeskel/bin/zopectl.in (from rev 40799, Zope3/branches/jim-mkzopeinstance/src/zope/app/appsetup/zopeskel/bin/zopectl.in)



More information about the Zope3-Checkins mailing list