fixed up the database and some other minor bugs
[yourule] / yourule.py
index 90102172ec531ff76aa1f97427b76f2e1f3c7434..108cce3e3cea30ac45ce1f57df60c0b0eee1f0fa 100755 (executable)
@@ -132,7 +132,7 @@ class gallery:
     def POST(self, ruler_url):
         input = web.input()
 
     def POST(self, ruler_url):
         input = web.input()
 
-        errormsg = valid_input(input)
+        errormsg = validate_input(input)
         if not input.model:
             errormsg = 'Please fill out all fields.'
 
         if not input.model:
             errormsg = 'Please fill out all fields.'
 
@@ -216,5 +216,5 @@ web.webapi.internalerror = web.debugerror
 if __name__ == "__main__":
     web.run(urls, globals(), web.reloader)
 
 if __name__ == "__main__":
     web.run(urls, globals(), web.reloader)
 
-application = web.wsgifunc(web.webpyfunc(urls, globals()))
+#application = web.wsgifunc(web.webpyfunc(urls, globals()))
 
 

Benjamin Mako Hill || Want to submit a patch?