<%-- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the Venice Web Communities System. The Initial Developer of the Original Code is Eric J. Bowersox , for Silverwrist Design Studios. Portions created by Eric J. Bowersox are Copyright (C) 2001-2004 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved. Contributor(s): --%> <%@ page import = "com.silverwrist.util.StringUtil" %> <%@ page import = "com.silverwrist.venice.core.*" %> <%@ page import = "com.silverwrist.venice.ui.view.JSPView" %> <%@ taglib uri="/tlds/util" prefix="util" %> <% JSPView data = JSPView.get(request); UserProfile prof = (UserProfile)(data.getRequestAttribute("profile")); String tmp; %> Profile for UID #<%= prof.getUID() %>
<%= data.getRequestAttribute("user.photo") %>

<% java.util.Date tmpd = prof.getCreateDate(); %> <% if (tmpd!=null) { %> Account created:
<%= data.formatDate(tmpd) %>
<% } // end if %> <% tmpd = prof.getLastLoginDate(); %> <% if (tmpd!=null) { %> Last login:
<%= data.formatDate(tmpd) %>
<% } // end if %> <% tmpd = prof.getLastUpdate(); %> <% if (tmpd!=null) { %> Profile last updated:
<%= data.formatDate(tmpd) %>
<% } // end if %>

fullname<% tmp = data.getRequestAttribute("fullname").toString(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %> <%= tmp %>
<% } // end if %> e-mail<% tmp = prof.getEmail(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %> E-mail: <%= tmp %>
<% } // end if %> url<% tmp = prof.getURL(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %> URL: <%= tmp %>
<% } // end if %>
company<% tmp = prof.getCompany(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %><%= tmp %>
<% } %> address 1<% tmp = prof.getAddressLine1(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %><%= tmp %>
<% } %> address 2<% tmp = prof.getAddressLine2(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %><%= tmp %>
<% } %> address lastline<% tmp = data.getRequestAttribute("address.lastline").toString(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %><%= tmp %>
<% } %> country<% tmp = data.getRequestAttribute("country").toString(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %><%= tmp %>
<% } %> phone<% tmp = prof.getPhone(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %>Phone: <%= tmp %>
<% } %> fax<% tmp = prof.getFax(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %>Fax: <%= tmp %>
<% } %> mobile<% tmp = prof.getMobile(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %>Mobile: <%= tmp %>
<% } %>

<% tmp = prof.getDescription(); %> <% if (!(StringUtil.isStringEmpty(tmp))) { %> <%= tmp %>
<% } // end if %> <% if (prof.canSendQuickEmail()) { %>
Send Quick E-Mail To <%= prof.getUserName() %>:
Subject:
<% } // end if %> <%-- EOF --%>