close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": No module named svn). Look in the Trac log for more information.
- Timestamp:
-
Jun 25, 2008, 7:51:18 PM (16 years ago)
- Author:
-
cmlenz
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v15
|
v16
|
|
11 | 11 | So: '''You probably don't want to be using this'''. It's a sandbox where I play with various ideas for modern web application development, it doesn't make it easy to use a different template engine than Genshi, it doesn't help you with connecting to a relational database (or any kind of database, for that matter), it doesn't have fancy reusable widgets, and so on. And it's probably never going to do or have those things. |
12 | 12 | |
13 | | So why am I releasing this code in the first place. Because I don't like keeping spare time code to myself, and because it might serve as inspiration for others, or something like that. |
| 13 | So why am I releasing this code in the first place? Because I don't like keeping spare time code to myself, and because it might serve as inspiration for others, or something like that. |
| 14 | |
| 15 | If you're looking for a lightweight and well-designed web application toolkit for Python that doesn't have such a big fat warning, I'd recommend taking a good look at [http://werkzeug.pocoo.org/ Werkzeug]. |
| 16 | |
| 17 | == Examples == |
| 18 | |
| 19 | This framework is being used “in production” for my own personal sites http://www.cmlenz.net/ and http://scratchpad.cmlenz.net/. The code for those two sites will be made available after I've cleaned it up a bit. |
| 20 | |
| 21 | Two simple examples are also included in the [source:trunk/examples repository]. |
14 | 22 | |
15 | 23 | == Documentation == |
… |
… |
|
25 | 33 | * ErrorHandling |
26 | 34 | * ConfigOptions |
| 35 | |
| 36 | == Acknowledgements == |
| 37 | |
| 38 | Much of this framework has been built on ideas and patterns extracted from the [http://trac.edgewall.org/ Trac] project, and many other parts have been inspired by other frameworks and libraries. |