Page 277 -
P. 277
web development
Sure enough, clicking on the home page’s link runs the generate_list.py program on the web
server, which displays Coach Kelly’s athletes as a list of radio buttons.
Looking good…the web
page has been generated
correctly…
…and your web server logs
the web request to run
the “generate_list.py”
CGI script.
File Edit Window Help DisplayingHomePage
$ python3 simple_httpd.py
Starting simple_httpd on port: 8080
localhost - - [12/Sep/2010 14:30:03] "GET / HTTP/1.1" 200 -
localhost - - [12/Sep/2010 14:30:03] "GET /coach.css HTTP/1.1" 200 -
localhost - - [12/Sep/2010 14:30:03] "GET /images/coach-head.jpg HTTP/1.1" 200 -
localhost - - [12/Sep/2010 14:30:03] "GET /favicon.ico HTTP/1.1" 200 -
localhost - - [12/Sep/2010 14:45:16] "GET /cgi-bin/generate_list.py HTTP/1.1" 200 -
You can click the Home hyperlink to return to the coach’s home page, or
select an athlete from the list (by clicking on their radio-button), before
pressing the Select button to continue.
Select an athlete and press Select. What happens?
you are here 4 241