]> git.phdru.name Git - phdru.name/cgi-bin/blog-ru/search-tags.git/commitdiff
Fix paths
authorOleg Broytman <phd@phdru.name>
Tue, 20 May 2014 06:32:43 +0000 (10:32 +0400)
committerOleg Broytman <phd@phdru.name>
Tue, 20 May 2014 06:32:43 +0000 (10:32 +0400)
html/html.py [deleted file]
html/html.tmpl

diff --git a/html/html.py b/html/html.py
deleted file mode 100644 (file)
index b085e69..0000000
+++ /dev/null
@@ -1,163 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: koi8-r -*-
-
-
-
-
-##################################################
-## DEPENDENCIES
-import sys
-import os
-import os.path
-try:
-    import builtins as builtin
-except ImportError:
-    import __builtin__ as builtin
-from os.path import getmtime, exists
-import time
-import types
-from Cheetah.Version import MinCompatibleVersion as RequiredCheetahVersion
-from Cheetah.Version import MinCompatibleVersionTuple as RequiredCheetahVersionTuple
-from Cheetah.Template import Template
-from Cheetah.DummyTransaction import *
-from Cheetah.NameMapper import NotFound, valueForName, valueFromSearchList, valueFromFrameOrSearchList
-from Cheetah.CacheRegion import CacheRegion
-import Cheetah.Filters as Filters
-import Cheetah.ErrorCatchers as ErrorCatchers
-from HTTPResponse import HTTPResponse
-
-##################################################
-## MODULE CONSTANTS
-VFFSL=valueFromFrameOrSearchList
-VFSL=valueFromSearchList
-VFN=valueForName
-currentTime=time.time
-__CHEETAH_version__ = '2.4.4'
-__CHEETAH_versionTuple__ = (2, 4, 4, 'development', 1)
-__CHEETAH_genTime__ = 1400554889.690351
-__CHEETAH_genTimestamp__ = 'Tue May 20 07:01:29 2014'
-__CHEETAH_src__ = 'html.tmpl'
-__CHEETAH_srcLastModified__ = 'Tue May 20 07:01:27 2014'
-__CHEETAH_docstring__ = 'Autogenerated by Cheetah: The Python-Powered Template Engine'
-
-if __CHEETAH_versionTuple__ < RequiredCheetahVersionTuple:
-    raise AssertionError(
-      'This template was compiled with Cheetah version'
-      ' %s. Templates compiled before version %s must be recompiled.'%(
-         __CHEETAH_version__, RequiredCheetahVersion))
-
-##################################################
-## CLASSES
-
-class html(HTTPResponse):
-
-    ##################################################
-    ## CHEETAH GENERATED METHODS
-
-
-    def __init__(self, *args, **KWs):
-
-        super(html, self).__init__(*args, **KWs)
-        if not self._CHEETAH__instanceInitialized:
-            cheetahKWArgs = {}
-            allowedKWs = 'searchList namespaces filter filtersLib errorCatcher'.split()
-            for k,v in KWs.items():
-                if k in allowedKWs: cheetahKWArgs[k] = v
-            self._initCheetahInstance(**cheetahKWArgs)
-        
-
-    def respond(self, trans=None):
-
-
-
-        ## CHEETAH: main method generated for this template
-        if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)):
-            trans = self.transaction # is None unless self.awake() was called
-        if not trans:
-            trans = DummyTransaction()
-            _dummyTrans = True
-        else: _dummyTrans = False
-        write = trans.response().write
-        SL = self._CHEETAH__searchList
-        _filter = self._CHEETAH__currentFilter
-        
-        ########################################
-        ## START - generated method body
-        
-        write(u'''<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-   "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<!-- THIS PAGE IS AUTOMATICALLY GENERATED USING CheetahTemplate. -->
-<head>
-<meta HTTP-Equiv="Content-Type" content="text/html">
-<title>''')
-        _v = VFFSL(SL,"title",True) # u'$title' on line 10, col 8
-        if _v is not None: write(_filter(_v, rawExpr=u'$title')) # from line 10, col 8.
-        write(u'''</title>
-<meta name="author" content="Oleg Broytman">
-<link rel="author" href="../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
-<meta name="copyright" content="&copy; 2014 PhiloSoft Design">
-<link rel="copyright" href="../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
-<link rev="made" href="mailto:phd@phdru.name">
-<meta name="generator" content="CheetahTemplate">
-<meta name="robots" content="index, follow">
-<link rel="stylesheet" type="text/css" media="screen" href="../../phd.css">
-<link rel="shortcut icon" href="../../favicon.ico">
-<meta name="MSSmartTagsPreventParsing" content="TRUE"> <!-- MUST DIE -->
-</head>
-<body bgcolor="#CCCCCC" text="#000000"
-      link="#0000bb"  vlink="#551a8b" alink="#ff0000">
-<h1>''')
-        _v = VFFSL(SL,"title",True) # u'$title' on line 24, col 5
-        if _v is not None: write(_filter(_v, rawExpr=u'$title')) # from line 24, col 5.
-        write(u'''</h1>
-''')
-        _v = VFFSL(SL,"body",True) # u'$body' on line 25, col 1
-        if _v is not None: write(_filter(_v, rawExpr=u'$body')) # from line 25, col 1.
-        write(u'''
-</body>
-</html>''')
-        
-        ########################################
-        ## END - generated method body
-        
-        return _dummyTrans and trans.response().getvalue() or ""
-        
-    ##################################################
-    ## CHEETAH GENERATED ATTRIBUTES
-
-
-    _CHEETAH__instanceInitialized = False
-
-    _CHEETAH_version = __CHEETAH_version__
-
-    _CHEETAH_versionTuple = __CHEETAH_versionTuple__
-
-    _CHEETAH_genTime = __CHEETAH_genTime__
-
-    _CHEETAH_genTimestamp = __CHEETAH_genTimestamp__
-
-    _CHEETAH_src = __CHEETAH_src__
-
-    _CHEETAH_srcLastModified = __CHEETAH_srcLastModified__
-
-    _mainCheetahMethod_for_html= u'respond'
-
-## END CLASS DEFINITION
-
-if not hasattr(html, '_initCheetahAttributes'):
-    templateAPIClass = getattr(html, '_CHEETAH_templateClass', Template)
-    templateAPIClass._addCheetahPlumbingCodeToClass(html)
-
-
-# CHEETAH was developed by Tavis Rudd and Mike Orr
-# with code, advice and input from many other volunteers.
-# For more information visit http://www.CheetahTemplate.org/
-
-##################################################
-## if run from command line:
-if __name__ == '__main__':
-    from Cheetah.TemplateCmdLineIface import CmdLineIface
-    CmdLineIface(templateObj=html()).run()
-
-
index e8c6be18da358ff28a33f28c1de40098761c3563..9d46413219c842c5e7c631e32cbcfe7426321281 100644 (file)
@@ -9,14 +9,14 @@
 <meta HTTP-Equiv="Content-Type" content="text/html">
 <title>$title</title>
 <meta name="author" content="Oleg Broytman">
-<link rel="author" href="../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
+<link rel="author" href="../../../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
 <meta name="copyright" content="&copy; 2014 PhiloSoft Design">
-<link rel="copyright" href="../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
+<link rel="copyright" href="../../../../Russian/blog/" title="&copy; 2014 PhiloSoft Design">
 <link rev="made" href="mailto:phd@phdru.name">
 <meta name="generator" content="CheetahTemplate">
 <meta name="robots" content="index, follow">
-<link rel="stylesheet" type="text/css" media="screen" href="../../phd.css">
-<link rel="shortcut icon" href="../../favicon.ico">
+<link rel="stylesheet" type="text/css" media="screen" href="../../../../phd.css">
+<link rel="shortcut icon" href="../../../../favicon.ico">
 <meta name="MSSmartTagsPreventParsing" content="TRUE"> <!-- MUST DIE -->
 </head>
 <body bgcolor="#CCCCCC" text="#000000"