Merge branch 'master' into master-2

# Conflicts:
#	LICENSE
This commit is contained in:
stubbfel
2015-03-27 00:06:28 +01:00
parent 8f42134415
commit 7cf755493c
29 changed files with 669 additions and 0 deletions

View 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)

View File

@@ -0,0 +1,7 @@
<html>
<Title>Hello in HTML</Title>
<body>
<p>Hello There!</p>
<p><b>Hi There!</b></p>
</body>
</html>

View 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> """)

View File

@@ -0,0 +1,7 @@
<html>
<Title>Hello in HTMLA</Title>
<body>
<p>Hello There!</p>
<p><b>Hi There!</b></p>
</body>
</html>

View File

@@ -0,0 +1,7 @@
<html>
<Title>Hello in HTMLB</Title>
<body>
<p>Hello There!</p>
<p><b>Hi There!</b></p>
</body>
</html>

View File

@@ -0,0 +1,7 @@
<html>
<Title>Hello in HTMLC</Title>
<body>
<p>Hello There!</p>
<p><b>Hi There!</b></p>
</body>
</html>