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
7318943a
Commit
7318943a
authored
Feb 05, 1999
by
Amos Latteier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replaced start_medusa.py with start.py
parent
dc04c725
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
48 deletions
+0
-48
ZServer/start_medusa.py
ZServer/start_medusa.py
+0
-24
lib/python/ZServer/start_medusa.py
lib/python/ZServer/start_medusa.py
+0
-24
No files found.
ZServer/start_medusa.py
deleted
100644 → 0
View file @
dc04c725
#!/usr/bin/python1.5.1
"""Sample ZServer start script"""
import
sys
from
medusa
import
resolver
from
medusa
import
logger
from
medusa
import
http_server
from
medusa
import
asyncore
import
zope_handler
IP_ADDRESS
=
''
HTTP_PORT
=
9673
MODULE
=
'Main'
lg
=
logger
.
file_logger
(
sys
.
stdout
)
rs
=
resolver
.
caching_resolver
(
'206.156.192.156'
)
hs
=
http_server
.
http_server
(
IP_ADDRESS
,
HTTP_PORT
,
rs
,
lg
)
zh
=
zope_handler
.
zope_handler
(
MODULE
)
hs
.
install_handler
(
zh
)
hs
.
debug
=
1
asyncore
.
loop
()
lib/python/ZServer/start_medusa.py
deleted
100644 → 0
View file @
dc04c725
#!/usr/bin/python1.5.1
"""Sample ZServer start script"""
import
sys
from
medusa
import
resolver
from
medusa
import
logger
from
medusa
import
http_server
from
medusa
import
asyncore
import
zope_handler
IP_ADDRESS
=
''
HTTP_PORT
=
9673
MODULE
=
'Main'
lg
=
logger
.
file_logger
(
sys
.
stdout
)
rs
=
resolver
.
caching_resolver
(
'206.156.192.156'
)
hs
=
http_server
.
http_server
(
IP_ADDRESS
,
HTTP_PORT
,
rs
,
lg
)
zh
=
zope_handler
.
zope_handler
(
MODULE
)
hs
.
install_handler
(
zh
)
hs
.
debug
=
1
asyncore
.
loop
()
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