[pygccxml-commit] SF.net SVN: pygccxml:[1677] sphinx
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2009-02-13 20:39:41
|
Revision: 1677 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1677&view=rev Author: roman_yakovenko Date: 2009-02-13 20:39:34 +0000 (Fri, 13 Feb 2009) Log Message: ----------- sphinx Modified Paths: -------------- sphinx/__templates_www/layout.html sphinx/conf.py Added Paths: ----------- sphinx/__templates_www/bottom_ad_unit.html Added: sphinx/__templates_www/bottom_ad_unit.html =================================================================== --- sphinx/__templates_www/bottom_ad_unit.html (rev 0) +++ sphinx/__templates_www/bottom_ad_unit.html 2009-02-13 20:39:34 UTC (rev 1677) @@ -0,0 +1,11 @@ +<script type="text/javascript"><!-- +google_ad_client = "pub-0886572017808006"; +/* 300x250, created 2/13/09 */ +google_ad_slot = "8069153601"; +google_ad_width = 300; +google_ad_height = 250; +//--> +</script> +<script type="text/javascript" +src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> +</script> Modified: sphinx/__templates_www/layout.html =================================================================== --- sphinx/__templates_www/layout.html 2009-02-13 09:27:20 UTC (rev 1676) +++ sphinx/__templates_www/layout.html 2009-02-13 20:39:34 UTC (rev 1677) @@ -1,20 +1,33 @@ {% extends "!layout.html" %} -{% set sidebarsearch = "left_ad_unit.html" %} - {%- block sidebarsearch %} -{%- if pagename != "search" %} -<div id="searchbox" style="display: none"> -<h3>{{ _('Quick search') }}</h3> - <form class="search" action="{{ pathto('search') }}" method="get"> - <input type="text" name="q" size="18" /> - <input type="submit" value="{{ _('Go') }}" /> - <input type="hidden" name="check_keywords" value="yes" /> - <input type="hidden" name="area" value="default" /> - </form> -{% include "left_ad_unit.html" %} -</div> -<script type="text/javascript">$('#searchbox').show(0);</script> -{%- endif %} + {%- if pagename != "search" %} + <div id="searchbox" style="display: none"> + <h3>{{ _('Quick search') }}</h3> + <form class="search" action="{{ pathto('search') }}" method="get"> + <input type="text" name="q" size="18" /> + <input type="submit" value="{{ _('Go') }}" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + {% include "left_ad_unit.html" %} + </div> + <script type="text/javascript">$('#searchbox').show(0);</script> + {%- endif %} {%- endblock %} +{%- block document %} + <div class="document"> + <div class="documentwrapper"> + {%- if not embedded %} + <div class="bodywrapper"> + {%- endif %} + <div class="body"> + {% block body %} {% endblock %} + {% include "bottom_ad_unit.html" %} + </div> + {%- if not embedded %} + </div> + {%- endif %} + </div> +{%- endblock %} Modified: sphinx/conf.py =================================================================== --- sphinx/conf.py 2009-02-13 09:27:20 UTC (rev 1676) +++ sphinx/conf.py 2009-02-13 20:39:34 UTC (rev 1677) @@ -84,6 +84,7 @@ """<?xml version="1.0" encoding="UTF-8"?> <site base_url="http://www.language-binding.net/" store_into="%(path)s/sitemap.xml.gz" verbose="1"> <directory path="%(path)s" url="http://www.language-binding.net/" default_file="index.html" /> + <filter action="drop" type="regexp" pattern="/\.[^/]*" /> </site> """ % dict( path=os.path.join( doc_project_root, working_dir ) ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |