mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
import os
|
|
from gettext import gettext as _
|
|
from django.http import Http404
|
|
from django.template.response import TemplateResponse
|
|
|
|
import cfg
|
|
|
|
|
|
def init():
|
|
"""Initialize the Help module"""
|
|
menu = cfg.main_menu.add_item(_('Documentation'), 'icon-book',
|
|
'/help/index', 101)
|
|
menu.add_item(_("Where to Get Help"), "icon-search", "/help/index", 5)
|
|
menu.add_item(_('Developer\'s Manual'), 'icon-info-sign',
|
|
'/help/page/plinth', 10)
|
|
menu.add_item(_('FAQ'), 'icon-question-sign', '/help/page/faq', 20)
|
|
menu.add_item(_('%s Wiki' % cfg.box_name), 'icon-pencil',
|
|
'http://wiki.debian.org/FreedomBox', 30)
|
|
menu.add_item(_('About'), 'icon-star', '/help/about', 100)
|
|
|
|
|
|
def index(request):
|
|
"""Serve the index page"""
|
|
return TemplateResponse(request, 'help.html',
|
|
{'title': _('Documentation and FAQ')})
|
|
|
|
|
|
def about(request):
|
|
"""Serve the about page"""
|
|
title = _('About the {box_name}').format(box_name=cfg.box_name)
|
|
return TemplateResponse(request, 'about.html', {'title': title})
|
|
|
|
|
|
def helppage(request, page):
|
|
"""Serve a help page from the 'doc' directory"""
|
|
try:
|
|
input_file = open(os.path.join('doc', '%s.part.html' % page), 'r')
|
|
except IOError:
|
|
raise Http404
|
|
main = input_file.read()
|
|
|
|
title = _('%s Documentation') % cfg.product_name
|
|
return TemplateResponse(request, 'base.html',
|
|
{'title': title, 'main': main})
|