README-HOME-PAGE
~~~~~~~~~~~~~~~~

jumpstart-max.application
~~~~~~~~~~~~~~~~~~~~~~~~~

How does Tapestry know which page is your "home" web page?  It looks in WEB-INF for
an APPLICATION file, which tells Tapestry stuff like that.

Our APPLICATION file is called jumpstart-max.application, and it says that our "Home" page 
is specified by LoginPage.page:

	<page name="Home" specification-path="/pages/login/LoginPage.page"/>

hivemodule.xml
~~~~~~~~~~~~~~

Also at startup, Tapestry loads up the objects described in hivemodule.xml.  In our
case, it loads up

	Application-scoped object:	businessServicesLocator
	Session-scoped object:		visit
	Validators:					minDateISO, maxDateISO, minDateMidnight, maxDateMidnight
	Translator:					dateMidnight
	
Don't worry about them for now.

Next
~~~~

README-LOGIN-PAGE-VIEW.  In Eclipse you can find it easily with Ctrl-Shift-R (or Cmd-Shift-R on the Mac).
