Subversion Repositories navi

Compare Revisions

Ignore whitespace Rev 122 → Rev 127

/webapp/main.py
63,7 → 63,7
("/restart", Restart),
("/testdb", TestDB),
("/parse", Parse)
])
], settings = {"static_path": os.path.join(os.path.dirname(__file__), "static")})
 
if __name__ == "__main__":
http_server = tornado.httpserver.HTTPServer(application)
/webapp/static/favicon.ico
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/webapp/static/favicon.ico
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: webapp/templates/index.html
===================================================================
--- webapp/templates/index.html (nonexistent)
+++ webapp/templates/index.html (revision 127)
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+
+{% block title %}Home{% end %}
+
+{% block body %}
+Number translator - this webapp allows you to translate written-out Na'vi numbers into decimal and octal.
+Parser - this webapp can parse Na'vi sentences into the base words, prefixes, infixes and suffixes. It does not currently translate the words, but that will come.
+{% end %}