german language file updated

WebInterfaceDataset replaces CryptoBoxWebserverSettings
WebInterfaceSites replaces CryptoBoxWebserverSites
input validation rewritten
clearsiler macro 'print_form_header' now expects the 'action' as a parameter
This commit is contained in:
lars 2006-09-07 11:21:56 +00:00
parent 0835144ad1
commit 0aa1f9f74b
23 changed files with 644 additions and 392 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python2.4
import os
import CryptoBoxWebserverSites
import WebInterfaceSites
try:
import cherrypy
@ -12,7 +12,7 @@ class CryptoBoxWebserver:
'''this class starts the cherryp webserver and serves the single sites'''
def __init__(self):
cherrypy.root = CryptoBoxWebserverSites.CryptoBoxWebserverSites()
cherrypy.root = WebInterfaceSites.WebInterfaceSites()
#expose static content:
#I currently have no idea how to cleanly extract the stylesheet path from
#the config object without an extra CryptoBox.CryptoBoxProps instance.