From 62d4eb0556fd0d6e200211e75d580ea1bba41a64 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Fri, 20 Jul 2012 11:27:38 -0500 Subject: [PATCH] added comment in welcome default.py --- VERSION | 2 +- applications/welcome/controllers/default.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3faf2c88..970b83e2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-07-20 10:31:02) dev +Version 2.00.0 (2012-07-20 11:27:33) dev diff --git a/applications/welcome/controllers/default.py b/applications/welcome/controllers/default.py index f449da20..4c4b563d 100644 --- a/applications/welcome/controllers/default.py +++ b/applications/welcome/controllers/default.py @@ -13,6 +13,9 @@ def index(): """ example action using the internationalization operator T and flash rendered by views/default/index.html or views/generic.html + + if you need a simple wiki simple replace the two lines below with: + return auth.wiki() """ response.flash = T("Welcome to web2py!") return dict(message=T('Hello World'))