<target name="-init-taskdefs">
<fail unless="libs.CopyLibs.classpath">
The libs.CopyLibs.classpath property is not set up.
-This property must point to
+This property must point to
org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
-of NetBeans IDE installation and is usually located at
+of NetBeans IDE installation and is usually located at
<netbeans_installation>/java<version>/ant/extra folder.
Either open the project in the IDE and make sure CopyLibs library
exists or setup the property manually. For example like this:
</target>
<target depends="init,javadoc-build,javadoc-browse" description="Build Javadoc." name="javadoc"/>
<!--
-
+
TEST COMPILATION SECTION
-->
<target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
</target>
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
<!--
-
+
TEST EXECUTION SECTION
-->
<target depends="init" if="have.tests" name="-pre-test-run">
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
<!--
-
+
TEST DEBUGGING SECTION
-->
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
</target>
<target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
<!--
-
+
CLEANUP SECTION
-->
<target depends="init" name="deps-clean" unless="no.deps">
build.xml.stylesheet.CRC32=651128d4@1.68.1.1
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
-nbproject/build-impl.xml.data.CRC32=c4cf12de
-nbproject/build-impl.xml.script.CRC32=e6ac02b3
+nbproject/build-impl.xml.data.CRC32=71b488fe
+nbproject/build-impl.xml.script.CRC32=8618eafc
nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.75.1.1
}
@Override
- public void afterAddressbookLoadedEvent (final @Observes AddressbookLoadedEvent event) {
+ public void afterAddressbookLoadedEvent (@Observes final AddressbookLoadedEvent event) {
// event should not be null
if (null == event) {
// Throw NPE
}
@Override
- public void afterLoginEvent (final @Observes UserLoggedInEvent event) {
+ public void afterLoginEvent (@Observes final UserLoggedInEvent event) {
// Is the user logged in?
if (null == event) {
// Is null
}
@Override
- public void afterRegistrationEvent (final @Observes UserRegisteredEvent event) {
+ public void afterRegistrationEvent (@Observes final UserRegisteredEvent event) {
// Trace message
//* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterRegistration: event={0} - CALLED!", event)); //NOI18N
}
@Override
- public void afterAdressbookShareEnded (final @Observes AddressbookSharingEvent event) {
+ public void afterAdressbookShareEnded (@Observes final AddressbookSharingEvent event) {
// Validate parameter
if (null == event) {
// Throw NPE
}
@Override
- public void afterAdressbookShareStarted (final @Observes AddressbookSharingEvent event) {
+ public void afterAdressbookShareStarted (@Observes final AddressbookSharingEvent event) {
// Validate parameter
if (null == event) {
// Throw NPE
}
@Override
- public void afterLoginEvent (final @Observes UserLoggedInEvent event) {
+ public void afterLoginEvent (@Observes final UserLoggedInEvent event) {
// Is the user logged in?
if (null == event) {
// Is null
<div class="table_medium">
<div class="table_header">
- #{msg.ADMIN_EXPORT_CONTACTS_TITLE}
+ <h:outputText value="#{msg.ADMIN_EXPORT_CONTACTS_TITLE}" />
</div>
<div class="para">
<ui:define name="content">
<h:dataTable id="table_list_contacts" var="contact" value="#{contactController.allContacts()}" styleClass="table_big" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_CONTACT}" rendered="#{contactController.hasContacts()}">
<h:column>
- <f:facet name="header">#{msg.ADMIN_CONTACT_ID}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_CONTACT_ID}" />
+ </f:facet>
<h:link outcome="admin_show_contact" title="#{msg.ADMIN_LINK_SHOW_CONTACT_TITLE}" value="#{contact.contactId}">
<f:param name="contactId" value="#{contact.contactId}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_CONTACT_GENDER}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_CONTACT_GENDER}" />
+ </f:facet>
<h:outputText value="#{msg[contact.contactGender.messageKey]}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_CONTACT_FIRST_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_CONTACT_FIRST_NAME}" />
+ </f:facet>
<h:outputText value="#{contact.contactFirstName}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_CONTACT_FAMILY_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_CONTACT_FAMILY_NAME}" />
+ </f:facet>
<h:outputText value="#{contact.contactFamilyName}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_CONTACT_USAGE}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_CONTACT_USAGE}" />
+ </f:facet>
<h:outputText value="#{msg[beanHelper.getContactUsageMessageKey(contact)]}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_CONTACT_CREATED}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_CONTACT_CREATED}" />
+ </f:facet>
<h:outputText id="contactCreated" value="#{contact.contactCreated.time}">
<f:convertDateTime for="contactCreated" type="both" timeStyle="short" dateStyle="short" />
<div class="table_medium">
<h:form id="admin_add_contact">
<div class="table_header">
- #{msg.ADMIN_ADD_CONTACT_TITLE}
+ <h:outputText value="#{msg.ADMIN_ADD_CONTACT_TITLE}" />
</div>
<div class="para">
<ui:define name="content">
<h:dataTable id="table_list_countries" var="country" value="#{countryController.allCountries()}" styleClass="table_medium" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_COUNTRIES}" rendered="#{countryController.hasCountries()}">
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_ID}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_ID}" />
+ </f:facet>
<h:link outcome="admin_edit_country" title="#{msg.ADMIN_LINK_EDIT_DELETE_COUNTRY_TITLE}" value="#{country.countryId}">
<f:param name="countryId" value="#{country.countryId}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_CODE}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_CODE}" />
+ </f:facet>
<h:outputText value="#{country.countryCode}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_EXTERNAL_DIAL_PREFIX}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_EXTERNAL_DIAL_PREFIX}" />
+ </f:facet>
<h:outputText value="#{country.countryExternalDialPrefix}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_COUNTRY_DATA_COUNTRY_NAME}" />
+ </f:facet>
<h:outputText value="#{msg[country.countryI18nkey]}" />
</h:column>
<h:form id="form_add_country">
<div class="table_medium">
<div class="table_header">
- #{msg.ADMIN_ADD_COUNTRY_TITLE}
+ <h:outputText value="#{msg.ADMIN_ADD_COUNTRY_TITLE}" />
</div>
<ui:include src="/WEB-INF/templates/admin/country/admin_form_country_data.tpl" />
</div>
<div class="para notice">
- #{msg.ADMIN_ADD_COUNTRY_NOTICES}
+ <h:outputText value="#{msg.ADMIN_ADD_COUNTRY_NOTICES}" />
<ul>
- <li>#{msg.ADMIN_ADD_COUNTRY_I18N_KEY_NOTICE}</li>
+ <li><h:outputText value="#{msg.ADMIN_ADD_COUNTRY_I18N_KEY_NOTICE}" /></li>
</ul>
</div>
</h:form>
<ui:define name="content">
<h:dataTable id="table_list_mobile" var="mobile" value="#{mobileProviderController.allMobileProvider()}" styleClass="table_medium" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_MOBILE_PROVIDERS}" rendered="#{mobileProviderController.hasMobileProvider()}">
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_MOBILE_PROVIDER_ID}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_MOBILE_PROVIDER_ID}" />
+ </f:facet>
<h:link outcome="admin_edit_mobile_provider" title="#{msg.ADMIN_LINK_EDIT_DELETE_MOBILE_PROVIDER_TITLE}" value="#{mobile.providerId}">
<f:param name="providerId" value="#{mobile.providerId}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_MOBILE_PROVIDER_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_MOBILE_PROVIDER_NAME}" />
+ </f:facet>
<h:outputText value="#{mobile.providerName}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_MOBILE_PROVIDER_DIAL_PREFIX}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_MOBILE_PROVIDER_DIAL_PREFIX}" />
+ </f:facet>
<h:outputText value="#{mobile.providerDialPrefix}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_MOBILE_PROVIDER_COUNTRY}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_MOBILE_PROVIDER_COUNTRY}" />
+ </f:facet>
<h:outputText value="#{msg[mobile.providerCountry.countryI18nkey]}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_MOBILE_PROVIDER_ENTRY_CREATED}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_MOBILE_PROVIDER_ENTRY_CREATED}" />
+ </f:facet>
<h:outputText id="providerEntryCreated" value="#{mobile.providerEntryCreated.time}" title="#{msg.ADMIN_MOBILE_PROVIDER_ENTRY_CREATED_TITLE}">
<f:convertDateTime for="providerEntryCreated" type="both" timeStyle="short" dateStyle="short" />
<h:form id="form_add_mobile_provider">
<div class="table_medium">
<div class="table_header">
- #{msg.ADMIN_ADD_MOBILE_PROVIDER_TITLE}
+ <h:outputText value="#{msg.ADMIN_ADD_MOBILE_PROVIDER_TITLE}" />
</div>
<ui:include src="/WEB-INF/templates/admin/mobile_provider/admin_form_mobile_provider.tpl" />
</div>
<div class="para notice">
- #{msg.ADMIN_ADD_MOBILE_PROVIDER_NOTICES}
+ <h:outputText value="#{msg.ADMIN_ADD_MOBILE_PROVIDER_NOTICES}" />
<ul>
- <li>#{msg.ADMIN_ADD_MOBILE_PROVIDER_PATTERN}</li>
+ <li><h:outputText value="#{msg.ADMIN_ADD_MOBILE_PROVIDER_PATTERN}" /></li>
</ul>
</div>
</h:form>
<ui:define name="content">
<h:dataTable id="table_list_users" var="user" value="#{userController.allUsers()}" styleClass="table_big" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_USERS}" rendered="#{userController.hasUsers()}">
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_ID}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_ID}" />
+ </f:facet>
<h:link outcome="admin_show_user" title="#{msg.ADMIN_LINK_SHOW_USER_TITLE}" value="#{user.userId}">
<f:param name="userId" value="#{user.userId}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_NAME}" />
+ </f:facet>
<h:outputText value="#{user.userName}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_GENDER}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_GENDER}" />
+ </f:facet>
<h:outputText value="#{msg[user.userContact.contactGender.messageKey]}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_FIRST_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_FIRST_NAME}" />
+ </f:facet>
<h:outputText value="#{user.userContact.contactFirstName}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_FAMILY_NAME}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_FAMILY_NAME}" />
+ </f:facet>
<h:outputText value="#{user.userContact.contactFamilyName}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_ACCOUNT_STATUS}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_ACCOUNT_STATUS}" />
+ </f:facet>
<h:outputText styleClass="#{user.userAccountStatus.styleClass}" value="#{msg[user.userAccountStatus.messageKey]}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_PROFILE_MODE}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_PROFILE_MODE}" />
+ </f:facet>
<h:outputText value="#{msg[user.userProfileMode.messageKey]}" />
</h:column>
<h:column>
- <f:facet name="header">#{msg.ADMIN_LIST_USER_CREATED}</f:facet>
+ <f:facet name="header">
+ <h:outputText value="#{msg.ADMIN_LIST_USER_CREATED}" />
+ </f:facet>
<h:outputText id="userCreated" value="#{user.userCreated.time}">
<f:convertDateTime for="userCreated" type="both" timeStyle="short" dateStyle="short" />
<div class="table_medium">
<h:form id="admin_add_user">
<div class="table_header">
- #{msg.ADMIN_ADD_USER_TITLE}
+ <h:outputText value="#{msg.ADMIN_ADD_USER_TITLE}" />
</div>
<div class="para">
<fieldset id="user_contact">
- <legend title="#{msg.ADMIN_SELECT_USER_CONTACT_LEGEND_TITLE}">#{msg.ADMIN_SELECT_USER_CONTACT_LEGEND}</legend>
+ <legend title="#{msg.ADMIN_SELECT_USER_CONTACT_LEGEND_TITLE}">
+ <h:outputText value="#{msg.ADMIN_SELECT_USER_CONTACT_LEGEND}" />
+ </legend>
<div class="table_row">
<div class="table_left_medium">
<ui:include src="/WEB-INF/templates/user/userid_error.tpl" />
</ui:fragment>
- <ui:fragment rendered="#{not profileController.isProfileLinkVisibleById(userController.userId)}">
- #{msg.ERROR_PROFILE_NOT_VISIBLE}
- </ui:fragment>
+ <h:outputText value="#{msg.ERROR_PROFILE_NOT_VISIBLE}" rendered="#{not profileController.isProfileLinkVisibleById(userController.userId)}" />
<ui:fragment rendered="#{profileController.isProfileLinkVisibleById(userController.userId)}">
<div align="center">
<h:panelGrid styleClass="table" headerClass="table_header" footerClass="table_footer">
<f:facet name="header">
- #{msg.PUBLIC_USER_PROFILE}
+ <h:outputText value="#{msg.PUBLIC_USER_PROFILE}" />
</f:facet>
</h:panelGrid>
</div>