-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.py
More file actions
45 lines (29 loc) · 961 Bytes
/
Config.py
File metadata and controls
45 lines (29 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
###########################################################
#
# Copyright (c) 2005, Southpaw Technology
# All Rights Reserved
#
# PROPRIETARY INFORMATION. This software is proprietary to
# Southpaw Technology, and is not to be reproduced, transmitted,
# or disclosed in any way without written permission.
#
#
#
__all__ = ['Config']
from pyasm.web import AppServer
from pyasm.search import Search
from pyasm.web import DivWdg, Widget, HtmlElement
from tactic.ui.startup import DbConfigWdg
# get the import to this project's modules
from pyasm.web import get_site_import
exec( get_site_import(__file__) )
class Config(AppServer):
def get_page_widget(my):
div = DivWdg()
from tactic.ui.app import PageHeaderWdg
div.add(PageHeaderWdg())
search = Search("sthpw/login")
sobjects = search.get_sobjects()
config_wdg = DbConfigWdg()
div.add(config_wdg)
return div