ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateModule.py
Revision: 1.4
Committed: Wed Nov 19 00:04:13 2003 UTC (20 years, 5 months ago) by ajm
Content type: text/x-python
Branch: MAIN
Changes since 1.3: +2 -1 lines
Log Message:
lame syntax errors and id is back in...we like it :)

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