diff --git a/docs/_themes/flasky/static/flasky.css_t b/docs/_themes/flasky/static/flasky.css_t index bd829c0c..b77f3c30 100644 --- a/docs/_themes/flasky/static/flasky.css_t +++ b/docs/_themes/flasky/static/flasky.css_t @@ -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; } diff --git a/docs/deploying.rst b/docs/deploying.rst index 345d7ee9..ea812c17 100644 --- a/docs/deploying.rst +++ b/docs/deploying.rst @@ -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. diff --git a/setup.py b/setup.py index 72ef584e..c4aee59d 100644 --- a/setup.py +++ b/setup.py @@ -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' ] )