aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclyhtsuriva <clyhtsuriva@gmail.com>2020-05-21 09:41:51 +0200
committerclyhtsuriva <clyhtsuriva@gmail.com>2020-05-21 09:41:51 +0200
commit7728ed51f1a33327e8feb91c36e9c7884cdb943a (patch)
tree9d35fc6f6178f54e8f3d3f86799850a73b79e119
parent539348ee14ba387b536335abf0d372c884bf7c3d (diff)
Suppression des pages test
-rwxr-xr-xwww/html/test.html8
-rwxr-xr-xwww/html/test.py11
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>
-"""))