Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/shibui-2393' into featur…
Browse files Browse the repository at this point in the history
…e/shibui-2393
  • Loading branch information
chasegawa committed Nov 28, 2022
2 parents 9b7143a + bc7ff0e commit 8ebfc75
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 15 deletions.
30 changes: 16 additions & 14 deletions backend/src/main/resources/i18n/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ action.enable=Enable
action.disable=Disable
action.get-latest=Get latest changes
action.download=Download
action.metadata-sources=Metadata Sources
action.metadata-providers=Metadata Providers

action.add-new-role=Add new role
action.roles=Roles
Expand Down Expand Up @@ -977,35 +979,35 @@ label.enable-dynamic-registrations=Enable Dynamic Registrations
label.approve-dynamic-registrations=Approve Dynamic Registrations

label.dynamic-registration-name=Name
tooltip.dynamic-registration-name=Name
tooltip.dynamic-registration-name=Name used to identify the registration on the Shibboleth IDP UI Dashboard.
label.dynamic-registration-redirectUris=Redirect Uris
tooltip.dynamic-registration-redirectUris=Redirect Uris
tooltip.dynamic-registration-redirectUris=Array of Redirection URI values used by the Client. One of these registered Redirection URI values MUST exactly match the redirect_uri parameter value used in each Authorization Request.
label.dynamic-registration-responseTypes=Response Types
tooltip.dynamic-registration-responseTypes=Response Types
tooltip.dynamic-registration-responseTypes=JSON array containing a list of the OAuth 2.0 response_type values that the Client is declaring that it will restrict itself to using.
label.dynamic-registration-grantTypes=Grant Types
tooltip.dynamic-registration-grantTypes=Grant Types
tooltip.dynamic-registration-grantTypes=JSON array containing a list of the OAuth 2.0 Grant Types that the Client is declaring that it will restrict itself to using.
label.dynamic-registration-applicationType=Application Type
tooltip.dynamic-registration-applicationType=Application Type
tooltip.dynamic-registration-applicationType=Kind of the application. Web Clients using the OAuth Implicit Grant Type MUST only register URLs using the https scheme as redirect_uris (they MUST NOT use localhost as the hostname).
label.dynamic-registration-contacts=Contacts
tooltip.dynamic-registration-contacts=Contacts
tooltip.dynamic-registration-contacts=Array of e-mail addresses of people responsible for this Client. This might be used by some providers to enable a Web user interface to modify the Client information.
label.dynamic-registration-subjectType=Subject Type
tooltip.dynamic-registration-subjectType=Subject Type
tooltip.dynamic-registration-subjectType=Subject type requested for responses to this Client. The subject_types_supported Discovery parameter contains a list of the supported subject_type values for this server.
label.dynamic-registration-jwks=Jwks
tooltip.dynamic-registration-jwks=Jwks
tooltip.dynamic-registration-jwks=Client\u0027s JSON Web Key Set [JWK] document, passed by value.
label.dynamic-registration-jwksUri=Jwks Uri
tooltip.dynamic-registration-jwksUri=Jwks Uri
tooltip.dynamic-registration-jwksUri=URL for the Client\u0027s JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains the signing key(s) the Server uses to validate signatures from the Client.
label.dynamic-registration-tokenEndpointAuthMethod=Token Endpoint Auth Method
tooltip.dynamic-registration-tokenEndpointAuthMethod=Token Endpoint Auth Method
label.dynamic-registration-logo-uri=Logo Uri
tooltip.dynamic-registration-logo-uri=Logo Uri
tooltip.dynamic-registration-logo-uri=URL that references a logo for the Client application. If present, the server SHOULD display this image to the End-User during approval.
label.dynamic-registration-policy-uri=Policy Uri
tooltip.dynamic-registration-policy-uri=Policy Uri
tooltip.dynamic-registration-policy-uri=URL that the Relying Party Client provides to the End-User to read about the how the profile data will be used. The value of this field MUST point to a valid web page.
label.dynamic-registration-tosuri=TOS Uri
tooltip.dynamic-registration-tosuri=TOS Uri
tooltip.dynamic-registration-tosuri=URL that the Relying Party Client provides to the End-User to read about the Relying Party\u0027s terms of service. The value of this field MUST point to a valid web page.
label.dynamic-registration-scope=Scope
tooltip.dynamic-registration-scope=Scope
tooltip.dynamic-registration-scope=If present, all the requested scopes are added to the stored client metadata. If not present, then the default scope set is stored. The default scope (space-separated list of values, e.g. "openid info") can be configured with the idp.oidc.dynreg.defaultScope property.
label.dynamic-registration-enabled=Enabled
tooltip.dynamic-registration-enabled=Enabled
tooltip.dynamic-registration-enabled=Represents whether or not this registration has been sent to the Shibboleth IDP.

value.authorization-code=Authorization Code
value.implicit=Implicit
Expand Down
11 changes: 10 additions & 1 deletion ui/src/app/metadata/component/MetadataDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,17 @@ export function MetadataDetail ({ children }) {
<nav aria-label="breadcrumb">
<ol className="breadcrumb breadcrumb-bar">
<li className="breadcrumb-item">
<Link to="/dashboard"><Translate value="action.dashboard">Dashboard</Translate></Link>
<Link to="/dashboard" id="dashboard-breadcrumb"><Translate value="action.dashboard">Dashboard</Translate></Link>
</li>
{metadata.serviceProviderName ?
<li className="breadcrumb-item">
<Link to="/dashboard/metadata/manager/resolvers" id="source-breadcrumb"><Translate value="action.metadata-sources">Metadata Sources</Translate></Link>
</li>
:
<li className="breadcrumb-item">
<Link to="/dashboard/metadata/manager/providers" id="provider-breadcrumb"><Translate value="action.metadata-providers">Metadata Providers</Translate></Link>
</li>
}
<li className="breadcrumb-item active" aria-current="page">
<span className="">
{ metadata.serviceProviderName || metadata.name }
Expand Down

0 comments on commit 8ebfc75

Please sign in to comment.