Changes between Version 4 and Version 5 of DosAndDontsForApplicationWriters
- Timestamp:
- Oct 20, 2005, 9:58:22 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DosAndDontsForApplicationWriters
v4 v5 15 15 in ibofobi.apps. When I need to refer to paths, I'll use relative 16 16 paths rooted at the mnemosyne package directory. 17 18 == Basics == 19 20 * Your application should be Python 2.3-safe, notably you should not use {{{@decorator}}}-syntax, instead do this: 21 {{{ 22 def foo(answer): 23 ... 24 foo = decorate(foo) 25 }}} 17 26 18 27 == Templates ==