├── bridge-impl ├── generate.sh └── src │ └── main │ └── resources │ └── META-INF │ ├── services │ ├── javax.portlet.faces.Bridge │ ├── javax.enterprise.inject.spi.Extension │ └── javax.portlet.faces.BridgeFactoryFinder │ ├── beans.xml │ └── NOTICE.txt ├── test └── integration │ ├── test-ipc-liferay.sh │ ├── test-jsf-showcase-liferay.sh │ ├── test-alloy-showcase-liferay.sh │ ├── test-export-pdf-liferay.sh │ ├── test-ipc-pluto.sh │ ├── test-jsf-showcase-pluto.sh │ ├── test-alloy-showcase-pluto.sh │ ├── test-export-pdf-pluto.sh │ ├── test-flows-liferay.sh │ ├── test-applicant-liferay.sh │ ├── src │ └── test │ │ └── resources │ │ ├── FACES-1513-2185-users.csv │ │ ├── Shearer-Rich.pdf │ │ └── liferay-jsf-jersey.png │ ├── test-issues-pluto.sh │ ├── test-issues-liferay.sh │ ├── test-flows-pluto.sh │ └── test-applicant-pluto.sh ├── tck ├── bridge-tck-main-portlet │ ├── src │ │ ├── main │ │ │ └── webapp │ │ │ │ ├── resources │ │ │ │ └── test │ │ │ │ │ ├── resource1.js │ │ │ │ │ └── resource1.css │ │ │ │ ├── images │ │ │ │ └── liferay-logo.png │ │ │ │ ├── META-INF │ │ │ │ └── module-log4j.xml │ │ │ │ ├── WEB-INF │ │ │ │ ├── web.xml │ │ │ │ └── liferay-plugin-package.properties │ │ │ │ └── tests │ │ │ │ ├── nonJSFViewTest.xhtml │ │ │ │ ├── singleRequestAfterContentTest.jsp │ │ │ │ ├── resourceResult.xhtml │ │ │ │ ├── modeViewIdResult.xhtml │ │ │ │ ├── multiRequestTest.xhtml │ │ │ │ ├── multiRequestTestResult.xhtml │ │ │ │ ├── singleRequestTest.xhtml │ │ │ │ ├── nonFacesResourceTestStartPage.xhtml │ │ │ │ ├── portletSetsViewIdTestFailed.xhtml │ │ │ │ ├── portletSetsViewIdTestSuccess.xhtml │ │ │ │ ├── redirectTestResultRenderCheck.xhtml │ │ │ │ ├── multiRequestTestResultRenderCheck.xhtml │ │ │ │ ├── multiRequestTestNonEscapedResult.xhtml │ │ │ │ ├── modeViewIdTest.xhtml │ │ │ │ ├── redisplayActionRequestTest.xhtml │ │ │ │ ├── nonFacesResourceTest.xhtml │ │ │ │ ├── multiRequestFormDataTest.xhtml │ │ │ │ ├── multiRequestPRPTest.xhtml │ │ │ │ ├── redisplayRenderRequestTest.xhtml │ │ │ │ └── resourceAjaxResult.xhtml │ │ └── test │ │ │ └── resources │ │ │ └── liferay-jsf-jersey.png │ ├── test-pluto-tomcat.sh │ ├── test-liferay-tomcat.sh │ └── build-liferay-websphere.sh ├── bridge-tck-cdi2-portlet │ └── src │ │ └── main │ │ ├── resources │ │ └── META-INF │ │ │ └── services │ │ │ └── javax.enterprise.inject.spi.Extension │ │ └── webapp │ │ ├── META-INF │ │ └── module-log4j.xml │ │ └── WEB-INF │ │ ├── beans.xml │ │ ├── views │ │ ├── multiRequestTest.xhtml │ │ └── multiRequestTestResultRenderCheck.xhtml │ │ ├── liferay-plugin-package.properties │ │ └── faces-config.xml ├── bridge-tck-compat │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── javax.faces.context.FacesContextFactory ├── bridge-tck-scope-portlet │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── module-log4j.xml │ │ ├── WEB-INF │ │ ├── faces-config.xml │ │ ├── liferay-plugin-package.properties │ │ └── web-liferay.xml │ │ └── tests │ │ ├── multiRequestTest.xhtml │ │ └── redisplayRenderRequestTest.xhtml ├── bridge-tck-lifecycle-set-portlet │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── module-log4j.xml │ │ └── WEB-INF │ │ └── liferay-plugin-package.properties ├── bridge-tck-cdi1-portlet │ └── src │ │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── module-log4j.xml │ │ └── WEB-INF │ │ ├── beans.xml │ │ ├── views │ │ ├── multiRequestTest.xhtml │ │ ├── singleRequestTest.xhtml │ │ ├── multiRequestTestResultRenderCheck.xhtml │ │ ├── ajaxNonAjaxTest.xhtml │ │ └── resourceAjaxResult.xhtml │ │ ├── liferay-plugin-package.properties │ │ └── faces-config.xml └── bridge-tck-flows-portlet │ └── src │ └── main │ └── webapp │ ├── META-INF │ └── module-log4j.xml │ └── WEB-INF │ ├── views │ ├── multiRequestTest.xhtml │ ├── multiRequestTestResultRenderCheck.xhtml │ └── ajaxNonAjaxTest.xhtml │ └── liferay-plugin-package.properties ├── demo ├── adf-jsp-applicant-portlet │ └── src │ │ └── main │ │ ├── webapp │ │ ├── css │ │ │ ├── portlet.css │ │ │ └── liferay-theme-override.css │ │ ├── META-INF │ │ │ └── context.xml │ │ └── WEB-INF │ │ │ ├── resources │ │ │ └── example │ │ │ │ ├── icon-help.png │ │ │ │ ├── icon-delete.png │ │ │ │ └── liferay-logo.png │ │ │ ├── liferay-display.xml │ │ │ ├── views │ │ │ ├── styling.jspx │ │ │ ├── portletEditMode.jspx │ │ │ └── portletHelpMode.jspx │ │ │ └── liferay-plugin-package.properties │ │ └── resources │ │ ├── META-INF │ │ ├── adf-essentials-license.txt │ │ ├── third-party-missing.properties │ │ ├── adf-config.xml │ │ └── NOTICE.txt │ │ └── i18nFaces.properties ├── adf-facelets-applicant-portlet │ └── src │ │ └── main │ │ ├── webapp │ │ ├── css │ │ │ ├── portlet.css │ │ │ ├── liferay-theme-override.css │ │ │ └── example.css │ │ ├── WEB-INF │ │ │ ├── resources │ │ │ │ └── example │ │ │ │ │ ├── portlet.css │ │ │ │ │ ├── clipboard.png │ │ │ │ │ ├── icon-help.png │ │ │ │ │ ├── icon-delete.png │ │ │ │ │ ├── liferay-logo.png │ │ │ │ │ ├── liferay-theme-override.css │ │ │ │ │ └── example.css │ │ │ ├── liferay-display.xml │ │ │ ├── views │ │ │ │ ├── portletEditMode.xhtml │ │ │ │ └── portletHelpMode.xhtml │ │ │ └── liferay-plugin-package.properties │ │ └── META-INF │ │ │ └── context.xml │ │ └── resources │ │ ├── META-INF │ │ ├── adf-essentials-license.txt │ │ ├── third-party-missing.properties │ │ ├── adf-config.xml │ │ └── NOTICE.txt │ │ ├── i18nFaces.properties │ │ └── ValidationMessages.properties ├── jsf-flows-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ └── third-party-missing.xml │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── resources │ │ │ ├── logos │ │ │ │ ├── liferay-logo.png │ │ │ │ └── liferay-logo-small.png │ │ │ └── travel │ │ │ │ ├── travel-booking.png │ │ │ │ └── travel.css │ │ ├── liferay-display.xml │ │ ├── beans.xml │ │ ├── liferay-plugin-package.properties │ │ ├── faces-config.xml │ │ ├── web.xml │ │ └── jboss-deployment-structure.xml │ │ ├── booking │ │ ├── none.xhtml │ │ ├── cruise.xhtml │ │ ├── hotel.xhtml │ │ ├── train.xhtml │ │ ├── rental-car.xhtml │ │ ├── restaurant.xhtml │ │ └── returnFromSurveyFlow.xhtml │ │ └── survey │ │ ├── survey-flow.xml │ │ └── finish.xhtml ├── alloy-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ ├── NOTICE.txt │ │ │ └── third-party-missing.xml │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── portlet.css │ │ │ ├── liferay-theme-override.css │ │ │ └── example.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ ├── NOTICE.txt │ │ │ └── third-party-missing.xml │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── portlet.css │ │ │ ├── liferay-theme-override.css │ │ │ └── example.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-export-pdf-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ └── NOTICE.txt │ │ ├── i18nFaces.properties │ │ └── i18n.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── icon-help.png │ │ │ └── liferay-theme-override.css │ │ ├── liferay-display.xml │ │ ├── views │ │ └── portletViewMode.xhtml │ │ ├── jboss-deployment-structure.xml │ │ └── liferay-plugin-package.properties ├── bootsfaces-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── NOTICE.txt │ │ │ └── THIRD-PARTY.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── liferay-theme-override.css │ │ │ ├── example.css │ │ │ └── portlet.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── butterfaces-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── NOTICE.txt │ │ │ └── THIRD-PARTY.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-delete.png │ │ │ ├── icon-help.png │ │ │ ├── liferay-logo.png │ │ │ ├── liferay-theme-override.css │ │ │ ├── example.css │ │ │ └── portlet.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-cdi-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ └── NOTICE.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── portlet.css │ │ │ ├── liferay-theme-override.css │ │ │ └── example.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ ├── beans.xml │ │ ├── liferay-plugin-package.properties │ │ ├── web.xml │ │ └── jboss-deployment-structure.xml ├── jsf-html5-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ └── third-party-missing.xml │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── example.css │ │ │ ├── html5.css │ │ │ ├── icon-help.png │ │ │ ├── html5-logo-64.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── portlet.css │ │ │ └── liferay-theme-override.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-jsp-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ └── NOTICE.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── images │ │ └── icon-help.png │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── resources │ │ │ └── example │ │ │ │ ├── icon-help.png │ │ │ │ └── icon-delete.png │ │ ├── liferay-display.xml │ │ ├── views │ │ │ ├── portletHelpMode.jspx │ │ │ ├── portletEditMode.jspx │ │ │ └── styling.jspx │ │ └── liferay-plugin-package.properties │ │ └── css │ │ ├── portlet.css │ │ ├── liferay-theme-override.css │ │ └── example.css ├── primefaces-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── services │ │ │ │ ├── org.primefaces.util.PropertyDescriptorResolver │ │ │ │ └── org.primefaces.component.fileupload.FileUploadDecoder │ │ │ ├── NOTICE.txt │ │ │ └── THIRD-PARTY.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── liferay-theme-override.css │ │ │ ├── portlet.css │ │ │ └── example.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── richfaces-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ └── NOTICE.txt │ │ ├── i18nFaces.properties │ │ └── org │ │ │ └── richfaces │ │ │ └── resource │ │ │ └── resource-serialization.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ ├── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── liferay-theme-override.css │ │ │ ├── portlet.css │ │ │ └── example.css │ │ └── issues │ │ │ └── RF-12182.js │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-ipc-events-bookings-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ └── NOTICE.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── liferay-display.xml │ │ ├── views │ │ │ ├── styling.xhtml │ │ │ └── noCustomerSelected.xhtml │ │ ├── jboss-deployment-structure.xml │ │ ├── liferay-portlet.xml │ │ └── liferay-plugin-package.properties │ │ └── css │ │ └── liferay-theme-override.css ├── jsf-ipc-events-customers-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ └── NOTICE.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── images │ │ └── edit.gif │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── liferay-display.xml │ │ ├── views │ │ │ └── styling.xhtml │ │ ├── jboss-deployment-structure.xml │ │ ├── liferay-portlet.xml │ │ ├── faces-config.xml │ │ └── liferay-plugin-package.properties │ │ └── css │ │ └── liferay-theme-override.css ├── jsf-ipc-pub-render-params-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── META-INF │ │ │ ├── third-party-missing.properties │ │ │ ├── THIRD-PARTY.txt │ │ │ └── NOTICE.txt │ │ └── i18nFaces.properties │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── edit.gif │ │ │ └── liferay-theme-override.css │ │ ├── liferay-display.xml │ │ ├── jboss-deployment-structure.xml │ │ ├── liferay-plugin-package.properties │ │ └── liferay-portlet.xml ├── icefaces-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── i18nFaces.properties │ │ └── META-INF │ │ │ ├── cddl-1.0.txt │ │ │ ├── NOTICE.txt │ │ │ └── THIRD-PARTY.txt │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── liferay-theme-override.css │ │ │ ├── portlet.css │ │ │ └── example.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-spring-applicant-portlet │ └── src │ │ └── main │ │ ├── resources │ │ ├── i18nFaces.properties │ │ └── META-INF │ │ │ └── NOTICE.txt │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ └── WEB-INF │ │ ├── resources │ │ └── example │ │ │ ├── clipboard.png │ │ │ ├── icon-help.png │ │ │ ├── icon-delete.png │ │ │ ├── liferay-logo.png │ │ │ ├── portlet.css │ │ │ ├── liferay-theme-override.css │ │ │ └── example.css │ │ ├── liferay-display.xml │ │ ├── views │ │ ├── portletEditMode.xhtml │ │ └── portletHelpMode.xhtml │ │ └── liferay-plugin-package.properties ├── jsf-showcase-portlet │ └── src │ │ └── main │ │ ├── webapp │ │ ├── META-INF │ │ │ ├── context.xml │ │ │ └── module-log4j.xml │ │ ├── WEB-INF │ │ │ ├── component │ │ │ │ └── portlet │ │ │ │ │ ├── actionurl │ │ │ │ │ └── header.xhtml │ │ │ │ │ ├── namespace │ │ │ │ │ └── header.xhtml │ │ │ │ │ ├── renderurl │ │ │ │ │ └── header.xhtml │ │ │ │ │ └── resourceurl │ │ │ │ │ ├── header.xhtml │ │ │ │ │ └── general │ │ │ │ │ └── resourceURL.xhtml │ │ │ ├── liferay-display.xml │ │ │ ├── jboss-deployment-structure.xml │ │ │ ├── liferay-plugin-package.properties │ │ │ └── faces-config.xml │ │ └── resources │ │ │ └── images │ │ │ └── icon-portlet.png │ │ └── resources │ │ ├── portlet-tags.properties │ │ ├── bridge-tags.properties │ │ └── META-INF │ │ └── faces-config.xml └── alloy-showcase-portlet │ └── src │ └── main │ └── webapp │ ├── META-INF │ ├── context.xml │ └── module-log4j.xml │ └── WEB-INF │ ├── liferay-display.xml │ ├── jboss-deployment-structure.xml │ ├── liferay-plugin-package.properties │ └── faces-config.xml ├── issue ├── jsf-issues-portlet │ └── src │ │ └── main │ │ ├── webapp │ │ └── WEB-INF │ │ │ ├── resources │ │ │ ├── FACES-1618 │ │ │ │ ├── example.js │ │ │ │ └── example.css │ │ │ ├── MOJARRA-4345-workaround │ │ │ │ ├── test.js │ │ │ │ └── test.css │ │ │ ├── FACES-2958 │ │ │ │ ├── resourceViaAjax.js │ │ │ │ ├── resource.js │ │ │ │ └── handleResourceViaAjax.js │ │ │ ├── MOJARRA-4340-workaround │ │ │ │ └── test.js │ │ │ └── FACES-3175 │ │ │ │ └── reproducer.js │ │ │ ├── views │ │ │ ├── MOJARRA-4340-workaround │ │ │ │ ├── result.xhtml │ │ │ │ └── start.xhtml │ │ │ ├── FACES-3300 │ │ │ │ └── result.xhtml │ │ │ ├── FACES-3356 │ │ │ │ └── success.xhtml │ │ │ ├── FACES-2958 │ │ │ │ ├── success.xhtml │ │ │ │ └── resource.xhtml │ │ │ ├── MOJARRA-4345-workaround │ │ │ │ └── start.xhtml │ │ │ ├── FACES-3175 │ │ │ │ ├── start.xhtml │ │ │ │ └── result.xhtml │ │ │ └── FACES-224 │ │ │ │ └── view1.xhtml │ │ │ └── liferay-plugin-package.properties │ │ └── resources │ │ └── friendly-url-routes │ │ └── FACES-257.xml └── primefaces-issues-portlet │ └── src │ └── main │ ├── webapp │ ├── WEB-INF │ │ ├── resources │ │ │ └── FACES-3327.css │ │ ├── views │ │ │ ├── FACES-1513-2185.xhtml │ │ │ └── FACES-3327 │ │ │ │ └── result.xhtml │ │ ├── liferay-plugin-package.properties │ │ ├── faces-config.xml │ │ └── liferay-display.xml │ └── META-INF │ │ └── module-log4j.xml │ └── resources │ └── META-INF │ └── services │ ├── org.primefaces.util.PropertyDescriptorResolver │ ├── org.primefaces.extensions.component.exporter.ExporterFactory │ └── org.primefaces.component.fileupload.FileUploadDecoder ├── support └── thick-cdi │ └── src │ └── main │ └── resources │ └── META-INF │ └── services │ └── javax.enterprise.inject.spi.Extension └── .gitignore /bridge-impl/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn generate-sources -P generate-components 3 | -------------------------------------------------------------------------------- /test/integration/test-ipc-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -P selenium,liferay -Dit.test=\*IPC\* 3 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/resources/test/resource1.js: -------------------------------------------------------------------------------- 1 | console.log('resource1.js'); 2 | -------------------------------------------------------------------------------- /test/integration/test-jsf-showcase-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -P selenium-jsf-showcase,liferay 3 | -------------------------------------------------------------------------------- /test/integration/test-alloy-showcase-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -P selenium-alloy-showcase,liferay 3 | -------------------------------------------------------------------------------- /test/integration/test-export-pdf-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -P selenium,liferay -Dit.test=\*Export\* 3 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/css/portlet.css: -------------------------------------------------------------------------------- 1 | .product-list ul li { 2 | font-style: italic; 3 | } -------------------------------------------------------------------------------- /bridge-impl/src/main/resources/META-INF/services/javax.portlet.faces.Bridge: -------------------------------------------------------------------------------- 1 | com.liferay.faces.bridge.internal.BridgeImpl -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-1618/example.js: -------------------------------------------------------------------------------- 1 | console.log('example.js loaded.'); 2 | -------------------------------------------------------------------------------- /test/integration/test-ipc-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -Dintegration.port=9080 -P selenium,pluto -Dit.test=\*IPC\* 3 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/css/portlet.css: -------------------------------------------------------------------------------- 1 | .product-list ul li { 2 | font-style: italic; 3 | } 4 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/MOJARRA-4345-workaround/test.js: -------------------------------------------------------------------------------- 1 | console.log('test.js loaded.'); 2 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/resources/test/resource1.css: -------------------------------------------------------------------------------- 1 | .example-css-class { 2 | background: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/integration/test-jsf-showcase-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -Dintegration.port=9080 -P selenium-jsf-showcase,pluto 3 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-3327.css: -------------------------------------------------------------------------------- 1 | .FACES_3327_hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /test/integration/test-alloy-showcase-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -Dintegration.port=9080 -P selenium-alloy-showcase,pluto 3 | -------------------------------------------------------------------------------- /test/integration/test-export-pdf-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -Dintegration.port=9080 -P selenium,pluto -Dit.test=\*Export\* 3 | -------------------------------------------------------------------------------- /bridge-impl/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension: -------------------------------------------------------------------------------- 1 | com.liferay.faces.bridge.servlet.BridgeExtension -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-2958/resourceViaAjax.js: -------------------------------------------------------------------------------- 1 | console.log('"resourceViaAjax.js" loaded.') 2 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/MOJARRA-4345-workaround/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-1618/example.css: -------------------------------------------------------------------------------- 1 | .some-example-class { 2 | background-color: red; 3 | } 4 | -------------------------------------------------------------------------------- /bridge-impl/src/main/resources/META-INF/services/javax.portlet.faces.BridgeFactoryFinder: -------------------------------------------------------------------------------- 1 | com.liferay.faces.bridge.internal.BridgeFactoryFinderImpl -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .product-list ul li { 2 | font-style: italic; 3 | } -------------------------------------------------------------------------------- /test/integration/test-flows-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -P selenium,liferay -Dit.test=\*Flows\* -Dintegration.browser.headless=false 3 | -------------------------------------------------------------------------------- /support/thick-cdi/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension: -------------------------------------------------------------------------------- 1 | com.liferay.faces.support.thick.cdi.internal.ThickExtension -------------------------------------------------------------------------------- /test/integration/test-applicant-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -P selenium,liferay -Dit.test=\*Applicant\* -Dintegration.browser.headless=false 3 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/resources/META-INF/adf-essentials-license.txt: -------------------------------------------------------------------------------- 1 | https://www.oracle.com/downloads/licenses/adf-essentials-license.html -------------------------------------------------------------------------------- /test/integration/src/test/resources/FACES-1513-2185-users.csv: -------------------------------------------------------------------------------- 1 | "First Name","Last Name" 2 | "Neil","Griffin" 3 | "Vernon","Singleton" 4 | "Kyle","Stiemann" 5 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/resources/META-INF/adf-essentials-license.txt: -------------------------------------------------------------------------------- 1 | https://www.oracle.com/downloads/licenses/adf-essentials-license.html -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension: -------------------------------------------------------------------------------- 1 | com.liferay.faces.bridge.servlet.BridgeRequestScopeExtension -------------------------------------------------------------------------------- /tck/bridge-tck-compat/src/main/resources/META-INF/services/javax.faces.context.FacesContextFactory: -------------------------------------------------------------------------------- 1 | com.liferay.faces.bridge.tck.context.FacesContextFactoryTCKImpl -------------------------------------------------------------------------------- /test/integration/test-issues-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn verify -Dintegration.port=9080 -P selenium,pluto -Dit.test='*issue.*Test*,*issue.*primefaces.*Test*' 3 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /test/integration/src/test/resources/Shearer-Rich.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/test/integration/src/test/resources/Shearer-Rich.pdf -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/resources/META-INF/third-party-missing.properties: -------------------------------------------------------------------------------- 1 | # This file is read by the add-third-party goal of the license-maven-plugin 2 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/test-pluto-tomcat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn -Dintegration.port=9080 verify -P selenium,pluto,chrome,tomcat "$@" -Dintegration.browser.headless=false 3 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/resources/META-INF/services/org.primefaces.util.PropertyDescriptorResolver: -------------------------------------------------------------------------------- 1 | org.primefaces.util.PropertyDescriptorResolver$DefaultResolver 2 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/resources/META-INF/services/org.primefaces.util.PropertyDescriptorResolver: -------------------------------------------------------------------------------- 1 | org.primefaces.util.PropertyDescriptorResolver$DefaultResolver 2 | -------------------------------------------------------------------------------- /test/integration/src/test/resources/liferay-jsf-jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/test/integration/src/test/resources/liferay-jsf-jersey.png -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/resources/META-INF/adf-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/resources/META-INF/adf-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/images/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-jsp-applicant-portlet/src/main/webapp/images/icon-help.png -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/images/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/tck/bridge-tck-main-portlet/src/main/webapp/images/liferay-logo.png -------------------------------------------------------------------------------- /test/integration/test-issues-liferay.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #mvn verify -P selenium,liferay -Dit.test=\*1470\*Test\* 3 | mvn verify -P selenium,liferay -Dit.test='*issue.*Test*,*issue.*primefaces.*Test*' 4 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/alloy-showcase-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED={0}: Value is required 2 | javax.faces.converter.DateTimeConverter.DATE={0}: Invalid date format -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-ipc-events-customers-portlet/src/main/webapp/images/edit.gif -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED={0}: Value is required 2 | javax.faces.converter.DateTimeConverter.DATE={0}: Invalid date format -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/test/resources/liferay-jsf-jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/tck/bridge-tck-main-portlet/src/test/resources/liferay-jsf-jersey.png -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED={0}: Value is required 2 | javax.faces.converter.DateTimeConverter.DATE={0}: Invalid date format -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/resources/META-INF/cddl-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/icefaces-applicant-portlet/src/main/resources/META-INF/cddl-1.0.txt -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .divider { 2 | clear: both; 3 | min-height: 10px; 4 | } 5 | 6 | .sponsor-button { 7 | float: right; 8 | } 9 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/component/portlet/actionurl/header.xhtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/component/portlet/namespace/header.xhtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/component/portlet/renderurl/header.xhtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/component/portlet/resourceurl/header.xhtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/test-liferay-tomcat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mvn -Dintegration.browser.headless=false verify -P selenium,liferay,chrome,tomcat "$@" 3 | #mvn verify -P selenium,liferay,chrome,tomcat "$@" 4 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/resources/META-INF/services/org.primefaces.extensions.component.exporter.ExporterFactory: -------------------------------------------------------------------------------- 1 | com.liferay.faces.issue.primefaces.exporter.components.ExporterFactoryUsersCSVImpl 2 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/resources/images/icon-portlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-showcase-portlet/src/main/webapp/resources/images/icon-portlet.png -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/logos/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/logos/liferay-logo.png -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/travel/travel-booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/travel/travel-booking.png -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/html5.css: -------------------------------------------------------------------------------- 1 | .html5 { 2 | float: left; 3 | } 4 | 5 | .html5 img { 6 | float: left; 7 | } 8 | 9 | .html5 span { 10 | font-size: x-large; 11 | } -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .idea 3 | .project 4 | .settings 5 | faces-config.pageflow 6 | issues/lsv 7 | navigation-rule.NavData 8 | nb-configuration.xml 9 | overlays 10 | rebel.xml 11 | target 12 | *.sh 13 | *.iml 14 | *.ipr 15 | *.iws -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/logos/liferay-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/logos/liferay-logo-small.png -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/resources/example/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/resources/example/edit.gif -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/resources/META-INF/services/org.primefaces.component.fileupload.FileUploadDecoder: -------------------------------------------------------------------------------- 1 | org.primefaces.component.fileupload.NativeFileUploadDecoder 2 | org.primefaces.component.fileupload.CommonsFileUploadDecoder -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/resources/META-INF/services/org.primefaces.component.fileupload.FileUploadDecoder: -------------------------------------------------------------------------------- 1 | org.primefaces.component.fileupload.NativeFileUploadDecoder 2 | org.primefaces.component.fileupload.CommonsFileUploadDecoder -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/clipboard.png -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-help.png -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/html5-logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/html5-logo-64.png -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /test/integration/test-flows-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | >&2 echo "NOTE: There are test failures in the jsf-flows-portlet due to https://issues.liferay.com/browse/FACES-2865" 3 | mvn verify -Dintegration.port=9080 -P selenium,pluto -Dit.test=\*Flows\* 4 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/icon-delete.png -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liferay/liferay-faces-bridge-impl/HEAD/demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-logo.png -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/css/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/issues/RF-12182.js: -------------------------------------------------------------------------------- 1 | var rf12182 = { 2 | workaround : function (event, id) { 3 | var v = RichFaces.$(id); 4 | var domElement = RichFaces.getDomElement(v.id); 5 | v.invokeEvent("change", domElement, event, v.selectedDate); 6 | } 7 | }; -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /tck/bridge-tck-scope-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /tck/bridge-tck-lifecycle-set-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/resources/portlet-tags.properties: -------------------------------------------------------------------------------- 1 | portlet_portlet_actionURL=general:actionURL.xhtml,ActionURLDemoPortlet.java 2 | portlet_portlet_namespace=general:namespace.xhtml 3 | portlet_portlet_renderURL=general:renderURL.xhtml 4 | portlet_portlet_resourceURL=general:resourceURL.xhtml 5 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/alloy-showcase-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/resources/org/richfaces/resource/resource-serialization.properties: -------------------------------------------------------------------------------- 1 | # Disable resource serialization to disallow remote code execution: 2 | # CVE-2013-2165, RF-14310, CVE-2015-0279, RF-13977, and RF-14309. 3 | # See https://codewhitesec.blogspot.com/2018/05/poor-richfaces.html for more details. 4 | whitelist= 5 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/resources/i18nFaces.properties: -------------------------------------------------------------------------------- 1 | javax.faces.component.UIInput.REQUIRED=Value is required 2 | javax.faces.converter.DateTimeConverter.DATE=Invalid date format 3 | org.apache.myfaces.trinidad.UIXEditableValue.REQUIRED_detail=value is required 4 | org.apache.myfaces.trinidad.UIXSelectOne.REQUIRED_detail=selection is required 5 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/none.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/WEB-INF/views/styling.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/WEB-INF/views/styling.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/css/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/css/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/css/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/css/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/css/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /tck/bridge-tck-flows-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-scope-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .icefaces-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .icefaces-applicant-portlet .uploaded-files-table th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | 10 | .icefaces-applicant-portlet .ui-inputfield { 11 | width: 190px; 12 | } -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/resources/example/liferay-theme-override.css: -------------------------------------------------------------------------------- 1 | .portlet-msg-error { 2 | font-style: italic; 3 | font-weight: bold; 4 | margin: 1px 0px 0px 0px; 5 | padding: 1px 5px 1px 24px; 6 | } 7 | 8 | .portlet-msg-info { 9 | font-style: italic; 10 | margin: 1px 0px 0px 0px; 11 | padding: 1px 5px 1px 24px; 12 | } 13 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/views/portletViewMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/MOJARRA-4340-workaround/result.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/resources/bridge-tags.properties: -------------------------------------------------------------------------------- 1 | input_bridge_inputFile=general:inputFile.xhtml,bridgeInputFileCommon.xhtml,BridgeInputFileModelBean.java,BridgeInputFileBackingBean.java|instant-ajax:inputFile.xhtml,bridgeInputFileCommon.xhtml,BridgeInputFileModelBean.java,BridgeInputFileBackingBean.java|multiple:inputFile.xhtml,bridgeInputFileCommon.xhtml,BridgeInputFileModelBean.java,BridgeInputFileBackingBean.java 2 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | 10 | .jsf-applicant-portlet .rf-fu { 11 | width: 100%; 12 | } 13 | 14 | .jsf-applicant-portlet .rf-cal-inp { 15 | width: 100px; 16 | } 17 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/resources/ValidationMessages.properties: -------------------------------------------------------------------------------- 1 | # https://github.com/hibernate/hibernate-validator/blob/master/engine/src/main/resources/org/hibernate/validator/ValidationMessages.properties 2 | org.hibernate.validator.constraints.Email.message=Invalid e-mail address 3 | org.hibernate.validator.constraints.NotNull.message=Value is required 4 | org.hibernate.validator.constraints.NotBlank.message=Value is required 5 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bridge-impl/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | 10 | .jsf-applicant-portlet .hasDatepicker { 11 | width: 165px; 12 | } 13 | 14 | .ui-fileupload-filename { 15 | word-break: unset !important; 16 | } -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/nonJSFViewTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/css/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/singleRequestAfterContentTest.jsp: -------------------------------------------------------------------------------- 1 | 2 | <%@ page contentType="text/html;charset=UTF-8" %> 3 | <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
${testBean.renderTestResult}
13 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/css/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/resourceResult.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/alloy-showcase-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/beans.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/WEB-INF/views/noCustomerSelected.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/WEB-INF/views/FACES-1513-2185.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/modeViewIdResult.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/multiRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/multiRequestTestResult.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/singleRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-scope-portlet/src/main/webapp/tests/multiRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/beans.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-issues 2 | module-group-id=com.liferay.faces.issue 3 | module-incremental-version=1 4 | tags= 5 | short-description= 6 | change-log= 7 | page-url=http://www.liferay.com 8 | author=Liferay, Inc. 9 | licenses=Apache License, Version 2.0 10 | Bundle-Version: 6.0.0 11 | ${osgi.import.package} 12 | ${osgi.dynamic.import.package} 13 | ${osgi.require.capability} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/beans.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/webapp/WEB-INF/beans.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/views/multiRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/views/singleRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/webapp/WEB-INF/views/multiRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-flows-portlet/src/main/webapp/WEB-INF/views/multiRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/nonFacesResourceTestStartPage.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/portletSetsViewIdTestFailed.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/portletSetsViewIdTestSuccess.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/redirectTestResultRenderCheck.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=primefaces-issues 2 | module-group-id=com.liferay.faces.issue 3 | module-incremental-version=1 4 | tags= 5 | short-description= 6 | change-log= 7 | page-url=http://www.liferay.com 8 | author=Liferay, Inc. 9 | licenses=Apache License, Version 2.0 10 | Bundle-Version: 6.0.0 11 | ${osgi.import.package} 12 | ${osgi.dynamic.import.package} 13 | ${osgi.require.capability} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/multiRequestTestResultRenderCheck.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/views/styling.jspx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/cruise.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |

7 | 8 |

9 | 10 |
11 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/hotel.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |

7 | 8 |

9 | 10 |
11 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/train.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |

7 | 8 |

9 | 10 |
11 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | com.liferay.faces.util.lifecycle.DebugPhaseListener 6 | 7 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/rental-car.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |

7 | 8 |

9 | 10 |
11 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/restaurant.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |

7 | 8 |

9 | 10 |
11 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/views/multiRequestTestResultRenderCheck.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/webapp/WEB-INF/views/multiRequestTestResultRenderCheck.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-flows-portlet/src/main/webapp/WEB-INF/views/multiRequestTestResultRenderCheck.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/resources/i18n.properties: -------------------------------------------------------------------------------- 1 | # These messages can be accessed via EL using the implicit i18n object provided by Liferay Faces Util. When the portlet 2 | # is deployed to any portal, the i18n object can also access messages found in a portlet.xml . When 3 | # deployed to Liferay Portal, the i18n object can also access messages found in the portal's Language.properties file. 4 | customers=Customers 5 | export=Export 6 | first-name=First Name 7 | last-name=Last Name -------------------------------------------------------------------------------- /demo/alloy-showcase-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet .uploaded-files table { 2 | width: 100%; 3 | } 4 | 5 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 6 | padding-left: 4px; 7 | padding-right: 4px; 8 | } 9 | 10 | .jsf-applicant-portlet .hasDatepicker { 11 | width: 165px; 12 | } 13 | 14 | .jsf-applicant-portlet .date-picker .butter-input-component { 15 | width: 130px; 16 | -webkit-box-flex: none; 17 | flex: none; 18 | } -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 3 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 3 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 3 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/WEB-INF/liferay-display.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/WEB-INF/liferay-portlet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | bookings 7 | 8 | false 9 | false 10 | 11 | 12 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/WEB-INF/liferay-portlet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | customers 7 | 8 | false 9 | false 10 | 11 | 12 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-2958/resource.js: -------------------------------------------------------------------------------- 1 | var scripts = document.getElementsByTagName('script'); 2 | var srcOfCurrentScript = scripts[scripts.length - 1].src; 3 | 4 | if (srcOfCurrentScript.indexOf('FACES-2958') === -1 || 5 | !/resource[.]js/.test(srcOfCurrentScript)) { 6 | throw new Error('Could not obtain FACES-2958 resource url.'); 7 | } 8 | 9 | testURLEncoded(srcOfCurrentScript, function(){ 10 | displayResult('SUCCESS', 'All special URL characters were correctly encoded.'); 11 | }); -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/resources/travel/travel.css: -------------------------------------------------------------------------------- 1 | .booking-type { 2 | clear: both; 3 | display: inline; 4 | float: right; 5 | width: 100px; 6 | } 7 | 8 | .demo-search-results .results-header { 9 | text-align: center; 10 | } 11 | 12 | .liferay-logo { 13 | float: right; 14 | } 15 | 16 | .shopping-cart { 17 | clear: both; 18 | display: inline; 19 | float: right; 20 | width: 100px; 21 | } 22 | 23 | .total-price { 24 | text-align: center; 25 | } 26 | 27 | .travel-booking { 28 | float: left; 29 | } 30 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Bridge TCK CDI1 2 | module-group-id=com.liferay.faces.test 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=Bridge TCK CDI1 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Bridge TCK CDI2 2 | module-group-id=com.liferay.faces.test 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=Bridge TCK CDI2 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/multiRequestTestNonEscapedResult.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tck/bridge-tck-flows-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Bridge TCK Flows 2 | module-group-id=com.liferay.faces.test 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=Bridge TCK Flows 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/example.css: -------------------------------------------------------------------------------- 1 | .clipboard { 2 | border: none; 3 | float: left; 4 | min-height: 50px; 5 | background: url( '#{resource['example:clipboard.png']}' ) no-repeat top left; 6 | } 7 | 8 | .clipboard span { 9 | font-size: x-large; 10 | margin-left: 40px; 11 | } 12 | 13 | .divider { 14 | clear: both; 15 | min-height: 10px; 16 | } 17 | 18 | .sponsor-button { 19 | float: right; 20 | } 21 | 22 | .modal.hiddenModal { 23 | display: none; 24 | } 25 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.jspx: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=JSF Showcase 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=directory 5 | short-description=This plugin is the Liferay Faces JSF Showcase demo portlet. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | Bundle-Version: 6.0.0 11 | ${osgi.dynamic.import.package} 12 | ${osgi.import.package} 13 | ${aries.cdi.options} 14 | -------------------------------------------------------------------------------- /demo/alloy-showcase-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Alloy Showcase 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=directory 5 | short-description=This plugin is the Liferay Faces Alloy Showcase demo portlet. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | Bundle-Version: 6.0.0 11 | ${osgi.dynamic.import.package} 12 | ${osgi.import.package} 13 | ${aries.cdi.options} 14 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.jspx: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/MOJARRA-4340-workaround/start.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.jspx: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-3300/result.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 |

Test: FACES-3300

7 |

Status: SUCCESS

8 |

Detail: Successfully navigated to result.xhtml

9 |
10 |
11 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Bridge TCK Main 2 | module-group-id=com.liferay.faces.test 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=Bridge TCK Main 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${osgi.require.capability} 15 | ${aries.cdi.options} -------------------------------------------------------------------------------- /tck/bridge-tck-scope-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Bridge TCK Scope 2 | module-group-id=com.liferay.faces.test 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=Bridge TCK Scope 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${osgi.require.capability} 15 | ${aries.cdi.options} -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/modeViewIdTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-flows 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a demo portlet that demonstrates JSF 2.2 Faces Flows 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/MOJARRA-4340-workaround/test.js: -------------------------------------------------------------------------------- 1 | var portletBody = document.getElementsByClassName('liferay-faces-bridge-body')[0]; 2 | portletBody.innerHTML += 3 | '
' + 4 | '

Test: MOJARRA-4340-workaround

' + 5 | '

Status: SUCCESS

' + 6 | '

Detail: ' + 7 | 'Successfully loaded body script in Ajax request.

' + 8 | '
'; 9 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-3356/success.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 |

Test: FACES-3356

7 |

Status: SUCCESS

8 |

Detail: Successfully handled BridgeInvalidViewPathException.

9 |
10 |
11 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/redisplayActionRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/integration/test-applicant-pluto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | >&2 echo "NOTE: There are test failures in the bootsfaces-applicant-portlet due to https://issues.liferay.com/browse/FACES-3683" 3 | >&2 echo "NOTE: There are test failures in the icefaces-applicant-portlet due to https://issues.liferay.com/browse/FACES-2867" 4 | >&2 echo "NOTE: There are test failures in the richfaces-applicant-portlet due to https://issues.liferay.com/browse/FACES-3571" 5 | mvn verify -Dintegration.port=9080 -P selenium,pluto -Dit.test="!ADF*ApplicantPortletTester,!*Ice*Applicant*,!*Rich*Applicant*,*Applicant*" 6 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=alloy-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces UI components 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and JSF 2 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-cdi-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and JSF 2 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | i18nFaces 7 | 8 | 9 | com.liferay.faces.util.lifecycle.DebugPhaseListener 10 | 11 | 12 | -------------------------------------------------------------------------------- /tck/bridge-tck-lifecycle-set-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=Bridge TCK Lifecycle Set 2 | module-group-id=com.liferay.faces.test 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=Bridge TCK Lifecycle Set 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${osgi.require.capability} 15 | ${aries.cdi.options} -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/views/portletEditMode.jspx: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/views/portletHelpMode.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=richfaces-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and JSF 2 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | i18nFaces 7 | 8 | 9 | com.liferay.faces.util.lifecycle.DebugPhaseListener 10 | 11 | 12 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/WEB-INF/views/FACES-3327/result.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 |

Test: FACES-3327

7 |

Status: SUCCESS

8 |

Detail: Successfully navigated after exporting/downloading data from a PrimeFaces component.

9 |
10 |
11 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=bootsfaces-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and BootsFaces 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=butterfaces-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and ButterFaces 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=primefaces-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and PrimeFaces 5 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/nonFacesResourceTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/booking/returnFromSurveyFlow.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-spring-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and JSF 2 with Spring managed beans 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=icefaces-applicant Portlet 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge, JSF 2, and ICEfaces 4 ACE components. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 5 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-2958/success.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 |

Test: FACES-2958

7 |

Status: #{FACES_2958Bean.testResultStatus}

8 |

Detail: 9 | 10 |

11 |
12 |
13 | -------------------------------------------------------------------------------- /issue/primefaces-issues-portlet/src/main/webapp/META-INF/module-log4j.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 5 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 5 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-html5-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that uses Liferay Faces Bridge and the HTML5 Friendly Markup feature of JSF 2.2 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/resources/friendly-url-routes/FACES-257.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | /{alpha}/my-friendly-action/{beta:\d+} 7 | 8 | 0 9 | 10 | 11 | /{alpha}/my-friendly-action/{beta:\d+}/{gamma} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 5 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | -------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 5 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-ipc-events-bookings 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin demonstrates Portlet 2.0 Events Inter-Portlet Communication (IPC) using Liferay Faces Bridge. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-ipc-events-customers 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin demonstrates Portlet 2.0 Events Inter-Portlet Communication (IPC) using Liferay Faces Bridge. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/MOJARRA-4345-workaround/start.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-prp 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin demonstrates Portlet 2.0 Public Render Parameters Inter-Portlet Communication (IPC) using Liferay Faces Bridge. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/webapp/WEB-INF/resources/example/portlet.css: -------------------------------------------------------------------------------- 1 | .jsf-applicant-portlet label { 2 | /* Override Apache Pluto text-align: right for ButterFaces labels */ 3 | text-align: left; 4 | } 5 | 6 | .jsf-applicant-portlet .uploaded-files table { 7 | width: 100%; 8 | } 9 | 10 | .jsf-applicant-portlet .uploaded-files th, .uploaded-files td { 11 | padding-left: 4px; 12 | padding-right: 4px; 13 | } 14 | 15 | .jsf-applicant-portlet .hasDatepicker { 16 | width: 165px; 17 | } 18 | 19 | .jsf-applicant-portlet .date-picker .butter-input-component { 20 | width: 130px; 21 | -webkit-box-flex: none; 22 | flex: none; 23 | } -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-export-pdf 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is a test portlet that demonstrates how to use JSF2 resources to export a PDF via the RESOURCE_PHASE of the portlet lifecycle. 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${aries.cdi.options} 15 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=jsf-jsp-applicant 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is test portlet that uses Liferay Faces Bridge and JSF 2 with JSP (rather than Facelets) 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | Bundle-Version: 6.0.0 12 | ${osgi.dynamic.import.package} 13 | ${osgi.import.package} 14 | ${osgi.require.capability} 15 | ${aries.cdi.options} 16 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-2958/handleResourceViaAjax.js: -------------------------------------------------------------------------------- 1 | var scripts = document.getElementsByTagName('script'); 2 | var srcOfCurrentScript; 3 | 4 | for (var i = 0; i < scripts.length; i++) { 5 | 6 | if (scripts[i].src.indexOf('FACES-2958') > -1 && 7 | /resourceViaAjax[.]js/.test(scripts[i].src)) { 8 | srcOfCurrentScript = scripts[i].src; 9 | } 10 | } 11 | 12 | if (!srcOfCurrentScript) { 13 | throw new Error('Could not obtain FACES-2958 resource url.'); 14 | } 15 | 16 | testURLEncoded(srcOfCurrentScript, function(){ 17 | displayResult('SUCCESS', 'All special URL characters were correctly encoded.'); 18 | }); 19 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/multiRequestFormDataTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=applicant-adf-facelets-portlet 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is test portlet that uses Liferay Faces Bridge and ADF Faces with Facelets 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | speed-filters-enabled=false 12 | Bundle-Version: 6.0.0 13 | ${osgi.dynamic.import.package} 14 | ${osgi.import.package} 15 | ${aries.cdi.options} 16 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=applicant-adf-jsp-portlet 2 | module-group-id=com.liferay.faces.demo 3 | module-incremental-version=1 4 | tags=sample 5 | short-description=This plugin is test portlet that uses Liferay Faces Bridge and ADF Faces with JSP 6 | change-log= 7 | page-url=http://www.liferay.com/community/liferay-projects/liferay-faces 8 | author=liferay.com 9 | licenses=Apache License, Version 2.0 10 | portal.dependency.jars= 11 | speed-filters-enabled=false 12 | Bundle-Version: 6.0.0 13 | ${osgi.dynamic.import.package} 14 | ${osgi.import.package} 15 | ${osgi.require.capability} 16 | ${aries.cdi.options} 17 | -------------------------------------------------------------------------------- /bridge-impl/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/build-liferay-websphere.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Note that it is critical to have the "liferay" goal so that the WEB-INF/web-liferay.xml descriptor will be 3 | # used in the WAR artifact as WEB-INF/web.xml 4 | mvn -P liferay,websphere clean install 5 | echo " " 6 | echo "************************************************************************************" 7 | echo "NEXT STEPS:" 8 | echo "Now copy target/bridge-tck-main-portlet.war to $LIFERAY_HOME/deploy on WebSphere and" 9 | echo "then deploy the massaged war in $LIFERAY_HOME/deploy-websphere in the Admin Panel" 10 | echo "************************************************************************************" 11 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/multiRequestPRPTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/alloy-showcase-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | com.liferay.faces.util.lifecycle.DebugPhaseListener 9 | com.liferay.faces.util.lifecycle.ViewScopePhaseListener 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | com.liferay.faces.util.lifecycle.DebugPhaseListener 9 | com.liferay.faces.util.lifecycle.ViewScopePhaseListener 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-export-pdf-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /tck/bridge-tck-scope-portlet/src/main/webapp/WEB-INF/web-liferay.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | bridge_Test_web_section5-scope 7 | 8 | 9 | portletConfigWrapperClass 10 | com.liferay.faces.bridge.tck.portlet.PortletConfigTCKCompat 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /demo/adf-jsp-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/survey/survey-flow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | /WEB-INF/views/portletViewMode.xhtml 7 | 8 | 9 | customer 10 | #{surveyFlowModelBean.customer} 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-spring-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/richfaces-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/adf-facelets-applicant-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-bookings-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-ipc-events-customers-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/resources/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2000-2022 Liferay, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/resources/META-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | BridgeShowcase 8 | 9 | 10 | com.liferay.faces.bridge.demos.i18n.internal.I18nFactoryBridgeShowcaseImpl 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/views/ajaxNonAjaxTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tck/bridge-tck-flows-portlet/src/main/webapp/WEB-INF/views/ajaxNonAjaxTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | /WEB-INF/views/multiRequestTest.xhtml 7 | 8 | multiRequestTestResultRenderCheck 9 | /WEB-INF/views/multiRequestTestResultRenderCheck.xhtml 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi2-portlet/src/main/webapp/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | /WEB-INF/views/multiRequestTest.xhtml 7 | 8 | multiRequestTestResultRenderCheck 9 | /WEB-INF/views/multiRequestTestResultRenderCheck.xhtml 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-3175/start.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /demo/jsf-jsp-applicant-portlet/src/main/webapp/WEB-INF/views/styling.jspx: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /demo/icefaces-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 5 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.7 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.7 - http://java.sun.com/javaee/javaserverfaces/) 5 | (Apache License Version 2.0) ICEfaces Core (org.icefaces:icefaces:4.0.0 - http://www.icesoft.org) 6 | (Apache License Version 2.0) ICEfaces ACE Components (org.icefaces:icefaces-ace:4.0.0 - http://www.icesoft.org) 7 | -------------------------------------------------------------------------------- /demo/bootsfaces-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 6 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | (MIT License) bootsfaces (de.larmic.bootsfaces:components:2.1.20 - http://www.bootsfaces.org) 7 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/resources/META-INF/third-party-missing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | javax.servlet 9 | jstl 10 | 1.2 11 | 12 | 13 | COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) 1.0 14 | http://opensource.org/licenses/cddl1.txt 15 | repo 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/resources/FACES-3175/reproducer.js: -------------------------------------------------------------------------------- 1 | if (window.FACES_3175reproducer) { 2 | 3 | var portletBody = document.getElementsByClassName('liferay-faces-bridge-body')[0]; 4 | portletBody.innerHTML = 5 | '

Test: FACES-3175

' + 6 | '

Status: FAILED

' + 7 | '

Detail: ' + 8 | 'Reloaded FACES-3175:reproducer.js resource unnecessarily.

'; 9 | } 10 | 11 | window.FACES_3175reproducer = true; 12 | window.onload = function() { 13 | 14 | var portletBody = document.getElementsByClassName('liferay-faces-bridge-body')[0]; 15 | portletBody.style.display = null; 16 | }; 17 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-3175/result.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 |

Test: FACES-3175

10 |

Status: SUCCESS

11 |

Detail: 12 | 13 |

14 |
15 |
16 | -------------------------------------------------------------------------------- /demo/alloy-applicant-portlet/src/main/resources/META-INF/third-party-missing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | javax.servlet 9 | jstl 10 | 1.2 11 | 12 | 13 | COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) 1.0 14 | http://opensource.org/licenses/cddl1.txt 15 | repo 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /demo/butterfaces-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 6 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | (MIT License) butterfaces (de.larmic.butterfaces:components:2.1.20 - http://www.butterfaces.org) 7 | -------------------------------------------------------------------------------- /demo/jsf-applicant-portlet/src/main/resources/META-INF/third-party-missing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | javax.servlet 9 | jstl 10 | 1.2 11 | 12 | 13 | COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) 1.0 14 | http://opensource.org/licenses/cddl1.txt 15 | repo 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-224/view1.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | http://issues.liferay.com/browse/FACES-224 7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 |
15 |
-------------------------------------------------------------------------------- /demo/jsf-html5-applicant-portlet/src/main/resources/META-INF/third-party-missing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | javax.servlet 9 | jstl 10 | 1.2 11 | 12 | 13 | COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) 1.0 14 | http://opensource.org/licenses/cddl1.txt 15 | repo 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /demo/jsf-showcase-portlet/src/main/webapp/WEB-INF/component/portlet/resourceurl/general/resourceURL.xhtml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/redisplayRenderRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tck/bridge-tck-scope-portlet/src/main/webapp/tests/redisplayRenderRequestTest.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /demo/jsf-flows-portlet/src/main/webapp/survey/finish.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /demo/primefaces-applicant-portlet/src/main/resources/META-INF/THIRD-PARTY.txt: -------------------------------------------------------------------------------- 1 | 2 | Lists of 6 third-party dependencies. 3 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification API. (com.sun.faces:jsf-api:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 4 | (COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL) Oracle's implementation of the JSF 2.2 specification. (com.sun.faces:jsf-impl:2.2.5 - http://java.sun.com/javaee/javaserverfaces/) 5 | (The Apache Software License, Version 2.0) Commons IO (commons-io:commons-io:1.3.2 - http://jakarta.apache.org/commons/io/) 6 | (The Apache Software License, Version 2.0) primefaces (org.primefaces:primefaces:5.0 - http://www.primefaces.org) 7 | -------------------------------------------------------------------------------- /demo/jsf-cdi-applicant-portlet/src/main/webapp/WEB-INF/jboss-deployment-structure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /demo/jsf-ipc-pub-render-params-portlet/src/main/webapp/WEB-INF/liferay-portlet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | customersPortlet 7 | 8 | false 9 | false 10 | 11 | 12 | bookingsPortlet 13 | 14 | false 15 | false 16 | 17 | 18 | -------------------------------------------------------------------------------- /tck/bridge-tck-main-portlet/src/main/webapp/tests/resourceAjaxResult.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /issue/jsf-issues-portlet/src/main/webapp/WEB-INF/views/FACES-2958/resource.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tck/bridge-tck-cdi1-portlet/src/main/webapp/WEB-INF/views/resourceAjaxResult.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | --------------------------------------------------------------------------------