ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateModule.py
Revision: 1.1
Committed: Tue Nov 18 23:33:49 2003 UTC (20 years, 5 months ago) by ajm
Content type: text/x-python
Branch: MAIN
Log Message:
initial checkin of template python module

File Contents

# Content
1 #!/usr/bin/python
2 #
3 # i-scream central monitoring system
4 # http://www.i-scream.org
5 # Copyright (C) 2000-2003 i-scream
6 #
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License
9 # as published by the Free Software Foundation; either version 2
10 # of the License, or (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21 """Module one line description...
22 <detail>...
23
24 """
25
26 __version__ = "$Revision$"
27 # $Source$
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 __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()