Commit 11892dcb by Alison Hodges Committed by GitHub

Merge pull request #13452 from shailysangwan/master

replaced static with dynamically generated copyright year
parents c3580e20 fc639afa
...@@ -95,5 +95,4 @@ extensions = [ ...@@ -95,5 +95,4 @@ extensions = [
exclude_patterns = ['build', 'links.rst'] exclude_patterns = ['build', 'links.rst']
project = u'edX Enrollment API Version 1' project = 'edX Enrollment API Version 1'
copyright = u'2015, edX'
...@@ -241,7 +241,6 @@ extensions = [ ...@@ -241,7 +241,6 @@ extensions = [
'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath',
'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon'] 'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon']
project = u'Open edX Platform APIs' project = 'Open edX Platform APIs'
copyright = u'2016, edX Inc. and licensed under a Creative Commons Attribution-ShareAlike 4.0 International License unless otherwise specified'
exclude_patterns = ['build', 'links.rst'] exclude_patterns = ['build', 'links.rst']
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
import os import os
import datetime
BASEDIR = os.path.dirname(os.path.abspath(__file__)) BASEDIR = os.path.dirname(os.path.abspath(__file__))
...@@ -63,8 +64,8 @@ source_suffix = '.rst' ...@@ -63,8 +64,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'edX' project = 'edX'
copyright = u'2013, EdX Doc Team' copyright = '{year}, edX Inc. and licensed under a Creative Commons Attribution-ShareAlike 4.0 International License unless otherwise specified'.format(year=datetime.datetime.now().year)
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment