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
2de80618
Commit
2de80618
authored
Apr 22, 2009
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more docs
parent
ad6f21da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
inst/generate_index.py
inst/generate_index.py
+3
-1
No files found.
inst/generate_index.py
View file @
2de80618
...
@@ -25,17 +25,19 @@ def write_index(package, version):
...
@@ -25,17 +25,19 @@ def write_index(package, version):
print
>>
fp
,
'<html><body>'
print
>>
fp
,
'<html><body>'
lst
=
server
.
package_urls
(
package
,
version
)
lst
=
server
.
package_urls
(
package
,
version
)
if
lst
:
if
lst
:
# package hosted on PyPI
for
d
in
lst
:
for
d
in
lst
:
link
=
'<a href="%s">%s</a>'
%
(
d
[
'url'
],
d
[
'filename'
])
link
=
'<a href="%s">%s</a>'
%
(
d
[
'url'
],
d
[
'filename'
])
print
>>
fp
,
link
print
>>
fp
,
link
print
>>
fp
,
'<br/>'
print
>>
fp
,
'<br/>'
else
:
else
:
# for externally hosted packages we need to rely on the
# download_url metadata
rel_data
=
server
.
release_data
(
package
,
version
)
rel_data
=
server
.
release_data
(
package
,
version
)
download_url
=
rel_data
[
'download_url'
]
download_url
=
rel_data
[
'download_url'
]
filename
=
os
.
path
.
basename
(
urlparse
.
urlparse
(
download_url
)[
2
])
filename
=
os
.
path
.
basename
(
urlparse
.
urlparse
(
download_url
)[
2
])
link
=
'<a href="%s">%s</a>'
%
(
download_url
,
filename
)
link
=
'<a href="%s">%s</a>'
%
(
download_url
,
filename
)
print
>>
fp
,
link
print
>>
fp
,
link
print
>>
fp
,
'<br/>'
print
>>
fp
,
'</body></html>'
print
>>
fp
,
'</body></html>'
fp
.
close
()
fp
.
close
()
...
...
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