]> git.phdru.name Git - phdru.name/cgi-bin/blog-ru/search-tags.git/blob - html/html.py
72610c53e0c0959f15abd9c39e0a71e8a5df4733
[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__ = 1400553119.801587
38 __CHEETAH_genTimestamp__ = 'Tue May 20 06:31:59 2014'
39 __CHEETAH_src__ = 'html.tmpl'
40 __CHEETAH_srcLastModified__ = 'Tue May 20 06:31:57 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 ''')
111         _v = VFFSL(SL,"body",True) # u'$body' on line 24, col 1
112         if _v is not None: write(_filter(_v, rawExpr=u'$body')) # from line 24, col 1.
113         write(u'''
114 </body>
115 </html>''')
116         
117         ########################################
118         ## END - generated method body
119         
120         return _dummyTrans and trans.response().getvalue() or ""
121         
122     ##################################################
123     ## CHEETAH GENERATED ATTRIBUTES
124
125
126     _CHEETAH__instanceInitialized = False
127
128     _CHEETAH_version = __CHEETAH_version__
129
130     _CHEETAH_versionTuple = __CHEETAH_versionTuple__
131
132     _CHEETAH_genTime = __CHEETAH_genTime__
133
134     _CHEETAH_genTimestamp = __CHEETAH_genTimestamp__
135
136     _CHEETAH_src = __CHEETAH_src__
137
138     _CHEETAH_srcLastModified = __CHEETAH_srcLastModified__
139
140     _mainCheetahMethod_for_html= u'respond'
141
142 ## END CLASS DEFINITION
143
144 if not hasattr(html, '_initCheetahAttributes'):
145     templateAPIClass = getattr(html, '_CHEETAH_templateClass', Template)
146     templateAPIClass._addCheetahPlumbingCodeToClass(html)
147
148
149 # CHEETAH was developed by Tavis Rudd and Mike Orr
150 # with code, advice and input from many other volunteers.
151 # For more information visit http://www.CheetahTemplate.org/
152
153 ##################################################
154 ## if run from command line:
155 if __name__ == '__main__':
156     from Cheetah.TemplateCmdLineIface import CmdLineIface
157     CmdLineIface(templateObj=html()).run()
158
159