1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
4 xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6 xmlns:h="http://xmlns.jcp.org/jsf/html"
7 xmlns:f="http://xmlns.jcp.org/jsf/core">
9 <ui:composition template="/WEB-INF/templates/#{userLoginController.baseTemplatePathName}_base.tpl">
10 <ui:define name="metadata">
12 <f:viewParam id="userId" name="userId" value="#{userController.userId}" required="true" requiredMessage="#{msg.PARAMETER_USER_ID_MISSING}" converterMessage="#{msg.PARAMETER_USER_ID_INVALID}" validatorMessage="#{msg.PARAMETER_USER_ID_NOT_FOUND}">
13 <f:convertNumber for="userId" type="number" minIntegerDigits="1" maxIntegerDigits="20" />
14 <f:validator for="userId" validatorId="UserIdValidator" />
19 <ui:define name="login_title">#{msg.PAGE_TITLE_USER_LOGIN_USER_PROFILE}</ui:define>
20 <ui:define name="guest_title">#{msg.PAGE_TITLE_INDEX_USER_PROFILE}</ui:define>
22 <ui:define name="content_header">
23 #{msg.CONTENT_TITLE_INDEX_USER_PROFILE}
26 <ui:define name="content">
27 <ui:fragment rendered="#{userController.isPublicUserProfileEnabled()}">
28 <ui:fragment rendered="#{userController.isUserIdEmpty()}">
29 <ui:include src="/WEB-INF/templates/user/userid_error.tpl" />
32 <h:outputText value="#{msg.ERROR_PROFILE_NOT_VISIBLE}" rendered="#{not profileController.isProfileLinkVisibleById(userController.userId)}" />
34 <ui:fragment rendered="#{profileController.isProfileLinkVisibleById(userController.userId)}">
36 <h:panelGrid styleClass="table" headerClass="table_header" footerClass="table_footer">
37 <f:facet name="header">
38 <h:outputText value="#{msg.PUBLIC_USER_PROFILE}" />
45 <ui:fragment rendered="#{not userController.isPublicUserProfileEnabled()}">
46 <h:outputText styleClass="errors" value="#{msg.ERROR_GUEST_USER_PROFILE_DEACTIVATED}" />