-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
confrest.py
38 lines (33 loc) · 1.35 KB
/
confrest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from confrest_oldpy import *
class PyPyPage(Page):
def fill(self):
super(PyPyPage, self).fill()
self.menubar[:] = html.div(
html.a("home", href="index.html", class_="menu"), " ",
html.a("news", href="news.html", class_="menu"), " ",
html.a("consortium", href="consortium.html", class_="menu"), " ",
html.a("links", href="links.html", class_="menu"), " ",
html.a("community/coding",
href="http://codespeak.net/pypy/dist/pypy/doc/index.html",
class_="menu"), " ",
" ", id="menubar")
def get_doclink(self, target):
return relpath(self.targetpath.strpath,
self.project.get_docpath().join(target).strpath)
class Project(Project):
mydir = py.magic.autopath().dirpath()
title = "PyPy EU Project"
stylesheet = 'http://codespeak.net/pypy/dist/pypy/doc/style.css'
encoding = 'latin1'
prefix_title = "EU/PyPy"
logo = html.div(
html.a(html.img(alt="PyPy", id="pyimg",
src="http://codespeak.net/pypy/img/py-web1.png",
height=110, width=149)),
html.img(alt="EU Logo", id="extraimg",
src="ist.png",
height=105, width=213),
)
Page = PyPyPage
def get_docpath(self):
return self.mydir