Merge branch 'master' into master-2
# Conflicts: # LICENSE
This commit is contained in:
10
test/service/webservice/cgi-bin/file_content_response.py
Executable file
10
test/service/webservice/cgi-bin/file_content_response.py
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env python3
|
||||
__author__ = 'dev'
|
||||
|
||||
response_file_path = "cgi-bin/test.html"
|
||||
response_file = open(response_file_path, "r")
|
||||
response_file_content = response_file.read()
|
||||
response_file.close()
|
||||
|
||||
print("\n")
|
||||
print(response_file_content)
|
||||
7
test/service/webservice/cgi-bin/test.html
Normal file
7
test/service/webservice/cgi-bin/test.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<Title>Hello in HTML</Title>
|
||||
<body>
|
||||
<p>Hello There!</p>
|
||||
<p><b>Hi There!</b></p>
|
||||
</body>
|
||||
</html>
|
||||
9
test/service/webservice/cgi-bin/test.py
Executable file
9
test/service/webservice/cgi-bin/test.py
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python3
|
||||
print("""
|
||||
<html>
|
||||
<Title>Hello in HTML</Title>
|
||||
<body>
|
||||
<p>Hello There!</p>
|
||||
<p><b>Hi There!</b></p>
|
||||
</body>
|
||||
</html> """)
|
||||
7
test/service/webservice/cgi-bin/testA.html
Normal file
7
test/service/webservice/cgi-bin/testA.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<Title>Hello in HTMLA</Title>
|
||||
<body>
|
||||
<p>Hello There!</p>
|
||||
<p><b>Hi There!</b></p>
|
||||
</body>
|
||||
</html>
|
||||
7
test/service/webservice/cgi-bin/testB.html
Normal file
7
test/service/webservice/cgi-bin/testB.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<Title>Hello in HTMLB</Title>
|
||||
<body>
|
||||
<p>Hello There!</p>
|
||||
<p><b>Hi There!</b></p>
|
||||
</body>
|
||||
</html>
|
||||
7
test/service/webservice/cgi-bin/testC.html
Normal file
7
test/service/webservice/cgi-bin/testC.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<Title>Hello in HTMLC</Title>
|
||||
<body>
|
||||
<p>Hello There!</p>
|
||||
<p><b>Hi There!</b></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user