Skip to content

Commit 7498dea

Browse files
committed
[docs] Removed github stars and forks from docs pages
Painful to maintain and causes issues if the domain changes, not worth it.
1 parent fbe5b8e commit 7498dea

15 files changed

Lines changed: 4 additions & 38 deletions

docs/source/_github.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/source/backends/create_your_backend.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
Create your backend
33
===================
44

5-
.. include:: ../_github.rst
6-
7-
Every backend is based on the common ground of some elements provided by the
5+
Every backend is based on the common ground of some elements provided by the
86
netjsonconfig library. The ``BaseBackend``, ``BaseConverter``, ``BaseParser`` and
97
``BaseRenderer`` are a battle proven set of tools that can be extended when
108
creating you backend.
@@ -23,7 +21,7 @@ project root directory.
2321
2422
# example_backend/setup.py
2523
from setuptools import setup, find_packages
26-
24+
2725
setup(
2826
name='example_backend',
2927
version='0.0.0',
@@ -86,9 +84,9 @@ The previous example can be used with the following class definition
8684
from netjsonconfig.backends.base.backend import BaseBackend
8785
from netjsonconfig.backends.base.renderer import BaseRenderer
8886
from netjsonconfig.backends.base.parser import BaseParser
89-
87+
9088
from netjsonconfig.schema import schema as default_schema
91-
89+
9290
class ExampleBackend(BaseBackend):
9391
schema = default_schema
9492
converter = []

docs/source/backends/openvpn.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
OpenVPN 2.3 Backend
33
===================
44

5-
.. include:: ../_github.rst
6-
75
The ``OpenVpn`` backend allows to generate OpenVPN 2.3.x compatible configurations.
86

97
Its schema is limited to a subset of the features available in OpenVPN and it doesn't recognize

docs/source/backends/openwisp.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
OpenWISP 1.x Backend
33
====================
44

5-
.. include:: ../_github.rst
6-
75
The OpenWISP 1.x Backend is based on the OpenWRT backend, therefore it inherits all
86
its features with some differences that are explained in this page.
97

docs/source/backends/openwrt.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
OpenWRT Backend
33
===============
44

5-
.. include:: ../_github.rst
6-
75
The ``OpenWrt`` backend allows to generate OpenWRT compatible configurations.
86

97
.. note::

docs/source/backends/vpn.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
VPN Backends
33
============
44

5-
.. include:: ../_github.rst
6-
75
``netjsonconfig`` currently supports three VPN backends:
86

97
.. toctree::

docs/source/backends/vxlan_over_wireguard.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
VXLAN over WireGuard Backend
33
============================
44

5-
.. include:: ../_github.rst
6-
75
The ``VXLAN over WireGuard`` backend extends :doc:`Wireguard backend </backends/wireguard>`
86
to add configurations required for configuring VXLAN tunnels encapsulated in
97
WireGuard tunnels.

docs/source/backends/wireguard.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
WireGuard Backend
33
=================
44

5-
.. include:: ../_github.rst
6-
75
The ``WireGuard`` backend allows to generate WireGuard configurations.
86

97
Its schema is limited to a subset of the features available in WireGuard and it doesn't recognize

docs/source/general/basics.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Basic concepts
33
==============
44

5-
.. include:: ../_github.rst
6-
75
Before starting, let's quickly introduce the main concepts used in netjsonconfig:
86

97
* :ref:`configuration_dictionary`: python dictionary representing the configuration of a router

docs/source/general/commandline_utility.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Command line utility
33
====================
44

5-
.. include:: ../_github.rst
6-
75
netjsonconfig ships a command line utility that can be
86
used from the interactive shell, bash scripts or other programming
97
languages.

0 commit comments

Comments
 (0)