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

Auth48 #515

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0c5fbdb
Auth48: Note c&p error; date
cabo Feb 12, 2024
0ac20fe
Add 2024-02-07 RPC version of XML and extracted files; initial check
cabo Feb 12, 2024
b9e27e9
First round of abnf spacing changes
cabo Feb 12, 2024
fe62a78
Put "; skip surrogate code points" on its own line
cabo Feb 12, 2024
e49cfa1
Fix some weird blank-space inconsistencies in ABNF
cabo Feb 12, 2024
756b304
Use and reference "I-Regexp" term from RFC 9485
cabo Feb 12, 2024
b6060cb
Search and "at least one" substring
cabo Feb 12, 2024
3ea201e
Add DIGIT to name-first at the end
cabo Feb 12, 2024
ac6f4dc
(G27) Better Section Name "Function Extensions Subregistry"
cabo Feb 13, 2024
1894d53
(G26) Use § 2.4.3 in both places for "well-typed" cross-reference
cabo Feb 13, 2024
6c104f2
(G25) Remove incorrect cross-reference in 2.3.1.1
cabo Feb 13, 2024
d4ffb90
(G21): Appendix B: Use JSONPath terminology for JSONPath
cabo Feb 13, 2024
cbfdb2a
(G18): Delete unnecessary text
cabo Feb 13, 2024
91099d9
(G10): Make sentence easier to understand
cabo Feb 13, 2024
ec1d5d2
(G6): There is only one root identifier example
cabo Feb 13, 2024
a2c0f6e
(G5): emphasize loneness by saying "containing a single node"
cabo Feb 13, 2024
fdd18c2
(G2): Remove remnant from when the definition was for "argument"
cabo Feb 13, 2024
30b1579
(G1): Remove unfortunate double use of the term "structure"
cabo Feb 13, 2024
52d12f6
(C3): Avoid <referencegroup XML that is still at risk.
cabo Feb 13, 2024
5c10c5a
RPC changes communicated at 2024-02-13 23:22Z
cabo Feb 14, 2024
c8dfc85
(C4) Complete fix for placement of "at most".
cabo Feb 14, 2024
8076529
(C5): Remove overzealous duplicate redundant superfluous citation
cabo Feb 14, 2024
440d44a
(C6) simplify editorial memento for ES4
cabo Feb 14, 2024
33b6c01
(C1) 3 more word-joiners to avoid confusing line breaks
cabo Feb 14, 2024
5b6ac37
(C7) use past tense for IANA registration that has happened
cabo Feb 14, 2024
904cefb
(C8) Avoid superfluous "strict" in table 11, twice
cabo Feb 14, 2024
9ad9249
(C9) We now distinguish empty nodelists from Nothing
cabo Feb 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions auth48/rfc9535.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<name>Introduction</name>
<t>JSON <xref target="RFC8259"/> is a popular representation
format for structured data values.
JSONPath defines a string syntax for selecting and extracting JSON <xref target="RFC8259"/> values
JSONPath defines a string syntax for selecting and extracting JSON values
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that was a bit much!

from within a given JSON value.</t>
<t>In relation to JSON Pointer <xref target="RFC6901"/>, JSONPath is not intended as a replacement but as a more powerful
companion. See <xref target="json-pointer"/>.</t>
Expand Down Expand Up @@ -758,7 +758,7 @@ selector = name-selector /
<name>Name Selector</name>
<section anchor="syntax-name">
<name>Syntax</name>
<t>A name selector <tt>'&lt;name&gt;'</tt> selects one object member value at most.</t>
<t>A name selector <tt>'&lt;name&gt;'</tt> selects at most one object member value.</t>
<t>In contrast to JSON,
the JSONPath syntax allows strings to be enclosed in <em>single</em> or <em>double</em> quotes.</t>
<sourcecode type="abnf" name="jsonpath-collected.abnf"><![CDATA[
Expand Down Expand Up @@ -1071,7 +1071,7 @@ members (but not when it is applied to object nodes with fewer than two members
<name>Index Selector</name>
<section anchor="syntax-index">
<name>Syntax</name>
<t>An index selector <tt>&lt;index&gt;</tt> matches one array element value at most.</t>
<t>An index selector <tt>&lt;index&gt;</tt> matches at most one array element value.</t>
<sourcecode type="abnf" name="jsonpath-collected.abnf"><![CDATA[
index-selector = int ; decimal integer

Expand Down
Loading