# HG changeset patch # User paulb # Date 1076197159 0 # Node ID bb2e62e8c41ef169b94094a473f29c309318cb6d # Parent cb5c27b4dc8776a1cbf771d056515097335bb34f [project @ 2004-02-07 23:39:19 by paulb] Added notes on URL path naming for mod_python resources. diff -r cb5c27b4dc87 -r bb2e62e8c41e docs/ModPython/NOTES.txt --- a/docs/ModPython/NOTES.txt Sat Feb 07 23:38:32 2004 +0000 +++ b/docs/ModPython/NOTES.txt Sat Feb 07 23:39:19 2004 +0000 @@ -13,3 +13,17 @@ It would appear that the directory really should be distinct from others defined for mod_python, and that the handler should have a distinct name from other handlers employed. + +Using such a definition in httpd.conf, only server resources residing directly +below "/simple" in the URL "hierarchy" with names ending in ".simple" would be +associated with the Simple WebStack application's resources. Therefore, the +following URL paths would access the application: + + /simple/home.simple + /simple/tasks.simple/my-tasks + /simple/agenda.simple/tomorrow/first-thing + +Examples of URL paths not addressing the application are as follows: + + /agenda/my-agenda.simple + /simple/tasks/my-tasks.simple