ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateModule.py
Revision: 1.3
Committed: Tue Nov 18 23:54:05 2003 UTC (20 years, 5 months ago) by tdb
Content type: text/x-python
Branch: MAIN
Changes since 1.2: +3 -3 lines
Log Message:
Fix some bugs. I think. I don't know python that well yet.

File Contents

# Content
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 __version__ = "$Revision: 1.2 $"
27 # $Source: /cvs/i-scream/cms/source/TemplateModule.py,v $
28
29 #---IMPORTS---
30
31 #---CONSTANTS---
32
33 #<CLASS>
34 class TemplateClass:
35 """Class one line description...
36 <detail>
37 """
38
39 #---CONSTRUCTORS---
40
41 def __init__(self):
42 pass
43
44 #---PUBLIC METHODS---
45
46 #---PRIVATE METHODS---
47
48 #---ACCESSOR/MUTATOR METHODS---
49
50 #---ATTRIBUTES---
51
52 #</CLASS>
53
54 #---MODULE METHODS---
55
56 #---MODULE ATTRIBUTES---
57
58 #---MODULE INSTANTIATION/TESTING---
59
60 def main():
61 """Main one line description...
62 <detail>
63 """
64 pass
65
66 if __name__ == "__main__":
67 main()