+ Error 500
+
+ Wow, you crashed my website... :'(
+
+
+ You can go back to the index or wherever you want... (if it works...)
+
+#
+
diff --git a/errors/500/index.py b/errors/500/index.py
new file mode 100755
index 0000000..117f8db
--- /dev/null
+++ b/errors/500/index.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+import sys
+from webtools import Web
+
+def main():
+ print('Content-type: text/html')
+ print()
+
+ page = Web.Element(Web.ROOT_DIR + 'templates/page.html')
+ head = Web.Element(Web.ROOT_DIR + 'templates/head.html')
+ body = Web.Element(Web.ROOT_DIR + 'templates/body.html')
+ content = Web.Element('index.html')
+
+ page.add_child(head)
+ page.add_child(body)
+ body.add_child(content)
+
+ page.print()
+
+if __name__ == '__main__':
+ main()
diff --git a/multisphere/.htaccess b/multisphere/.htaccess
deleted file mode 100644
index 7031355..0000000
--- a/multisphere/.htaccess
+++ /dev/null
@@ -1 +0,0 @@
-php_value include_path '../include'
diff --git a/prototype/.htaccess b/prototype/.htaccess
deleted file mode 100644
index 9d6be3b..0000000
--- a/prototype/.htaccess
+++ /dev/null
@@ -1,4 +0,0 @@
-