class WebApp:
Method | __call__ |
Called by cherrypy for the / root page. |
Method | __init__ |
Initialise WebApp. |
Method | ansicht |
The view for Luna LMS, displaying Lern-Einheiten to attend. |
Method | kurseinheit_redaktion |
Content management of a Kurs-Einheit. |
Method | kurseinheit_redaktion_delete |
Handler method to be called by kurseinheit_redaktion(). |
Method | kurseinheit_redaktion_get |
Handler method to be called by kurseinheit_redaktion(). |
Method | kurseinheit_redaktion_post |
Handler method to be called by kurseinheit_redaktion(). |
Method | lernbaustein_redaktion |
Content management of a Lern-Baustein. |
Method | lernbaustein_redaktion_delete |
Handler method to be called by lernbaustein_redaktion(). |
Method | lerneinheit_ansicht |
The view of a Lern-Einheit. |
Method | lerneinheit_redaktion |
Content management of a Lern-Einheit. |
Method | lerneinheit_redaktion_delete |
Handler method to be called by lerneinheit_redaktion(). |
Method | lerneinheit_redaktion_get |
Handler method to be called by lerneinheit_redaktion(). |
Method | lerneinheit_redaktion_post |
Handler method to be called by lerneinheit_redaktion(). |
Method | lerneinheiten_redaktion_put |
PUT: Update the Lern-Einheiten list of a Kurs-Einheit. |
Method | redaktion |
The content management frontend for Luna LMS, and a dispatcher for all subordinate endpoints. |
Method | redaktion_get |
Handler method to be called by redaktion(). |
Method | redaktion_post |
Handler method to be called by redaktion(). |
Instance Variable | exposed |
Undocumented |
Instance Variable | storage |
Undocumented |
The view for Luna LMS, displaying Lern-Einheiten to attend.
This method will delegate the view of Lern-Einheiten to lerneinheit_ansicht()
Content management of a Kurs-Einheit.
This method will dispatch the handling of the request by method.
Handler method to be called by kurseinheit_redaktion().
DELETE: Check and handle a deletion.
Handler method to be called by kurseinheit_redaktion().
GET: Display the content management frontend.
Handler method to be called by kurseinheit_redaktion().
POST: Create a new Lern-Einheit using the lerneinheit_title, and then display the content management frontend.
Content management of a Lern-Baustein.
This method will dispatch the handling of the request by method.
DELETE: Delete the Lern-Baustein.
Handler method to be called by lernbaustein_redaktion().
DELETE: Check and handle a deletion.
The view of a Lern-Einheit.
By default, a Lern-Einheit will display any HTML file present as a Lern-Baustein.
Content management of a Lern-Einheit.
This method will dispatch the handling of the request by method.
Handler method to be called by lerneinheit_redaktion().
DELETE: Check and handle a deletion.
Handler method to be called by lerneinheit_redaktion().
GET: Display the content management frontend.
The content management frontend for Luna LMS, and a dispatcher for all subordinate endpoints.
This method will dispatch any requests to subordinate endpoints to appropriate handlers.
Handler method to be called by redaktion().
GET: Display the content management frontend.