]> git.phdru.name Git - m_librarian.git/blob - m_librarian/web/views/list_authors.py
Feat(web): Preserve values in form
[m_librarian.git] / m_librarian / web / views / list_authors.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4
5
6
7 ##################################################
8 ## DEPENDENCIES
9 import sys
10 import os
11 import os.path
12 try:
13     import builtins as builtin
14 except ImportError:
15     import __builtin__ as builtin
16 from os.path import getmtime, exists
17 import time
18 import types
19 from Cheetah.Version import MinCompatibleVersion as RequiredCheetahVersion
20 from Cheetah.Version import MinCompatibleVersionTuple as RequiredCheetahVersionTuple
21 from Cheetah.Template import Template
22 from Cheetah.DummyTransaction import *
23 from Cheetah.NameMapper import NotFound, valueForName, valueFromSearchList, valueFromFrameOrSearchList
24 from Cheetah.CacheRegion import CacheRegion
25 import Cheetah.Filters as Filters
26 import Cheetah.ErrorCatchers as ErrorCatchers
27 from Cheetah.compat import unicode
28 from views.layout import layout
29 from views.search_authors_form import search_authors_form
30
31 ##################################################
32 ## MODULE CONSTANTS
33 VFFSL=valueFromFrameOrSearchList
34 VFSL=valueFromSearchList
35 VFN=valueForName
36 currentTime=time.time
37 __CHEETAH_version__ = '3.1.0'
38 __CHEETAH_versionTuple__ = (3, 1, 0, 'final', 1)
39 __CHEETAH_genTime__ = 1522961824.042332
40 __CHEETAH_genTimestamp__ = 'Thu Apr  5 23:57:04 2018'
41 __CHEETAH_src__ = 'list_authors.tmpl'
42 __CHEETAH_srcLastModified__ = 'Thu Apr  5 23:54:11 2018'
43 __CHEETAH_docstring__ = 'Autogenerated by Cheetah: The Python-Powered Template Engine'
44
45 if __CHEETAH_versionTuple__ < RequiredCheetahVersionTuple:
46     raise AssertionError(
47       'This template was compiled with Cheetah version'
48       ' %s. Templates compiled before version %s must be recompiled.'%(
49          __CHEETAH_version__, RequiredCheetahVersion))
50
51 ##################################################
52 ## CLASSES
53
54 class list_authors(layout):
55
56     ##################################################
57     ## CHEETAH GENERATED METHODS
58
59
60     def __init__(self, *args, **KWs):
61
62         super(list_authors, self).__init__(*args, **KWs)
63         if not self._CHEETAH__instanceInitialized:
64             cheetahKWArgs = {}
65             allowedKWs = 'searchList namespaces filter filtersLib errorCatcher'.split()
66             for k,v in KWs.items():
67                 if k in allowedKWs: cheetahKWArgs[k] = v
68             self._initCheetahInstance(**cheetahKWArgs)
69         
70
71     def body(self, **KWS):
72
73
74
75         ## CHEETAH: generated from #def body at line 4, col 1.
76         trans = KWS.get("trans")
77         if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)):
78             trans = self.transaction # is None unless self.awake() was called
79         if not trans:
80             trans = DummyTransaction()
81             _dummyTrans = True
82         else: _dummyTrans = False
83         write = trans.response().write
84         SL = self._CHEETAH__searchList
85         _filter = self._CHEETAH__currentFilter
86         
87         ########################################
88         ## START - generated method body
89         
90         write(u'''<h1>\u041f\u043e\u0438\u0441\u043a \u0430\u0432\u0442\u043e\u0440\u043e\u0432</h1>
91 ''')
92         _v = VFFSL(SL,"search_authors_form",False)(searchList=VFFSL(SL,"searchList",True)) # u'$search_authors_form(searchList=$searchList)' on line 7, col 1
93         if _v is not None: write(_filter(_v, rawExpr=u'$search_authors_form(searchList=$searchList)')) # from line 7, col 1.
94         write(u'''
95
96 <h1>''')
97         _v = VFFSL(SL,"title",True) # u'$title' on line 9, col 5
98         if _v is not None: write(_filter(_v, rawExpr=u'$title')) # from line 9, col 5.
99         write(u'''</h1>
100
101 ''')
102         if VFFSL(SL,"authors",True): # generated from line 11, col 1
103             write(u'''  <table>
104 ''')
105             for author in VFFSL(SL,"authors",True): # generated from line 13, col 3
106                 write(u'''  <tr>
107     <td>''')
108                 _v = VFFSL(SL,"author.fullname",True) # u'$author.fullname' on line 15, col 9
109                 if _v is not None: write(_filter(_v, rawExpr=u'$author.fullname')) # from line 15, col 9.
110                 write(u'''</td>
111   </tr>
112 ''')
113             write(u'''  </table>
114 ''')
115         else: # generated from line 19, col 1
116             write(u'''  <p>\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0430\u0432\u0442\u043e\u0440\u0430!</p>
117 ''')
118         
119         ########################################
120         ## END - generated method body
121         
122         return _dummyTrans and trans.response().getvalue() or ""
123         
124
125     def writeBody(self, **KWS):
126
127
128
129         ## CHEETAH: main method generated for this template
130         trans = KWS.get("trans")
131         if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)):
132             trans = self.transaction # is None unless self.awake() was called
133         if not trans:
134             trans = DummyTransaction()
135             _dummyTrans = True
136         else: _dummyTrans = False
137         write = trans.response().write
138         SL = self._CHEETAH__searchList
139         _filter = self._CHEETAH__currentFilter
140         
141         ########################################
142         ## START - generated method body
143         
144         
145         ########################################
146         ## END - generated method body
147         
148         return _dummyTrans and trans.response().getvalue() or ""
149         
150     ##################################################
151     ## CHEETAH GENERATED ATTRIBUTES
152
153
154     _CHEETAH__instanceInitialized = False
155
156     _CHEETAH_version = __CHEETAH_version__
157
158     _CHEETAH_versionTuple = __CHEETAH_versionTuple__
159
160     _CHEETAH_genTime = __CHEETAH_genTime__
161
162     _CHEETAH_genTimestamp = __CHEETAH_genTimestamp__
163
164     _CHEETAH_src = __CHEETAH_src__
165
166     _CHEETAH_srcLastModified = __CHEETAH_srcLastModified__
167
168     title = 'Список авторов'
169
170     _mainCheetahMethod_for_list_authors = 'writeBody'
171
172 ## END CLASS DEFINITION
173
174 if not hasattr(list_authors, '_initCheetahAttributes'):
175     templateAPIClass = getattr(list_authors,
176                                '_CHEETAH_templateClass',
177                                Template)
178     templateAPIClass._addCheetahPlumbingCodeToClass(list_authors)
179
180
181 # CHEETAH was developed by Tavis Rudd and Mike Orr
182 # with code, advice and input from many other volunteers.
183 # For more information visit http://cheetahtemplate.org/
184
185 ##################################################
186 ## if run from command line:
187 if __name__ == '__main__':
188     from Cheetah.TemplateCmdLineIface import CmdLineIface
189     CmdLineIface(templateObj=list_authors()).run()
190
191