-
Notifications
You must be signed in to change notification settings - Fork 222
support special URL paths such as .well-known. #708
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -323,8 +323,14 @@ along with this software (see the LICENSE.md file). If not, see | |
|
|
||
| The transition name is used in link and other elements in place of URLs when going to another | ||
| screen within this application. The transition name will appear briefly as the URL before the | ||
| redirect is done for the transition response. | ||
| </xs:documentation></xs:annotation> | ||
| redirect is done for the transition response. A name may also start with a | ||
| dot to support special URL paths such as .well-known. </xs:documentation> | ||
| </xs:annotation> | ||
| <xs:simpleType> | ||
| <xs:restriction base="xs:token"> | ||
| <xs:pattern value="[\-\.a-zA-Z][\-_\.a-zA-Z0-9]*" /> | ||
| </xs:restriction> | ||
| </xs:simpleType> | ||
|
Comment on lines
+329
to
+333
|
||
| </xs:attribute> | ||
| <xs:attribute name="method" default="any"> | ||
| <xs:simpleType> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation in this block still emphasizes camelCase/lower-case naming, but the change is introducing support for leading-dot URL paths (eg
.well-known) and the new pattern also broadens allowed characters. Please adjust the wording to accurately describe the allowed formats/exceptions so it matches the schema validation.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure what need to changed? already describing with the .well-known. example?