ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateModule.py
Revision: 1.7
Committed: Sat Nov 22 16:15:51 2003 UTC (20 years, 5 months ago) by ajm
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +3 -2 lines
Log Message:
jeez I am SO fussy

File Contents

# User Rev Content
1 ajm 1.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 ajm 1.2 #
20 ajm 1.1
21     """Module one line description...
22     <detail>...
23    
24     """
25    
26 ajm 1.2 # $Source: /cvs/i-scream/cms/source/TemplateModule.py,v $
27 ajm 1.7 __version__ = "$Revision$"
28     __date__ = "$Date$"
29     __author__ = "$Author$"
30 ajm 1.1
31     #---IMPORTS---
32    
33 ajm 1.6 #---MODULE CONSTANTS---
34    
35     #---EXCEPTIONS---
36    
37     #---CLASSES---
38 ajm 1.1
39     #<CLASS>
40     class TemplateClass:
41     """Class one line description...
42     <detail>
43     """
44    
45 ajm 1.6 #---CLASS CONSTANTS---
46    
47 ajm 1.1 #---CONSTRUCTORS---
48    
49 tdb 1.3 def __init__(self):
50 ajm 1.1 pass
51    
52     #---PUBLIC METHODS---
53    
54     #---PRIVATE METHODS---
55    
56     #---ACCESSOR/MUTATOR METHODS---
57    
58 ajm 1.6 #---PRIVATE ATTRIBUTES---
59 ajm 1.1
60     #</CLASS>
61    
62     #---MODULE METHODS---
63    
64     #---MODULE INSTANTIATION/TESTING---
65    
66 tdb 1.3 def main():
67 ajm 1.1 """Main one line description...
68     <detail>
69     """
70     pass
71    
72     if __name__ == "__main__":
73     main()