summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopherPrice <christopher.price@ericsson.com>2016-09-05 07:29:54 +0200
committerChristopher Price <christopher.price@ericsson.com>2016-09-16 13:40:54 +0000
commitb336a95bb481f09d887367f1010dc42d5302e4e0 (patch)
tree1f500012ba09829d813d48ae0602fbe1e881ad51
parentd780ae0f1e1bd8a26ca7069c469c82d3365b03c7 (diff)
Removing excess License info.
Removed License info from the sidebar, on review it is not necessary. Change-Id: I12c7a4d4c6ec7498462e99e953867ba64630858b Signed-off-by: ChristopherPrice <christopher.price@ericsson.com> (cherry picked from commit bf7cdc9f6fb6c07257796ccdc22d1b803928f13b)
-rw-r--r--etc/pagemenu.html1
-rwxr-xr-xscripts/docs-build.sh5
2 files changed, 3 insertions, 3 deletions
diff --git a/etc/pagemenu.html b/etc/pagemenu.html
index c1eb4fc01..f5c951ae0 100644
--- a/etc/pagemenu.html
+++ b/etc/pagemenu.html
@@ -20,6 +20,5 @@
<li>Version: {{version}}</li>
<li>Build Date: {{last_updated}}</li>
<li>&copy; {{copyright}}</li>
- <li>Licenced under: <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></li>
</ul>
</div>
diff --git a/scripts/docs-build.sh b/scripts/docs-build.sh
index 9c30ece26..2e2b79b04 100755
--- a/scripts/docs-build.sh
+++ b/scripts/docs-build.sh
@@ -23,7 +23,8 @@ version="$(git describe --abbrev=0 2> /dev/null || echo draft) ($revision)"
project="$(basename $(git rev-parse --show-toplevel))"
html_notes=" Revision: $rev_full\n Build date: $(date -u +'%Y-%m-%d')"
opnfv_logo="$OPNFVDOCS_DIR/etc/opnfv-logo.png"
-copyright="$(date +%Y), OPNFV. Licenced under CC BY 4.0."
+copyright="$(date +%Y), OPNFV."
+copyrightlong="$(date +%Y), OPNFV. Licenced under CC BY 4.0."
function check_rst_doc() {
_src="$1"
@@ -116,7 +117,7 @@ function prepare_config() {
add_config "$_conf" 'release' "u'$version'"
add_config "$_conf" 'version' "u'$version'"
add_config "$_conf" 'project' "u'$project'"
- add_config "$_conf" 'copyright' "u'$copyright'"
+ add_config "$_conf" 'copyright' "u'$copyrightlong'"
add_config "$_conf" 'rst_epilog' "u'$html_notes'"
echo "sphinx config to be used:"