client.enter = request.enter; //rememeber the Form element with the NAME set to "enter" from input.html?
//the value was set to true in that form. Thus here we are passing the "true" value
// from the enter property of request to a newly created client object with a property //called client. Why? Request objects in LiveWire or last the for the lifetime of a //single request. When a new page is sent all properties created and set are //destroyed. The client object by default will keep its property values for 10minutes.
client.who = request.who;
project.participants = "" + client.who + "|" + project.participants + ""; //Here the alias that the user entered
//at the input page, which was stored in the
//request.who property and then tranferred
//to the less transient client object in a //property called who is put in the project //object property called participants. The
// The property object lasts as long as the //app is stopped.