Skip to content
Snippets Groups Projects
Select Git revision
  • 0273fa035660f91646705d969b10c9d451e69c32
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/201911
  • release/releaseWindowsTestOne
  • release/windowsReleaseTest
  • release/releaseTest
  • release/releaseWindowsTest
  • release/201910
  • release/qt/201910
  • release/windows-test/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • 4.0.0
  • 2.2.0
  • 2.1.0
  • 2.0.1
  • 2.0.0
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.0
31 results

dcblocker.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    footer.html 2.95 KiB
    {#
     Copyright (C) 2022 Savoir-faire Linux Inc.
    
     Copying and distribution of this file, with or without modification,
     are permitted in any medium without royalty provided the copyright
     notice and this notice are preserved.  This file is offered as-is,
     without any warranty.
    
    The main purpose of this file is to enable use of a custom format
    for the copyright statement in page footers, and is based on the
    footer.html file from the Read the Docs Sphinx Theme project, under
    the Expat License (also referred to as the "MIT License"), per the
    following notice:
    
     Copyright (c) 2013-2018 Dave Snider, Read the Docs, Inc. & contributors
    
     Permission is hereby granted, free of charge, to any person obtaining
     a copy of this software and associated documentation files (the
     "Software"), to deal in the Software without restriction, including
     without limitation the rights to use, copy, modify, merge, publish,
     distribute, sublicense, and/or sell copies of the Software, and to
     permit persons to whom the Software is furnished to do so, subject to
     the following conditions:
    
     The above copyright notice and this permission notice shall be
     included in all copies or substantial portions of the Software.
    
     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
     IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
     CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
     TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
     SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    #}
    
    {% extends '!footer.html' %}
    {% block contentinfo %}
    {%- if show_copyright and pagename != 'fdl' %}
      {%- if hasdoc('copyright') %}
        {%- trans path=pathto('copyright'), copyright=copyright|e %}<p><a href="{{ path }}">Copyright</a> &#169; {{ copyright }}</p>{% endtrans %}
      {%- else %}
        {%- trans copyright=copyright|e %}<p>Copyright &#169; {{ copyright }}</p>{% endtrans %}
      {%- endif %}
      <p>Permission is granted to copy, distribute and/or modify this document
      under the terms of the <a href="/fdl.html">GNU Free Documentation License</a>,
      Version 1.3 or any later version published by the Free Software Foundation;
      with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.</p>
    {%- endif %}
    <p>{%- if build_id and build_url %}
      <span class="build">
        {#- Translators: Build is a noun, not a verb -#}
        {%- trans %}Build{% endtrans -%}
        <a href="{{ build_url }}">{{ build_id }}</a>.
      </span>
    {%- elif commit %}
      <span class="commit">
        {#- Translators: the phrase "revision" comes from Git, referring to a commit #}
        {%- trans %}Revision{% endtrans %} <code>{{ commit }}</code>.
      </span>
    {%- endif %}
    {%- if last_updated %}
      <span class="lastupdated">
        {%- trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
      </span>
    {%- endif -%}</p>
    {% endblock %}