Projet

Général

Profil

Télécharger (374 octets) Statistiques
| Branche: | Révision:

root / admin / apache_edit.ptl @ b77557ca

1
from quixote.directory import Directory
2

    
3
from template import generate_html
4
from apache_form import ApacheForm
5

    
6
class ApacheEdit(Directory):
7
	"""
8
	Apache administration directory
9
	"""
10
	_q_exports = ['']
11

    
12
	def _q_index [html] (self):
13
		"""Error"""
14
		return
15

    
16
	def _q_lookup [html] (self, server_name):
17
		form = ApacheForm(server_name)
18
		generate_html('apache', form.handle())
(3-3/10)