Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PAYARA-3131 Clicking Cancel button on Configuration Properties page causes an error #3199

Merged
merged 2 commits into from Sep 28, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -60,6 +60,7 @@
setPageSessionAttribute(key="selfUrl", value="#{sessionScope.REST_URL}");
gf.restRequest(endpoint="#{sessionScope.REST_URL}/property", method="GET", result="#{requestScope.propTable}");
setPageSessionAttribute(key="tableList", value="#{requestScope.propTable.data.extraProperties.properties}");
setPageSessionAttribute(key="showCancelButton", value="#{false}");
/>
</event>
<sun:form id="propertyForm">
Expand Down
Expand Up @@ -62,6 +62,7 @@
setPageSessionAttribute(key="selfUrl", value="#{sessionScope.REST_URL}/applications/application/#{pageSession.encodedAppName}");
gf.restRequest(endpoint="#{sessionScope.REST_URL}/applications/application/#{pageSession.encodedAppName}/property", method="GET", result="#{requestScope.propTable}");
setPageSessionAttribute(key="tableList", value="#{requestScope.propTable.data.extraProperties.properties}");
setPageSessionAttribute(key="showCancelButton", value="#{false}");
/>
</event>
<sun:form id="propertyForm">
Expand Down
Expand Up @@ -723,7 +723,7 @@ appClientLaunch.argHelp=Arguments to append to the URL for launching the applica
domain.DomainAttrsPageTitle=Domain Attributes
domain.DomainAttrsPageTitleHelp=Specify default attributes to use for the domain when custom attributes are not specified for a component.
domain.DomainPropsPageTitle=Domain Configuration Properties
domain.DomainPropsPageTitleHelp=Configuration Properties<br/>Sets property overrides at the domain level.<br/>Set Property name to the property key and value to the property value. Description can be used for your own reference<br/><b>Note:</b> For use with microprofile config api properties should be prefixed with <emphasis>payara.microprofile.</emphasis>
domain.DomainPropsPageTitleHelp=Configuration Properties<br/>Sets property overrides at the domain level. <br/>Set Property name to the property key and value to the property value. Description can be used for your own reference. <br/><b>Note:</b> For use with microprofile config api properties should be prefixed with <emphasis>payara.microprofile.</emphasis>
domain.AppsConfigPageTitle=Applications Configuration
domain.AppsConfigPageHelp=Enable reloading so that changes to deployed applications are detected and the modified classes reloaded. Also enable and configure automatic deployment of applications. Click Add Property to specify additional settings.
domain.Reload=Reload:
Expand Down Expand Up @@ -899,14 +899,14 @@ log.error.dateFormat=Exception in getFormattedDateTime().
rest.invalid_method=An unsupported or invalid HTTP method was specified: {0}

## Microprofile Config Strings
microprofile.properties.description=Configuration Properties<br/>Sets property overrides at the server/instance level.<br/>Set Property name to the property key and value to the property value. Description can be used for your own reference<br/><b>Note:</b> For use with microprofile config api properties should be prefixed with <emphasis>payara.microprofile.</emphasis>
microprofile.properties.description=Configuration Properties<br/>Sets property overrides at the server/instance level. <br/>Set Property name to the property key and value to the property value. Description can be used for your own reference. <br/><b>Note:</b> For use with microprofile config api properties should be prefixed with <emphasis>payara.microprofile.</emphasis>
headings.DomainProperties=Configuration Properties
headings.DomainPropertiesTab=Configuration Properties Tab
headings.ApplicationProperties=Configuration Properties
headings.ApplicationPropertiesTab=Configuration Properties Tab

applications.ApplicationPropsPageTitle=Application Configuration Properties
applications.ApplicationPropsPageTitleHelp=Configuration Properties<br/>Sets property overrides at the application level.<br/>Set Property name to the property key and value to the property value. Description can be used for your own reference<br/><b>Note:</b> For use with microprofile config api properties should be prefixed with <emphasis>payara.microprofile.</emphasis>
applications.ApplicationPropsPageTitleHelp=Configuration Properties<br/>Sets property overrides at the application level. <br/>Set Property name to the property key and value to the property value. Description can be used for your own reference. <br/><b>Note:</b> For use with microprofile config api properties should be prefixed with <emphasis>payara.microprofile.</emphasis>

##Payara Notification Logging
log.NotificationLogging=Notification Logging
Expand Down