1 |
# |
2 |
# i-scream central monitoring system |
3 |
# http://www.i-scream.org |
4 |
# Copyright (C) 2000-2003 i-scream |
5 |
# |
6 |
# This program is free software; you can redistribute it and/or |
7 |
# modify it under the terms of the GNU General Public License |
8 |
# as published by the Free Software Foundation; either version 2 |
9 |
# of the License, or (at your option) any later version. |
10 |
# |
11 |
# This program is distributed in the hope that it will be useful, |
12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
# GNU General Public License for more details. |
15 |
# |
16 |
# You should have received a copy of the GNU General Public License |
17 |
# along with this program; if not, write to the Free Software |
18 |
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 |
# |
20 |
|
21 |
"""Module one line description... |
22 |
<detail>... |
23 |
|
24 |
""" |
25 |
|
26 |
# $Source: /cvs/i-scream/cms/source/TemplateModule.py,v $ |
27 |
__version__ = "$Revision$" |
28 |
__date__ = "$Date$" |
29 |
__author__ = "$Author$" |
30 |
|
31 |
#---IMPORTS--- |
32 |
|
33 |
#---MODULE CONSTANTS--- |
34 |
|
35 |
#---EXCEPTIONS--- |
36 |
|
37 |
#---CLASSES--- |
38 |
|
39 |
#<CLASS> |
40 |
class TemplateClass: |
41 |
"""Class one line description... |
42 |
<detail> |
43 |
""" |
44 |
|
45 |
#---CLASS CONSTANTS--- |
46 |
|
47 |
#---CONSTRUCTORS--- |
48 |
|
49 |
def __init__(self): |
50 |
pass |
51 |
|
52 |
#---PUBLIC METHODS--- |
53 |
|
54 |
#---PRIVATE METHODS--- |
55 |
|
56 |
#---ACCESSOR/MUTATOR METHODS--- |
57 |
|
58 |
#---PRIVATE ATTRIBUTES--- |
59 |
|
60 |
#</CLASS> |
61 |
|
62 |
#---MODULE METHODS--- |
63 |
|
64 |
#---MODULE INSTANTIATION/TESTING--- |
65 |
|
66 |
def main(): |
67 |
"""Main one line description... |
68 |
<detail> |
69 |
""" |
70 |
pass |
71 |
|
72 |
if __name__ == "__main__": |
73 |
main() |