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

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. '''Sequence insertion
  65.        A sequence may be inserted using an 'in' command.  The 'in'
  66.        command specifies the name of a sequence object and text to
  67.        be inserted for each element in the sequence.  
  68.        The EPFS syntax for the in command is::
  69.           %(in name)[
  70.                text
  71.           %(in name)]
  72.        The HTML syntax for the in command is::
  73.           <!--#in name-->
  74.                text 
  75.           <!--#/in name-->
  76.       See the example below that shows how 'if', 'else', and 'in' commands
  77.       may be combined to display a possibly empty list of objects.
  78.       The text included within an 'in' command will be refered to
  79.       as an 'in' block.
  80.     Synopsis
  81.       If the variable 'sequence' exists as a sequence, a simple case
  82.       of the 'in' tag is used as follows::
  83.          <!--#in sequence-->some markup<!--#/in-->
  84.       A more complete case is used as follows::
  85.         <!--#in sequence sort=age-->
  86.           <!--#var sequence-number-->) <!--#var age-->
  87.         <!--#/in-->
  88.     Attributes
  89.       sort -- Define the sort order for sequence items.  If an item in
  90.       the sequence does not define 
  91.       reverse -- Reverse the sequence (may be combined with sort).  Note
  92.       that this can cause a huge memory use in lazy activation instances. 
  93.       Within an 'in' block, variables are substituted from the
  94.       elements of the iteration.  The elements may be either
  95.       instance or mapping objects.  In addition, the variables:
  96.          'sequence-item' -- The element.
  97.          'sequence-var-nnn' -- The value of a specific named attribute
  98.            of the item, where 'nnn' is the name.  For example, to get
  99.            an items 'title' attribute, use 'sequence-var-title'.  This
  100.            construct is most useful in an 'if' tag to test whether an
  101.            attribute is present, because the attribute lookup will be
  102.            extended to the full document template namespace.
  103.          'sequence-key' -- The key associated with the element in an
  104.            items list. See below.
  105.          'sequence-index' -- The index, starting from 0, of the
  106.            element within the sequence.
  107.          'sequence-number' -- The index, starting from 1, of the
  108.            element within the sequence.
  109.          'sequence-letter' -- The index, starting from 'a', of the
  110.            element within the sequence.
  111.          'sequence-Letter' -- The index, starting from 'A', of the
  112.            element within the sequence.
  113.          'sequence-roman' -- The index, starting from 'i', of the
  114.            element within the sequence.
  115.          'sequence-Roman' -- The index, starting from 'I', of the
  116.            element within the sequence.
  117.          'sequence-start' -- A variable that is true if the element
  118.            being displayed is the first of the displayed elements,
  119.            and false otherwise.
  120.          'sequence-end' -- A variable that is true if the element
  121.            being displayed is the last of the displayed elements,
  122.            and false otherwise.
  123.       are defined for each element.
  124.       Normally, 'in' blocks are used to iterate over sequences of
  125.       instances.  If the optional parameter 'mapping' is specified
  126.       after the sequence name, then the elements of the sequence
  127.       will be treated as mapping objects.
  128.       An 'in' command may be used to iterate over a sequence of
  129.       dictionary items.  If the elements of the iteration are
  130.       two-element tuples, then then the template code given in the
  131.       'in' block will be applied to the second element of each
  132.       tuple and may use a variable, 'sequence-key' to access the
  133.       first element in each tuple.
  134.     Batch sequence insertion
  135.       When displaying a large number of objects, it is sometimes
  136.       desireable to display just a sub-sequence of the data.
  137.       An 'in' command may have optional parameters,
  138.       as in::
  139.           <!--#in values start=start_var size=7-->
  140.       The parameter values may be either integer literals or
  141.       variable names.
  142.       Up to five parameters may be set:
  143.           'start'   -- The number of the first element to be shown,
  144.                        where elements are numbered from 1.
  145.           'end'     -- The number of the last element to be shown,
  146.                        where elements are numbered from 1.
  147.           'size'    -- The desired number of elements to be shown at
  148.                        once.
  149.           'orphan'  -- The desired minimum number of objects to be
  150.                        displayed.  The default value for this
  151.                        parameter is 3.
  152.           'overlap' -- The desired overlap between batches. The
  153.                        default is no overlap.     
  154.       Typically, only 'start' and 'size' will be specified.
  155.       When batch insertion is used, several additional variables are
  156.       defined for use within the sequence insertion text:
  157.           'sequence-query' -- The original query string given in a get
  158.              request with the form variable named in the 'start'
  159.              attribute removed.  This is extremely useful when
  160.              building URLs to fetch another batch.
  161.              To see how this is used, consider the following example::
  162.                  <!--#in search_results size=20 start=batch_start-->
  163.                     ... display rows
  164.                     <!--#if sequence-end--> <!--#if next-sequence-->
  165.                       <a href="<!--#var URL-->/<!--#var sequence-query
  166.                           -->&batch_start=<!--#var
  167.                           next-sequence-start-number-->">
  168.                       (Next <!--#var next-sequence-size--> results)
  169.                       </a>
  170.                     <!--#/if--> <!--#/if-->
  171.                  <!--#/in-->
  172.              If the original URL is: 'foo/bar?x=1&y=2', then the
  173.              rendered text (after row data are displated) will be::
  174.                       <a href="foo/bar?x=1&y=2&batch_start=20">
  175.                       (Next 20 results)
  176.                       </a>
  177.              If the original URL is: 'foo/bar?batch_start=10&x=1&y=2',
  178.              then the rendered text (after row data are displated)
  179.              will be::
  180.                       <a href="foo/bar?x=1&y=2&batch_start=30">
  181.                       (Next 20 results)
  182.                       </a>
  183.           'sequence-step-start-index' -- The index, starting from 0,
  184.              of the start of the current batch.
  185.           'sequence-step-end-index' -- The index, starting from 0, of
  186.              the end of the current batch.
  187.           'sequence-step-size' -- The batch size used.
  188.           'previous-sequence' -- This variable will be true when the
  189.              first element is displayed and when the first element
  190.              displayed is not the first element in the sequence.
  191.           'previous-sequence-start-index' -- The index, starting from
  192.              0, of the start of the batch previous to the current
  193.              batch.
  194.           'previous-sequence-end-index' -- The index, starting from
  195.              0, of the end of the batch previous to the current
  196.              batch.
  197.           'previous-sequence-size' -- The size of the batch previous to
  198.              the current batch.
  199.           'previous-batches' -- A sequence of mapping objects
  200.              containing information about all of the batches prior
  201.              to the batch being displayed.
  202.              Each of these mapping objects include the following
  203.              variables:
  204.                 batch-start-index -- The index, starting from
  205.                    0, of the beginning of the batch.
  206.                 batch-end-index -- The index, starting from
  207.                    0, of the end of the batch.
  208.                 batch-size -- The size of the batch.
  209.           'next-sequence' -- This variable will be true when the last
  210.              element is displayed and when the last element
  211.              displayed is not the last element in the sequence.
  212.           'next-sequence-start-index' -- The index, starting from
  213.              0, of the start of the batch after the current
  214.              batch.
  215.           'next-sequence-end-index' -- The index, starting from
  216.              0, of the end of the batch after the current
  217.              batch.
  218.           'next-sequence-size' -- The size of the batch after
  219.              the current batch.
  220.           'next-batches' -- A sequence of mapping objects
  221.              containing information about all of the batches after
  222.              the batch being displayed.
  223.              Each of these mapping objects include the following
  224.              variables:
  225.                 batch-start-index -- The index, starting from
  226.                    0, of the beginning of the batch.
  227.                 batch-end-index -- The index, starting from
  228.                    0, of the end of the batch.
  229.                 batch-size -- The size of the batch.
  230.       For each of the variables listed above with names ending in
  231.       "-index", there are variables with names ending in "-number",
  232.       "-roman", "-Roman", "-letter", and "-Letter" that are indexed
  233.       from 1, "i", "I", "a", and "A", respectively.  In addition,
  234.       for every one of these variables there are variables with
  235.       names ending in "-var-xxx", where "xxx" is an element
  236.       attribute name or key.
  237.     Summary statistics
  238.       When performing sequence insertion, special variables may be
  239.       used to obtain summary statistics.  To obtain a summary
  240.       statistic for a variable, use the variable name:
  241.       'statistic-name', where 'statistic' is a statistic name and
  242.       'name' is the name of a data variable.
  243.       Currently supported statistic names are:
  244.         total -- The total of numeric values.
  245.         count -- The total number of non-missing values.
  246.         min -- The minimum of non-missing values.
  247.         max -- The maximum of non-missing values.
  248.         median -- The median of non-missing values.
  249.         mean -- The mean of numeric values values.
  250.         variance -- The variance of numeric values computed with a
  251.           degrees of freedom qeual to the count - 1.
  252.         variance-n -- The variance of numeric values computed with a
  253.           degrees of freedom qeual to the count.
  254.         standard-deviation -- The standard deviation of numeric values
  255.           computed with a degrees of freedom qeual to the count - 1.
  256.         standard-deviation-n -- The standard deviation of numeric
  257.           values computed with a degrees of freedom qeual to the count.
  258.       Missing values are either 'None' or the attribute 'Value'
  259.       of the module 'Missing', if present.
  260.     'else' continuation tag within in
  261.       An 'else' tag may be used as a continuation tag in the 'in' tag.
  262.       The source after the 'else' tag is inserted if:
  263.         - The sequence given to the 'in' tag is of zero length, or
  264.         - The 'previous' attribute was used and their are no
  265.           previous batches, or
  266.         - The 'next' attribute was used and their are no
  267.           next batches, or
  268. ''' #'
  269. __rcs_id__='$Id: DT_In.py,v 1.38 1999/08/27 14:56:27 petrilli Exp $'
  270. __version__='$Revision: 1.38 $'[11:-2]
  271. from DT_Util import ParseError, parse_params, name_param, str
  272. from DT_Util import render_blocks, InstanceDict, ValidationError
  273. from string import find, atoi, join
  274. import ts_regex
  275. from DT_InSV import sequence_variables, opt
  276. TupleType=type(())
  277. class InFactory:
  278.     blockContinuations=('else',)
  279.     name='in'
  280.     def __call__(self, blocks):
  281.         i=InClass(blocks)
  282.         if i.batch: return i.renderwb
  283.         else: return i.renderwob
  284. In=InFactory()
  285. class InClass:
  286.     elses=None
  287.     expr=sort=batch=mapping=None
  288.     start_name_re=None
  289.     reverse=None
  290.     
  291.     def __init__(self, blocks):
  292.         tname, args, section = blocks[0]
  293.         args=parse_params(args, name='', start='1',end='-1',size='10',
  294.                           orphan='3',overlap='1',mapping=1,
  295.                           skip_unauthorized=1,
  296.                           previous=1, next=1, expr='', sort='',
  297.                           reverse=1)
  298.         self.args=args
  299.         has_key=args.has_key
  300.         if has_key('sort'):
  301.             self.sort=sort=args['sort']
  302.             if sort=='sequence-item': self.sort=''
  303.         if has_key('reverse'):
  304.             self.reverse=args['reverse']
  305.             
  306.         if has_key('mapping'): self.mapping=args['mapping']
  307.         for n in 'start', 'size', 'end':
  308.             if has_key(n): self.batch=1
  309.         for n in 'orphan','overlap','previous','next':
  310.             if has_key(n) and not self.batch:
  311.                 raise ParseError, (
  312.                     """
  313.                     The %s attribute was used but neither of the
  314.                     <code>start</code>, <code>end</code>, or <code>size</code>
  315.                     attributes were used.
  316.                     """ % n, 'in')
  317.         if has_key('start'):
  318.             v=args['start']
  319.             if type(v)==type(''):
  320.                 try: atoi(v)
  321.                 except:
  322.                     self.start_name_re=ts_regex.compile(
  323.                         '&+'+
  324.                         join(map(lambda c: "[%s]" % c, v),'')+
  325.                         '=[0-9]+&+')
  326.                     
  327.         name,expr=name_param(args,'in',1)
  328.         if expr is not None: expr=expr.eval
  329.         self.__name__, self.expr = name, expr
  330.         self.section=section.blocks
  331.         if len(blocks) > 1:
  332.             if len(blocks) != 2: raise ParseError, (
  333.                 'too many else blocks', 'in')
  334.             tname, args, section = blocks[1]
  335.             args=parse_params(args, name='')
  336.             if args:
  337.                 ename=name_param(args)
  338.                 if ename != name:
  339.                     raise ParseError, (
  340.                         'name in else does not match in', 'in')
  341.             self.elses=section.blocks
  342.             
  343.     def renderwb(self, md):
  344.         expr=self.expr
  345.         name=self.__name__
  346.         if expr is None:
  347.             sequence=md[name]
  348.             cache={ name: sequence }
  349.         else:
  350.             sequence=expr(md)
  351.             cache=None
  352.         if not sequence:
  353.             if self.elses: return render_blocks(self.elses, md)
  354.             return ''
  355.         if type(sequence) is type(''):
  356.             raise 'InError', (
  357.                 'Strings are not allowed as input to the in tag.')
  358.         section=self.section
  359.         params=self.args
  360.         
  361.         mapping=self.mapping
  362.         if self.sort is not None:
  363.             sequence=self.sort_sequence(sequence)
  364.         if self.reverse is not None:
  365.             sequence=self.reverse_sequence(sequence)
  366.             
  367.         next=previous=0
  368.         try: start=int_param(params,md,'start',0)
  369.         except: start=1
  370.         end=int_param(params,md,'end',0)
  371.         size=int_param(params,md,'size',0)
  372.         overlap=int_param(params,md,'overlap',0)
  373.         orphan=int_param(params,md,'orphan','3')
  374.         start,end,sz=opt(start,end,size,orphan,sequence)
  375.         if params.has_key('next'): next=1
  376.         if params.has_key('previous'): previous=1
  377.         last=end-1
  378.         first=start-1
  379.         try: query_string=md['QUERY_STRING']
  380.         except: query_string=''
  381.         vars=sequence_variables(sequence,'?'+query_string,self.start_name_re)
  382.         kw=vars.data
  383.         kw['mapping']=mapping
  384.         kw['sequence-step-size']=sz
  385.         kw['sequence-step-overlap']=overlap
  386.         kw['sequence-step-start']=start
  387.         kw['sequence-step-end']=end
  388.         kw['sequence-step-start-index']=start-1
  389.         kw['sequence-step-end-index']=end-1
  390.         kw['sequence-step-orphan']=orphan
  391.         push=md._push
  392.         pop=md._pop
  393.         render=render_blocks
  394.         if cache: push(cache)
  395.         push(vars)
  396.         try:
  397.             if previous:
  398.                 if first > 0:
  399.                     pstart,pend,psize=opt(0,first+overlap,
  400.                                           sz,orphan,sequence)
  401.                     kw['previous-sequence']=1
  402.                     kw['previous-sequence-start-index']=pstart-1
  403.                     kw['previous-sequence-end-index']=pend-1
  404.                     kw['previous-sequence-size']=pend+1-pstart
  405.                     result=render(section,md)
  406.                 elif self.elses: result=render(self.elses, md)
  407.                 else: result=''
  408.             elif next:
  409.                 try:
  410.                     # The following line is a sneaky way to test whether
  411.                     # there are more items, without actually
  412.                     # computing a length:
  413.                     sequence[end]
  414.                     pstart,pend,psize=opt(end+1-overlap,0,
  415.                                           sz,orphan,sequence)
  416.                     kw['next-sequence']=1
  417.                     kw['next-sequence-start-index']=pstart-1
  418.                     kw['next-sequence-end-index']=pend-1
  419.                     kw['next-sequence-size']=pend+1-pstart
  420.                     result=render(section,md)
  421.                 except:
  422.                     if self.elses: result=render(self.elses, md)
  423.                     else: result=''
  424.             else:
  425.                 result = []
  426.                 append=result.append
  427.                 validate=md.validate
  428.                 for index in range(first,end):
  429.                     if index==first and index > 0:
  430.                         pstart,pend,psize=opt(0,index+overlap,
  431.                                               sz,orphan,sequence)
  432.                         kw['previous-sequence']=1
  433.                         kw['previous-sequence-start-index']=pstart-1
  434.                         kw['previous-sequence-end-index']=pend-1
  435.                         kw['previous-sequence-size']=pend+1-pstart
  436.                     else:
  437.                         kw['previous-sequence']=0
  438.                         if index==last:
  439.                             try:
  440.                                 # The following line is a sneaky way to
  441.                                 # test whether there are more items,
  442.                                 # without actually computing a length:
  443.                                 sequence[end]
  444.                                 pstart,pend,psize=opt(end+1-overlap,0,
  445.                                                       sz,orphan,sequence)
  446.                                 kw['previous-sequence']=0
  447.                                 kw['next-sequence']=1
  448.                                 kw['next-sequence-start-index']=pstart-1
  449.                                 kw['next-sequence-end-index']=pend-1
  450.                                 kw['next-sequence-size']=pend+1-pstart
  451.                             except: pass
  452.         
  453.                     if index==last: kw['sequence-end']=1
  454.                     client=sequence[index]
  455.                     if validate is not None:
  456.                         try: vv=validate(sequence,sequence,index,client,md)
  457.                         except: vv=0
  458.                         if not vv:
  459.                             if (params.has_key('skip_unauthorized') and
  460.                                 params['skip_unauthorized']):
  461.                                 if index==first: kw['sequence-start']=0
  462.                                 continue
  463.                             raise ValidationError, index
  464.                     kw['sequence-index']=index
  465.                     if type(client)==TupleType and len(client)==2:
  466.                         client=client[1]
  467.                     if mapping: push(client)
  468.                     else: push(InstanceDict(client, md))
  469.                     try: append(render(section, md))
  470.                     finally: pop(1)
  471.                     if index==first: kw['sequence-start']=0
  472.                 result=join(result, '')
  473.         finally:
  474.             if cache: pop()
  475.             pop()
  476.         return result
  477.     def renderwob(self, md):
  478.         """RENDER WithOutBatch"""
  479.         expr=self.expr
  480.         name=self.__name__
  481.         if expr is None:
  482.             sequence=md[name]
  483.             cache={ name: sequence }
  484.         else:
  485.             sequence=expr(md)
  486.             cache=None
  487.         if not sequence:
  488.             if self.elses: return render_blocks(self.elses, md)
  489.             return ''
  490.         if type(sequence) is type(''):
  491.             raise 'InError', (
  492.                 'Strings are not allowed as input to the in tag.')
  493.         section=self.section        
  494.         mapping=self.mapping
  495.         if self.sort is not None:
  496.             sequence=self.sort_sequence(sequence)
  497.         if self.reverse is not None:
  498.             sequence=self.reverse_sequence(sequence)
  499.             
  500.         vars=sequence_variables(sequence)
  501.         kw=vars.data
  502.         kw['mapping']=mapping
  503.         l=len(sequence)
  504.         last=l-1
  505.         push=md._push
  506.         pop=md._pop
  507.         render=render_blocks
  508.         if cache: push(cache)
  509.         push(vars)
  510.         try:
  511.                 result = []
  512.                 append=result.append
  513.                 validate=md.validate
  514.                 for index in range(l):
  515.                     if index==last: kw['sequence-end']=1
  516.                     client=sequence[index]
  517.                     if validate is not None:
  518.                         try: vv=validate(sequence,sequence,index,client,md)
  519.                         except: vv=0
  520.                         if not vv:
  521.                             if (self.args.has_key('skip_unauthorized') and
  522.                                 self.args['skip_unauthorized']):
  523.                                 if index==1: kw['sequence-start']=0
  524.                                 continue
  525.                             raise ValidationError, index
  526.                     kw['sequence-index']=index
  527.                     if type(client)==TupleType and len(client)==2:
  528.                         client=client[1]
  529.                     if mapping: push(client)
  530.                     else: push(InstanceDict(client, md))
  531.                     try: append(render(section, md))
  532.                     finally: pop()
  533.                     if index==0: kw['sequence-start']=0
  534.                 result=join(result, '')
  535.         finally:
  536.             if cache: pop()
  537.             pop()
  538.         return result
  539.     def sort_sequence(self, sequence):
  540.         sort=self.sort
  541.         mapping=self.mapping
  542.         isort=not sort
  543.         k=None
  544.         s=[]
  545.         for client in sequence:
  546.             if type(client)==TupleType and len(client)==2:
  547.                 if isort: k=client[0]
  548.                 v=client[1]
  549.             else:
  550.                 if isort: k=client
  551.                 v=client
  552.             if sort:
  553.                 if mapping: k=v[sort]
  554.                 else: k=getattr(v, sort)
  555.                 if not basic_type(k):           
  556.                     try: k=k()
  557.                     except: pass
  558.             s.append((k,client))
  559.         s.sort()
  560.         sequence=[]
  561.         for k, client in s: sequence.append(client)
  562.         return sequence
  563.     def reverse_sequence(self, sequence):
  564.         s=list(sequence)
  565.         s.reverse()
  566.         return s
  567. basic_type={type(''): 1, type(0): 1, type(0.0): 1, type(()): 1, type([]): 1
  568.             }.has_key
  569. def int_param(params,md,name,default=0, st=type('')):
  570.     try: v=params[name]
  571.     except: v=default
  572.     if v:
  573.         try: v=atoi(v)
  574.         except:
  575.             v=md[v]
  576.             if type(v) is st: v=atoi(v)
  577.     return v