Commit b1dbc167 authored by Ivan Yelizariev's avatar Ivan Yelizariev
Browse files

Merge branch 'licences' into 'master'

licences

See merge request !16
parents babde556 e79162bf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
# Chatops
[![License: CC BY-NC-SA 4.0](https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc-sa/4.0/)

Chatops and odoo tools.
Source of https://chatops.readthedocs.io/ website

# How to contribute

docs/_static/.empty

0 → 100644
+0 −0

Empty file added.

+41 −0
Original line number Diff line number Diff line
{% extends '!layout.html' %}

{%- block footer %}
    <div class="footer">
      {% if show_copyright %}&copy;{{ copyright }}.{% endif %}

       | <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" rel="nofollow">License: CC BY-NC-SA 4.0</a>

      {% if theme_show_powered_by|lower == 'true' %}
      {% if show_copyright %}|{% endif %}
      Powered by <a href="http://sphinx-doc.org/">Sphinx {{ sphinx_version }}</a>
      &amp; <a href="https://github.com/bitprophet/alabaster">Alabaster {{ alabaster_version }}</a>
      {% endif %}
      {%- if show_source and has_source and sourcename %}
      {% if show_copyright or theme_show_powered_by %}|{% endif %}
      <a href="{{ pathto('_sources/' + sourcename, true)|e }}"
          rel="nofollow">{{ _('Page source') }}</a>
      {%- endif %}
    </div>

    {% if theme_github_banner|lower != 'false' %}
    <a href="https://github.com/{{ theme_github_user }}/{{ theme_github_repo }}" class="github">
        <img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else 'https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png' }}" alt="Fork me on GitHub"  class="github"/>
    </a>
    {% endif %}

    {% if theme_analytics_id %}
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', '{{ theme_analytics_id }}']);
      _gaq.push(['_setDomainName', 'none']);
      _gaq.push(['_setAllowLinker', true]);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    </script>
    {% endif %}
{%- endblock %}
+7 −2
Original line number Diff line number Diff line
@@ -81,7 +81,12 @@ html_theme = 'alabaster'
# further.  For a list of options available for each theme, see the
# documentation.
#
# html_theme_options = {}
html_theme_options = {
    'github_banner': True,
    'show_powered_by': False,
    'github_user': 'it-projects-llc',
    'github_repo': 'odoo-test',
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ Technical specification
* ``/assign123`` -- assign a task to another person

.. * ``/users`` -- returns list of Administators for current chat. It's used to specify list of available users to assign the tasks. You may need to activate "All Members Are Admins" option to get list of all users.

* ``/update_id`` -- current update_id. Can be used to set ``MIN_UPDATE_ID`` (see below)
* ``/myid`` -- Id and Name of current user

Loading