Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
64e70f10
Commit
64e70f10
authored
May 13, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged c112287 from 2.12 branch
parent
452671a8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
31 deletions
+2
-31
setup.py
setup.py
+2
-1
src/Zope2/utilities/mkzeoinstance.py
src/Zope2/utilities/mkzeoinstance.py
+0
-30
No files found.
setup.py
View file @
64e70f10
...
@@ -94,6 +94,7 @@ setup(name='Zope2',
...
@@ -94,6 +94,7 @@ setup(name='Zope2',
'zope.interface'
,
'zope.interface'
,
'zope.lifecycleevent'
,
'zope.lifecycleevent'
,
'zope.location'
,
'zope.location'
,
'zope.mkzeoinstance'
,
'zope.pagetemplate'
,
'zope.pagetemplate'
,
'zope.processlifetime'
,
'zope.processlifetime'
,
'zope.proxy'
,
'zope.proxy'
,
...
@@ -118,7 +119,7 @@ setup(name='Zope2',
...
@@ -118,7 +119,7 @@ setup(name='Zope2',
zip_safe
=
False
,
zip_safe
=
False
,
entry_points
=
{
entry_points
=
{
'console_scripts'
:
[
'console_scripts'
:
[
'mkzeoinstance=
Zope2.utilities
.mkzeoinstance:main'
,
'mkzeoinstance=
zope
.mkzeoinstance:main'
,
'mkzopeinstance=Zope2.utilities.mkzopeinstance:main'
,
'mkzopeinstance=Zope2.utilities.mkzopeinstance:main'
,
'runzope=Zope2.Startup.run:run'
,
'runzope=Zope2.Startup.run:run'
,
'zopectl=Zope2.Startup.zopectl:run'
,
'zopectl=Zope2.Startup.zopectl:run'
,
...
...
src/Zope2/utilities/mkzeoinstance.py
deleted
100755 → 0
View file @
452671a8
##############################################################################
#
# Copyright (c) 2002 Zope Foundation and Contributors.
#
# 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.
#
##############################################################################
import
os
import
sys
mydir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
sys
.
argv
[
0
]))
zopehome
=
os
.
path
.
dirname
(
mydir
)
softwarehome
=
os
.
path
.
join
(
zopehome
,
"lib"
,
"python"
)
if
softwarehome
not
in
sys
.
path
:
sys
.
path
.
insert
(
0
,
softwarehome
)
from
ZEO.mkzeoinst
import
ZEOInstanceBuilder
def
main
():
ZEOInstanceBuilder
().
run
()
if
__name__
==
"__main__"
:
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment