From ff54c8915dce54d5c4494c4b85270f45775bd4ee Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Thu, 7 May 2020 10:17:10 +0200 Subject: ajout page syntaxe et filtrage + filtrage effectif --- www/html/affiche-tab.py | 4 +--- www/html/filtrage.py | 19 +++++++++++++++++++ www/html/fonctions.py | 6 ++++-- www/html/index.py | 2 +- www/html/syntaxe.py | 25 +++++++++++++++++++++++++ 5 files changed, 50 insertions(+), 6 deletions(-) create mode 100755 www/html/filtrage.py create mode 100755 www/html/syntaxe.py (limited to 'www') diff --git a/www/html/affiche-tab.py b/www/html/affiche-tab.py index 2f5a516..5481d84 100644 --- a/www/html/affiche-tab.py +++ b/www/html/affiche-tab.py @@ -34,6 +34,4 @@ def index(req): """ + content + """ - -""")) - +""") diff --git a/www/html/filtrage.py b/www/html/filtrage.py new file mode 100755 index 0000000..1c294b2 --- /dev/null +++ b/www/html/filtrage.py @@ -0,0 +1,19 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +import mod_python +from fonctions import baseHTML, connexionBD, lien + +def index(req): + req.content_type="text/html" + content=str() + +#write the html page + req.write(baseHTML("ATS-Project",""" +

Filtrage

+Filtre + +
+
+ +""")) diff --git a/www/html/fonctions.py b/www/html/fonctions.py index 6bfdf18..b9efce1 100755 --- a/www/html/fonctions.py +++ b/www/html/fonctions.py @@ -12,8 +12,10 @@ def baseHTML(title,body): """+ body +""" diff --git a/www/html/index.py b/www/html/index.py index 7e45dca..958c5be 100755 --- a/www/html/index.py +++ b/www/html/index.py @@ -32,7 +32,7 @@ def index(req): #write the html page req.write(baseHTML("ATS-Project","""

ATS-Project

-Filtrage +Filtre
diff --git a/www/html/syntaxe.py b/www/html/syntaxe.py new file mode 100755 index 0000000..cdaf5f7 --- /dev/null +++ b/www/html/syntaxe.py @@ -0,0 +1,25 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +import mod_python +from fonctions import baseHTML, connexionBD, lien + +def index(req): + req.content_type="text/html" + content=str() + +#write the html page + req.write(baseHTML("ATS-Project",""" +

Syntaxe

+

La """+lien('syntaxe.py','syntaxe')+""" pour utiliser les filtres disponibles sur l'"""+lien('index.py','index')+""" et """+lien('filtrage.py','filtrage')+""" est la suivante :

+

<colonne>='<valeur>'


+
+ + + + + + + +
colonnevaleurexemple
heurehh:mm:ssheure='10:41:30'
protocoletexteprotocole='ICMP'
ip_sourceW.X.Y.Zip_source='10.110.178.156'
ip_destinationW.X.Y.Zip_destination='1.1.1.1'
port_sourceXport_source='10000'
port_destinationXport_destination='56'
+""")) -- cgit v1.2.3