Hi there. 

We did the same things as in the morning. 

The new thing at the end was:

  (a) defining a context called dufus
  (b) creating an index.html in it, also
  (c) creating a simple time-reporting JSP 

Here's what we did: 

[jodsiege@silo dufus]$ pwd
/u/jodsiege/apache-tomcat-7.0.35/webapps/dufus
[jodsiege@silo dufus]$ ls -l
total 8
-rw------- 1 jodsiege students   45 Mar 18 15:41 index.html
drwx------ 4 jodsiege students 4096 Mar 18 15:39 WEB-INF
[jodsiege@silo dufus]$ pico -w one.jsp
[jodsiege@silo dufus]$ cd ..
[jodsiege@silo webapps]$ pwd
/u/jodsiege/apache-tomcat-7.0.35/webapps
[jodsiege@silo webapps]$ du -a dufus/
4       dufus/one.jsp
4       dufus/index.html
4       dufus/WEB-INF/classes
4       dufus/WEB-INF/lib
12      dufus/WEB-INF
24      dufus/
[jodsiege@silo webapps]$ cat dufus/index.html
Hi my name is Dufus you can call me Adrian.
[jodsiege@silo webapps]$ cat dufus/one.jsp
The time is now: <% out.println( new java.util.Date() ); %>
[jodsiege@silo webapps]$