diff options
| author | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-03-29 19:53:38 +0200 |
|---|---|---|
| committer | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-03-29 19:53:38 +0200 |
| commit | dc539fda0108dc724693fbdd7599bd86980f0de0 (patch) | |
| tree | 46765165f34ac356cf0ec1aafeef29f9e8a77c66 /www/html/test.py | |
| parent | 8e56aac1e0af4c724f2e6d26746217e1f1812909 (diff) | |
| download | ATS-dc539fda0108dc724693fbdd7599bd86980f0de0.tar.gz ATS-dc539fda0108dc724693fbdd7599bd86980f0de0.tar.bz2 ATS-dc539fda0108dc724693fbdd7599bd86980f0de0.zip | |
some web changes
Diffstat (limited to '')
| -rwxr-xr-x | www/html/test.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/html/test.py b/www/html/test.py new file mode 100755 index 0000000..6ff289c --- /dev/null +++ b/www/html/test.py @@ -0,0 +1,11 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +import mod_python +import fonctions + +def index(req): + req.content_type="text/html" + req.write(fonctions.baseHTML("Test",""" +This is a test page.</p> +""")) |
