def POST(self): ObjectWeb.header("Content-Type", "text/html") frm = myform() if not frm.validates(): return "FAILED" else: return str(frm.email) + " " + str(frm.password)
def POST(self): ObjectWeb.header("Content-Type","text/html") frm = myform() if not frm.validates(): return "FAILED" else: return str(frm.email) + " " + str(frm.password)
def GET(self, name): ObjectWeb.header("Content-Type", "text/plain") age = ObjectWeb.get("age", None) if age: return "Hello "+str(name)+", you are "+str(age)+" years old." else: return "Hello "+str(name)+"!"
def GET(self, name): ObjectWeb.header("Content-Type", "text/plain") age = ObjectWeb.get("age", None) if age: return "Hello " + str(name) + ", you are " + str( age) + " years old." else: return "Hello " + str(name) + "!"
def POST(self): ObjectWeb.header("Content-Type", "text/html") form = NewPostForm() if form.validates(): blogrec.set_post( blogrec.BlogPost(str(form.title), str(form.content))) ObjectWeb.seeother("/") return "" else: return blogrec.display(form.render())
def POST(self): ObjectWeb.header("Content-Type", "text/html") form = NewPostForm() if form.validates(): blogrec.set_post( blogrec.BlogPost(str(form.title), str(form.content)) ) ObjectWeb.seeother("/") return "" else: return blogrec.display(form.render())
def GET(self): ObjectWeb.header("Content-Type", "text/html") posts = blogrec.get_posts() if posts: content = "" for post in posts: content += "<div class='post' style='border: 1px solid #000;'>" content += "<h3>" + str(post.title) + "</h3>" content += "<section>%s</section>" % post.content content += "</div>" else: content = "<div>There are no posts.</div>" return blogrec.display(content)
def GET(self): ObjectWeb.header("Content-Type", "text/html") posts = blogrec.get_posts() if posts: content = "" for post in posts: content += "<div class='post' style='border: 1px solid #000;'>" content += "<h3>"+str(post.title)+"</h3>" content += "<section>%s</section>" % post.content content += "</div>" else: content = "<div>There are no posts.</div>" return blogrec.display(content)
def GET (self): ObjectWeb.header("Content-Type","text/html") frm = myform() return frm.render()
def GET(self): ObjectWeb.header("Content-Type", "text/html") frm = myform() return frm.render()
def GET(self): ObjectWeb.header("Content-Type", "text/html") form = NewPostForm() return blogrec.display(form.render())
def GET(self): ObjectWeb.status("404 Not Found") ObjectWeb.header("Content-Type", "text/plain") return "404 Not Found"
def GET(self): # ObjectWeb.status("200 OK") ObjectWeb.header("Content-Type", "text/plain") return "Hello World!"
def GET(self): ObjectWeb.header("Content-Type", "text/plain") ObjectWeb.header("X-Powered-By", "ObjectWeb/2.0") return str(ObjectWeb.context)