Mercurial > p > roundup > code
comparison roundup/templates/__init__.py @ 1092:e5826025eeb7
more Log removal
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 01:07:06 +0000 |
| parents | 18134bffab37 |
| children |
comparison
equal
deleted
inserted
replaced
| 1091:d870139aeb5c | 1092:e5826025eeb7 |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: __init__.py,v 1.4 2001-08-07 00:24:43 richard Exp $ | 18 # $Id: __init__.py,v 1.5 2002-09-10 01:07:06 richard Exp $ |
| 19 | 19 |
| 20 import os | 20 import os |
| 21 | 21 |
| 22 def listTemplates(): | 22 def listTemplates(): |
| 23 t_dir = os.path.split(__file__)[0] | 23 t_dir = os.path.split(__file__)[0] |
| 27 if entry == 'CVS': continue | 27 if entry == 'CVS': continue |
| 28 if os.path.isdir(os.path.join(t_dir, entry)): | 28 if os.path.isdir(os.path.join(t_dir, entry)): |
| 29 l.append(entry) | 29 l.append(entry) |
| 30 return l | 30 return l |
| 31 | 31 |
| 32 # | |
| 33 # $Log: not supported by cvs2svn $ | |
| 34 # Revision 1.3 2001/08/07 00:15:51 richard | |
| 35 # Added the copyright/license notice to (nearly) all files at request of | |
| 36 # Bizar Software. | |
| 37 # | |
| 38 # | |
| 39 # | |
| 40 # vim: set filetype=python ts=4 sw=4 et si | 32 # vim: set filetype=python ts=4 sw=4 et si |
