Code

stupid typo
[roundup.git] / roundup / templates / classic / detectors / __init__.py
1 #
2 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
3 # This module is free software, and you may redistribute it and/or modify
4 # under the same terms as Python, so long as this copyright message and
5 # disclaimer are retained in their original form.
6 #
7 # IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
8 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
9 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
10 # POSSIBILITY OF SUCH DAMAGE.
11 #
12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
18 #$Id: __init__.py,v 1.3 2001-08-07 00:24:43 richard Exp $
20 def init(db):
21     ''' execute the init functions of all the modules in this directory
22     '''
23     import os, sys
24     this_dir = os.path.split(__file__)[0]
25     try:
26         sys.path.insert(0, this_dir)
27         for file in os.listdir(this_dir):
28             file, ext = os.path.splitext(file)
29             if file == '__init__': continue
30             if ext in ('.py', '.pyc'):
31                 module = __import__(file)
32                 module.init(db)
33     finally:
34         del sys.path[0]
36 #
37 #$Log: not supported by cvs2svn $
38 #Revision 1.2  2001/08/07 00:15:51  richard
39 #Added the copyright/license notice to (nearly) all files at request of
40 #Bizar Software.
41 #
42 #Revision 1.1  2001/07/23 23:29:10  richard
43 #Adding the classic template
44 #
45 #Revision 1.1  2001/07/23 03:50:47  anthonybaxter
46 #moved templates to proper location
47 #
48 #Revision 1.1  2001/07/22 12:09:32  richard
49 #Final commit of Grande Splite
50 #
51 #