]> git.mxchange.org Git - addressbook-war.git/commitdiff
added page login_show_addressbook_entries.xhtml
authorRoland Haeder <roland@mxchange.org>
Mon, 12 Oct 2015 17:09:38 +0000 (19:09 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 12 Oct 2015 17:11:43 +0000 (19:11 +0200)
src/java/org/mxchange/localization/bundle_de_DE.properties
src/java/org/mxchange/localization/bundle_en_US.properties
web/WEB-INF/faces-config.xml
web/login/login_own_addressbooks.xhtml
web/login/login_show_addressbook_entries.xhtml [new file with mode: 0644]

index d60fb749f3e662feff67f4d6e4b877416fde3084..cc834492f8dfa6e132c610232c19cad2ce7f1bba 100644 (file)
@@ -182,3 +182,11 @@ LINK_LOGIN_SHOW_ADDRESS_BOOK_TITLE=Adressbuch anzeigen
 PAGE_TITLE_LOGIN_SHOW_ADDRESSBOOK=Adressbuch anzeigen
 #Please fix German "umlaut"
 CONTENT_TITLE_LOGIN_SHOW_ADDRESSBOOK=Anzeigen des ausgewaehlten Adressbuchs:
+#Please fix German umlaut!
+ADDRESSBOOK_TOTAL_ENTRIES=Eintraege:
+#Please fix German umlaut!
+PAGE_TITLE_LOGIN_SHOW_ADDRESSBOOK_ENTRIES=Adressbucheintraege zeigen
+#Please fix German umlaut!
+CONTENT_TITLE_LOGIN_SHOW_ADDRESSBOOK_ENTRIES=Alle Adressbuchentraege anzeigen:
+#Please fix German umlaut!
+ADDRESSBOOK_TOTAL_ENTRIES_TITLE=Eintraege im Adressbuch
index 869815e4cef45e2cf09a10bb4cc5d3e62f74b04d..47aa1b2ea040dadd36b3c297ea4175724d13fc50 100644 (file)
@@ -181,3 +181,10 @@ ADDRESSBOOK_CREATED_TITLE=When the address book was created.
 LINK_LOGIN_SHOW_ADDRESS_BOOK_TITLE=Show address book
 PAGE_TITLE_LOGIN_SHOW_ADDRESSBOOK=Show address book
 CONTENT_TITLE_LOGIN_SHOW_ADDRESSBOOK=Show selected address book:
+ADDRESSBOOK_TOTAL_ENTRIES=Entries:
+#Please fix German umlaut!
+PAGE_TITLE_LOGIN_SHOW_ADDRESSBOOK_ENTRIES=Show address book entries
+#Please fix German umlaut!
+CONTENT_TITLE_LOGIN_SHOW_ADDRESSBOOK_ENTRIES=Show all address book entries:
+#Please fix German umlaut!
+ADDRESSBOOK_TOTAL_ENTRIES_TITLE=Entries in address book
index ed980d6b69847508059f4a577d80cf0cd9878a34..2610ac10535412b3e2532614df695d15f3d56478 100644 (file)
                        <from-outcome>login_show_addressbook</from-outcome>
                        <to-view-id>/login/login_show_addressbook.xhtml</to-view-id>
                </navigation-case>
+        <navigation-case>
+         <from-outcome>login_show_addressbook_entries</from-outcome>
+         <to-view-id>/login/login_show_addressbook_entries.xhtml</to-view-id>
+        </navigation-case>
        </navigation-rule>
        <application>
                <locale-config>
index 25b34ae088eb2b3f84841e03be23eb9750b12f3b..d65d7c34de49cb038b9d8ea1a620acd07123b28e 100644 (file)
@@ -40,7 +40,7 @@
 
                                                <h:link outcome="login_show_addressbook_entries" title="#{msg.LINK_LOGIN_SHOW_ADDRESS_BOOK_ENTRIES_TITLE}">
                                                        <f:param name="addressbook_id" value="#{addressbook.addressbookId}" />
-                                                       <h:outputText id="addressbookEntries" value="#{addressbookController.allEntriesSize(addressbook)}" title="#{msg.ADDRESSBOOK_NAME_TITLE}" />
+                                                       <h:outputText id="addressbookEntries" value="#{addressbookController.allEntriesSize(addressbook)}" title="#{msg.ADDRESSBOOK_TOTAL_ENTRIES_TITLE}" />
                                                </h:link>
                                        </h:column>
 
diff --git a/web/login/login_show_addressbook_entries.xhtml b/web/login/login_show_addressbook_entries.xhtml
new file mode 100644 (file)
index 0000000..5f53e61
--- /dev/null
@@ -0,0 +1,20 @@
+<?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_SHOW_ADDRESSBOOK_ENTRIES}</ui:define>
+
+               <ui:define name="content_header">
+                       #{msg.CONTENT_TITLE_LOGIN_SHOW_ADDRESSBOOK_ENTRIES}
+               </ui:define>
+
+               <ui:define name="content">
+                       Here goes your content.
+               </ui:define>
+       </ui:composition>
+</html>