|
1 Metadata-Version: 1.1 |
|
2 Name: pyams-portal |
|
3 Version: 0.1.0 |
|
4 Summary: PyAMS portal and portlets interfaces and classes |
|
5 Home-page: http://hg.ztfy.org/pyams/pyams_portal |
|
6 Author: Thierry Florac |
|
7 Author-email: tflorac@ulthar.net |
|
8 License: ZPL |
|
9 Description: |
|
10 |
|
11 Portal template configuration storage |
|
12 ===================================== |
|
13 |
|
14 |
|
15 <PortalTemplate mon_template> |
|
16 name = 'template1' |
|
17 __annotations__['pyams_portal.template'] = PortalTemplateConfiguration: |
|
18 __parent__ = mon_template |
|
19 rows = 2 |
|
20 slot_names = ['slot1', 'slot2', 'slot3'] |
|
21 slot_order = {0: ['slot1', 'slot2], |
|
22 1: ['slot3']} |
|
23 slots = {0: {'slot1': [1, 2], |
|
24 'slot2': [3, 4, 5]}, |
|
25 1: {'slot3': []}}, |
|
26 slot_config = {'slot1': <SlotConfiguration>, |
|
27 'slot2': <SlotConfiguration>, |
|
28 'slot3': <SlotConfiguration>}, |
|
29 portlets = {1: 'portlet1', |
|
30 2: 'portlet2', |
|
31 3: 'portlet1', |
|
32 4: 'portlet3', |
|
33 5: 'portlet1'}, |
|
34 __annotations__['pyams_portal.portlets'] = PortalPortletsConfiguration: |
|
35 portlet_config = {1: <Portlet1Configuration(portlet='portlet1')>, |
|
36 2: <Portlet2Configuration(portlet='portlet2')>}, |
|
37 3: <Portlet1Configuration(portlet='portlet1')>, |
|
38 4: <Portlet3Configuration(portlet='portlet3')>, |
|
39 5: <Portlet1Configuration(portlet='portlet1')>}} |
|
40 |
|
41 |
|
42 <PortalContext mon_contexte> |
|
43 shared_template = 'template1' |
|
44 template = mon_template |
|
45 __annotations__['pyams_portal.template'] = PortalTemplateConfiguration: |
|
46 __parent__ = mon_contexte |
|
47 slots = {0: {'slot1': [1, 2], |
|
48 'slot2': [3, 4, 5]}, |
|
49 1: {'slot3': []}}, |
|
50 slot_config = {'slot1': <SlotConfiguration>, |
|
51 'slot2': <SlotConfiguration>, |
|
52 'slot3': <SlotConfiguration>}, |
|
53 __annotations__['pyams_portal.portlets'] = PortalPortletsConfiguration: |
|
54 portlet_config = {1: <Portlet1Configuration(portlet='portlet1')>, |
|
55 2: <Portlet2Configuration(portlet='portlet2')>}, |
|
56 3: <Portlet1Configuration(portlet='portlet1')>, |
|
57 4: <Portlet3Configuration(portlet='portlet3')>, |
|
58 5: <Portlet1Configuration(portlet='portlet1')>}} |
|
59 |
|
60 |
|
61 <IPortalContext context1>: |
|
62 <PortalPage> |
|
63 __parent__ = context1 |
|
64 inherit_parent = False |
|
65 use_local_template = False |
|
66 shared_template = 'template1' |
|
67 |
|
68 |
|
69 <IPortalContext context2>: |
|
70 <PortalPage> |
|
71 __parent__ = context2 |
|
72 inherit_parent = False |
|
73 use_local_template = True |
|
74 local_template = <PortalWfTemplate ++template++> |
|
75 __annotations__['pyams_portal.portlets'] = PortalPortletsConfiguration: |
|
76 __parent__ = ++template++ |
|
77 |
|
78 |
|
79 |
|
80 Keywords: Pyramid PyAMS portal portlets |
|
81 Platform: UNKNOWN |
|
82 Classifier: License :: OSI Approved :: Zope Public License |
|
83 Classifier: Development Status :: 4 - Beta |
|
84 Classifier: Programming Language :: Python |
|
85 Classifier: Framework :: Pyramid |
|
86 Classifier: Topic :: Software Development :: Libraries :: Python Modules |