Merged changes in the trunk up to revision 40413.

Conflicts resolved:
source/blender/makesrna/intern/rna_scene.c
This commit is contained in:
Tamito Kajiyama
2011-09-20 21:22:15 +00:00
393 changed files with 16073 additions and 5327 deletions

View File

@@ -773,7 +773,7 @@ def pyrna2sphinx(BASEPATH):
fw(" .. attribute:: %s\n\n" % prop.identifier)
if prop.description:
fw(" %s\n\n" % prop.description)
# special exception, cant use genric code here for enums
if prop.type == "enum":
enum_text = pyrna_enum2sphinx(prop)
@@ -1044,8 +1044,12 @@ def rna2sphinx(BASEPATH):
fw("copyright = u'Blender Foundation'\n")
fw("version = '%s - API'\n" % version_string)
fw("release = '%s - API'\n" % version_string)
fw("html_theme = 'blender-org'\n")
fw("html_theme_path = ['../']\n")
# until we get a theme for 'Naiad'
if 0:
fw("html_theme = 'blender-org'\n")
fw("html_theme_path = ['../']\n")
fw("html_favicon = 'favicon.ico'\n")
# not helpful since the source us generated, adds to upload size.
fw("html_copy_source = False\n")