# HG changeset patch # User paulb # Date 1095782328 0 # Node ID 65b9eb613d669a854983066247f6ed877d2851fa # Parent 8344aaf5899324fb2af4154f4e3c0f0a7cb8da1e [project @ 2004-09-21 15:58:48 by paulb] Added the simple with login example for Webware 0.8.1. diff -r 8344aaf58993 -r 65b9eb613d66 examples/Webware/SimpleWithLoginApp/__init__.py --- a/examples/Webware/SimpleWithLoginApp/__init__.py Tue Sep 21 15:58:37 2004 +0000 +++ b/examples/Webware/SimpleWithLoginApp/__init__.py Tue Sep 21 15:58:48 2004 +0000 @@ -25,9 +25,9 @@ global resource app = appServer.application() - # NOTE: Allow .xsimple files only. Really, we'd like any kind of file, but - # NOTE: that would severely undermine the servlet factory concept. + # NOTE: Allow .simplewithlogin files only. Really, we'd like any kind of + # NOTE: file, but that would severely undermine the servlet factory concept. - app.addServletFactory(WebStackServletFactory(app, resource, [".xsimple"])) + app.addServletFactory(WebStackServletFactory(app, resource, [".simplewithlogin"])) # vim: tabstop=4 expandtab shiftwidth=4