|
Revision 1367, 0.9 KB
(checked in by todd, 3 years ago)
|
|
Progress on the storage layer; we can now store new assets and data is distributed to the assetdata table based on type.
Added: a test routine for the storage subsystem.
Updated: used punypng to optimize the TurtolCMS logo.
Added: the Libs package, including a start on Xml tools.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | # $Id$ |
|---|
| 4 | |
|---|
| 5 | # Copyright 2006-2009 Todd D. Esposito. All Rights Reservered. |
|---|
| 6 | # |
|---|
| 7 | # This file is part of TurtolCMS. |
|---|
| 8 | # |
|---|
| 9 | # TurtolCMS is free software: you can redistribute it and/or modify |
|---|
| 10 | # it under the terms of the GNU Affero General Public License as |
|---|
| 11 | # published by the Free Software Foundation, either version 3 of the |
|---|
| 12 | # License, or (at your option) any later version. |
|---|
| 13 | # |
|---|
| 14 | # TurtolCMS is distributed in the hope that it will be useful, |
|---|
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | # GNU Affero General Public License for more details. |
|---|
| 18 | # |
|---|
| 19 | # You should have received a copy of the GNU Affero General Public |
|---|
| 20 | # License along with TurtolCMS. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 21 | # |
|---|
| 22 | |
|---|
| 23 | if __name__ == "__main__": |
|---|
| 24 | print "No Unit Tests yet" |
|---|
| 25 | |
|---|
| 26 | # vim: set ts=2 sw=2 expandtab : |
|---|