DT_HTML.py
上传用户:gyjinxi
上传日期:2007-01-04
资源大小:159k
文件大小:13k
源码类别:

WEB邮件程序

开发平台:

Python

  1. ##############################################################################
  2. # Zope Public License (ZPL) Version 1.0
  3. # -------------------------------------
  4. # Copyright (c) Digital Creations.  All rights reserved.
  5. # This license has been certified as Open Source(tm).
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions are
  8. # met:
  9. # 1. Redistributions in source code must retain the above copyright
  10. #    notice, this list of conditions, and the following disclaimer.
  11. # 2. Redistributions in binary form must reproduce the above copyright
  12. #    notice, this list of conditions, and the following disclaimer in
  13. #    the documentation and/or other materials provided with the
  14. #    distribution.
  15. # 3. Digital Creations requests that attribution be given to Zope
  16. #    in any manner possible. Zope includes a "Powered by Zope"
  17. #    button that is installed by default. While it is not a license
  18. #    violation to remove this button, it is requested that the
  19. #    attribution remain. A significant investment has been put
  20. #    into Zope, and this effort will continue if the Zope community
  21. #    continues to grow. This is one way to assure that growth.
  22. # 4. All advertising materials and documentation mentioning
  23. #    features derived from or use of this software must display
  24. #    the following acknowledgement:
  25. #      "This product includes software developed by Digital Creations
  26. #      for use in the Z Object Publishing Environment
  27. #      (http://www.zope.org/)."
  28. #    In the event that the product being advertised includes an
  29. #    intact Zope distribution (with copyright and license included)
  30. #    then this clause is waived.
  31. # 5. Names associated with Zope or Digital Creations must not be used to
  32. #    endorse or promote products derived from this software without
  33. #    prior written permission from Digital Creations.
  34. # 6. Modified redistributions of any form whatsoever must retain
  35. #    the following acknowledgment:
  36. #      "This product includes software developed by Digital Creations
  37. #      for use in the Z Object Publishing Environment
  38. #      (http://www.zope.org/)."
  39. #    Intact (re-)distributions of any official Zope release do not
  40. #    require an external acknowledgement.
  41. # 7. Modifications are encouraged but must be packaged separately as
  42. #    patches to official Zope releases.  Distributions that do not
  43. #    clearly separate the patches from the original work must be clearly
  44. #    labeled as unofficial distributions.  Modifications which do not
  45. #    carry the name Zope may be packaged in any form, as long as they
  46. #    conform to all of the clauses above.
  47. # Disclaimer
  48. #   THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY
  49. #   EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  50. #   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  51. #   PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL DIGITAL CREATIONS OR ITS
  52. #   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  53. #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  54. #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  55. #   USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  56. #   ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  57. #   OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  58. #   OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  59. #   SUCH DAMAGE.
  60. # This software consists of contributions made by Digital Creations and
  61. # many individuals on behalf of Digital Creations.  Specific
  62. # attributions are listed in the accompanying credits file.
  63. ##############################################################################
  64. """HTML formated DocumentTemplates
  65. $Id: DT_HTML.py,v 1.23 1999/10/22 14:17:00 jim Exp $"""
  66. from DT_String import String, FileMixin
  67. import DT_String, regex
  68. from DT_Util import ParseError, str
  69. from string import strip, find, split, join, rfind, replace
  70. class dtml_re_class:
  71.     def search(self, text, start=0,
  72.                name_match=regex.compile('[- ]*[a-zA-Z]+[- ]*').match,
  73.                end_match=regex.compile('[- ]*(/|end)',
  74.                                        regex.casefold).match,
  75.                start_search=regex.compile('[<&]').search,
  76.                ent_name=regex.compile('[-a-zA-Z0-9_.]+').match,
  77.                find=find,
  78.                strip=strip,
  79.                replace=replace,
  80.                ):
  81.         while 1:
  82.             s=start_search(text, start)
  83.             if s < 0: return -1
  84.             if text[s:s+5] == '<!--#':
  85.                 n=s+5
  86.                 e=find(text,'-->',n)
  87.                 if e < 0: return -1
  88.                 en=3
  89.                 l=end_match(text,n)
  90.                 if l > 0:
  91.                     end=strip(text[n:n+l])
  92.                     n=n+l
  93.                 else: end=''
  94.             elif text[s:s+6] == '<dtml-':
  95.                 e=n=s+6
  96.                 while 1:
  97.                     e=find(text,'>',e+1)
  98.                     if e < 0: return -1
  99.                     if len(split(text[n:e],'"'))%2:
  100.                         # check for even number of "s inside
  101.                         break
  102.                 en=1
  103.                 end=''
  104.             elif text[s:s+7] == '</dtml-':
  105.                 e=n=s+7
  106.                 while 1:
  107.                     e=find(text,'>',e+1)
  108.                     if e < 0: return -1
  109.                     if len(split(text[n:e],'"'))%2:
  110.                         # check for even number of "s inside
  111.                         break
  112.                 en=1
  113.                 end='/'
  114.             else:
  115.                 if text[s:s+5] == '&dtml' and text[s+5] in '.-':
  116.                     n=s+6
  117.                     e=find(text,';',n)                        
  118.                     if e >= 0:
  119.                         args=text[n:e]
  120.                         l=len(args)
  121.                         if ent_name(args) == l:
  122.                             d=self.__dict__
  123.                             if text[s+5]=='-':
  124.                                 d[1]=d['end']=''
  125.                                 d[2]=d['name']='var'
  126.                                 d[0]=text[s:e+1]
  127.                                 d[3]=d['args']=args+' html_quote'
  128.                                 return s
  129.                             else:
  130.                                 nn=find(args,'-')
  131.                                 if nn >= 0 and nn < l-1:
  132.                                     d[1]=d['end']=''
  133.                                     d[2]=d['name']='var'
  134.                                     d[0]=text[s:e+1]
  135.                                     args=(args[nn+1:]+' '+
  136.                                           replace(args[:nn],'.',' '))
  137.                                     d[3]=d['args']=args
  138.                                     return s
  139.                         
  140.                 start=s+1
  141.                 continue
  142.             break
  143.         l=name_match(text,n)
  144.         if l < 0: return l
  145.         a=n+l
  146.         name=strip(text[n:a])
  147.         args=strip(text[a:e])
  148.         d=self.__dict__
  149.         d[0]=text[s:e+en]
  150.         d[1]=d['end']=end
  151.         d[2]=d['name']=name
  152.         d[3]=d['args']=args
  153.         return s
  154.     def group(self, *args):
  155.         get=self.__dict__.get
  156.         if len(args)==1:
  157.             return get(args[0])
  158.         return tuple(map(get, args))
  159.         
  160. class HTML(DT_String.String):
  161.     """HTML Document Templates
  162.     HTML Document templates use HTML server-side-include syntax,
  163.     rather than Python format-string syntax.  Here's a simple example:
  164.       <!--#in results-->
  165.         <!--#var name-->
  166.       <!--#/in-->
  167.     HTML document templates quote HTML tags in source when the
  168.     template is converted to a string.  This is handy when templates
  169.     are inserted into HTML editing forms.
  170.     """
  171.     def tagre(self):
  172.         return dtml_re_class()
  173.     def parseTag(self, tagre, command=None, sargs=''):
  174.         """Parse a tag using an already matched re
  175.         Return: tag, args, command, coname
  176.         where: tag is the tag,
  177.                args is the tag's argument string,
  178.                command is a corresponding command info structure if the
  179.                   tag is a start tag, or None otherwise, and
  180.                coname is the name of a continue tag (e.g. else)
  181.                  or None otherwise
  182.         """
  183.         tag, end, name, args, =tagre.group(0, 'end', 'name', 'args')
  184.         args=strip(args)
  185.         if end:
  186.             if not command or name != command.name:
  187.                 raise ParseError, ('unexpected end tag', tag)
  188.             return tag, args, None, None
  189.         if command and name in command.blockContinuations:
  190.             if name=='else' and args:
  191.                 # Waaaaaah! Have to special case else because of
  192.                 # old else start tag usage. Waaaaaaah!
  193.                 l=len(args)
  194.                 if not (args==sargs or
  195.                         args==sargs[:l] and sargs[l:l+1] in ' tn'):
  196.                     return tag, args, self.commands[name], None
  197.             
  198.             return tag, args, None, name
  199.         try: return tag, args, self.commands[name], None
  200.         except KeyError:
  201.             raise ParseError, ('Unexpected tag', tag)
  202.     def SubTemplate(self, name): return HTML('', __name__=name)
  203.     def varExtra(self,tagre): return 's'
  204.     def manage_edit(self,data,REQUEST=None):
  205.         'edit a template'
  206.         self.munge(data)
  207.         if REQUEST: return self.editConfirmation(self,REQUEST)
  208.     def quotedHTML(self,
  209.                    text=None,
  210.                    character_entities=(
  211.                        (('&'), '&amp;'),
  212.                        (("<"), '&lt;' ),
  213.                        ((">"), '&gt;' ),
  214.                        (('"'), '&quot;'))): #"
  215.         if text is None: text=self.read_raw()
  216.         for re,name in character_entities:
  217.             if find(text, re) >= 0: text=join(split(text,re),name)
  218.         return text
  219.     errQuote=quotedHTML
  220.     def __str__(self):
  221.         return self.quotedHTML()
  222.     def management_interface(self):
  223.         '''Hook to allow public execution of management interface with
  224.         everything else private.'''
  225.         return self
  226.     def manage_editForm(self, URL1, REQUEST):
  227.         '''Display doc template editing form''' #"
  228.         
  229.         return self._manage_editForm(
  230.             self,
  231.             mapping=REQUEST,
  232.             __str__=str(self),
  233.             URL1=URL1
  234.             )
  235.     manage_editDocument=manage=manage_editForm
  236. class HTMLDefault(HTML):
  237.     '''
  238.     HTML document templates that edit themselves through copy.
  239.     This is to make a distinction from HTML objects that should edit
  240.     themselves in place.
  241.     '''
  242.     copy_class=HTML
  243.     def manage_edit(self,data,PARENTS,URL1,REQUEST):
  244.         'edit a template'
  245.         newHTML=self.copy_class(data,self.globals,self.__name__)
  246.         setattr(PARENTS[1],URL1[rfind(URL1,'/')+1:],newHTML)
  247.         return self.editConfirmation(self,REQUEST)
  248. class HTMLFile(FileMixin, HTML):
  249.     """
  250.     HTML Document templates read from files.
  251.     If the object is pickled, the file name, rather
  252.     than the file contents is pickled.  When the object is
  253.     unpickled, then the file will be re-read to obtain the string.
  254.     Note that the file will not be read until the document
  255.     template is used the first time.
  256.     """
  257.     def manage_default(self, REQUEST=None):
  258.         'Revert to factory defaults'
  259.         if self.edited_source:
  260.             self.edited_source=''
  261.             self._v_cooked=self.cook()
  262.         if REQUEST: return self.editConfirmation(self,REQUEST)
  263.     def manage_editForm(self, URL1, REQUEST):
  264.         '''Display doc template editing form'''
  265.         return self._manage_editForm(mapping=REQUEST,
  266.                                      document_template_edit_width=
  267.                                      self.document_template_edit_width,
  268.                                      document_template_edit_header=
  269.                                      self.document_template_edit_header,
  270.                                      document_template_form_header=
  271.                                      self.document_template_form_header,
  272.                                      document_template_edit_footer=
  273.                                      self.document_template_edit_footer,
  274.                                      URL1=URL1,
  275.                                      __str__=str(self),
  276.                                      FactoryDefaultString=FactoryDefaultString,
  277.                                      )
  278.     manage_editDocument=manage=manage_editForm
  279.     def manage_edit(self,data,
  280.                     PARENTS=[],URL1='',URL2='',REQUEST='', SUBMIT=''):
  281.         'edit a template'
  282.         if SUBMIT==FactoryDefaultString: return self.manage_default(REQUEST)
  283.         if find(data,'r'):
  284.             data=join(split(data,'rn'),'nr')
  285.             data=join(split(data,'nr'),'n')
  286.             
  287.         if self.edited_source:
  288.             self.edited_source=data
  289.             self._v_cooked=self.cook()
  290.         else:
  291.             __traceback_info__=self.__class__
  292.             newHTML=self.__class__()
  293.             newHTML.__setstate__(self.__getstate__())
  294.             newHTML.edited_source=data
  295.             setattr(PARENTS[1],URL1[rfind(URL1,'/')+1:],newHTML)
  296.         if REQUEST: return self.editConfirmation(self,REQUEST)