USER_LIST_SHARING_ADDRESSBOOKS=Freigegebene Adressb\u00fccher:
LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS=Auflisten
LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS_TITLE=Listet alle mit dem Benutzer geteilte Adressb\u00fccher auf.
+PAGE_TITLE_INDEX_USER_PROFILE=Benutzerprofil
+CONTENT_TITLE_INDEX_USER_PROFILE=\u00d6ffentliches Profil des Benutzers:
+PAGE_TITLE_LOGIN_LIST_SHARING_ADDRESSBOOKS=Mit einem Benutzer geteilte Adressb\u00fccher
+CONTENT_TITLE_LOGIN_LIST_SHARING_ADDRESSBOOKS=Mit einem Benutzer geteilte Adressb\u00fccher auflisten:
USER_LIST_SHARING_ADDRESSBOOKS=Shared address books:
LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS=List
LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS_TITLE=Lists all with this user shared address books.
+PAGE_TITLE_INDEX_USER_PROFILE=User profile
+CONTENT_TITLE_INDEX_USER_PROFILE=Public profile of the user:
+PAGE_TITLE_LOGIN_LIST_SHARING_ADDRESSBOOKS=With a user shared address books
+CONTENT_TITLE_LOGIN_LIST_SHARING_ADDRESSBOOKS=List with a user shared address books:
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
+ <application>
+ <locale-config>
+ <default-locale>de</default-locale>
+ <supported-locale>en_US</supported-locale>
+ </locale-config>
+ </application>
<validator>
<validator-id>PrivacyTermsCheckboxValidator</validator-id>
<validator-class>org.mxchange.jcoreee.validator.bool.privacy_terms.PrivacyTermsCheckboxValidator</validator-class>
<from-outcome>login_shared_addressbooks</from-outcome>
<to-view-id>/login/login_shared_addressbooks.xhtml</to-view-id>
</navigation-case>
+ <navigation-case>
+ <from-outcome>user_profile</from-outcome>
+ <to-view-id>/user/user_profile.xhtml</to-view-id>
+ </navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>/user/login.xhtml</from-view-id>
<to-view-id>/login/login_show_addressbook_entries.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
- <application>
- <locale-config>
- <default-locale>de</default-locale>
- <supported-locale>en_US</supported-locale>
- </locale-config>
- </application>
+ <navigation-rule>
+ <from-view-id>/login/login_user_list.xhtml</from-view-id>
+ <navigation-case>
+ <from-outcome>login_list_sharing_addressbooks</from-outcome>
+ <to-view-id>/login/login_shared_addressbooks.xhtml</to-view-id>
+ </navigation-case>
+ </navigation-rule>
</faces-config>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://xmlns.jcp.org/jsf/html"
+ xmlns:f="http://xmlns.jcp.org/jsf/core"
+ >
+
+ <ui:composition template="/WEB-INF/templates/login/login_base.tpl">
+ <ui:define name="login_title">#{msg.PAGE_TITLE_LOGIN_LIST_SHARING_ADDRESSBOOKS}</ui:define>
+
+ <ui:define name="content_header">
+ #{msg.CONTENT_TITLE_LOGIN_LIST_SHARING_ADDRESSBOOKS}
+ </ui:define>
+
+ <ui:define name="content">
+ Here goes your content.
+ </ui:define>
+ </ui:composition>
+</html>
<h:dataTable id="userList" var="user" value="#{userController.allPublicUsers()}" headerClass="table_header_column25" summary="#{msg.TABLE_SUMMARY_LOGIN_USER_LIST}" rendered="#{userController.isPublicUserRegistered()}">
<h:column>
<f:facet name="header">#{msg.USER_ID}</f:facet>
- <h:link outcome="login_user_profile" value="#{user.userId}">
+ <h:link outcome="user_profile" value="#{user.userId}">
<f:param name="profile" value="#{user.userId}" />
</h:link>
</h:column>
<h:column>
<f:facet name="header">#{msg.USER_NAME}</f:facet>
- <h:link outcome="login_user_profile" value="#{user.userName}">
+ <h:link outcome="user_profile" value="#{user.userName}">
<f:param name="profile" value="#{user.userId}" />
</h:link>
</h:column>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://xmlns.jcp.org/jsf/html"
+ xmlns:f="http://xmlns.jcp.org/jsf/core"
+ >
+
+ <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl">
+ <ui:define name="guest_title">#{msg.PAGE_TITLE_INDEX_USER_PROFILE}</ui:define>
+
+ <ui:define name="content_header">
+ #{msg.CONTENT_TITLE_INDEX_USER_PROFILE}
+ </ui:define>
+
+ <ui:define name="content">
+ Here goes your content.
+ </ui:define>
+ </ui:composition>
+</html>