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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
Description: Avoid privacy breach in documentation
Forwarded: no
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2022-03-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/README.rst
+++ b/README.rst
@@ -1,29 +1,6 @@
aiortc
======
-|rtd| |pypi-v| |pypi-pyversions| |pypi-l| |tests| |codecov| |gitter|
-
-.. |rtd| image:: https://readthedocs.org/projects/aiortc/badge/?version=latest
- :target: https://aiortc.readthedocs.io/
-
-.. |pypi-v| image:: https://img.shields.io/pypi/v/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
-
-.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
-
-.. |pypi-l| image:: https://img.shields.io/pypi/l/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
-
-.. |tests| image:: https://github.com/aiortc/aiortc/workflows/tests/badge.svg
- :target: https://github.com/aiortc/aiortc/actions
-
-.. |codecov| image:: https://img.shields.io/codecov/c/github/aiortc/aiortc.svg
- :target: https://codecov.io/gh/aiortc/aiortc
-
-.. |gitter| image:: https://img.shields.io/gitter/room/aiortc/Lobby.svg
- :target: https://gitter.im/aiortc/Lobby
-
What is ``aiortc``?
-------------------
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,26 +1,6 @@
aiortc
=========
-|pypi-v| |pypi-pyversions| |pypi-l| |tests| |codecov| |gitter|
-
-.. |pypi-v| image:: https://img.shields.io/pypi/v/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
-
-.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
-
-.. |pypi-l| image:: https://img.shields.io/pypi/l/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
-
-.. |tests| image:: https://github.com/aiortc/aiortc/workflows/tests/badge.svg
- :target: https://github.com/aiortc/aiortc/actions
-
-.. |codecov| image:: https://img.shields.io/codecov/c/github/aiortc/aiortc.svg
- :target: https://codecov.io/gh/aiortc/aiortc
-
-.. |gitter| image:: https://img.shields.io/gitter/room/aiortc/Lobby.svg
- :target: https://gitter.im/aiortc/Lobby
-
``aiortc`` is a library for `Web Real-Time Communication (WebRTC)`_ and
`Object Real-Time Communication (ORTC)`_ in Python. It is built on top of
``asyncio``, Python's standard asynchronous I/O framework.
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -115,7 +115,7 @@
#
html_theme_options = {
'description': 'A library for building WebRTC and ORTC applications in Python.',
- 'github_button': True,
+ 'github_button': False,
'github_user': 'aiortc',
'github_repo': 'aiortc',
'logo': 'aiortc.svg',
|