Fixed a doc display bug and setup.py workaround for dev version.

This commit is contained in:
Armin Ronacher 2010-04-11 02:42:13 +02:00
parent 05f36c7f7e
commit 1fff3e5981
3 changed files with 10 additions and 8 deletions

View file

@ -86,7 +86,7 @@ div.sphinxsidebarwrapper p.logo {
div.sphinxsidebar h3,
div.sphinxsidebar h4 {
font-family: 'Georgia', serif;
font-family: 'Garamond', 'Georgia', serif;
color: #222;
font-size: 1.2em;
font-weight: normal;
@ -96,7 +96,7 @@ div.sphinxsidebar h4 {
text-shadow: 1px 1px 0 white
}
div.sphinxsidebar h4{
div.sphinxsidebar h4 {
font-size: 1.1em;
}
@ -151,12 +151,12 @@ div.body h3,
div.body h4,
div.body h5,
div.body h6 {
font-family: 'Georiga', serif;
font-family: 'Garamond', 'Georiga', serif;
background-color: #bbb;
font-weight: normal;
color: #212224;
margin: 30px 0px 10px 0px;
padding: 8px 0 5px 10px;
padding: 5px 0 5px 10px;
text-shadow: 0px 1px 0 white;
}

View file

@ -67,7 +67,8 @@ A basic FastCGI configuration for lighttpd looks like that::
This configuration binds the application to `/yourapplication`. If you
want the application to work in the URL root you have to work around a
lighttpd bug with the `~werkzeug.contrib.fixers.LighttpdCGIRootFix` middleware.
lighttpd bug with the :class:`~werkzeug.contrib.fixers.LighttpdCGIRootFix`
middleware.
Make sure to apply it only if you are mounting the application the URL
root.

View file

@ -12,8 +12,9 @@ setup(
modules=['flask'],
zip_safe=False,
platforms='any',
install_requires=[ # yes, as of now we need the development versions
'Werkzeug==dev',
'Jinja2==dev',
install_requires=[
## disabled until release, install yourself
# 'Werkzeug',
# 'Jinja2'
]
)