1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00

Docs 202109 (#1067)

* module docstrings

* db schema graph

* dev docs first pass

* dev docs pass 2

* add generated notification to top of generated docs files

* linting

* regen docs

Co-authored-by: Stefan Pratter <stefan@20c.com>
Co-authored-by: Sunshine Buchholz <sunshine@20c.com>
This commit is contained in:
Matt Griswold
2021-10-15 03:25:38 -05:00
committed by GitHub
parent 48a3a899f6
commit c21130eed9
133 changed files with 9962 additions and 986 deletions

View File

@@ -1,5 +1,8 @@
###############################################################################
# RENDERERS
"""
REST API renderer.
Ensure valid json output of the REST API.
"""
import json
@@ -9,10 +12,10 @@ from rest_framework.utils import encoders
class JSONEncoder(encoders.JSONEncoder):
"""
Im defining our own json encoder here in order to be able to encode
Define json encoder to be able to encode
datatime and django countryfields.
Im making the munge renderer use this encoder to encode json, this approach
Make the munge renderer use this encoder to encode json. This approach
may need to be tidied up a bit.
"""
@@ -59,7 +62,7 @@ class MetaJSONRenderer(MungeRenderer):
def render(self, data, accepted_media_type=None, renderer_context=None):
"""
Tweak output rendering and pass to parent
Tweak output rendering and pass to parent.
"""
if data is None: