]> git.phdru.name Git - phdru.name/cgi-bin/blog-ru/search-tags.git/blob - html/html.py
Remove and ignore *.py files generated from templates
[phdru.name/cgi-bin/blog-ru/search-tags.git] / html / html.py
1 #!/usr/bin/env python
2 # -*- coding: koi8-r -*-
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 HTTPResponse import HTTPResponse
28
29 ##################################################
30 ## MODULE CONSTANTS
31 VFFSL=valueFromFrameOrSearchList
32 VFSL=valueFromSearchList
33 VFN=valueForName
34 currentTime=time.time
35 __CHEETAH_version__ = '2.4.4'
36 __CHEETAH_versionTuple__ = (2, 4, 4, 'development', 1)
37 __CHEETAH_genTime__ = 1400554889.690351
38 __CHEETAH_genTimestamp__ = 'Tue May 20 07:01:29 2014'
39 __CHEETAH_src__ = 'html.tmpl'
40 __CHEETAH_srcLastModified__ = 'Tue May 20 07:01:27 2014'
41 __CHEETAH_docstring__ = 'Autogenerated by Cheetah: The Python-Powered Template Engine'
42
43 if __CHEETAH_versionTuple__ < RequiredCheetahVersionTuple:
44     raise AssertionError(
45       'This template was compiled with Cheetah version'
46       ' %s. Templates compiled before version %s must be recompiled.'%(
47          __CHEETAH_version__, RequiredCheetahVersion))
48
49 ##################################################
50 ## CLASSES
51
52 class html(HTTPResponse):
53
54     ##################################################
55     ## CHEETAH GENERATED METHODS
56
57
58     def __init__(self, *args, **KWs):
59
60         super(html, self).__init__(*args, **KWs)
61         if not self._CHEETAH__instanceInitialized:
62             cheetahKWArgs = {}
63             allowedKWs = 'searchList namespaces filter filtersLib errorCatcher'.split()
64             for k,v in KWs.items():
65                 if k in allowedKWs: cheetahKWArgs[k] = v
66             self._initCheetahInstance(**cheetahKWArgs)
67         
68
69     def respond(self, trans=None):
70
71
72
73         ## CHEETAH: main method generated for this template
74         if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)):
75             trans = self.transaction # is None unless self.awake() was called
76         if not trans:
77             trans = DummyTransaction()
78             _dummyTrans = True
79         else: _dummyTrans = False
80         write = trans.response().write
81         SL = self._CHEETAH__searchList
82         _filter = self._CHEETAH__currentFilter
83         
84         ########################################
85         ## START - generated method body
86         
87         write(u'''<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
88    "http://www.w3.org/TR/html4/loose.dtd">
89 <html>
90 <!-- THIS PAGE IS AUTOMATICALLY GENERATED USING CheetahTemplate. -->
91 <head>
92 <meta HTTP-Equiv="Content-Type" content="text/html">
93 <title>''')
94         _v = VFFSL(SL,"title",True) # u'$title' on line 10, col 8
95         if _v is not None: write(_filter(_v, rawExpr=u'$title')) # from line 10, col 8.
96         write(u'''</title>
97 <meta name="author" content="Oleg Broytman">
98 <link rel="author" href="../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
99 <meta name="copyright" content="&copy; 2014 PhiloSoft Design">
100 <link rel="copyright" href="../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
101 <link rev="made" href="mailto:phd@phdru.name">
102 <meta name="generator" content="CheetahTemplate">
103 <meta name="robots" content="index, follow">
104 <link rel="stylesheet" type="text/css" media="screen" href="../../phd.css">
105 <link rel="shortcut icon" href="../../favicon.ico">
106 <meta name="MSSmartTagsPreventParsing" content="TRUE"> <!-- MUST DIE -->
107 </head>
108 <body bgcolor="#CCCCCC" text="#000000"
109       link="#0000bb"  vlink="#551a8b" alink="#ff0000">
110 <h1>''')
111         _v = VFFSL(SL,"title",True) # u'$title' on line 24, col 5
112         if _v is not None: write(_filter(_v, rawExpr=u'$title')) # from line 24, col 5.
113         write(u'''</h1>
114 ''')
115         _v = VFFSL(SL,"body",True) # u'$body' on line 25, col 1
116         if _v is not None: write(_filter(_v, rawExpr=u'$body')) # from line 25, col 1.
117         write(u'''
118 </body>
119 </html>''')
120         
121         ########################################
122         ## END - generated method body
123         
124         return _dummyTrans and trans.response().getvalue() or ""
125         
126     ##################################################
127     ## CHEETAH GENERATED ATTRIBUTES
128
129
130     _CHEETAH__instanceInitialized = False
131
132     _CHEETAH_version = __CHEETAH_version__
133
134     _CHEETAH_versionTuple = __CHEETAH_versionTuple__
135
136     _CHEETAH_genTime = __CHEETAH_genTime__
137
138     _CHEETAH_genTimestamp = __CHEETAH_genTimestamp__
139
140     _CHEETAH_src = __CHEETAH_src__
141
142     _CHEETAH_srcLastModified = __CHEETAH_srcLastModified__
143
144     _mainCheetahMethod_for_html= u'respond'
145
146 ## END CLASS DEFINITION
147
148 if not hasattr(html, '_initCheetahAttributes'):
149     templateAPIClass = getattr(html, '_CHEETAH_templateClass', Template)
150     templateAPIClass._addCheetahPlumbingCodeToClass(html)
151
152
153 # CHEETAH was developed by Tavis Rudd and Mike Orr
154 # with code, advice and input from many other volunteers.
155 # For more information visit http://www.CheetahTemplate.org/
156
157 ##################################################
158 ## if run from command line:
159 if __name__ == '__main__':
160     from Cheetah.TemplateCmdLineIface import CmdLineIface
161     CmdLineIface(templateObj=html()).run()
162
163