diff options
-rw-r--r-- | conf/AppDefaults.js | 24 | ||||
-rw-r--r-- | conf/_config.yml | 1 | ||||
-rw-r--r-- | site/_includes/footer_contents.html | 10 |
3 files changed, 21 insertions, 14 deletions
diff --git a/conf/AppDefaults.js b/conf/AppDefaults.js index 76505b0..fd5c108 100644 --- a/conf/AppDefaults.js +++ b/conf/AppDefaults.js @@ -14,28 +14,28 @@ * limitations under the License. */ -// Default config will be: -// - completed with default from DOCS_TOOLS/conf/AppDefault.js -// - superseaded by ProjectRoot/.config-???.js $HOME/.config-???.js /etc/default/config-???.js +// Runtime config will be: +// - initialized with default from doctools/webdocs/conf/AppDefault.js +// - overridden by this config config = { + DST_PROD : "build-prod", + DST_DEVL : "build-dev", + VER_CURRENT: "2.x", - DST_PROD : "build-prod", - DST_DEVL : "build-dev", - VER_CURRENT: "2.x", - -// PUSH_DEST : "apache@some.sample.server:/srv/www/docs/", -// CRAWL_PROD : "http://some.sample.server/", - PUSH_DEST : "apache@www.ovh.iot:/srv/www/iotbzh/webdocs-sample/", +// PUSH_DEST : "apache@some.sample.server:/srv/www/docs/", +// CRAWL_PROD : "http://some.sample.server/", + PUSH_DEST : "apache@www.ovh.iot:/srv/www/iotbzh/webdocs-sample/", + CRAWL_DEV : "http://docs.iot.bzh", CRAWL_PROD : "http://docs.iot.bzh", - LANGUAGES: ['en','fr'], + LANGUAGES: ['en','fr'], //GEM_FILE : "Absolute Path to GemFile when not within DOCS_TOOLS directory" GERRIT_FETCH: "https://gerrit.automotivelinux.org/gerrit/gitweb?p=%repo%.git;a=blob_plain;f=%source%;hb=%commit%", - LAST: undefined + LAST: undefined }; module.exports = config; diff --git a/conf/_config.yml b/conf/_config.yml index 06a8aaa..c00c7bc 100644 --- a/conf/_config.yml +++ b/conf/_config.yml @@ -15,6 +15,7 @@ baseurl: "" # the subpath of the site, e.g. /blog; NOTE: no trailing slas docsurl: "/docs" # docsearch entry point rss_path: /misc/feed.xml +copyright_date: "2015-2016" excerpt_separator: <!--more--> diff --git a/site/_includes/footer_contents.html b/site/_includes/footer_contents.html index 01b5f46..83f7165 100644 --- a/site/_includes/footer_contents.html +++ b/site/_includes/footer_contents.html @@ -59,12 +59,18 @@ </div> <div class="row"> <div class="col-sm-9"> - <p class="copyright_text">Copyright © 2016 Automotive Grade Linux Documentation, Licensed under the <a target="_blank" href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br/> Automotive Grade Linux and feather logos are <a target="_blank" href="http://www.linuxfoundation.org">trademarks</a> of The Linux Foundation.</p> + <p class="copyright_text"> + Copyright © {{ site.copyright_date }} Automotive Grade Linux Documentation, Licensed under the <a target="_blank" href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>. + <br/> + Automotive Grade Linux and logos are <a target="_blank" href="http://www.linuxfoundation.org">trademarks</a> of The Linux Foundation. + <br/> + Initial site design from <a href="https://cordova.apache.org/">Cordova website.</a> - warm thanks ! + </p> </div> <div class="col-sm-3"> <small class="stats">{% render_time Page rendered at: %}</small> {% if page.origin_url != nil %} - <small class="stats"><a href="{{ page.origin_url }}">Link to source document</small> + <br/><small class="stats"><a href="{{ page.origin_url }}">Link to source document</small> {% endif %} </div> </div> |