the erbo_reorg_04202002 branch is no more...development continues on the

trunk while the stable_branch_04202002 branch takes the 'stable' role
This commit is contained in:
Eric J. Bowersox
2002-04-24 06:39:29 +00:00
parent a459e02e79
commit e4e0223452
79 changed files with 2275 additions and 1043 deletions

View File

@@ -38,7 +38,8 @@ if ("GET"==rinput.verb)
{ // set up the invitation screen parameters
rinput.setRequestAttribute("invitation.title","Send Community Invitation:");
rinput.setRequestAttribute("invitation.subtitle",comm.name);
rinput.setRequestAttribute("invitation.action",rinput.formatURL("comm/invite.js.vs",LinkTypes.SERVLET));
html = vlib.queryHTMLRendering(rinput);
rinput.setRequestAttribute("invitation.action",html.formatURL("comm/invite.js.vs",html.SERVLET));
rinput.setRequestAttribute("invitation.params",
"<INPUT TYPE=\"HIDDEN\" NAME=\"cc\" VALUE=\"" + comm.communityID + "\">");

View File

@@ -43,7 +43,8 @@ if ("GET"==rinput.verb)
{ // create and initialize the PhotoUploader
rc = new PhotoUploader("Upload Community Logo","comm/photo.js.vs",LinkTypes.SERVLET);
rc.addHiddenParameter("cc",comm.communityID);
rc.photoTag = rinput.getCommunityLogoTag(comm.getContactInfo().photoURL);
html = vlib.queryHTMLRendering(rinput);
rc.photoTag = html.getCommunityLogoTag(comm.getContactInfo().photoURL);
rc.label = "New community logo";
} // end try

View File

@@ -68,7 +68,8 @@ try
rinput.setRequestAttribute("address.country",ce.name);
// Save off the community logo tag.
rinput.setRequestAttribute("community.logo",rinput.getCommunityLogoTag(ci.photoURL));
html = vlib.queryHTMLRendering(rinput);
rinput.setRequestAttribute("community.logo",html.getCommunityLogoTag(ci.photoURL));
// create the view object
rc = new JSPView("Community Profile: " + comm.name,"comm/profile.jsp");