diff --git a/docs/conf.py b/docs/conf.py index 03ba047f..62fa1505 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,7 @@ master_doc = 'index' # General information about the project. project = u'MongoEngine' -copyright = u'2009-2011, Harry Marr' +copyright = u'2009-2012, MongoEngine Authors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -121,7 +121,7 @@ html_theme_path = ['_themes'] # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +#html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. diff --git a/docs/guide/defining-documents.rst b/docs/guide/defining-documents.rst index f93b458a..1e404c03 100644 --- a/docs/guide/defining-documents.rst +++ b/docs/guide/defining-documents.rst @@ -539,8 +539,8 @@ convenient and efficient retrieval of related documents:: class DatedPage(Page): date = DateTimeField() -.. note:: From 0.7 onwards you must declare `allow_inheritance` in the document -meta. +.. note:: From 0.7 onwards you must declare `allow_inheritance` in the document meta. + Working with existing data -------------------------- diff --git a/docs/upgrade.rst b/docs/upgrade.rst index 0dec8c89..1609bb80 100644 --- a/docs/upgrade.rst +++ b/docs/upgrade.rst @@ -25,7 +25,7 @@ There have been the following backwards incompatibilities from 0.4 to 0.5. The main areas of changed are: choices in fields, map_reduce and collection names. Choice options: --------------- +--------------- Are now expected to be an iterable of tuples, with the first element in each tuple being the actual value to be stored. The second element is the