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
704d12b6
Commit
704d12b6
authored
Apr 05, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the other decoy
parent
5a30b822
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
58 deletions
+0
-58
inst/generate_index.py
inst/generate_index.py
+0
-58
No files found.
inst/generate_index.py
deleted
100644 → 0
View file @
5a30b822
"""
Generate an index file based on the version.cfg file of Zope 2
in order to provide a version specific index page generated to be used
in combination with easy_install -i <some_url>
"""
import
os
import
sys
import
urlparse
from
xmlrpclib
import
Server
from
ConfigParser
import
RawConfigParser
as
ConfigParser
class
CasePreservingConfigParser
(
ConfigParser
):
def
optionxform
(
self
,
option
):
return
option
# don't flatten case!
def
write_index
(
package
,
version
):
print
>>
sys
.
stderr
,
'Package %s==%s'
%
(
package
,
version
)
dest_dir
=
os
.
path
.
join
(
dirname
,
package
)
if
not
os
.
path
.
exists
(
dest_dir
):
os
.
makedirs
(
dest_dir
)
index_html
=
os
.
path
.
join
(
dest_dir
,
'index.html'
)
fp
=
file
(
index_html
,
'w'
)
print
>>
fp
,
'<html><body>'
lst
=
server
.
package_urls
(
package
,
version
)
if
lst
:
# package hosted on PyPI
for
d
in
lst
:
link
=
'<a href="%s">%s</a>'
%
(
d
[
'url'
],
d
[
'filename'
])
print
>>
fp
,
link
print
>>
fp
,
'<br/>'
else
:
# for externally hosted packages we need to rely on the
# download_url metadata
rel_data
=
server
.
release_data
(
package
,
version
)
download_url
=
rel_data
[
'download_url'
]
filename
=
os
.
path
.
basename
(
urlparse
.
urlparse
(
download_url
)[
2
])
link
=
'<a href="%s">%s</a>'
%
(
download_url
,
filename
)
print
>>
fp
,
link
print
>>
fp
,
'</body></html>'
fp
.
close
()
CP
=
CasePreservingConfigParser
()
CP
.
read
([
'versions.cfg'
])
server
=
Server
(
'http://pypi.python.org/pypi'
)
links
=
list
()
dirname
=
sys
.
argv
[
1
]
write_index
(
'Zope2'
,
'2.12.3'
)
for
package
in
CP
.
options
(
'versions'
):
version
=
CP
.
get
(
'versions'
,
package
)
write_index
(
package
,
version
)
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