BicaVM/app.py

40 lines
705 B
Python
Raw Normal View History

2011-07-01 22:28:15 +01:00
#! /usr/bin/python
# -*- Mode: Python -*-
# -*- coding: UTF-8 -*-
# Copyright (C) 2009 by Artur Ventura
#
# File: app.py
# Time-stamp: Sun Aug 9 16:30:18 2009
#
# Author: Artur Ventura
#
import web
import commands
urls = (
'/(.*)', 'index',
)
app = web.application(urls, globals())
class index:
def GET(self,filename):
if filename.endswith("favicon.ico"):
web.webapi.notfound()
return ""
if filename == "":
return file("index.html").read()
try:
return file(filename).read()
except:
web.webapi.notfound()
return ""
if __name__ == "__main__":
app.run()