mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
Merge branch 'docs/dynamic_copyright_date_v4.3' into 'release/v4.3'
docs: update copyright date for docs automatically (v4.3) See merge request espressif/esp-idf!17328
This commit is contained in:
@ -4,7 +4,7 @@ Copyrights and Licenses
|
|||||||
Software Copyrights
|
Software Copyrights
|
||||||
===================
|
===================
|
||||||
|
|
||||||
All original source code in this repository is Copyright (C) 2015-2019 Espressif Systems. This source code is licensed under the Apache License 2.0 as described in the file LICENSE.
|
All original source code in this repository is Copyright (C) 2015-2022 Espressif Systems. This source code is licensed under the Apache License 2.0 as described in the file LICENSE.
|
||||||
|
|
||||||
Additional third party copyrighted code is included under the following licenses.
|
Additional third party copyrighted code is included under the following licenses.
|
||||||
|
|
||||||
|
@ -14,9 +14,13 @@ except ImportError:
|
|||||||
sys.path.insert(0, os.path.abspath('..'))
|
sys.path.insert(0, os.path.abspath('..'))
|
||||||
from conf_common import * # noqa: F403,F401
|
from conf_common import * # noqa: F403,F401
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
current_year = datetime.datetime.now().year
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = u'ESP-IDF Programming Guide'
|
project = u'ESP-IDF Programming Guide'
|
||||||
copyright = u'2016 - 2021, Espressif Systems (Shanghai) Co., Ltd'
|
copyright = u'2016 - {}, Espressif Systems (Shanghai) Co., Ltd'.format(current_year)
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -14,9 +14,13 @@ except ImportError:
|
|||||||
sys.path.insert(0, os.path.abspath('..'))
|
sys.path.insert(0, os.path.abspath('..'))
|
||||||
from conf_common import * # noqa: F403,F401
|
from conf_common import * # noqa: F403,F401
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
current_year = datetime.datetime.now().year
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = u'ESP-IDF 编程指南'
|
project = u'ESP-IDF 编程指南'
|
||||||
copyright = u'2016 - 2021 乐鑫信息科技(上海)股份有限公司'
|
copyright = u'2016 - {} 乐鑫信息科技(上海)股份有限公司'.format(current_year)
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
Reference in New Issue
Block a user