~ubuntu-branches/ubuntu/trusty/horizon/trusty

« back to all changes in this revision

Viewing changes to docs/source/conf.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-03-09 11:50:22 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120309115022-ymiww5i58rbg97my
Tags: 2012.1~rc1~20120308.1479-0ubuntu1
* New upstream version.
* debian/rules: Fix symlink when installing horizon.
  (LP: #947118)
* debian/control: Add python-django-nose as a dep. (LP: #944235)
* debian/control: Fix broken depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
# Theme options are theme-specific and customize the look and feel of a theme
217
217
# further.  For a list of options available for each theme, see the
218
218
# documentation.
219
 
#html_theme_options = {}
 
219
html_theme_options = {
 
220
    "nosidebar": "false",
 
221
    "sidebarwidth": "500px"
 
222
}
220
223
 
221
224
# Add any paths that contain custom themes here, relative to this directory.
222
225
#html_theme_path = []
245
248
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
246
249
# using the given strftime format.
247
250
#html_last_updated_fmt = '%b %d, %Y'
 
251
git_cmd = "git log --pretty=format:'%ad, commit %h' --date=local -n1"
 
252
html_last_updated_fmt = os.popen(git_cmd).read()
248
253
 
249
254
# If true, SmartyPants will be used to convert quotes and dashes to
250
255
# typographically correct entities.