1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
Description: remove privacy breaching images from docs
Author: Martin <debacle@debian.org>
Origin: vendor
Last-Update: 2022-01-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -42,7 +42,7 @@
#
html_theme_options = {
"description": "Python wrapper around the libsrtp library.",
- "github_button": True,
+ "github_button": False,
"github_user": "aiortc",
"github_repo": "pylibsrtp",
}
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,25 +1,15 @@
pylibsrtp
=========
-.. image:: https://img.shields.io/pypi/l/pylibsrtp.svg
- :target: https://pypi.python.org/pypi/pylibsrtp
- :alt: License
-
-.. image:: https://img.shields.io/pypi/v/pylibsrtp.svg
- :target: https://pypi.python.org/pypi/pylibsrtp
- :alt: Version
-
-.. image:: https://img.shields.io/pypi/pyversions/pylibsrtp.svg
- :target: https://pypi.python.org/pypi/pylibsrtp
- :alt: Python versions
-
-.. image:: https://github.com/aiortc/pylibsrtp/workflows/tests/badge.svg
- :target: https://github.com/aiortc/pylibsrtp/actions
- :alt: Tests
-
-.. image:: https://img.shields.io/codecov/c/github/aiortc/pylibsrtp.svg
- :target: https://codecov.io/gh/aiortc/pylibsrtp
- :alt: Coverage
+`License <https://pypi.python.org/pypi/pylibsrtp>`_
+
+`Version <https://pypi.python.org/pypi/pylibsrtp`_
+
+`Python versions <https://pypi.python.org/pypi/pylibsrtp`_
+
+`Tests <https://github.com/aiortc/pylibsrtp/actions>`_
+
+`Coverage <https://codecov.io/gh/aiortc/pylibsrtp>`_
``pylibsrtp`` is a Python wrapper around `libsrtp`_, making it possible to
encrypt and decrypt Secure Real-time Transport Protocol (SRTP) packets from
|