예제 #1
0
파일: root.py 프로젝트: UH-msalem/UHCore
import handlers, os
from actionHistory import MapHistory, Data, Images, Root

name = "Action History"

root = Root()
root.data = Data()
root.images = Images()
root.mapHistory = MapHistory()
root.iui = handlers.StaticFiles(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'iui'))
root.js = handlers.StaticFiles(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'js'))
예제 #2
0
import handlers, os
from actionHistory import MapHistory, Data, Images, Root

name = "Action History"

root = Root()
root.data = Data()
root.images = Images()
root.mapHistory = MapHistory()
root.iui = handlers.StaticFiles(
    os.path.join(os.path.dirname(os.path.realpath(__file__)), 'iui'))
root.js = handlers.StaticFiles(
    os.path.join(os.path.dirname(os.path.realpath(__file__)), 'js'))
예제 #3
0
파일: root.py 프로젝트: UH-msalem/accompany
import handlers, os
from actionHistory import MapHistory, Data, Images, ImagesOverhead, Root

name = "Action History"

root = Root()
root.data = Data()
root.images = Images()
root.imagesOverhead = ImagesOverhead()
root.mapHistory = MapHistory()
#root.iui = handlers.StaticFiles(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'iui'))
root.angular = handlers.StaticFiles(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'angular'))
root.js = handlers.StaticFiles(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'js'))