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
0e819c78
Commit
0e819c78
authored
Jun 25, 2003
by
Chris McDonough
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Give mkzopeinstance and mkzeoinstance a .py extension.
Don't put zconfig script into bindir.
parent
69b120ba
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
doc/INSTALL.txt
doc/INSTALL.txt
+4
-4
inst/Makefile.in
inst/Makefile.in
+2
-2
inst/Makefile.win.in
inst/Makefile.win.in
+1
-1
setup.py
setup.py
+2
-2
utilities/mkzeoinstance.py
utilities/mkzeoinstance.py
+0
-0
utilities/mkzopeinstance.py
utilities/mkzopeinstance.py
+0
-0
No files found.
doc/INSTALL.txt
View file @
0e819c78
...
...
@@ -72,15 +72,15 @@ Creating a Zope Instance Home
Once you've performed the install step, to begin actually using
Zope, you will need to create an "instance home", which is a
directory that contains configuration and data for a Zope server
process. The instance home is created using the 'mkzopeinstance'
process. The instance home is created using the 'mkzopeinstance
.py
'
script::
/where/to/install/zope/bin/mkzopeinstance /location/of/zope/instance
/where/to/install/zope/bin/mkzopeinstance
.py
/location/of/zope/instance
You will be asked to provide a user name and password for an
administrator's account during
the
'mkzopeinstance'. Command-line
administrator's account during 'mkzopeinstance'. Command-line
options to 'mkzopeinstance' are available, and can be investigated
by running 'mkzopeinstance --help'.
by running 'mkzopeinstance
.py
--help'.
Starting Zope
...
...
inst/Makefile.in
View file @
0e819c78
...
...
@@ -57,7 +57,7 @@ install: build
--home
=
"
${PREFIX}
"
${BUILD_FLAGS}
${INSTALL_FLAGS}
@
echo
@
echo
Zope binaries installed successfully.
@
echo
Now run
\'
${PREFIX}
/bin/mkzopeinstance
\'
@
echo
Now run
\'
${PREFIX}
/bin/mkzopeinstance
.py
\'
# uninstall: Uninstall a software home.
uninstall
:
...
...
@@ -81,7 +81,7 @@ inplace: install
# instance: Do an inplace build and create an instance home in the resulting
# software home.
instance
:
inplace
${PYTHON}
"
${BASE_DIR}
/bin/mkzopeinstance"
${MKZ_FLAGS}
"
${BASE_DIR}
"
${PYTHON}
"
${BASE_DIR}
/bin/mkzopeinstance
.py
"
${MKZ_FLAGS}
"
${BASE_DIR}
"
# uninstance: Remove the instance files made by make instance (w/ prejudice)
uninstance
:
...
...
inst/Makefile.win.in
View file @
0e819c78
...
...
@@ -55,7 +55,7 @@ install: build
--prefix
=
"
$(PREFIX)
"
$(BUILD_FLAGS)
$(INSTALL_FLAGS)
@
echo.
@
echo
Zope binaries installed successfully.
@
echo
Now run
'
$(PYTHON)
$(PREFIX)
\bin\mkzopeinstance'
@
echo
Now run
'
$(PYTHON)
$(PREFIX)
\bin\mkzopeinstance
.py
'
# uninstall: Uninstall a software home.
uninstall
:
...
...
setup.py
View file @
0e819c78
...
...
@@ -671,8 +671,8 @@ setup(
[
'ZConfig/tests/input'
,
[
'ZConfig/tests/input/*'
]],
[
'ZConfig/tests/library/thing'
,
[
'ZConfig/tests/library/thing/*'
]],
[
'ZConfig/tests/library/widget'
,
[
'ZConfig/tests/library/widget/*'
]],
[
'ZConfig/scripts'
,
[
'ZConfig/scripts/zconfig'
]],
],
scripts
=
[
"ZConfig/scripts/zconfig"
],
)
# Other top-level packages (XXX should these be broken out at all?)
...
...
@@ -1092,7 +1092,7 @@ distutils.core.setup(
author
=
AUTHOR
,
data_files
=
installed_data_files
,
scripts
=
[
"utilities/mkzeoinstance
"
,
"utilities/mkzopeinstance
"
],
scripts
=
[
"utilities/mkzeoinstance
.py"
,
"utilities/mkzopeinstance.py
"
],
distclass
=
ZopeDistribution
,
)
utilities/mkzeoinstance
→
utilities/mkzeoinstance
.py
View file @
0e819c78
File moved
utilities/mkzopeinstance
→
utilities/mkzopeinstance
.py
View file @
0e819c78
File moved
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