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 79 80
|
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,31 +1,3 @@
-.. image:: docs/_static/aiortc.svg
- :width: 120px
- :alt: aiortc
-
-.. image:: https://img.shields.io/pypi/l/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
- :alt: License
-
-.. image:: https://img.shields.io/pypi/v/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
- :alt: Version
-
-.. image:: https://img.shields.io/pypi/pyversions/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
- :alt: Python versions
-
-.. image:: https://github.com/aiortc/aiortc/workflows/tests/badge.svg
- :target: https://github.com/aiortc/aiortc/actions
- :alt: Tests
-
-.. image:: https://img.shields.io/codecov/c/github/aiortc/aiortc.svg
- :target: https://codecov.io/gh/aiortc/aiortc
- :alt: Coverage
-
-.. image:: https://readthedocs.org/projects/aiortc/badge/?version=latest
- :target: https://aiortc.readthedocs.io/
- :alt: Documentation
-
What is ``aiortc``?
-------------------
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,26 +1,6 @@
aiortc
=========
-.. image:: https://img.shields.io/pypi/l/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
- :alt: License
-
-.. image:: https://img.shields.io/pypi/v/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
- :alt: Version
-
-.. image:: https://img.shields.io/pypi/pyversions/aiortc.svg
- :target: https://pypi.python.org/pypi/aiortc
- :alt: Python versions
-
-.. image:: https://github.com/aiortc/aiortc/workflows/tests/badge.svg
- :target: https://github.com/aiortc/aiortc/actions
- :alt: Tests
-
-.. image:: https://img.shields.io/codecov/c/github/aiortc/aiortc.svg
- :target: https://codecov.io/gh/aiortc/aiortc
- :alt: Coverage
-
``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
@@ -53,7 +53,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",
|