Merge pull request #13452 from shailysangwan/master
replaced static with dynamically generated copyright year
This commit is contained in:
@@ -95,5 +95,4 @@ extensions = [
|
||||
exclude_patterns = ['build', 'links.rst']
|
||||
|
||||
|
||||
project = u'edX Enrollment API Version 1'
|
||||
copyright = u'2015, edX'
|
||||
project = 'edX Enrollment API Version 1'
|
||||
|
||||
@@ -241,7 +241,6 @@ extensions = [
|
||||
'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath',
|
||||
'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon']
|
||||
|
||||
project = u'Open edX Platform APIs'
|
||||
copyright = u'2016, edX Inc. and licensed under a Creative Commons Attribution-ShareAlike 4.0 International License unless otherwise specified'
|
||||
project = 'Open edX Platform APIs'
|
||||
|
||||
exclude_patterns = ['build', 'links.rst']
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
import os
|
||||
import datetime
|
||||
|
||||
BASEDIR = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
@@ -63,8 +64,8 @@ source_suffix = '.rst'
|
||||
master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = u'edX'
|
||||
copyright = u'2013, EdX Doc Team'
|
||||
project = 'edX'
|
||||
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
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
|
||||
Reference in New Issue
Block a user