Changes between Version 21 and Version 22 of DosAndDontsForApplicationWriters
- Timestamp:
- Mar 21, 2012, 3:37:14 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DosAndDontsForApplicationWriters
v21 v22 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 }}}26 17 27 18 == Templates ==