mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-16 00:12:55 +00:00
27 lines
597 B
Python
27 lines
597 B
Python
from .settings import env
|
|
|
|
|
|
class AutoAPIBase(object):
|
|
|
|
language = 'base'
|
|
type = 'base'
|
|
|
|
def __init__(self, obj):
|
|
self.obj = obj
|
|
|
|
def render(self, ctx=None):
|
|
if not ctx:
|
|
ctx = {}
|
|
template = env.get_template(
|
|
'{language}/{type}.rst'.format(language=self.language, type=self.type)
|
|
)
|
|
ctx.update(**self.__dict__)
|
|
return template.render(**ctx)
|
|
|
|
|
|
class UnknownType(AutoAPIBase):
|
|
|
|
def render(self, ctx=None):
|
|
print "Unknown Type: %s" % (self.obj['type'])
|
|
super(UnknownType, self).render(ctx=ctx)
|