diff options
Diffstat (limited to 'www')
-rwxr-xr-x | www/html/test.html | 8 | ||||
-rwxr-xr-x | www/html/test.py | 11 |
2 files changed, 0 insertions, 19 deletions
diff --git a/www/html/test.html b/www/html/test.html deleted file mode 100755 index b789672..0000000 --- a/www/html/test.html +++ /dev/null @@ -1,8 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <title>Test</title> - <meta charset="UTF-8"> - </head> - <body>This is a test page</body> -</html> diff --git a/www/html/test.py b/www/html/test.py deleted file mode 100755 index 6ff289c..0000000 --- a/www/html/test.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/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> -""")) |