From 908dfee0543f67afcc216d2ae2bf351e56754b17 Mon Sep 17 00:00:00 2001 From: reffy-bot <> Date: Thu, 14 Nov 2024 01:35:06 +0000 Subject: [PATCH] Update of TR report from new reffy run Using reffy commit 17.2.9. --- tr/algorithms/css-view-transitions-2.json | 337 ++++++++- tr/algorithms/largest-contentful-paint.json | 21 +- tr/css/css-view-transitions-2.json | 48 +- tr/dfns/css-view-transitions-2.json | 550 +++++++++++--- tr/dfns/largest-contentful-paint.json | 42 -- tr/headings/css-view-transitions-2.json | 239 +++++- tr/headings/sparql12-federated-query.json | 67 +- .../sparql12-graph-store-protocol.json | 73 +- tr/headings/sparql12-protocol.json | 112 +-- tr/headings/sparql12-results-csv-tsv.json | 50 +- tr/headings/sparql12-results-json.json | 47 +- tr/headings/sparql12-results-xml.json | 37 +- tr/headings/sparql12-service-description.json | 128 ++-- tr/headings/sparql12-update.json | 116 +-- tr/idl/css-view-transitions-2.idl | 13 +- tr/idl/largest-contentful-paint.idl | 3 +- tr/ids/css-view-transitions-2.json | 694 +++++++++++++----- tr/ids/largest-contentful-paint.json | 46 +- tr/ids/sparql12-federated-query.json | 52 +- tr/ids/sparql12-graph-store-protocol.json | 58 +- tr/ids/sparql12-protocol.json | 108 +-- tr/ids/sparql12-results-csv-tsv.json | 44 +- tr/ids/sparql12-results-json.json | 38 +- tr/ids/sparql12-results-xml.json | 28 +- tr/ids/sparql12-service-description.json | 126 ++-- tr/ids/sparql12-update.json | 108 +-- tr/index.json | 64 +- tr/links/css-view-transitions-2.json | 210 +++++- tr/links/largest-contentful-paint.json | 63 +- tr/links/sparql12-graph-store-protocol.json | 26 +- tr/refs/css-view-transitions-2.json | 72 ++ tr/refs/largest-contentful-paint.json | 20 + tr/refs/sparql12-federated-query.json | 7 +- tr/refs/sparql12-graph-store-protocol.json | 7 +- tr/refs/sparql12-protocol.json | 43 +- tr/refs/sparql12-results-csv-tsv.json | 37 +- tr/refs/sparql12-service-description.json | 51 +- tr/refs/sparql12-update.json | 29 +- 38 files changed, 2706 insertions(+), 1108 deletions(-) diff --git a/tr/algorithms/css-view-transitions-2.json b/tr/algorithms/css-view-transitions-2.json index 7d562854b91b..3f5261f00f04 100644 --- a/tr/algorithms/css-view-transitions-2.json +++ b/tr/algorithms/css-view-transitions-2.json @@ -43,7 +43,7 @@ "html": "

This ViewTransition's updateCallbackDone promise is already resolved,\nand its captured elements are populated from the old Document.

" }, { - "html": "

This is another opportunity for the author customize the transition, e.g. by mutating its types, or skip it altogether.

" + "html": "

This is another opportunity for the author to customize the transition, e.g. by mutating its types, or skip it altogether.

" }, { "html": "

The state of the new document is captured as the \"new\" state of the transition.

" @@ -58,14 +58,14 @@ { "name": "start-vt-with-options", "href": "https://www.w3.org/TR/css-view-transitions-2/#dom-document-startviewtransition", - "html": "The method steps for startViewTransition(callbackOptions) are as follows:", + "html": "The method steps for startViewTransition(callbackOptions) are as follows:", "rationale": ".algorithm", "steps": [ { "html": "

Let updateCallback be null.

" }, { - "html": "

If callbackOptions is an an UpdateCallback, set updateCallback to callbackOptions.

" + "html": "

If callbackOptions is a ViewTransitionUpdateCallback, set updateCallback to callbackOptions.

" }, { "html": "

Otherwise, if callbackOptions is a StartViewTransitionOptions, then set updateCallback to callbackOptions’s update.

" @@ -96,42 +96,78 @@ } ] }, + { + "name": "view-transition-name/auto", + "href": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-name-auto", + "html": "In addition to the existing values, the view-transition-name also accepts an auto keyword.\nTo resolve the used value of view-transition-name for element:", + "rationale": "let", + "steps": [ + { + "html": "

Let computed be the computed value of view-transition-name.

" + }, + { + "html": "

If computed is none, return null.

" + }, + { + "html": "

If computed is a <custom-ident>, return computed.

" + }, + { + "html": "

Assert: computed is auto.

" + }, + { + "html": "

If element has an associated id, and computed is associated with the same root as element’s root, then return the value of element’s id.

" + }, + { + "html": "

Return a unique string. The string should remain consistent and unique for this element and Document, at least for the lifetime of element’s node document's active view transition.

" + } + ] + }, + { + "name": "visibility change step additions", + "html": "The next steps are appended to the tasks view transition page-visibility change steps given document, after the current steps in the queued task:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Set document’s inbound view transition params to null.

" + } + ] + }, { "name": "resolve @view-transition rule", "href": "https://www.w3.org/TR/css-view-transitions-2/#resolve-view-transition-rule", - "html": "To resolve @view-transition rule for a Document document:", + "html": "To resolve @view-transition rule for a Document document:", "rationale": ".algorithm", "steps": [ { "html": "

If document’s visibility state is \"hidden\",\nthen return \"skip transition\".

" }, { - "html": "

Let matchingRule be the last @view-transition rule in document.

" + "html": "

Let matchingRule be the last @view-transition rule in document.

" }, { "html": "

If matchingRule is not found, then return \"skip transition\".

" }, { - "html": "

If matchingRule’s navigation descriptor’s computed value is none, then return \"skip transition\".

" + "html": "

If matchingRule’s navigation descriptor’s computed value is none, then return \"skip transition\".

" }, { - "html": "

Assert: matchingRule’s navigation descriptor’s computed value is auto.

" + "html": "

Assert: matchingRule’s navigation descriptor’s computed value is auto.

" }, { "html": "

Let typesDescriptor be matchingRule’s types descriptor.

" }, { - "html": "

If typesDescriptor’s computed value is none, then return a set « ».

" + "html": "

If typesDescriptor’s computed value is none, then return a set « ».

" }, { - "html": "

Return a set of strings corresponding to typesDescriptor’s computed value.

" + "html": "

Return a set of strings corresponding to typesDescriptor’s computed value.

" } ] }, { "name": "navigation can trigger a cross-document view-transition?", "href": "https://www.w3.org/TR/css-view-transitions-2/#navigation-can-trigger-a-cross-document-view-transition", - "html": "To check if a navigation can trigger a cross-document view-transition? given\n\ta Document oldDocument, a Document newDocument, a NavigationType navigationType, and a boolean isBrowserUINavigation:", + "html": "To check if a navigation can trigger a cross-document view-transition? given\n\ta Document oldDocument, a Document newDocument, a NavigationType navigationType, and a boolean isBrowserUINavigation:", "rationale": ".algorithm", "steps": [ { @@ -147,7 +183,7 @@ "html": "

If oldDocument’s origin is not same origin as newDocument’s origin, then return false.

" }, { - "html": "

If newDocument was created via cross-origin redirects, then return false.

" + "html": "

If newDocument was created via cross-origin redirects and newDocument’s latest entry is null, then return false.

" }, { "html": "

If navigationType is traverse, then return true.

" @@ -163,7 +199,7 @@ { "name": "setup cross-document view-transition", "href": "https://www.w3.org/TR/css-view-transitions-2/#setup-cross-document-view-transition", - "html": "To setup cross-document view-transition given a Document oldDocument,\n\ta Document newDocument, and proceedWithNavigation, which is an algorithm accepting nothing:", + "html": "To setup cross-document view-transition given a Document oldDocument,\n\ta Document newDocument, and proceedWithNavigation, which is an algorithm accepting nothing:", "rationale": ".algorithm", "steps": [ { @@ -179,7 +215,7 @@ "html": "

Assert: transitionTypesFromRule is not \"skip transition\".

" }, { - "html": "

If oldDocument’s active view transition is not null,\nthen skip oldDocument’s active view transition with an \"AbortError\" DOMException in oldDocument’s relevant Realm.

" + "html": "

If oldDocument’s active view transition is not null,\nthen skip oldDocument’s active view transition with an \"AbortError\" DOMException in oldDocument’s relevant Realm.

" }, { "html": "

Let outboundTransition be a new ViewTransition object in oldDocument’s relevant Realm.

" @@ -192,7 +228,25 @@ "rationale": "set", "steps": [ { - "html": "

Set newDocument’s inbound view transition params to params.

" + "html": "

Set newDocument’s inbound view transition params to params.

" + }, + { + "html": "To skip the transition after a timeout, the user agent may perform the following steps in parallel:", + "rationale": "wait", + "steps": [ + { + "html": "

Wait for an implementation-defined duration.

" + }, + { + "html": "Queue a global task on the DOM manipulation task source given newDocument’s relevant global object to perform the following step:", + "rationale": "if", + "steps": [ + { + "html": "

If newDocument’s inbound view transition params is params, then set newDocument’s inbound view transition params to null.

" + } + ] + } + ] }, { "html": "

Call proceedWithNavigation.

" @@ -200,10 +254,10 @@ ] }, { - "html": "

Set oldDocument’s active view transition to outboundTransition.

" + "html": "

Set oldDocument’s active view transition to outboundTransition.

" }, { - "html": "

The user agent should display the currently displayed frame until either:

\n " + "html": "

The user agent should display the currently displayed frame until either:

\n " }, { "html": "

Return outboundTransition.

" @@ -213,7 +267,7 @@ { "name": "update-opt-in-for-outbound", "href": "https://www.w3.org/TR/css-view-transitions-2/#update-the-opt-in-state-for-outbound-transitions", - "html": "To update the opt-in state for outbound transitions for a Document document:", + "html": "To update the opt-in state for outbound transitions for a Document document:", "rationale": ".algorithm", "steps": [ { @@ -236,15 +290,15 @@ }, { "name": "additional transition operation", - "html": "Prepend the following step to the Perform pending transition operations algorithm given a Document document:", + "html": "Prepend the following step to the Perform pending transition operations algorithm given a Document document:", "rationale": ".algorithm", "steps": [ { - "html": "If document’s active view transition is not null and its outbound post-capture steps is not null, then:", + "html": "If document’s active view transition is not null and its outbound post-capture steps is not null, then:", "rationale": "assert", "steps": [ { - "html": "

Assert: document’s active view transition's phase is \"pending-capture\".

" + "html": "

Assert: document’s active view transition's phase is \"pending-capture\".

" }, { "html": "

Let viewTransitionParams be null;

" @@ -271,7 +325,7 @@ { "name": "resolve inbound cross-document view-transition", "href": "https://www.w3.org/TR/css-view-transitions-2/#resolve-inbound-cross-document-view-transition", - "html": "To resolve inbound cross-document view-transition for Document document:", + "html": "To resolve inbound cross-document view-transition for Document document:", "rationale": ".algorithm", "steps": [ { @@ -284,16 +338,16 @@ "html": "

Update the opt-in state for outbound transitions for document.

" }, { - "html": "

Let inboundViewTransitionParams be document’s inbound view transition params.

" + "html": "

Let inboundViewTransitionParams be document’s inbound view transition params.

" }, { "html": "

If inboundViewTransitionParams is null, then return null.

" }, { - "html": "

Set document’s inbound view transition params to null.

" + "html": "

Set document’s inbound view transition params to null.

" }, { - "html": "

If document’s active view transition is not null, then return null.

" + "html": "

If document’s active view transition is not null, then return null.

" }, { "html": "

Resolve @view-transition rule for document and let resolvedRule be the result.

" @@ -305,7 +359,7 @@ "html": "

Let transition be a new ViewTransition in document’s relevant Realm,\nwhose named elements is inboundViewTransitionParams’s named elements,\nand initial snapshot containing block size is inboundViewTransitionParams’s initial snapshot containing block size.

" }, { - "html": "

Set document’s active view transition to transition.

" + "html": "

Set document’s active view transition to transition.

" }, { "html": "

Resolve transition’s update callback done promise with undefined.

" @@ -316,9 +370,6 @@ { "html": "

Set transition’s active types to resolvedRule.

" }, - { - "html": "

At any given time, the UA may decide to skip the inbound transition, e.g. after an implementation-defined timeout.\nTo do so, the UA should queue a global task on the DOM manipulation task source given document’s relevant global object to perform the following step:\n\tIf transition’s phase is not \"done\", then skip the view transition transition with a \"TimeoutError\" DOMException.

" - }, { "html": "

Return transition.

" } @@ -330,7 +381,235 @@ "rationale": ".algorithm", "steps": [ { - "html": "

Set capture’s class list to the computed value of element’s view-transition-class.

" + "html": "

Set capture’s class list to the computed value of element’s view-transition-class, if it is associated with element’s node document.

" + } + ] + }, + { + "name": "resolve the document-scoped view-transition-group", + "href": "https://www.w3.org/TR/css-view-transitions-2/#document-scoped-view-transition-group", + "html": "To get the document-scoped view transition group of an Element element, perform the following steps:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let computedGroup be the computed value of element’s view-transition-group property.

" + }, + { + "html": "

If computedGroup is associated with element’s node document, return computedGroup.

" + }, + { + "html": "

Return normal.

" + } + ] + }, + { + "name": "resolve nearest containing group name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#nearest-containing-group-name", + "html": "To resolve the nearest containing group name of an Element element, perform the following steps given a ViewTransition viewTransition:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert: element participates in viewTransition.

" + }, + { + "html": "

Let ancestorGroup be element’s nearest flat tree ancestor who participates in viewTransition and whose document-scoped view transition group is not normal.

" + }, + { + "html": "

If ancestorGroup exists, return ancestorGroup’s document-scoped view transition name.

" + }, + { + "html": "

Return none.

" + } + ] + }, + { + "name": "resolve used group name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#used-group-name", + "html": "To resolve the used group name of an Element element, perform the following steps given a ViewTransition transition: \n \n
\n
normal\n
contain\n
\n

containingGroupName.

\n \n
nearest\n
\n

The document-scoped view transition name of the element’s nearest flat tree ancestor which participates in the transition.

\n
<custom-ident>\n
\n

group if the element has a flat tree ancestor whose document-scoped view transition name is group and participates in transition; Otherwise containingGroupName.

\n
", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Assert: element participates in transition.

" + }, + { + "html": "

Let group be element’s document-scoped view transition group.

" + }, + { + "html": "

Let containingGroupName be element’s nearest containing group name given transition.

" + }, + { + "html": "

Return the first matching statement, switching on group:

" + } + ] + }, + { + "name": "additional old capture steps (group)", + "html": "When capturing the old state for an element, perform the following steps given a captured element capturedElement, a ViewTransition transition, and an element element:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Set capturedElement’s containing group name to element’s used group name given transition.

" + } + ] + }, + { + "name": "additional new capture steps (group)", + "html": "When capturing the new state for an element, perform the following steps given a captured element capturedElement a ViewTransition transition, and an element element:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Set capturedElement’s containing group name to element’s used group name given transition.

" + } + ] + }, + { + "name": "additional pseudo-element setup steps (group)", + "html": "When setting up the transition pseudo-element for a captured element capturedElement, given a transitionName and a transition:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let containingGroupName be capturedElement’s containing group name.

" + }, + { + "html": "If containingGroupName is not null, then:", + "rationale": "let", + "steps": [ + { + "html": "

Let groupContainerElement be transition’s named elements[containingGroupName].

" + }, + { + "html": "

Let group be the ::view-transition-group(),\nwhose view transition name is set to transitionName.

" + }, + { + "html": "

Let parentGroup be the ::view-transition-group(),\nwhose view transition name is set to containingGroupName.

" + }, + { + "html": "

Append group to parentGroup.

" + }, + { + "html": "

When setting the animation keyframes given transform, adjust the nested group transform to transform, given groupContainerElement’s old transform, groupContainerElement’s old width, groupContainerElement’s old height, and groupContainerElement’s old box properties.

" + } + ] + } + ] + }, + { + "name": "additional pseudo-element style update steps (group)", + "html": "When updating the style of the transition pseudo-element, perform the following steps before setting the group styles rule, given a captured element capturedElement, a transform, and a ViewTransition transition:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Set capturedElement’s transform from snapshot containing block to transform.

" + }, + { + "html": "If capturedElement’s containing group name is not null, then:", + "rationale": "let", + "steps": [ + { + "html": "

Let groupContainerElement be transition’s named elements[capturedElement’s containing group name.

" + }, + { + "html": "

Let containerRect be snapshot containing block if capturedElement is the document element,\notherwise, capturedElement’s border box.

" + }, + { + "html": "

Adjust the nested group transform to transform, given groupContainerElement’s transform from snapshot containing block, containerRect’s width, containerRect’s height, and groupContainerElement’s new box properties.

" + } + ] + } + ] + }, + { + "name": "compute layered capture style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-style", + "html": "To compute the layered capture style of an Element element:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let propertiesToCapture be a new list corresponding to the layered capture properties,

" + }, + { + "html": "" + }, + { + "html": "

Let styles be a « ».

" + }, + { + "html": "

For each property in propertiesToCapture, append the concatentation of « property, \":\", element’s computed value of property, \";\" » to styles.

" + }, + { + "html": "

Return the concatentation of styles.

" + } + ] + }, + { + "name": "additional old capture steps (layered)", + "html": "When capturing the old state for an element, perform the following steps given a captured element capturedElement and an element element:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Set capturedElement’s old layered-capture style to element’s layered capture style.

" + }, + { + "html": "

Set capturedElement’s old box properties to element’s layered capture geometry.

" + }, + { + "html": "

Set capturedElement’s (old width, old height to element’s default group size.

" + } + ] + }, + { + "html": "When capturing an element into a snapshot, only the element contents are painted, without the element’s effects and box decorations.\nSpecifically, the element’s background, border, border-image, box-shadow, and outline are not painted, and its border-radius, clip-path, filter, mask, and opacity are not applied.", + "rationale": "multiply", + "steps": [ + { + "html": "

Multiply transform with the inverse matrix of parentTransform.

" + }, + { + "html": "

Let (left, top) be the border edge based on boxProperties’s padding box inside (borderBoxWidth, borderBoxHeight).

" + }, + { + "html": "

Translate transform by (-left, -top).

" + } + ] + }, + { + "name": "additional pseudo-element setup steps (layered capture keyframes)", + "html": "When setting up the transition pseudo-element for a captured element capturedElement, given a transitionName:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let keyframesName be the concatentation of « -ua-view-transition-group-anim-, transitionName »

" + }, + { + "html": "

Append capturedElement’s old layered-capture style to the constructed rule for keyframesName.

" + } + ] + }, + { + "name": "additional pseudo-element style update steps (layered capture new state)", + "html": "When updating the style of the transition pseudo-element, perform the following steps before setting the group styles rule, given a transitionName, a capturedElement, width, height, and an Element element:", + "rationale": ".algorithm", + "steps": [ + { + "html": "

Let style be element’s layered capture style.

" + }, + { + "html": "

Set capturedElement’s new box properties to element’s layered capture properties.

" + }, + { + "html": "

Set (width, height) to the element’s default group size.

" + }, + { + "html": "

Append the concatentation of « \"::view-transition-group(\", transitionName, \") {\", style , \"}\" » to the constructed user-agent stylesheet.

" + }, + { + "html": "

Let (oldContentWidth, oldContentHeight) be (capturedElement’s old width, capturedElement’s old height) if capturedElement’s old box properties is null, otherwise capturedElement’s old box properties's content box's size.

" + }, + { + "html": "

Let (newContentWidth, newContentHeight) be (width, height) if new box properties is null, otherwise capturedElement’s new box properties's content box's size.

" + }, + { + "html": "

Append the next string (with replaced variables) to the user agent stylesheet:

\n
@keyframes -ua-view-transition-content-geometry-transitionName {\n  from {\n    width: oldContentWidth;\n    height: oldContentHeight;\n  }\n}\n\n:root::view-transition-image-pair(transitionName) {\n  position: relative;\n  inset: unset;\n  width: newContentWidth;\n  height: newContentHeight;\n  animation-name: -ua-view-transition-transitionName;\n  animation-direction: inherit;\n  animation-timing-function: inherit;\n  animation-iteration-count: inherit;\n  animation-duration: inherit;\n}\n
" } ] } diff --git a/tr/algorithms/largest-contentful-paint.json b/tr/algorithms/largest-contentful-paint.json index 0b7bff733f7b..50fab7847426 100644 --- a/tr/algorithms/largest-contentful-paint.json +++ b/tr/algorithms/largest-contentful-paint.json @@ -20,7 +20,7 @@ { "name": "report largest contentful paint", "href": "https://www.w3.org/TR/largest-contentful-paint/#report-largest-contentful-paint", - "html": "When asked to report largest contentful paint given a Document document, a timestamp now, an ordered set of pending image records paintedImages, and an ordered set of elements paintedTextNodes, perform the following steps:", + "html": "When asked to report largest contentful paint given a Document document, a paint timing info paintTimingInfo, an ordered set of pending image records paintedImages, and an ordered set of elements paintedTextNodes, perform the following steps:", "rationale": ".algorithm", "steps": [ { @@ -43,7 +43,7 @@ "html": "

Let intersectionRect be the value returned by the intersection rect algorithm using imageElement as the target and viewport as the root.

" }, { - "html": "

Potentially add a LargestContentfulPaint entry with candidate, intersectionRect, now, record’s loadTime and document.

" + "html": "

Potentially add a LargestContentfulPaint entry with candidate, intersectionRect, paintTimingInfo, record’s loadTime and document.

" } ] }, @@ -54,6 +54,15 @@ { "html": "

If textNode is not exposed for paint timing, given document, continue.

" }, + { + "html": "If textNode has alpha channel value <=0 or opacity value <=0:", + "rationale": "if", + "steps": [ + { + "html": "

If textNode’s text-shadow value is none, textNode’s stroke-color value is transparent and textNode’s stroke-image value is none, continue.

" + } + ] + }, { "html": "

Let candidate be (textNode, null)

" }, @@ -70,7 +79,7 @@ "html": "

Intersect intersectionRect with the visual viewport.

" }, { - "html": "

Potentially add a LargestContentfulPaint entry with candidate, intersectionRect, now, 0, and document.

" + "html": "

Potentially add a LargestContentfulPaint entry with candidate, intersectionRect, paintTimingInfo, 0, and document.

" } ] } @@ -193,10 +202,10 @@ "html": "

Let id be candidate’s element's element id.

" }, { - "html": "

Let contentInfo be a map with contentInfo[\"size\"] = size, contentInfo[\"url\"] = url, contentInfo[\"id\"] = id, contentInfo[\"renderTime\"] = renderTime, contentInfo[\"loadTime\"] = loadTime, and contentInfo[\"element\"] = candidate’s element.

" + "html": "

Let contentInfo be a map with contentInfo[\"size\"] = size, contentInfo[\"url\"] = url, contentInfo[\"id\"] = id, contentInfo[\"loadTime\"] = loadTime, and contentInfo[\"element\"] = candidate’s element.

" }, { - "html": "

Create a LargestContentfulPaint entry with contentInfo, and document as inputs.

" + "html": "

Create a LargestContentfulPaint entry with contentInfo, paintTimingInfo, and document as inputs.

" } ] }, @@ -209,7 +218,7 @@ "html": "

Set document’s largest contentful paint size to contentInfo[\"size\"].

" }, { - "html": "

Let entry be a new LargestContentfulPaint entry with document’s relevant realm, with its

\n " + "html": "

Let entry be a new LargestContentfulPaint entry with document’s relevant realm, whose paint timing info is paintTimingInfo, with its

\n " }, { "html": "

Queue the PerformanceEntry entry.

" diff --git a/tr/css/css-view-transitions-2.json b/tr/css/css-view-transitions-2.json index 6dccfea610b5..d8a2472c3aca 100644 --- a/tr/css/css-view-transitions-2.json +++ b/tr/css/css-view-transitions-2.json @@ -25,7 +25,7 @@ }, { "name": "+", - "prose": "All of the specified values (apart from none) are applied when used in named view transition pseudo-element selectors. none is an invalid for view-transition-class, even when combined with another .", + "prose": "All of the specified values (apart from none) are applied when used in named view transition pseudo-element selectors. none is an invalid for view-transition-class, even when combined with another . Each 'view transition class' is a tree-scoped name.", "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-class-custom-ident", "type": "value", "value": "+" @@ -35,6 +35,52 @@ "view-transition-class", "viewTransitionClass" ] + }, + { + "name": "view-transition-group", + "href": "https://www.w3.org/TR/css-view-transitions-2/#propdef-view-transition-group", + "value": "normal | contain | nearest | ", + "initial": "normal", + "appliesTo": "all elements", + "inherited": "no", + "percentages": "n/a", + "computedValue": "as specified", + "canonicalOrder": "per grammar", + "animationType": "discrete", + "values": [ + { + "name": "normal", + "prose": "containingGroupName.", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-normal", + "type": "value", + "value": "normal" + }, + { + "name": "contain", + "prose": "containingGroupName.", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-contain", + "type": "value", + "value": "contain" + }, + { + "name": "nearest", + "prose": "The document-scoped view transition name of the element’s nearest flat tree ancestor which participates in the transition.", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-nearest", + "type": "value", + "value": "nearest" + }, + { + "name": "", + "prose": "group if the element has a flat tree ancestor whose document-scoped view transition name is group and participates in transition; Otherwise containingGroupName.", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-custom-ident", + "type": "value", + "value": "" + } + ], + "styleDeclaration": [ + "view-transition-group", + "viewTransitionGroup" + ] } ], "atrules": [ diff --git a/tr/dfns/css-view-transitions-2.json b/tr/dfns/css-view-transitions-2.json index 34f6ce5da7e7..565ec822f2ef 100644 --- a/tr/dfns/css-view-transitions-2.json +++ b/tr/dfns/css-view-transitions-2.json @@ -107,88 +107,6 @@ }, "definedIn": "dt" }, - { - "id": "dom-cssrule-view_transition_rule", - "href": "https://www.w3.org/TR/css-view-transitions-2/#dom-cssrule-view_transition_rule", - "linkingText": [ - "VIEW_TRANSITION_RULE" - ], - "localLinkingText": [], - "type": "const", - "for": [ - "CSSRule" - ], - "access": "public", - "informative": false, - "heading": { - "id": "cssom", - "href": "https://www.w3.org/TR/css-view-transitions-2/#cssom", - "title": "Accessing the @view-transition rule using CSSOM", - "number": "2.3.3" - }, - "definedIn": "pre" - }, - { - "id": "enumdef-viewtransitionnavigation", - "href": "https://www.w3.org/TR/css-view-transitions-2/#enumdef-viewtransitionnavigation", - "linkingText": [ - "ViewTransitionNavigation" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "cssom", - "href": "https://www.w3.org/TR/css-view-transitions-2/#cssom", - "title": "Accessing the @view-transition rule using CSSOM", - "number": "2.3.3" - }, - "definedIn": "pre" - }, - { - "id": "dom-viewtransitionnavigation-auto", - "href": "https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransitionnavigation-auto", - "linkingText": [ - "\"auto\"" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ViewTransitionNavigation" - ], - "access": "public", - "informative": false, - "heading": { - "id": "cssom", - "href": "https://www.w3.org/TR/css-view-transitions-2/#cssom", - "title": "Accessing the @view-transition rule using CSSOM", - "number": "2.3.3" - }, - "definedIn": "pre" - }, - { - "id": "dom-viewtransitionnavigation-none", - "href": "https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransitionnavigation-none", - "linkingText": [ - "\"none\"" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ViewTransitionNavigation" - ], - "access": "public", - "informative": false, - "heading": { - "id": "cssom", - "href": "https://www.w3.org/TR/css-view-transitions-2/#cssom", - "title": "Accessing the @view-transition rule using CSSOM", - "number": "2.3.3" - }, - "definedIn": "pre" - }, { "id": "cssviewtransitionrule", "href": "https://www.w3.org/TR/css-view-transitions-2/#cssviewtransitionrule", @@ -574,6 +492,65 @@ }, "definedIn": "prose" }, + { + "id": "view-transition-name-auto", + "href": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-name-auto", + "linkingText": [ + "auto" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "view-transition-name" + ], + "access": "public", + "informative": false, + "heading": { + "id": "additions-to-vt-name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#additions-to-vt-name", + "title": "Additions to view-transition-name", + "number": "6.3" + }, + "definedIn": "prose" + }, + { + "id": "propdef-view-transition-group", + "href": "https://www.w3.org/TR/css-view-transitions-2/#propdef-view-transition-group", + "linkingText": [ + "view-transition-group" + ], + "localLinkingText": [], + "type": "property", + "for": [], + "access": "public", + "informative": false, + "heading": { + "id": "view-transition-group-prop", + "href": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-group-prop", + "title": "The view-transition-group property", + "number": "7.3" + }, + "definedIn": "table" + }, + { + "id": "layered-capture-properties", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-properties", + "linkingText": [ + "layered capture properties" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "layered-captured-css-properties", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-captured-css-properties", + "title": "Table of captured CSS properties {#layered-captured-css-properties}", + "number": "8.2" + }, + "definedIn": "prose" + }, { "id": "document-inbound-view-transition-params", "href": "https://www.w3.org/TR/css-view-transitions-2/#document-inbound-view-transition-params", @@ -591,7 +568,7 @@ "id": "cross-doc-data-structure-document", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-document", "title": "Additions to Document", - "number": "6.1.1" + "number": "9.1.1" }, "definedIn": "dt" }, @@ -612,7 +589,7 @@ "id": "cross-doc-data-structure-document", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-document", "title": "Additions to Document", - "number": "6.1.1" + "number": "9.1.1" }, "definedIn": "dt" }, @@ -633,7 +610,7 @@ "id": "cross-doc-data-structure-vt", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-vt", "title": "Additions to ViewTransition", - "number": "6.1.2" + "number": "9.1.2" }, "definedIn": "dt" }, @@ -654,7 +631,7 @@ "id": "cross-doc-data-structure-vt", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-vt", "title": "Additions to ViewTransition", - "number": "6.1.2" + "number": "9.1.2" }, "definedIn": "dt" }, @@ -673,7 +650,7 @@ "id": "cross-doc-data-structure-serialization", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-serialization", "title": "Serializable view transition params", - "number": "6.1.3" + "number": "9.1.3" }, "definedIn": "prose" }, @@ -694,7 +671,7 @@ "id": "cross-doc-data-structure-serialization", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-serialization", "title": "Serializable view transition params", - "number": "6.1.3" + "number": "9.1.3" }, "definedIn": "dt" }, @@ -715,7 +692,7 @@ "id": "cross-doc-data-structure-serialization", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-serialization", "title": "Serializable view transition params", - "number": "6.1.3" + "number": "9.1.3" }, "definedIn": "dt" }, @@ -736,7 +713,194 @@ "id": "capture-classes-data-structure", "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", "title": "Captured elements extension", - "number": "6.1.4" + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "captured-element-containing-group-name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#captured-element-containing-group-name", + "linkingText": [ + "containing group name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "captured element" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "captured-element-old-layered-capture-style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#captured-element-old-layered-capture-style", + "linkingText": [ + "old layered-capture style" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "captured element" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "captured-element-transform-from-snapshot-containing-block", + "href": "https://www.w3.org/TR/css-view-transitions-2/#captured-element-transform-from-snapshot-containing-block", + "linkingText": [ + "transform from snapshot containing block" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "captured element" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "captured-element-old-box-properties", + "href": "https://www.w3.org/TR/css-view-transitions-2/#captured-element-old-box-properties", + "linkingText": [ + "old box properties" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "captured element" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "captured-element-new-box-properties", + "href": "https://www.w3.org/TR/css-view-transitions-2/#captured-element-new-box-properties", + "linkingText": [ + "new box properties" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "captured element" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "layered-box-properties", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties", + "linkingText": [ + "layered box properties" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "prose" + }, + { + "id": "layered-box-properties-box-sizing", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties-box-sizing", + "linkingText": [ + "box sizing" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "layered box properties" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "layered-box-properties-content-box", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties-content-box", + "linkingText": [ + "content box" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "layered box properties" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" + }, + "definedIn": "dt" + }, + { + "id": "layered-box-properties-padding-box", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties-padding-box", + "linkingText": [ + "padding box" + ], + "localLinkingText": [], + "type": "dfn", + "for": [ + "layered box properties" + ], + "access": "private", + "informative": false, + "heading": { + "id": "capture-classes-data-structure", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", + "title": "Captured elements extension", + "number": "9.2.1" }, "definedIn": "dt" }, @@ -755,7 +919,7 @@ "id": "vt-rule-algo", "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-rule-algo", "title": "Resolving the @view-transition rule", - "number": "6.2" + "number": "9.3" }, "definedIn": "prose" }, @@ -774,7 +938,7 @@ "id": "check-eligibility", "href": "https://www.w3.org/TR/css-view-transitions-2/#check-eligibility", "title": "Check eligibility for outbound cross-document view transition", - "number": "6.3.1" + "number": "9.4.1" }, "definedIn": "prose" }, @@ -793,7 +957,7 @@ "id": "setup-outbound-transition", "href": "https://www.w3.org/TR/css-view-transitions-2/#setup-outbound-transition", "title": "Setup the outbound transition when ready to swap pages", - "number": "6.3.2" + "number": "9.4.2" }, "definedIn": "prose" }, @@ -812,7 +976,7 @@ "id": "update-opt-in", "href": "https://www.w3.org/TR/css-view-transitions-2/#update-opt-in", "title": "Update the opt-in flag to reflect the current state", - "number": "6.3.3" + "number": "9.4.3" }, "definedIn": "prose" }, @@ -831,7 +995,203 @@ "id": "access-view-transition-in-new-doc", "href": "https://www.w3.org/TR/css-view-transitions-2/#access-view-transition-in-new-doc", "title": "Activating the view transition in the new Document", - "number": "6.4" + "number": "9.5" + }, + "definedIn": "prose" + }, + { + "id": "document-scoped-view-transition-group", + "href": "https://www.w3.org/TR/css-view-transitions-2/#document-scoped-view-transition-group", + "linkingText": [ + "document-scoped view transition group" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "vt-group-value-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-value-resolve", + "title": "Resolving the view-transition-group value", + "number": "9.7.1" + }, + "definedIn": "prose" + }, + { + "id": "nearest-containing-group-name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#nearest-containing-group-name", + "linkingText": [ + "nearest containing group name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "vt-containing-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-containing-group-name-resolve", + "title": "Resolving the containing group name", + "number": "9.7.2" + }, + "definedIn": "prose" + }, + { + "id": "used-group-name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#used-group-name", + "linkingText": [ + "used group name" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "vt-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-name-resolve", + "title": "Resolving the group name", + "number": "9.7.3" + }, + "definedIn": "prose" + }, + { + "id": "valdef-view-transition-group-normal", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-normal", + "linkingText": [ + "normal" + ], + "localLinkingText": [], + "type": "value", + "for": [ + "view-transition-group" + ], + "access": "public", + "informative": false, + "heading": { + "id": "vt-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-name-resolve", + "title": "Resolving the group name", + "number": "9.7.3" + }, + "definedIn": "dt" + }, + { + "id": "valdef-view-transition-group-contain", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-contain", + "linkingText": [ + "contain" + ], + "localLinkingText": [], + "type": "value", + "for": [ + "view-transition-group" + ], + "access": "public", + "informative": false, + "heading": { + "id": "vt-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-name-resolve", + "title": "Resolving the group name", + "number": "9.7.3" + }, + "definedIn": "dt" + }, + { + "id": "valdef-view-transition-group-nearest", + "href": "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-nearest", + "linkingText": [ + "nearest" + ], + "localLinkingText": [], + "type": "value", + "for": [ + "view-transition-group" + ], + "access": "public", + "informative": false, + "heading": { + "id": "vt-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-name-resolve", + "title": "Resolving the group name", + "number": "9.7.3" + }, + "definedIn": "dt" + }, + { + "id": "layered-capture-style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-style", + "linkingText": [ + "layered capture style" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "layered-capture-compute-style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-compute-style", + "title": "Compute the layered-capture style", + "number": "9.8.1" + }, + "definedIn": "prose" + }, + { + "id": "layered-capture-geometry", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-geometry", + "linkingText": [ + "layered capture geometry" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "layered-capture-compute-style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-compute-style", + "title": "Compute the layered-capture style", + "number": "9.8.1" + }, + "definedIn": "prose" + }, + { + "id": "default-group-size", + "href": "https://www.w3.org/TR/css-view-transitions-2/#default-group-size", + "linkingText": [ + "default group size" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "layered-capture-compute-style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-compute-style", + "title": "Compute the layered-capture style", + "number": "9.8.1" + }, + "definedIn": "prose" + }, + { + "id": "adjust-the-nested-group-transform", + "href": "https://www.w3.org/TR/css-view-transitions-2/#adjust-the-nested-group-transform", + "linkingText": [ + "adjust the nested group transform" + ], + "localLinkingText": [], + "type": "dfn", + "for": [], + "access": "private", + "informative": false, + "heading": { + "id": "vt-adjust-nested-group-transform", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-adjust-nested-group-transform", + "title": "Adjust the nested group transform", + "number": "9.8.5" }, "definedIn": "prose" } diff --git a/tr/dfns/largest-contentful-paint.json b/tr/dfns/largest-contentful-paint.json index 1d6a42ee150f..742129315856 100644 --- a/tr/dfns/largest-contentful-paint.json +++ b/tr/dfns/largest-contentful-paint.json @@ -103,27 +103,6 @@ }, "definedIn": "pre" }, - { - "id": "dom-largestcontentfulpaint-rendertime", - "href": "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-rendertime", - "linkingText": [ - "renderTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "LargestContentfulPaint" - ], - "access": "public", - "informative": false, - "heading": { - "id": "sec-largest-contentful-paint-interface", - "href": "https://www.w3.org/TR/largest-contentful-paint/#sec-largest-contentful-paint-interface", - "title": "LargestContentfulPaint interface", - "number": "3.1" - }, - "definedIn": "pre" - }, { "id": "dom-largestcontentfulpaint-loadtime", "href": "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-loadtime", @@ -250,27 +229,6 @@ }, "definedIn": "pre" }, - { - "id": "largestcontentfulpaint-rendertime", - "href": "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-rendertime", - "linkingText": [ - "renderTime" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "LargestContentfulPaint" - ], - "access": "private", - "informative": false, - "heading": { - "id": "sec-largest-contentful-paint-interface", - "href": "https://www.w3.org/TR/largest-contentful-paint/#sec-largest-contentful-paint-interface", - "title": "LargestContentfulPaint interface", - "number": "3.1" - }, - "definedIn": "prose" - }, { "id": "largestcontentfulpaint-size", "href": "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-size", diff --git a/tr/headings/css-view-transitions-2.json b/tr/headings/css-view-transitions-2.json index 334b63e4b88a..975020e00147 100644 --- a/tr/headings/css-view-transitions-2.json +++ b/tr/headings/css-view-transitions-2.json @@ -224,110 +224,306 @@ "title": "Extending document.startViewTransition()", "number": "5" }, + { + "id": "auto-vt-name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#auto-vt-name", + "level": 2, + "title": "Determining view-transition-name automatically", + "number": "6" + }, + { + "id": "auto-vt-name-overview", + "href": "https://www.w3.org/TR/css-view-transitions-2/#auto-vt-name-overview", + "level": 3, + "title": "Overview", + "number": "6.1" + }, + { + "id": "auto-vt-name-example", + "href": "https://www.w3.org/TR/css-view-transitions-2/#auto-vt-name-example", + "level": 3, + "title": "Examples", + "number": "6.2" + }, + { + "id": "additions-to-vt-name", + "href": "https://www.w3.org/TR/css-view-transitions-2/#additions-to-vt-name", + "level": 3, + "title": "Additions to view-transition-name", + "number": "6.3" + }, + { + "id": "nested-view-transitions", + "href": "https://www.w3.org/TR/css-view-transitions-2/#nested-view-transitions", + "level": 2, + "title": "Nested view-transitions", + "number": "7" + }, + { + "id": "nested-overview", + "href": "https://www.w3.org/TR/css-view-transitions-2/#nested-overview", + "level": 3, + "title": "Overview", + "number": "7.1" + }, + { + "id": "nested-vt-example", + "href": "https://www.w3.org/TR/css-view-transitions-2/#nested-vt-example", + "level": 3, + "title": "Examples", + "number": "7.2" + }, + { + "id": "view-transition-group-prop", + "href": "https://www.w3.org/TR/css-view-transitions-2/#view-transition-group-prop", + "level": 3, + "title": "The view-transition-group property", + "number": "7.3" + }, + { + "id": "layered-capture", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture", + "level": 2, + "title": "Layered capture", + "number": "8" + }, + { + "id": "layered-capture-overview", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-overview", + "level": 3, + "title": "Overview", + "number": "8.1" + }, + { + "id": "layered-captured-css-properties", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-captured-css-properties", + "level": 3, + "title": "Table of captured CSS properties {#layered-captured-css-properties}", + "number": "8.2" + }, { "id": "algorithms", "href": "https://www.w3.org/TR/css-view-transitions-2/#algorithms", "level": 2, "title": "Algorithms", - "number": "6" + "number": "9" }, { "id": "cross-doc-data-structures", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structures", "level": 3, "title": "Data structures", - "number": "6.1" + "number": "9.1" }, { "id": "cross-doc-data-structure-document", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-document", "level": 4, "title": "Additions to Document", - "number": "6.1.1" + "number": "9.1.1" }, { "id": "cross-doc-data-structure-vt", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-vt", "level": 4, "title": "Additions to ViewTransition", - "number": "6.1.2" + "number": "9.1.2" }, { "id": "cross-doc-data-structure-serialization", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-serialization", "level": 4, "title": "Serializable view transition params", - "number": "6.1.3" + "number": "9.1.3" + }, + { + "id": "page-visibility-change-steps-additions", + "href": "https://www.w3.org/TR/css-view-transitions-2/#page-visibility-change-steps-additions", + "level": 3, + "title": "Additions to the view transition page-visibility change steps", + "number": "9.2" }, { "id": "capture-classes-data-structure", "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", "level": 4, "title": "Captured elements extension", - "number": "6.1.4" + "number": "9.2.1" }, { "id": "vt-rule-algo", "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-rule-algo", "level": 3, "title": "Resolving the @view-transition rule", - "number": "6.2" + "number": "9.3" }, { "id": "setup-old-document-vt", "href": "https://www.w3.org/TR/css-view-transitions-2/#setup-old-document-vt", "level": 3, "title": "Setting up the view transition in the old Document", - "number": "6.3" + "number": "9.4" }, { "id": "check-eligibility", "href": "https://www.w3.org/TR/css-view-transitions-2/#check-eligibility", "level": 4, "title": "Check eligibility for outbound cross-document view transition", - "number": "6.3.1" + "number": "9.4.1" }, { "id": "setup-outbound-transition", "href": "https://www.w3.org/TR/css-view-transitions-2/#setup-outbound-transition", "level": 4, "title": "Setup the outbound transition when ready to swap pages", - "number": "6.3.2" + "number": "9.4.2" }, { "id": "update-opt-in", "href": "https://www.w3.org/TR/css-view-transitions-2/#update-opt-in", "level": 4, "title": "Update the opt-in flag to reflect the current state", - "number": "6.3.3" + "number": "9.4.3" }, { "id": "proceed-if-skipped", "href": "https://www.w3.org/TR/css-view-transitions-2/#proceed-if-skipped", "level": 4, "title": "Proceed with navigation if view transition is skipped", - "number": "6.3.4" + "number": "9.4.4" }, { "id": "cross-doc-after-capture", "href": "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-after-capture", "level": 4, "title": "Proceed with cross-document view transition after capturing the old state", - "number": "6.3.5" + "number": "9.4.5" }, { "id": "access-view-transition-in-new-doc", "href": "https://www.w3.org/TR/css-view-transitions-2/#access-view-transition-in-new-doc", "level": 3, "title": "Activating the view transition in the new Document", - "number": "6.4" + "number": "9.5" }, { "id": "vt-class-algorithms", "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-class-algorithms", "level": 3, "title": "Capturing the view-transition-class", - "number": "6.5" + "number": "9.6" + }, + { + "id": "vt-group-algorithm", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-algorithm", + "level": 3, + "title": "Capturing and applying view-transition-group", + "number": "9.7" + }, + { + "id": "vt-group-value-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-value-resolve", + "level": 4, + "title": "Resolving the view-transition-group value", + "number": "9.7.1" + }, + { + "id": "vt-containing-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-containing-group-name-resolve", + "level": 4, + "title": "Resolving the containing group name", + "number": "9.7.2" + }, + { + "id": "vt-group-name-resolve", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-name-resolve", + "level": 4, + "title": "Resolving the group name", + "number": "9.7.3" + }, + { + "id": "vt-group-capture-old", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-capture-old", + "level": 4, + "title": "Compute the old view-transition-group", + "number": "9.7.4" + }, + { + "id": "vt-group-capture-new", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-capture-new", + "level": 4, + "title": "Compute the new view-transition-group", + "number": "9.7.5" + }, + { + "id": "vt-group-reparent", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-reparent", + "level": 4, + "title": "Reparent a ::view-transition-group() to its specified containing group", + "number": "9.7.6" + }, + { + "id": "vt-group-transform-adjust", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-group-transform-adjust", + "level": 4, + "title": "Adjust the group’s transform to be relative to its containing ::view-transition-group()", + "number": "9.7.7" + }, + { + "id": "layered-capture-algorithms", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-algorithms", + "level": 3, + "title": "Capturing layered CSS properties", + "number": "9.8" + }, + { + "id": "layered-capture-compute-style", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-compute-style", + "level": 4, + "title": "Compute the layered-capture style", + "number": "9.8.1" + }, + { + "id": "capture-new-layered-props-algorithm", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-new-layered-props-algorithm", + "level": 4, + "title": "Capture the old layered properties", + "number": "9.8.2" + }, + { + "id": "capture-image-size-algorithm", + "href": "https://www.w3.org/TR/css-view-transitions-2/#capture-image-size-algorithm", + "level": 4, + "title": "Adjustment to image capture size", + "number": "9.8.3" + }, + { + "id": "layered-capture-rendering", + "href": "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-rendering", + "level": 4, + "title": "Render the snapshot with layered capture", + "number": "9.8.4" + }, + { + "id": "vt-adjust-nested-group-transform", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-adjust-nested-group-transform", + "level": 4, + "title": "Adjust the nested group transform", + "number": "9.8.5" + }, + { + "id": "vt-layered-capture-apply-keyframes", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-layered-capture-apply-keyframes", + "level": 4, + "title": "Apply the old layered-capture properties to ::view-transition-group() keyframes", + "number": "9.8.6" + }, + { + "id": "vt-layered-capture-apply-new-state", + "href": "https://www.w3.org/TR/css-view-transitions-2/#vt-layered-capture-apply-new-state", + "level": 4, + "title": "Apply the new layered-capture properties to ::view-transition-group()", + "number": "9.8.7" }, { "id": "priv", @@ -341,6 +537,19 @@ "level": 2, "title": "Security Considerations" }, + { + "id": "changes", + "href": "https://www.w3.org/TR/css-view-transitions-2/#changes", + "level": 2, + "title": "Changes", + "number": "A" + }, + { + "id": "changes-since-2024-05-16", + "href": "https://www.w3.org/TR/css-view-transitions-2/#changes-since-2024-05-16", + "level": 3, + "title": "Changes from 2024-05-16 Working Draft" + }, { "id": "w3c-conformance", "href": "https://www.w3.org/TR/css-view-transitions-2/#w3c-conformance", diff --git a/tr/headings/sparql12-federated-query.json b/tr/headings/sparql12-federated-query.json index 1a6b26f41adf..3fd4b2bd1c72 100644 --- a/tr/headings/sparql12-federated-query.json +++ b/tr/headings/sparql12-federated-query.json @@ -10,178 +10,178 @@ "level": 1, "title": "SPARQL 1.2 Federated Query" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-federated-query/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-federated-query/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-federated-query/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "introduction", "href": "https://www.w3.org/TR/sparql12-federated-query/#introduction", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "docConventions", "href": "https://www.w3.org/TR/sparql12-federated-query/#docConventions", "level": 3, "title": "Document Conventions", - "number": "2.1" + "number": "1.1" }, { "id": "docNamespaces", "href": "https://www.w3.org/TR/sparql12-federated-query/#docNamespaces", "level": 4, "title": "Namespaces", - "number": "2.1.1" + "number": "1.1.1" }, { "id": "docResultDesc", "href": "https://www.w3.org/TR/sparql12-federated-query/#docResultDesc", "level": 4, "title": "Result Descriptions", - "number": "2.1.2" + "number": "1.1.2" }, { "id": "docTerminology", "href": "https://www.w3.org/TR/sparql12-federated-query/#docTerminology", "level": 4, "title": "Terminology", - "number": "2.1.3" + "number": "1.1.3" }, { "id": "service", "href": "https://www.w3.org/TR/sparql12-federated-query/#service", "level": 2, "title": "SPARQL 1.1 Federated Query Extension", - "number": "3" + "number": "2" }, { "id": "simpleService", "href": "https://www.w3.org/TR/sparql12-federated-query/#simpleService", "level": 3, "title": "Simple query to a remote SPARQL endpoint", - "number": "3.1" + "number": "2.1" }, { "id": "optionalTwoServices", "href": "https://www.w3.org/TR/sparql12-federated-query/#optionalTwoServices", "level": 3, "title": "SPARQL query with OPTIONAL to two remote SPARQL endpoints", - "number": "3.2" + "number": "2.2" }, { "id": "serviceFailure", "href": "https://www.w3.org/TR/sparql12-federated-query/#serviceFailure", "level": 3, "title": "Service Execution Failure", - "number": "3.3" + "number": "2.3" }, { "id": "values", "href": "https://www.w3.org/TR/sparql12-federated-query/#values", "level": 3, "title": "Interplay of SERVICE and VALUES (Informative)", - "number": "3.4" + "number": "2.4" }, { "id": "fedSemantics", "href": "https://www.w3.org/TR/sparql12-federated-query/#fedSemantics", "level": 2, "title": "SPARQL 1.1 Simple Federation Extension: semantics", - "number": "4" + "number": "3" }, { "id": "defn_service", "href": "https://www.w3.org/TR/sparql12-federated-query/#defn_service", "level": 3, "title": "Translation to the SPARQL Algebra", - "number": "4.1" + "number": "3.1" }, { "id": "algebra_service", "href": "https://www.w3.org/TR/sparql12-federated-query/#algebra_service", "level": 3, "title": "SPARQL 1.1 Simple Federation Extension Algebra", - "number": "4.2" + "number": "3.2" }, { "id": "algebra_service_examples", "href": "https://www.w3.org/TR/sparql12-federated-query/#algebra_service_examples", "level": 4, "title": "SERVICE Examples", - "number": "4.2.1" + "number": "3.2.1" }, { "id": "variableService", "href": "https://www.w3.org/TR/sparql12-federated-query/#variableService", "level": 2, "title": "SERVICE Variables (Informative)", - "number": "5" + "number": "4" }, { "id": "conformance", "href": "https://www.w3.org/TR/sparql12-federated-query/#conformance", "level": 2, "title": "Conformance", - "number": "6" + "number": "5" }, { "id": "conformance-0", "href": "https://www.w3.org/TR/sparql12-federated-query/#conformance-0", "level": 3, "title": "Conformance", - "number": "6.1" + "number": "5.1" }, { "id": "security-original", "href": "https://www.w3.org/TR/sparql12-federated-query/#security-original", "level": 2, "title": "Security Considerations", - "number": "7" + "number": "6" }, { "id": "sec-bibliography", "href": "https://www.w3.org/TR/sparql12-federated-query/#sec-bibliography", "level": 2, "title": "References", - "number": "8" + "number": "7" }, { "id": "sec-normative-refs", "href": "https://www.w3.org/TR/sparql12-federated-query/#sec-normative-refs", "level": 3, "title": "Normative References", - "number": "8.1" + "number": "7.1" }, { "id": "sec-non-normative-refs", "href": "https://www.w3.org/TR/sparql12-federated-query/#sec-non-normative-refs", "level": 3, "title": "Other References", - "number": "8.2" + "number": "7.2" }, { "id": "sec-acknowledgements", "href": "https://www.w3.org/TR/sparql12-federated-query/#sec-acknowledgements", "level": 2, "title": "Acknowledgements", - "number": "9" + "number": "8" }, { "id": "sec-cvsLog", "href": "https://www.w3.org/TR/sparql12-federated-query/#sec-cvsLog", "level": 2, - "title": "10. CVS History (Last Call and after)" + "title": "CVS History (Last Call and after)", + "number": "9" }, { "id": "changes-1-1", @@ -245,6 +245,13 @@ "level": 3, "title": "Normative references", "number": "F.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/sparql12-federated-query/#informative-references", + "level": 3, + "title": "Informative references", + "number": "F.2" } ] } \ No newline at end of file diff --git a/tr/headings/sparql12-graph-store-protocol.json b/tr/headings/sparql12-graph-store-protocol.json index 7e42a101ddd8..ede242b26aa7 100644 --- a/tr/headings/sparql12-graph-store-protocol.json +++ b/tr/headings/sparql12-graph-store-protocol.json @@ -10,195 +10,195 @@ "level": 1, "title": "SPARQL 1.2 Graph Store Protocol" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "introduction", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#introduction", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "terminology", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#terminology", "level": 2, "title": "Terminology", - "number": "3" + "number": "2" }, { "id": "protocol-model", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#protocol-model", "level": 2, "title": "Protocol Model", - "number": "4" + "number": "3" }, { "id": "graph-identification", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#graph-identification", "level": 2, "title": "Graph Identification", - "number": "5" + "number": "4" }, { "id": "direct-graph-identification", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#direct-graph-identification", "level": 3, "title": "Direct Graph Identification", - "number": "5.1" + "number": "4.1" }, { "id": "indirect-graph-identification", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#indirect-graph-identification", "level": 3, "title": "Indirect Graph Identification", - "number": "5.2" + "number": "4.2" }, { "id": "graph-management", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#graph-management", "level": 2, "title": "Graph Management Operations", - "number": "6" + "number": "5" }, { "id": "status-codes", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#status-codes", "level": 3, "title": "Status Codes", - "number": "6.1" + "number": "5.1" }, { "id": "http-get", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-get", "level": 3, "title": "HTTP GET", - "number": "6.2" + "number": "5.2" }, { "id": "httpRange-14", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#httpRange-14", "level": 4, "title": "Ambiguity Regarding the Range of HTTP GET (Informative)", - "number": "6.2.1" + "number": "5.2.1" }, { "id": "http-put", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-put", "level": 3, "title": "HTTP PUT", - "number": "6.3" + "number": "5.3" }, { "id": "http-delete", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-delete", "level": 3, "title": "HTTP DELETE", - "number": "6.4" + "number": "5.4" }, { "id": "http-post", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-post", "level": 3, "title": "HTTP POST", - "number": "6.5" + "number": "5.5" }, { "id": "http-head", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-head", "level": 3, "title": "HTTP HEAD", - "number": "6.6" + "number": "5.6" }, { "id": "http-patch", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-patch", "level": 3, "title": "HTTP PATCH (Informative)", - "number": "6.7" + "number": "5.7" }, { "id": "security-original", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#security-original", "level": 2, "title": "Security Considerations", - "number": "7" + "number": "6" }, { "id": "conformance", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#conformance", "level": 2, "title": "Conformance", - "number": "8" + "number": "7" }, { "id": "conformance-0", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#conformance-0", "level": 3, "title": "Conformance", - "number": "8.1" + "number": "7.1" }, { "id": "changes", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#changes", "level": 2, "title": "Changes", - "number": "9" + "number": "8" }, { "id": "sec-bibliography", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#sec-bibliography", "level": 2, - "title": "10. References" + "title": "References", + "number": "9" }, { "id": "section-Normative-References", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#section-Normative-References", "level": 3, "title": "Normative References", - "number": "10.1" + "number": "9.1" }, { "id": "section-informative-references", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#section-informative-references", "level": 3, "title": "Informative References", - "number": "10.2" + "number": "9.2" }, { "id": "ackacknowledgements", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#ackacknowledgements", "level": 2, - "title": "11. Acknowledgements" + "title": "10. Acknowledgements" }, { "id": "privacy", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#privacy", "level": 2, - "title": "12. Privacy Considerations" + "title": "11. Privacy Considerations" }, { "id": "security", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#security", "level": 2, - "title": "13. Security Considerations" + "title": "12. Security Considerations" }, { "id": "internationalization", "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#internationalization", "level": 2, - "title": "14. Internationalization Considerations" + "title": "13. Internationalization Considerations" }, { "id": "changes-from-sparql11", @@ -241,6 +241,13 @@ "level": 3, "title": "Normative references", "number": "C.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/sparql12-graph-store-protocol/#informative-references", + "level": 3, + "title": "Informative references", + "number": "C.2" } ] } \ No newline at end of file diff --git a/tr/headings/sparql12-protocol.json b/tr/headings/sparql12-protocol.json index 066587636151..faf09ec59b16 100644 --- a/tr/headings/sparql12-protocol.json +++ b/tr/headings/sparql12-protocol.json @@ -10,340 +10,339 @@ "level": 1, "title": "SPARQL 1.2 Protocol" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-protocol/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-protocol/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-protocol/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "intro", "href": "https://www.w3.org/TR/sparql12-protocol/#intro", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "conventions", "href": "https://www.w3.org/TR/sparql12-protocol/#conventions", "level": 3, "title": "Document Conventions", - "number": "2.1" + "number": "1.1" }, { "id": "terminology", "href": "https://www.w3.org/TR/sparql12-protocol/#terminology", "level": 3, "title": "Terminology", - "number": "2.2" + "number": "1.2" }, { "id": "protocol", "href": "https://www.w3.org/TR/sparql12-protocol/#protocol", "level": 2, "title": "SPARQL Protocol Operations", - "number": "3" + "number": "2" }, { "id": "query-operation", "href": "https://www.w3.org/TR/sparql12-protocol/#query-operation", "level": 3, "title": "Query Operation", - "number": "3.1" + "number": "2.1" }, { "id": "query-via-get", "href": "https://www.w3.org/TR/sparql12-protocol/#query-via-get", "level": 4, "title": "query via GET", - "number": "3.1.1" + "number": "2.1.1" }, { "id": "query-via-post-urlencoded", "href": "https://www.w3.org/TR/sparql12-protocol/#query-via-post-urlencoded", "level": 4, "title": "query via POST with URL-encoded parameters", - "number": "3.1.2" + "number": "2.1.2" }, { "id": "query-via-post-direct", "href": "https://www.w3.org/TR/sparql12-protocol/#query-via-post-direct", "level": 4, "title": "query via POST directly", - "number": "3.1.3" + "number": "2.1.3" }, { "id": "dataset", "href": "https://www.w3.org/TR/sparql12-protocol/#dataset", "level": 4, "title": "Specifying an RDF Dataset", - "number": "3.1.4" + "number": "2.1.4" }, { "id": "conneg", "href": "https://www.w3.org/TR/sparql12-protocol/#conneg", "level": 4, "title": "Accepted Response Formats", - "number": "3.1.5" + "number": "2.1.5" }, { "id": "query-success", "href": "https://www.w3.org/TR/sparql12-protocol/#query-success", "level": 4, "title": "Success Responses", - "number": "3.1.6" + "number": "2.1.6" }, { "id": "query-failure", "href": "https://www.w3.org/TR/sparql12-protocol/#query-failure", "level": 4, "title": "Failure Responses", - "number": "3.1.7" + "number": "2.1.7" }, { "id": "update-operation", "href": "https://www.w3.org/TR/sparql12-protocol/#update-operation", "level": 3, "title": "Update Operation", - "number": "3.2" + "number": "2.2" }, { "id": "update-via-post-urlencoded", "href": "https://www.w3.org/TR/sparql12-protocol/#update-via-post-urlencoded", "level": 4, "title": "update via POST with URL-encoded parameters", - "number": "3.2.1" + "number": "2.2.1" }, { "id": "update-via-post-direct", "href": "https://www.w3.org/TR/sparql12-protocol/#update-via-post-direct", "level": 4, "title": "update via POST directly", - "number": "3.2.2" + "number": "2.2.2" }, { "id": "update-dataset", "href": "https://www.w3.org/TR/sparql12-protocol/#update-dataset", "level": 4, "title": "Specifying an RDF Dataset", - "number": "3.2.3" + "number": "2.2.3" }, { "id": "update-success", "href": "https://www.w3.org/TR/sparql12-protocol/#update-success", "level": 4, "title": "Success Responses", - "number": "3.2.4" + "number": "2.2.4" }, { "id": "update-failure", "href": "https://www.w3.org/TR/sparql12-protocol/#update-failure", "level": 4, "title": "Failure Responses", - "number": "3.2.5" + "number": "2.2.5" }, { "id": "base-iri", "href": "https://www.w3.org/TR/sparql12-protocol/#base-iri", "level": 3, "title": "Determining the Base IRI", - "number": "3.3" + "number": "2.3" }, { "id": "examples", "href": "https://www.w3.org/TR/sparql12-protocol/#examples", "level": 2, "title": "Example SPARQL Protocol Requests (informative)", - "number": "4" + "number": "3" }, { "id": "query-bindings-http-examples", "href": "https://www.w3.org/TR/sparql12-protocol/#query-bindings-http-examples", "level": 3, "title": "Examples of SPARQL Query", - "number": "4.1" + "number": "3.1" }, { "id": "select-svcsupplied", "href": "https://www.w3.org/TR/sparql12-protocol/#select-svcsupplied", "level": 4, "title": "SELECT with service-supplied RDF Dataset", - "number": "4.1.1" + "number": "3.1.1" }, { "id": "select-simple", "href": "https://www.w3.org/TR/sparql12-protocol/#select-simple", "level": 4, "title": "SELECT with simple RDF Dataset", - "number": "4.1.2" + "number": "3.1.2" }, { "id": "construct-simple", "href": "https://www.w3.org/TR/sparql12-protocol/#construct-simple", "level": 4, "title": "CONSTRUCT with simple RDF dataset and HTTP content negotiation", - "number": "4.1.3" + "number": "3.1.3" }, { "id": "ask-simple", "href": "https://www.w3.org/TR/sparql12-protocol/#ask-simple", "level": 4, "title": "ASK with simple RDF Dataset", - "number": "4.1.4" + "number": "3.1.4" }, { "id": "describe-simple", "href": "https://www.w3.org/TR/sparql12-protocol/#describe-simple", "level": 4, "title": "DESCRIBE with simple RDF Dataset", - "number": "4.1.5" + "number": "3.1.5" }, { "id": "select-complex", "href": "https://www.w3.org/TR/sparql12-protocol/#select-complex", "level": 4, "title": "SELECT with complex RDF Dataset", - "number": "4.1.6" + "number": "3.1.6" }, { "id": "select-queryonly", "href": "https://www.w3.org/TR/sparql12-protocol/#select-queryonly", "level": 4, "title": "SELECT with query-only RDF Dataset", - "number": "4.1.7" + "number": "3.1.7" }, { "id": "select-ambiguous", "href": "https://www.w3.org/TR/sparql12-protocol/#select-ambiguous", "level": 4, "title": "SELECT with ambiguous RDF Dataset", - "number": "4.1.8" + "number": "3.1.8" }, { "id": "select-malformed", "href": "https://www.w3.org/TR/sparql12-protocol/#select-malformed", "level": 4, "title": "SELECT with malformed query fault", - "number": "4.1.9" + "number": "3.1.9" }, { "id": "select-refused", "href": "https://www.w3.org/TR/sparql12-protocol/#select-refused", "level": 4, "title": "SELECT with query request refused fault", - "number": "4.1.10" + "number": "3.1.10" }, { "id": "select-longpost", "href": "https://www.w3.org/TR/sparql12-protocol/#select-longpost", "level": 4, "title": "Long SELECT query using POST with URL encoding", - "number": "4.1.11" + "number": "3.1.11" }, { "id": "select-longpost-direct", "href": "https://www.w3.org/TR/sparql12-protocol/#select-longpost-direct", "level": 4, "title": "Long SELECT query using direct POST", - "number": "4.1.12" + "number": "3.1.12" }, { "id": "select-kanji", "href": "https://www.w3.org/TR/sparql12-protocol/#select-kanji", "level": 4, "title": "SELECT with internationalization", - "number": "4.1.13" + "number": "3.1.13" }, { "id": "select-reified-triples", "href": "https://www.w3.org/TR/sparql12-protocol/#select-reified-triples", "level": 4, "title": "SELECT with reified triple patterns", - "number": "4.1.14" + "number": "3.1.14" }, { "id": "update-bindings-http-examples", "href": "https://www.w3.org/TR/sparql12-protocol/#update-bindings-http-examples", "level": 3, "title": "Examples of SPARQL Update", - "number": "4.2" + "number": "3.2" }, { "id": "update-urlencoded-simple", "href": "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-simple", "level": 4, "title": "UPDATE using URL-encoded parameters", - "number": "4.2.1" + "number": "3.2.1" }, { "id": "update-direct-simple", "href": "https://www.w3.org/TR/sparql12-protocol/#update-direct-simple", "level": 4, "title": "UPDATE using POST directly", - "number": "4.2.2" + "number": "3.2.2" }, { "id": "update-direct-simple-dataset", "href": "https://www.w3.org/TR/sparql12-protocol/#update-direct-simple-dataset", "level": 4, "title": "UPDATE specifying dataset and using POST directly", - "number": "4.2.3" + "number": "3.2.3" }, { "id": "update-urlencoded-multi", "href": "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-multi", "level": 4, "title": "Multi-operation UPDATE using URL-encoded parameters", - "number": "4.2.4" + "number": "3.2.4" }, { "id": "update-urlencoded-multi-dataset", "href": "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-multi-dataset", "level": 4, "title": "Multi-operation UPDATE specifying dataset and using URL-encoded parameters", - "number": "4.2.5" + "number": "3.2.5" }, { "id": "update-direct-multi-dataset", "href": "https://www.w3.org/TR/sparql12-protocol/#update-direct-multi-dataset", "level": 4, "title": "Multi-operation UPDATE specifying dataset and using POST directly", - "number": "4.2.6" + "number": "3.2.6" }, { "id": "policy", "href": "https://www.w3.org/TR/sparql12-protocol/#policy", "level": 2, "title": "Policy Considerations", - "number": "5" + "number": "4" }, { "id": "policy-security", "href": "https://www.w3.org/TR/sparql12-protocol/#policy-security", "level": 3, "title": "Security", - "number": "5.1" + "number": "4.1" }, { "id": "conformance", "href": "https://www.w3.org/TR/sparql12-protocol/#conformance", "level": 2, "title": "Conformance", - "number": "6" + "number": "5" }, { "id": "conformance-0", "href": "https://www.w3.org/TR/sparql12-protocol/#conformance-0", "level": 3, "title": "Conformance", - "number": "6.1" + "number": "5.1" }, { "id": "changes-1-1", @@ -414,6 +413,13 @@ "level": 3, "title": "Normative references", "number": "G.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/sparql12-protocol/#informative-references", + "level": 3, + "title": "Informative references", + "number": "G.2" } ] } \ No newline at end of file diff --git a/tr/headings/sparql12-results-csv-tsv.json b/tr/headings/sparql12-results-csv-tsv.json index 84e9f1cfcfd1..b0b6bc8db9e7 100644 --- a/tr/headings/sparql12-results-csv-tsv.json +++ b/tr/headings/sparql12-results-csv-tsv.json @@ -10,123 +10,122 @@ "level": 1, "title": "SPARQL 1.2 Query Results CSV and TSV Formats" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "introduction", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#introduction", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "example1", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#example1", "level": 3, "title": "Example", - "number": "2.1" + "number": "1.1" }, { "id": "general-comments", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#general-comments", "level": 2, "title": "Transmission issues using CSV and TSV Formats", - "number": "3" + "number": "2" }, { "id": "csv-table", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-table", "level": 2, "title": "CSV — Comma Separated values", - "number": "4" + "number": "3" }, { "id": "serializing-results", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#serializing-results", "level": 3, "title": "Serializing the Results Table", - "number": "4.1" + "number": "3.1" }, { "id": "csv-terms", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-terms", "level": 3, "title": "Serializing RDF Terms", - "number": "4.2" + "number": "3.2" }, { "id": "csv-example", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-example", "level": 3, "title": "Example of CSV-Serialized Results", - "number": "4.3" + "number": "3.3" }, { "id": "csv-example-triple-terms", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-example-triple-terms", "level": 3, "title": "Example of CSV-Serialized Results with Triple Terms", - "number": "4.4" + "number": "3.4" }, { "id": "tsv", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv", "level": 2, "title": "TSV — Tab Separated values", - "number": "5" + "number": "4" }, { "id": "tsv-table", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-table", "level": 3, "title": "Serializing the Results Table", - "number": "5.1" + "number": "4.1" }, { "id": "tsv-terms", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-terms", "level": 3, "title": "Serializing RDF Terms", - "number": "5.2" + "number": "4.2" }, { "id": "tsv-example", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-example", "level": 3, "title": "Example of TSV-Serialized Results", - "number": "5.3" + "number": "4.3" }, { "id": "tsv-example-triple-terms", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-example-triple-terms", "level": 3, "title": "Example of TSV-Serialized Results with Triple Terms", - "number": "5.4" + "number": "4.4" }, { "id": "conformance", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#conformance", "level": 2, "title": "Conformance", - "number": "6" + "number": "5" }, { "id": "conformance-0", "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#conformance-0", "level": 3, "title": "Conformance", - "number": "6.1" + "number": "5.1" }, { "id": "changes-1-1", @@ -190,6 +189,13 @@ "level": 3, "title": "Normative references", "number": "F.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/sparql12-results-csv-tsv/#informative-references", + "level": 3, + "title": "Informative references", + "number": "F.2" } ] } \ No newline at end of file diff --git a/tr/headings/sparql12-results-json.json b/tr/headings/sparql12-results-json.json index 85098d58d114..c49802089408 100644 --- a/tr/headings/sparql12-results-json.json +++ b/tr/headings/sparql12-results-json.json @@ -10,137 +10,136 @@ "level": 1, "title": "SPARQL 1.2 Query Results JSON Format" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-results-json/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-results-json/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-results-json/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "introduction", "href": "https://www.w3.org/TR/sparql12-results-json/#introduction", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "json-result-object", "href": "https://www.w3.org/TR/sparql12-results-json/#json-result-object", "level": 2, "title": "JSON Results Object", - "number": "3" + "number": "2" }, { "id": "select-results-form", "href": "https://www.w3.org/TR/sparql12-results-json/#select-results-form", "level": 2, "title": "Variable Binding Results", - "number": "4" + "number": "3" }, { "id": "select-head", "href": "https://www.w3.org/TR/sparql12-results-json/#select-head", "level": 3, "title": "\"head\"", - "number": "4.1" + "number": "3.1" }, { "id": "select-vars", "href": "https://www.w3.org/TR/sparql12-results-json/#select-vars", "level": 4, "title": "\"vars\"", - "number": "4.1.1" + "number": "3.1.1" }, { "id": "select-link", "href": "https://www.w3.org/TR/sparql12-results-json/#select-link", "level": 4, "title": "\"link\"", - "number": "4.1.2" + "number": "3.1.2" }, { "id": "select-results", "href": "https://www.w3.org/TR/sparql12-results-json/#select-results", "level": 3, "title": "\"results\"", - "number": "4.2" + "number": "3.2" }, { "id": "select-bindings", "href": "https://www.w3.org/TR/sparql12-results-json/#select-bindings", "level": 4, "title": "\"bindings\"", - "number": "4.2.1" + "number": "3.2.1" }, { "id": "select-encode-terms", "href": "https://www.w3.org/TR/sparql12-results-json/#select-encode-terms", "level": 4, "title": "Encoding RDF terms", - "number": "4.2.2" + "number": "3.2.2" }, { "id": "ask-result-form", "href": "https://www.w3.org/TR/sparql12-results-json/#ask-result-form", "level": 2, "title": "Boolean Results", - "number": "5" + "number": "4" }, { "id": "ask-head", "href": "https://www.w3.org/TR/sparql12-results-json/#ask-head", "level": 3, "title": "\"head\"", - "number": "5.1" + "number": "4.1" }, { "id": "ask-link", "href": "https://www.w3.org/TR/sparql12-results-json/#ask-link", "level": 4, "title": "\"link\"", - "number": "5.1.1" + "number": "4.1.1" }, { "id": "ask-boolean", "href": "https://www.w3.org/TR/sparql12-results-json/#ask-boolean", "level": 3, "title": "\"boolean\"", - "number": "5.2" + "number": "4.2" }, { "id": "example", "href": "https://www.w3.org/TR/sparql12-results-json/#example", "level": 2, "title": "Examples", - "number": "6" + "number": "5" }, { "id": "example-bindings", "href": "https://www.w3.org/TR/sparql12-results-json/#example-bindings", "level": 3, "title": "Variable Binding Results Examples", - "number": "6.1" + "number": "5.1" }, { "id": "example-bindings-triple-term", "href": "https://www.w3.org/TR/sparql12-results-json/#example-bindings-triple-term", "level": 3, "title": "Variable Binding Results Examples with Triple Terms", - "number": "6.2" + "number": "5.2" }, { "id": "media-type", "href": "https://www.w3.org/TR/sparql12-results-json/#media-type", "level": 2, "title": "Internet Media Type, File Extension and Macintosh File Type", - "number": "7" + "number": "6" }, { "id": "changes-1-1", diff --git a/tr/headings/sparql12-results-xml.json b/tr/headings/sparql12-results-xml.json index 33f0f792a6a8..d78906b272ed 100644 --- a/tr/headings/sparql12-results-xml.json +++ b/tr/headings/sparql12-results-xml.json @@ -10,102 +10,101 @@ "level": 1, "title": "SPARQL 1.2 Query Results XML Format" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-results-xml/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-results-xml/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-results-xml/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "introduction", "href": "https://www.w3.org/TR/sparql12-results-xml/#introduction", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "definition", "href": "https://www.w3.org/TR/sparql12-results-xml/#definition", "level": 2, "title": "Definition", - "number": "3" + "number": "2" }, { "id": "docElement", "href": "https://www.w3.org/TR/sparql12-results-xml/#docElement", "level": 3, "title": "Document Element", - "number": "3.1" + "number": "2.1" }, { "id": "head", "href": "https://www.w3.org/TR/sparql12-results-xml/#head", "level": 3, "title": "Header", - "number": "3.2" + "number": "2.2" }, { "id": "results", "href": "https://www.w3.org/TR/sparql12-results-xml/#results", "level": 3, "title": "Results", - "number": "3.3" + "number": "2.3" }, { "id": "vb-results", "href": "https://www.w3.org/TR/sparql12-results-xml/#vb-results", "level": 4, "title": "Variable Binding Results", - "number": "3.3.1" + "number": "2.3.1" }, { "id": "boolean-results", "href": "https://www.w3.org/TR/sparql12-results-xml/#boolean-results", "level": 4, "title": "Boolean Results", - "number": "3.3.2" + "number": "2.3.2" }, { "id": "examples", "href": "https://www.w3.org/TR/sparql12-results-xml/#examples", "level": 2, "title": "Examples", - "number": "4" + "number": "3" }, { "id": "vb-examples", "href": "https://www.w3.org/TR/sparql12-results-xml/#vb-examples", "level": 3, "title": "Variable Binding Results Examples", - "number": "4.1" + "number": "3.1" }, { "id": "vb-triple-terms-examples", "href": "https://www.w3.org/TR/sparql12-results-xml/#vb-triple-terms-examples", "level": 3, "title": "Variable Binding Results Examples with Triple Terms", - "number": "4.2" + "number": "3.2" }, { "id": "boolean-examples", "href": "https://www.w3.org/TR/sparql12-results-xml/#boolean-examples", "level": 3, "title": "Boolean Results Examples", - "number": "4.3" + "number": "3.3" }, { "id": "schemas", "href": "https://www.w3.org/TR/sparql12-results-xml/#schemas", "level": 2, "title": "XML Schemas", - "number": "5" + "number": "4" }, { "id": "changes-1-1", diff --git a/tr/headings/sparql12-service-description.json b/tr/headings/sparql12-service-description.json index 15450181cef6..5ba4b3c7a1ab 100644 --- a/tr/headings/sparql12-service-description.json +++ b/tr/headings/sparql12-service-description.json @@ -10,396 +10,395 @@ "level": 1, "title": "SPARQL 1.2 Service Description" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-service-description/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-service-description/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-service-description/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "intro", "href": "https://www.w3.org/TR/sparql12-service-description/#intro", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "terminology", "href": "https://www.w3.org/TR/sparql12-service-description/#terminology", "level": 3, "title": "Terminology", - "number": "2.1" + "number": "1.1" }, { "id": "accessing", "href": "https://www.w3.org/TR/sparql12-service-description/#accessing", "level": 2, "title": "Accessing a Service Description", - "number": "3" + "number": "2" }, { "id": "vocab", "href": "https://www.w3.org/TR/sparql12-service-description/#vocab", "level": 2, "title": "Service Description Vocabulary", - "number": "4" + "number": "3" }, { "id": "namespace", "href": "https://www.w3.org/TR/sparql12-service-description/#namespace", "level": 3, "title": "SPARQL Service Description Namespace and OWL Ontology", - "number": "4.1" + "number": "3.1" }, { "id": "properties", "href": "https://www.w3.org/TR/sparql12-service-description/#properties", "level": 3, "title": "Properties", - "number": "4.2" + "number": "3.2" }, { "id": "sd-endpoint", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-endpoint", "level": 4, "title": "sd:endpoint", - "number": "4.2.1" + "number": "3.2.1" }, { "id": "sd-feature", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-feature", "level": 4, "title": "sd:feature", - "number": "4.2.2" + "number": "3.2.2" }, { "id": "sd-defaultEntailmentRegime", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultEntailmentRegime", "level": 4, "title": "sd:defaultEntailmentRegime", - "number": "4.2.3" + "number": "3.2.3" }, { "id": "sd-entailmentRegime", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-entailmentRegime", "level": 4, "title": "sd:entailmentRegime", - "number": "4.2.4" + "number": "3.2.4" }, { "id": "sd-defaultSupportedEntailmentProfile", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultSupportedEntailmentProfile", "level": 4, "title": "sd:defaultSupportedEntailmentProfile", - "number": "4.2.5" + "number": "3.2.5" }, { "id": "sd-supportedEntailmentProfile", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-supportedEntailmentProfile", "level": 4, "title": "sd:supportedEntailmentProfile", - "number": "4.2.6" + "number": "3.2.6" }, { "id": "sd-extensionFunction", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-extensionFunction", "level": 4, "title": "sd:extensionFunction", - "number": "4.2.7" + "number": "3.2.7" }, { "id": "sd-extensionAggregate", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-extensionAggregate", "level": 4, "title": "sd:extensionAggregate", - "number": "4.2.8" + "number": "3.2.8" }, { "id": "sd-languageExtension", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-languageExtension", "level": 4, "title": "sd:languageExtension", - "number": "4.2.9" + "number": "3.2.9" }, { "id": "sd-supportedLanguage", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-supportedLanguage", "level": 4, "title": "sd:supportedLanguage", - "number": "4.2.10" + "number": "3.2.10" }, { "id": "sd-propertyFeature", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-propertyFeature", "level": 4, "title": "sd:propertyFeature", - "number": "4.2.11" + "number": "3.2.11" }, { "id": "sd-defaultDataset", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultDataset", "level": 4, "title": "sd:defaultDataset", - "number": "4.2.12" + "number": "3.2.12" }, { "id": "sd-availableGraphs", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-availableGraphs", "level": 4, "title": "sd:availableGraphs", - "number": "4.2.13" + "number": "3.2.13" }, { "id": "sd-resultFormat", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-resultFormat", "level": 4, "title": "sd:resultFormat", - "number": "4.2.14" + "number": "3.2.14" }, { "id": "sd-inputFormat", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-inputFormat", "level": 4, "title": "sd:inputFormat", - "number": "4.2.15" + "number": "3.2.15" }, { "id": "sd-defaultGraph", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-defaultGraph", "level": 4, "title": "sd:defaultGraph", - "number": "4.2.16" + "number": "3.2.16" }, { "id": "sd-namedGraph", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-namedGraph", "level": 4, "title": "sd:namedGraph", - "number": "4.2.17" + "number": "3.2.17" }, { "id": "sd-name", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-name", "level": 4, "title": "sd:name", - "number": "4.2.18" + "number": "3.2.18" }, { "id": "sd-graph", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-graph", "level": 4, "title": "sd:graph", - "number": "4.2.19" + "number": "3.2.19" }, { "id": "classes", "href": "https://www.w3.org/TR/sparql12-service-description/#classes", "level": 3, "title": "Classes", - "number": "4.3" + "number": "3.3" }, { "id": "sd-Service", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Service", "level": 4, "title": "sd:Service", - "number": "4.3.1" + "number": "3.3.1" }, { "id": "sd-Feature", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Feature", "level": 4, "title": "sd:Feature", - "number": "4.3.2" + "number": "3.3.2" }, { "id": "sd-Language", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Language", "level": 4, "title": "sd:Language", - "number": "4.3.3" + "number": "3.3.3" }, { "id": "sd-Function", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Function", "level": 4, "title": "sd:Function", - "number": "4.3.4" + "number": "3.3.4" }, { "id": "sd-Aggregate", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Aggregate", "level": 4, "title": "sd:Aggregate", - "number": "4.3.5" + "number": "3.3.5" }, { "id": "sd-EntailmentRegime", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-EntailmentRegime", "level": 4, "title": "sd:EntailmentRegime", - "number": "4.3.6" + "number": "3.3.6" }, { "id": "sd-EntailmentProfile", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-EntailmentProfile", "level": 4, "title": "sd:EntailmentProfile", - "number": "4.3.7" + "number": "3.3.7" }, { "id": "sd-GraphCollection", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-GraphCollection", "level": 4, "title": "sd:GraphCollection", - "number": "4.3.8" + "number": "3.3.8" }, { "id": "sd-Dataset", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Dataset", "level": 4, "title": "sd:Dataset", - "number": "4.3.9" + "number": "3.3.9" }, { "id": "sd-Graph", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-Graph", "level": 4, "title": "sd:Graph", - "number": "4.3.10" + "number": "3.3.10" }, { "id": "sd-NamedGraph", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-NamedGraph", "level": 4, "title": "sd:NamedGraph", - "number": "4.3.11" + "number": "3.3.11" }, { "id": "instances", "href": "https://www.w3.org/TR/sparql12-service-description/#instances", "level": 3, "title": "Instances", - "number": "4.4" + "number": "3.4" }, { "id": "lang-sparql10query", "href": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql10query", "level": 4, "title": "sd:SPARQL10Query", - "number": "4.4.1" + "number": "3.4.1" }, { "id": "lang-sparql11query", "href": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql11query", "level": 4, "title": "sd:SPARQL11Query", - "number": "4.4.2" + "number": "3.4.2" }, { "id": "lang-sparql11update", "href": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql11update", "level": 4, "title": "sd:SPARQL11Update", - "number": "4.4.3" + "number": "3.4.3" }, { "id": "lang-sparql12query", "href": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql12query", "level": 4, "title": "sd:SPARQL12Query", - "number": "4.4.4" + "number": "3.4.4" }, { "id": "lang-sparql12update", "href": "https://www.w3.org/TR/sparql12-service-description/#lang-sparql12update", "level": 4, "title": "sd:SPARQL12Update", - "number": "4.4.5" + "number": "3.4.5" }, { "id": "sd-dereferencesuris", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-dereferencesuris", "level": 4, "title": "sd:DereferencesURIs", - "number": "4.4.6" + "number": "3.4.6" }, { "id": "sd-uniondefaultgraph", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-uniondefaultgraph", "level": 4, "title": "sd:UnionDefaultGraph", - "number": "4.4.7" + "number": "3.4.7" }, { "id": "sd-requiresdataset", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-requiresdataset", "level": 4, "title": "sd:RequiresDataset", - "number": "4.4.8" + "number": "3.4.8" }, { "id": "sd-emptygraphs", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-emptygraphs", "level": 4, "title": "sd:EmptyGraphs", - "number": "4.4.9" + "number": "3.4.9" }, { "id": "sd-basicfederatedquery", "href": "https://www.w3.org/TR/sparql12-service-description/#sd-basicfederatedquery", "level": 4, "title": "sd:BasicFederatedQuery", - "number": "4.4.10" + "number": "3.4.10" }, { "id": "other-instances", "href": "https://www.w3.org/TR/sparql12-service-description/#other-instances", "level": 4, "title": "Other Instances", - "number": "4.4.11" + "number": "3.4.11" }, { "id": "example", "href": "https://www.w3.org/TR/sparql12-service-description/#example", "level": 2, "title": "Example (Informative)", - "number": "5" + "number": "4" }, { "id": "example-rdfxml", "href": "https://www.w3.org/TR/sparql12-service-description/#example-rdfxml", "level": 3, "title": "RDF/XML Service Description", - "number": "5.1" + "number": "4.1" }, { "id": "example-turtle", "href": "https://www.w3.org/TR/sparql12-service-description/#example-turtle", "level": 3, "title": "Turtle Service Description", - "number": "5.2" + "number": "4.2" }, { "id": "conformance", "href": "https://www.w3.org/TR/sparql12-service-description/#conformance", "level": 2, "title": "Conformance", - "number": "6" + "number": "5" }, { "id": "conformance-0", "href": "https://www.w3.org/TR/sparql12-service-description/#conformance-0", "level": 3, "title": "Conformance", - "number": "6.1" + "number": "5.1" }, { "id": "changes-1-1", @@ -463,6 +462,13 @@ "level": 3, "title": "Normative references", "number": "F.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/sparql12-service-description/#informative-references", + "level": 3, + "title": "Informative references", + "number": "F.2" } ] } \ No newline at end of file diff --git a/tr/headings/sparql12-update.json b/tr/headings/sparql12-update.json index 59d21e732169..1b8683f4f7ff 100644 --- a/tr/headings/sparql12-update.json +++ b/tr/headings/sparql12-update.json @@ -10,354 +10,353 @@ "level": 1, "title": "SPARQL 1.2 Update" }, + { + "id": "related", + "href": "https://www.w3.org/TR/sparql12-update/#related", + "level": 3, + "title": "Set of Documents" + }, { "id": "toc", "href": "https://www.w3.org/TR/sparql12-update/#toc", "level": 2, "title": "Table of Contents" }, - { - "id": "related", - "href": "https://www.w3.org/TR/sparql12-update/#related", - "level": 2, - "title": "Set of Documents", - "number": "1" - }, { "id": "sec-intro", "href": "https://www.w3.org/TR/sparql12-update/#sec-intro", "level": 2, "title": "Introduction", - "number": "2" + "number": "1" }, { "id": "documentConventions", "href": "https://www.w3.org/TR/sparql12-update/#documentConventions", "level": 3, "title": "Document Conventions", - "number": "2.1" + "number": "1.1" }, { "id": "languageForm", "href": "https://www.w3.org/TR/sparql12-update/#languageForm", "level": 4, "title": "Language Form", - "number": "2.1.1" + "number": "1.1.1" }, { "id": "terminology", "href": "https://www.w3.org/TR/sparql12-update/#terminology", "level": 4, "title": "Terminology", - "number": "2.1.2" + "number": "1.1.2" }, { "id": "graphStore", "href": "https://www.w3.org/TR/sparql12-update/#graphStore", "level": 2, "title": "The Graph Store", - "number": "3" + "number": "2" }, { "id": "graphStoreQueryServices", "href": "https://www.w3.org/TR/sparql12-update/#graphStoreQueryServices", "level": 3, "title": "Graph Store and SPARQL Query Services", - "number": "3.1" + "number": "2.1" }, { "id": "updateServices", "href": "https://www.w3.org/TR/sparql12-update/#updateServices", "level": 3, "title": "SPARQL 1.2 Update Services", - "number": "3.2" + "number": "2.2" }, { "id": "entailmentConsistency", "href": "https://www.w3.org/TR/sparql12-update/#entailmentConsistency", "level": 3, "title": "Entailment and Consistency", - "number": "3.3" + "number": "2.3" }, { "id": "updateLanguage", "href": "https://www.w3.org/TR/sparql12-update/#updateLanguage", "level": 2, "title": "SPARQL 1.2 Update Language", - "number": "4" + "number": "3" }, { "id": "graphUpdate", "href": "https://www.w3.org/TR/sparql12-update/#graphUpdate", "level": 3, "title": "Graph Update", - "number": "4.1" + "number": "3.1" }, { "id": "insertData", "href": "https://www.w3.org/TR/sparql12-update/#insertData", "level": 4, "title": "INSERT DATA", - "number": "4.1.1" + "number": "3.1.1" }, { "id": "deleteData", "href": "https://www.w3.org/TR/sparql12-update/#deleteData", "level": 4, "title": "DELETE DATA", - "number": "4.1.2" + "number": "3.1.2" }, { "id": "deleteInsert", "href": "https://www.w3.org/TR/sparql12-update/#deleteInsert", "level": 4, "title": "DELETE/INSERT", - "number": "4.1.3" + "number": "3.1.3" }, { "id": "delete", "href": "https://www.w3.org/TR/sparql12-update/#delete", "level": 5, "title": "DELETE (Informative)", - "number": "4.1.3.1" + "number": "3.1.3.1" }, { "id": "insert", "href": "https://www.w3.org/TR/sparql12-update/#insert", "level": 5, "title": "INSERT (Informative)", - "number": "4.1.3.2" + "number": "3.1.3.2" }, { "id": "deleteWhere", "href": "https://www.w3.org/TR/sparql12-update/#deleteWhere", "level": 5, "title": "DELETE WHERE", - "number": "4.1.3.3" + "number": "3.1.3.3" }, { "id": "load", "href": "https://www.w3.org/TR/sparql12-update/#load", "level": 4, "title": "LOAD", - "number": "4.1.4" + "number": "3.1.4" }, { "id": "clear", "href": "https://www.w3.org/TR/sparql12-update/#clear", "level": 4, "title": "CLEAR", - "number": "4.1.5" + "number": "3.1.5" }, { "id": "graphManagement", "href": "https://www.w3.org/TR/sparql12-update/#graphManagement", "level": 3, "title": "Graph Management", - "number": "4.2" + "number": "3.2" }, { "id": "create", "href": "https://www.w3.org/TR/sparql12-update/#create", "level": 4, "title": "CREATE", - "number": "4.2.1" + "number": "3.2.1" }, { "id": "drop", "href": "https://www.w3.org/TR/sparql12-update/#drop", "level": 4, "title": "DROP", - "number": "4.2.2" + "number": "3.2.2" }, { "id": "copy", "href": "https://www.w3.org/TR/sparql12-update/#copy", "level": 4, "title": "COPY", - "number": "4.2.3" + "number": "3.2.3" }, { "id": "move", "href": "https://www.w3.org/TR/sparql12-update/#move", "level": 4, "title": "MOVE", - "number": "4.2.4" + "number": "3.2.4" }, { "id": "add", "href": "https://www.w3.org/TR/sparql12-update/#add", "level": 4, "title": "ADD", - "number": "4.2.5" + "number": "3.2.5" }, { "id": "formalModel", "href": "https://www.w3.org/TR/sparql12-update/#formalModel", "level": 2, "title": "SPARQL Update Formal Model", - "number": "5" + "number": "4" }, { "id": "formalModelGeneral", "href": "https://www.w3.org/TR/sparql12-update/#formalModelGeneral", "level": 3, "title": "General Definitions", - "number": "5.1" + "number": "4.1" }, { "id": "def_graphstore", "href": "https://www.w3.org/TR/sparql12-update/#def_graphstore", "level": 4, "title": "Graph Store", - "number": "5.1.1" + "number": "4.1.1" }, { "id": "def_updateoperation", "href": "https://www.w3.org/TR/sparql12-update/#def_updateoperation", "level": 4, "title": "Abstract Update Operation", - "number": "5.1.2" + "number": "4.1.2" }, { "id": "formalModelAuxiliary", "href": "https://www.w3.org/TR/sparql12-update/#formalModelAuxiliary", "level": 3, "title": "Auxiliary Definitions", - "number": "5.2" + "number": "4.2" }, { "id": "def_datasetUnion", "href": "https://www.w3.org/TR/sparql12-update/#def_datasetUnion", "level": 4, "title": "Dataset-UNION", - "number": "5.2.1" + "number": "4.2.1" }, { "id": "def_datasetDiff", "href": "https://www.w3.org/TR/sparql12-update/#def_datasetDiff", "level": 4, "title": "Dataset-DIFF", - "number": "5.2.2" + "number": "4.2.2" }, { "id": "def_datasetQuadPattern", "href": "https://www.w3.org/TR/sparql12-update/#def_datasetQuadPattern", "level": 4, "title": "Dataset ( QuadPattern, μ, DS, GS )", - "number": "5.2.3" + "number": "4.2.3" }, { "id": "def_datasetPattern", "href": "https://www.w3.org/TR/sparql12-update/#def_datasetPattern", "level": 4, "title": "Dataset ( QuadPattern, P, DS, GS )", - "number": "5.2.4" + "number": "4.2.4" }, { "id": "formalModelGraphUpdate", "href": "https://www.w3.org/TR/sparql12-update/#formalModelGraphUpdate", "level": 3, "title": "Graph Update Operations", - "number": "5.3" + "number": "4.3" }, { "id": "def_insertdataoperation", "href": "https://www.w3.org/TR/sparql12-update/#def_insertdataoperation", "level": 4, "title": "Insert Data Operation", - "number": "5.3.1" + "number": "4.3.1" }, { "id": "def_deletedataoperation", "href": "https://www.w3.org/TR/sparql12-update/#def_deletedataoperation", "level": 4, "title": "Delete Data Operation", - "number": "5.3.2" + "number": "4.3.2" }, { "id": "def_deleteinsertoperation", "href": "https://www.w3.org/TR/sparql12-update/#def_deleteinsertoperation", "level": 4, "title": "Delete Insert Operation", - "number": "5.3.3" + "number": "4.3.3" }, { "id": "def_loadoperation", "href": "https://www.w3.org/TR/sparql12-update/#def_loadoperation", "level": 4, "title": "Load Operation", - "number": "5.3.4" + "number": "4.3.4" }, { "id": "def_clearOperation", "href": "https://www.w3.org/TR/sparql12-update/#def_clearOperation", "level": 4, "title": "Clear Operation", - "number": "5.3.5" + "number": "4.3.5" }, { "id": "formalModelGraphMgt", "href": "https://www.w3.org/TR/sparql12-update/#formalModelGraphMgt", "level": 3, "title": "Graph Management Operations", - "number": "5.4" + "number": "4.4" }, { "id": "def_createOperation", "href": "https://www.w3.org/TR/sparql12-update/#def_createOperation", "level": 4, "title": "Create Operation", - "number": "5.4.1" + "number": "4.4.1" }, { "id": "def_dropOperation", "href": "https://www.w3.org/TR/sparql12-update/#def_dropOperation", "level": 4, "title": "Drop Operation", - "number": "5.4.2" + "number": "4.4.2" }, { "id": "mappingRequestsToOperations", "href": "https://www.w3.org/TR/sparql12-update/#mappingRequestsToOperations", "level": 3, "title": "Mapping Update Requests to the Formal Model", - "number": "5.5" + "number": "4.5" }, { "id": "conformance", "href": "https://www.w3.org/TR/sparql12-update/#conformance", "level": 2, "title": "Conformance", - "number": "6" + "number": "5" }, { "id": "conformance-0", "href": "https://www.w3.org/TR/sparql12-update/#conformance-0", "level": 3, "title": "Conformance", - "number": "6.1" + "number": "5.1" }, { "id": "security-original", "href": "https://www.w3.org/TR/sparql12-update/#security-original", "level": 2, "title": "Security Considerations", - "number": "7" + "number": "6" }, { "id": "mediaType", "href": "https://www.w3.org/TR/sparql12-update/#mediaType", "level": 2, "title": "Internet Media Type, File Extension and Macintosh File Type", - "number": "8" + "number": "7" }, { "id": "grammar", "href": "https://www.w3.org/TR/sparql12-update/#grammar", "level": 2, "title": "SPARQL 1.2 Update Grammar", - "number": "9" + "number": "8" }, { "id": "changes-1-1", @@ -421,6 +420,13 @@ "level": 3, "title": "Normative references", "number": "F.1" + }, + { + "id": "informative-references", + "href": "https://www.w3.org/TR/sparql12-update/#informative-references", + "level": 3, + "title": "Informative references", + "number": "F.2" } ] } \ No newline at end of file diff --git a/tr/idl/css-view-transitions-2.idl b/tr/idl/css-view-transitions-2.idl index ab19d8418f2b..d04171a35d22 100644 --- a/tr/idl/css-view-transitions-2.idl +++ b/tr/idl/css-view-transitions-2.idl @@ -3,15 +3,9 @@ // (https://github.com/w3c/webref) // Source: CSS View Transitions Module Level 2 (https://www.w3.org/TR/css-view-transitions-2/) -partial interface CSSRule { - const unsigned short VIEW_TRANSITION_RULE = 15; -}; - -enum ViewTransitionNavigation { "auto", "none" }; - [Exposed=Window] interface CSSViewTransitionRule : CSSRule { - readonly attribute ViewTransitionNavigation navigation; + readonly attribute CSSOMString navigation; [SameObject] readonly attribute FrozenArray types; }; @@ -26,11 +20,10 @@ partial interface ViewTransition { }; dictionary StartViewTransitionOptions { - UpdateCallback? update = null; + ViewTransitionUpdateCallback? update = null; sequence? types = null; }; partial interface Document { - - ViewTransition startViewTransition(optional (UpdateCallback or StartViewTransitionOptions) callbackOptions = {}); + ViewTransition startViewTransition(optional (ViewTransitionUpdateCallback or StartViewTransitionOptions) callbackOptions = {}); }; diff --git a/tr/idl/largest-contentful-paint.idl b/tr/idl/largest-contentful-paint.idl index 14136fd6482d..6be4a8e2e66b 100644 --- a/tr/idl/largest-contentful-paint.idl +++ b/tr/idl/largest-contentful-paint.idl @@ -5,7 +5,6 @@ [Exposed=Window] interface LargestContentfulPaint : PerformanceEntry { - readonly attribute DOMHighResTimeStamp renderTime; readonly attribute DOMHighResTimeStamp loadTime; readonly attribute unsigned long size; readonly attribute DOMString id; @@ -13,3 +12,5 @@ interface LargestContentfulPaint : PerformanceEntry { readonly attribute Element? element; [Default] object toJSON(); }; + +LargestContentfulPaint includes PaintTimingMixin; diff --git a/tr/ids/css-view-transitions-2.json b/tr/ids/css-view-transitions-2.json index d6c194e7c987..9aa16e2632fe 100644 --- a/tr/ids/css-view-transitions-2.json +++ b/tr/ids/css-view-transitions-2.json @@ -33,7 +33,7 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-style-blocking", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-link-type-expect", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-htmllinkelement", - "https://www.w3.org/TR/css-view-transitions-2/#example-2c826e50", + "https://www.w3.org/TR/css-view-transitions-2/#example-ece69f12", "https://www.w3.org/TR/css-view-transitions-2/#customizing-cross-document-view-transitions", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0", @@ -83,11 +83,11 @@ "https://www.w3.org/TR/css-view-transitions-2/#example-5cf7b384", "https://www.w3.org/TR/css-view-transitions-2/#example-e5e29ee3", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#example-06131030", + "https://www.w3.org/TR/css-view-transitions-2/#example-201df5f9", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-sessionstorage", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-event-pagereveal%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#example-926506d6", + "https://www.w3.org/TR/css-view-transitions-2/#example-a7331208", "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-opt-in", "https://www.w3.org/TR/css-view-transitions-2/#view-transition-rule", "https://www.w3.org/TR/css-view-transitions-2/#at-view-transition-rule", @@ -121,25 +121,23 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-navigationtype-replace", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-navigation-auto", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-navigationtype-reload", - "https://www.w3.org/TR/css-view-transitions-2/#cssom", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssrule", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-idl-unsigned-short", - "https://www.w3.org/TR/css-view-transitions-2/#dom-cssrule-view_transition_rule", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssviewtransitionrule", + "https://www.w3.org/TR/css-view-transitions-2/#cssom", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#enumdef-viewtransitionnavigation", - "https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransitionnavigation-auto", - "https://www.w3.org/TR/css-view-transitions-2/#dom-viewtransitionnavigation-none", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssviewtransitionrule", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-Exposed", "https://www.w3.org/TR/css-view-transitions-2/#cssviewtransitionrule", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssrule%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-enumdef-viewtransitionnavigation", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssrule", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssomstring", "https://www.w3.org/TR/css-view-transitions-2/#dom-cssviewtransitionrule-navigation", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-SameObject", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-idl-frozen-array", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssomstring", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-cssomstring%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#dom-cssviewtransitionrule-types", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-cssviewtransitionrule-navigation", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-cssviewtransitionrule-types", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-list", "https://www.w3.org/TR/css-view-transitions-2/#selective-vt", "https://www.w3.org/TR/css-view-transitions-2/#selective-vt-overview", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-active-types", @@ -205,7 +203,7 @@ "https://www.w3.org/TR/css-view-transitions-2/#types-cross-doc", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-types%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#descdef-view-transition-types", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-comb-one%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identifier-value%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-mult-one-plus", @@ -249,6 +247,7 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identifier-value%E2%91%A6", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-class%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identifier-value%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-css-tree-scoped-name", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-class%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A3", @@ -296,7 +295,7 @@ "https://www.w3.org/TR/css-view-transitions-2/#extend-document-types", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-document-startviewtransition%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#dictdef-startviewtransitionoptions", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-callbackdef-updatecallback", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-callbackdef-viewtransitionupdatecallback", "https://www.w3.org/TR/css-view-transitions-2/#dom-startviewtransitionoptions-update", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-idl-sequence", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-idl-DOMString%E2%91%A0", @@ -304,12 +303,12 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-document-startviewtransition%E2%91%A5", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-callbackdef-updatecallback%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-callbackdef-viewtransitionupdatecallback%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dictdef-startviewtransitionoptions", "https://www.w3.org/TR/css-view-transitions-2/#dom-document-startviewtransition-callbackoptions-callbackoptions", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-method-steps", "https://www.w3.org/TR/css-view-transitions-2/#dom-document-startviewtransition", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-callbackdef-updatecallback%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-callbackdef-viewtransitionupdatecallback%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dictdef-startviewtransitionoptions%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-startviewtransitionoptions-update", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A6", @@ -329,11 +328,109 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-list-clone", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-startviewtransitionoptions-types%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-ordered-set%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#auto-vt-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#auto-vt-name-overview", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-id", + "https://www.w3.org/TR/css-view-transitions-2/#auto-vt-name-example", + "https://www.w3.org/TR/css-view-transitions-2/#example-0256bb72", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#additions-to-vt-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#view-transition-name-auto", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-used-value", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identifier-value%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-id%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-tree-root", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-tree-root%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-id%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-part", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-id%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-node-document%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-css-tree-scoped-name%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#nested-view-transitions", + "https://www.w3.org/TR/css-view-transitions-2/#nested-overview", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-tree", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-snapshot-containing-block", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-overflow", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-clip-path", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-radius", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-opacity", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-mask-image", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-filter", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-transform-style", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-transform", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-perspective", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-tree%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#nested-vt-example", + "https://www.w3.org/TR/css-view-transitions-2/#example-5cc76d5d", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-tree%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#view-transition-group-prop", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#propdef-view-transition-group", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-comb-one%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-comb-one%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-comb-one%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identifier-value%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-named-view-transition-pseudo-elements%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-used-value%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-name-none", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-named-view-transition-pseudo-elements%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-overview", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-filter%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-box-shadow", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-opacity%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-mask", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-clip-path%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-filter%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-overflow%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#issue-93264331", + "https://www.w3.org/TR/css-view-transitions-2/#layered-captured-css-properties", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-properties", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-background", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-left", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-top", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-bottom", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-right", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-radius%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-image", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-box-shadow%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-box-sizing", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-clip-path%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-filter%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-mask%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-opacity%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-outline", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-padding", "https://www.w3.org/TR/css-view-transitions-2/#algorithms", "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structures", "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-data-structure-document", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-view-transitions-2/#document-inbound-view-transition-params", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-params", "https://www.w3.org/TR/css-view-transitions-2/#document-can-initiate-outbound-view-transition", @@ -354,33 +451,50 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#view-transition-params-initial-snapshot-containing-block-size", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-tuple", + "https://www.w3.org/TR/css-view-transitions-2/#page-visibility-change-steps-additions", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-page-visibility-change-steps", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params", "https://www.w3.org/TR/css-view-transitions-2/#capture-classes-data-structure", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#captured-element-class-list", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-list", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-list%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#captured-element-containing-group-name", + "https://www.w3.org/TR/css-view-transitions-2/#captured-element-old-layered-capture-style", + "https://www.w3.org/TR/css-view-transitions-2/#captured-element-transform-from-snapshot-containing-block", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-matrix", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identity-transform-function", + "https://www.w3.org/TR/css-view-transitions-2/#captured-element-old-box-properties", + "https://www.w3.org/TR/css-view-transitions-2/#captured-element-new-box-properties", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties", + "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties", + "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties-box-sizing", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-box-sizing-border-box", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-box-sizing-content-box", + "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties-content-box", + "https://www.w3.org/TR/css-view-transitions-2/#layered-box-properties-padding-box", "https://www.w3.org/TR/css-view-transitions-2/#vt-rule-algo", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-view-transitions-2/#resolve-view-transition-rule", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-visibility-state", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-navigation%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-navigation-none", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-navigation%E2%91%A2", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-navigation-auto%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-types%E2%91%A3", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-ordered-set%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-ordered-set%E2%91%A2", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A3", "https://www.w3.org/TR/css-view-transitions-2/#setup-old-document-vt", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#check-eligibility", "https://www.w3.org/TR/css-view-transitions-2/#navigation-can-trigger-a-cross-document-view-transition", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-navigationtype%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-in-parallel%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-implementation-defined", @@ -390,20 +504,23 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-same-origin%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-document-origin%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-was-created-via-cross-origin-redirects", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-latest-entry", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-document%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-latest-entry%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-navigationtype-traverse%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#setup-outbound-transition", "https://www.w3.org/TR/css-view-transitions-2/#setup-cross-document-view-transition", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-assert", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-task", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-can-initiate-outbound-view-transition%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-resolve-view-transition-rule", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-assert%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-event-pagereveal%E2%91%A2", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A7", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-skip-the-view-transition%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-skip-the-view-transition%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%93%AA", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-aborterror", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-idl-DOMException%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-relevant-realm%E2%91%A0", @@ -416,16 +533,24 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-outbound-post-capture-steps%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-params%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-event-pagereveal%E2%91%A3", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-in-parallel%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-implementation-defined%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dfn-duration", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-queue-a-global-task", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-manipulation-task-source", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-relevant-global", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-perform-pending-transition-operations", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-event-pagereveal%E2%91%A4", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-phase", "https://www.w3.org/TR/css-view-transitions-2/#update-opt-in", "https://www.w3.org/TR/css-view-transitions-2/#update-the-opt-in-state-for-outbound-transitions", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-has-been-revealed", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-resolve-view-transition-rule%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-can-initiate-outbound-view-transition%E2%91%A1", @@ -437,10 +562,10 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-outbound-post-capture-steps%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#cross-doc-after-capture", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-perform-pending-transition-operations%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-outbound-post-capture-steps%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-outbound-post-capture-steps%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A3", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-phase%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-rendering-suppression-for-view-transitions", "https://www.w3.org/TR/css-view-transitions-2/#issue-ca114a78", @@ -455,17 +580,17 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-rendering-suppression-for-view-transitions%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-outbound-post-capture-steps%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#access-view-transition-in-new-doc", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#resolve-inbound-cross-document-view-transition", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#resolve-inbound-cross-document-view-transition", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A3", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-assert%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-fully-active", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-assert%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-has-been-revealed%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-update-the-opt-in-state-for-outbound-transitions%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A1", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-inbound-view-transition-params%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-resolve-view-transition-rule%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0%E2%91%A7", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-relevant-realm%E2%91%A2", @@ -473,35 +598,200 @@ "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-params-named-elements%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-initial-snapshot-containing-block-size%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-params-initial-snapshot-containing-block-size%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-active-view-transition%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-resolve", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-update-callback-done-promise", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-phase%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-active-types%E2%91%A8", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-implementation-defined%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-queue-a-global-task", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-dom-manipulation-task-source", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-relevant-global", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-phase%E2%91%A2", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-skip-the-view-transition%E2%91%A2", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-timeouterror", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-idl-DOMException%E2%91%A1", "https://www.w3.org/TR/css-view-transitions-2/#vt-class-algorithms", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-class%E2%91%A6", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A2", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-class-list%E2%91%A0", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A4", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-class%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-node-document%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-algorithm", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-value-resolve", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#document-scoped-view-transition-group", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-node-document%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-group-normal", + "https://www.w3.org/TR/css-view-transitions-2/#vt-containing-group-name-resolve", + "https://www.w3.org/TR/css-view-transitions-2/#nearest-containing-group-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A0%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-flat-tree", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-tree-ancestor", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-scoped-view-transition-group", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-group-normal%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-scoped-view-transition-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-name-none%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-name-resolve", + "https://www.w3.org/TR/css-view-transitions-2/#used-group-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A1%E2%93%AA", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-scoped-view-transition-group%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-nearest-containing-group-name", + "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-normal", + "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-contain", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-view-transition-group-contain", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-nearest-containing-group-name%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-nearest", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-scoped-view-transition-name%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-flat-tree%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#valdef-view-transition-group-custom-ident", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-identifier-value%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-flat-tree%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-tree-ancestor%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-scoped-view-transition-name%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-capture-old", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A1%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-containing-group-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-used-group-name", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-capture-new", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A1%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-containing-group-name%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-used-group-name%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-reparent", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-containing-group-name%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-named-elements%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-name", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-view-transition-name%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-adjust-the-nested-group-transform", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-transform", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-width", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-height", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-box-properties", + "https://www.w3.org/TR/css-view-transitions-2/#vt-group-transform-adjust", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-transform%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-group-styles-rule", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition%E2%91%A1%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-transform-from-snapshot-containing-block", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-containing-group-name%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-viewtransition-named-elements%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-containing-group-name%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-snapshot-containing-block%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document-element%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-border-box", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-adjust-the-nested-group-transform%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-transform-from-snapshot-containing-block%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-new-box-properties", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-algorithms", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-compute-style", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-style", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-list%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-capture-properties", + "https://www.w3.org/TR/css-view-transitions-2/#issue-d24249d6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-overflow%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-list-append", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-string-concatenate", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-string-concatenate%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-geometry", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A6", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties-box-sizing", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-box-sizing%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties-padding-box", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-padding-box", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties-content-box", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-content-box", + "https://www.w3.org/TR/css-view-transitions-2/#default-group-size", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-content-box%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-computed-value%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-box-sizing%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-box-sizing-content-box%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-border-box%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#capture-new-layered-props-algorithm", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A7", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-layered-capture-style", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-capture-style", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-box-properties%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-capture-geometry", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-width%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-height%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-default-group-size", + "https://www.w3.org/TR/css-view-transitions-2/#capture-image-size-algorithm", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-capture-the-image", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-natural-dimensions", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-content-box%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-border-box%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#layered-capture-rendering", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element-contents", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-background%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-image%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-box-shadow%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-outline%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-border-radius%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-clip-path%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-filter%E2%91%A3", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-mask%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-opacity%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#vt-adjust-nested-group-transform", + "https://www.w3.org/TR/css-view-transitions-2/#adjust-the-nested-group-transform", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-matrix%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-matrix%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-multiply", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties-padding-box%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-padding-edge", + "https://www.w3.org/TR/css-view-transitions-2/#vt-layered-capture-apply-keyframes", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A0%E2%93%AA", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-string-concatenate%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-layered-capture-style%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#vt-layered-capture-apply-new-state", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-selectordef-view-transition-group%E2%91%A0%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-group-styles-rule%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-element%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-capture-style%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-new-box-properties%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-capture-properties%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-default-group-size%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-string-concatenate%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-width%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-height%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-box-properties%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-old-box-properties%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties-content-box%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-new-box-properties%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-captured-element-new-box-properties%E2%91%A2", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-layered-box-properties-content-box%E2%91%A1", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-valdef-position-relative", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-padding%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#priv", "https://www.w3.org/TR/css-view-transitions-2/#sec", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-settings-object-cross-origin-isolated-capability", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-settings-object-cross-origin-isolated-capability%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-was-created-via-cross-origin-redirects%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-concept-settings-object-cross-origin-isolated-capability%E2%91%A0", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A5", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-was-created-via-cross-origin-redirects%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-document%E2%91%A1%E2%91%A6", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-reactivate-a-document", + "https://www.w3.org/TR/css-view-transitions-2/#changes", + "https://www.w3.org/TR/css-view-transitions-2/#changes-since-2024-05-16", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-name%E2%91%A1%E2%93%AA", "https://www.w3.org/TR/css-view-transitions-2/#w3c-conformance", "https://www.w3.org/TR/css-view-transitions-2/#w3c-conventions", "https://www.w3.org/TR/css-view-transitions-2/#w3c-example", @@ -512,122 +802,193 @@ "https://www.w3.org/TR/css-view-transitions-2/#index", "https://www.w3.org/TR/css-view-transitions-2/#index-defined-here", "https://www.w3.org/TR/css-view-transitions-2/#index-defined-elsewhere", - "https://www.w3.org/TR/css-view-transitions-2/#8c8e51b4", - "https://www.w3.org/TR/css-view-transitions-2/#4397147f", - "https://www.w3.org/TR/css-view-transitions-2/#a5d6c9d2", - "https://www.w3.org/TR/css-view-transitions-2/#f1a41224", - "https://www.w3.org/TR/css-view-transitions-2/#a81b1fb8", - "https://www.w3.org/TR/css-view-transitions-2/#c297b070", - "https://www.w3.org/TR/css-view-transitions-2/#af4a190d", - "https://www.w3.org/TR/css-view-transitions-2/#a0144f62", - "https://www.w3.org/TR/css-view-transitions-2/#d4441b24", - "https://www.w3.org/TR/css-view-transitions-2/#4eb9d37e", - "https://www.w3.org/TR/css-view-transitions-2/#257d7734", - "https://www.w3.org/TR/css-view-transitions-2/#a9aefc80", - "https://www.w3.org/TR/css-view-transitions-2/#e63d01fd", - "https://www.w3.org/TR/css-view-transitions-2/#3f4cb357", - "https://www.w3.org/TR/css-view-transitions-2/#8ae6697b", - "https://www.w3.org/TR/css-view-transitions-2/#abb51c3c", - "https://www.w3.org/TR/css-view-transitions-2/#fb8b141f", - "https://www.w3.org/TR/css-view-transitions-2/#3f152388", - "https://www.w3.org/TR/css-view-transitions-2/#8b0471c9", - "https://www.w3.org/TR/css-view-transitions-2/#a94f7564", - "https://www.w3.org/TR/css-view-transitions-2/#53fbe689", - "https://www.w3.org/TR/css-view-transitions-2/#2e5e13e1", - "https://www.w3.org/TR/css-view-transitions-2/#c00d8c81", - "https://www.w3.org/TR/css-view-transitions-2/#6c645596", - "https://www.w3.org/TR/css-view-transitions-2/#3d5a9d15", - "https://www.w3.org/TR/css-view-transitions-2/#3d29f343", - "https://www.w3.org/TR/css-view-transitions-2/#77bcdcee", - "https://www.w3.org/TR/css-view-transitions-2/#54f188b7", - "https://www.w3.org/TR/css-view-transitions-2/#d1fbbaaa", - "https://www.w3.org/TR/css-view-transitions-2/#28e82ba6", - "https://www.w3.org/TR/css-view-transitions-2/#da45ed1a", - "https://www.w3.org/TR/css-view-transitions-2/#f9e53f84", - "https://www.w3.org/TR/css-view-transitions-2/#5ce34159", - "https://www.w3.org/TR/css-view-transitions-2/#9bb2014b", - "https://www.w3.org/TR/css-view-transitions-2/#a8ff7689", - "https://www.w3.org/TR/css-view-transitions-2/#773c38f9", - "https://www.w3.org/TR/css-view-transitions-2/#aa734171", - "https://www.w3.org/TR/css-view-transitions-2/#e8b75507", - "https://www.w3.org/TR/css-view-transitions-2/#9d357000", - "https://www.w3.org/TR/css-view-transitions-2/#0f78dbdd", - "https://www.w3.org/TR/css-view-transitions-2/#85394472", - "https://www.w3.org/TR/css-view-transitions-2/#705b4fd3", - "https://www.w3.org/TR/css-view-transitions-2/#a973e0fe", - "https://www.w3.org/TR/css-view-transitions-2/#2f0ba72c", - "https://www.w3.org/TR/css-view-transitions-2/#5216e1a0", - "https://www.w3.org/TR/css-view-transitions-2/#c62cd7cf", - "https://www.w3.org/TR/css-view-transitions-2/#3560d057", - "https://www.w3.org/TR/css-view-transitions-2/#a4c36929", - "https://www.w3.org/TR/css-view-transitions-2/#1815821e", - "https://www.w3.org/TR/css-view-transitions-2/#0d02a1c8", - "https://www.w3.org/TR/css-view-transitions-2/#90c99c05", - "https://www.w3.org/TR/css-view-transitions-2/#787ad014", - "https://www.w3.org/TR/css-view-transitions-2/#473036cd", - "https://www.w3.org/TR/css-view-transitions-2/#e10e7eb7", - "https://www.w3.org/TR/css-view-transitions-2/#265a80eb", - "https://www.w3.org/TR/css-view-transitions-2/#0e3ba9f8", - "https://www.w3.org/TR/css-view-transitions-2/#6a40c011", - "https://www.w3.org/TR/css-view-transitions-2/#a72449dd", - "https://www.w3.org/TR/css-view-transitions-2/#5a31d22c", - "https://www.w3.org/TR/css-view-transitions-2/#1d314002", - "https://www.w3.org/TR/css-view-transitions-2/#c9ff317b", - "https://www.w3.org/TR/css-view-transitions-2/#48438eb3", - "https://www.w3.org/TR/css-view-transitions-2/#e93b877c", - "https://www.w3.org/TR/css-view-transitions-2/#e99bd18e", - "https://www.w3.org/TR/css-view-transitions-2/#5991ccfb", - "https://www.w3.org/TR/css-view-transitions-2/#6f5567e9", - "https://www.w3.org/TR/css-view-transitions-2/#43f1a6f1", - "https://www.w3.org/TR/css-view-transitions-2/#6998ead7", - "https://www.w3.org/TR/css-view-transitions-2/#6d273060", - "https://www.w3.org/TR/css-view-transitions-2/#7393da89", - "https://www.w3.org/TR/css-view-transitions-2/#7a899a17", - "https://www.w3.org/TR/css-view-transitions-2/#e270bd2a", - "https://www.w3.org/TR/css-view-transitions-2/#fa3348cc", - "https://www.w3.org/TR/css-view-transitions-2/#55372230", - "https://www.w3.org/TR/css-view-transitions-2/#34e73e3f", - "https://www.w3.org/TR/css-view-transitions-2/#b4c365f8", - "https://www.w3.org/TR/css-view-transitions-2/#69516351", - "https://www.w3.org/TR/css-view-transitions-2/#77b4c09a", - "https://www.w3.org/TR/css-view-transitions-2/#027e3e49", - "https://www.w3.org/TR/css-view-transitions-2/#ab3919d2", - "https://www.w3.org/TR/css-view-transitions-2/#ae8def21", - "https://www.w3.org/TR/css-view-transitions-2/#860300d4", - "https://www.w3.org/TR/css-view-transitions-2/#c88f3887", - "https://www.w3.org/TR/css-view-transitions-2/#649608b9", - "https://www.w3.org/TR/css-view-transitions-2/#3fca5a9e", - "https://www.w3.org/TR/css-view-transitions-2/#15e48c39", - "https://www.w3.org/TR/css-view-transitions-2/#984221ca", - "https://www.w3.org/TR/css-view-transitions-2/#0e8de730", - "https://www.w3.org/TR/css-view-transitions-2/#dfd67b05", - "https://www.w3.org/TR/css-view-transitions-2/#b5be7607", - "https://www.w3.org/TR/css-view-transitions-2/#388bc3fc", - "https://www.w3.org/TR/css-view-transitions-2/#ba72ce8f", - "https://www.w3.org/TR/css-view-transitions-2/#15e81c46", - "https://www.w3.org/TR/css-view-transitions-2/#d25dfb2c", - "https://www.w3.org/TR/css-view-transitions-2/#dca2de17", - "https://www.w3.org/TR/css-view-transitions-2/#8855a9aa", - "https://www.w3.org/TR/css-view-transitions-2/#889e932f", - "https://www.w3.org/TR/css-view-transitions-2/#dcf5fafa", - "https://www.w3.org/TR/css-view-transitions-2/#797018a7", - "https://www.w3.org/TR/css-view-transitions-2/#a5c91173", - "https://www.w3.org/TR/css-view-transitions-2/#f0ba495b", - "https://www.w3.org/TR/css-view-transitions-2/#833154f2", - "https://www.w3.org/TR/css-view-transitions-2/#3024958b", - "https://www.w3.org/TR/css-view-transitions-2/#3b90bdcd", - "https://www.w3.org/TR/css-view-transitions-2/#9cce47fd", - "https://www.w3.org/TR/css-view-transitions-2/#4013a022", - "https://www.w3.org/TR/css-view-transitions-2/#450958f7", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-background", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border-image", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border-bottom", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border-left", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border-radius", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border-right", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-border-top", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-box-shadow", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-border-box", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-content-box", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-padding", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-padding-box", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-padding-edge", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-computed-value", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-used-value", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-opacity", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-at-ruledef-media", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-at-ruledef-supports", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-conditional-group-rule", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-element-contents", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-natural-dimensions", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-clip-path", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-mask", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-mask-image", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-overflow", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-valdef-position-relative", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-flat-tree", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-css-tree-scoped-name", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selectordef-part", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-valdef-box-sizing-border-box", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-box-sizing", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-valdef-box-sizing-content-box", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-typedef-declaration-list", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-identity-transform-function", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-transform", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-perspective", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-transform-style", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-outline", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-mult-comma", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-mult-one-plus", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-identifier-value", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-mult-opt", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-comb-one", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selectordef-view-transition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selectordef-view-transition-group", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selectordef-view-transition-image-pair", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selectordef-view-transition-new", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selectordef-view-transition-old", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-typedef-pt-name-selector", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-viewtransition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-callbackdef-viewtransitionupdatecallback", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-activate-view-transition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-document-active-view-transition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-capture-the-new-state", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-capture-the-old-state", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-captured-element", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-capture-the-image", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-document-scoped-view-transition-name", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-viewtransition-finished", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-captured-element-group-styles-rule", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-viewtransition-initial-snapshot-containing-block-size", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-viewtransition-named-elements", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-named-view-transition-pseudo-elements", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-valdef-view-transition-name-none", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-captured-element-old-height", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-captured-element-old-transform", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-captured-element-old-width", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-perform-pending-transition-operations", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-viewtransition-phase", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-viewtransition-ready", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-document-rendering-suppression-for-view-transitions", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-skip-the-view-transition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-viewtransition-skiptransition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-snapshot-containing-block", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-document-startviewtransition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-viewtransition-update-callback", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-viewtransition-update-callback-done-promise", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-viewtransition-updatecallbackdone", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-view-transition-name", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-view-transition-page-visibility-change-steps", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-view-transition-tree", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-view-transition-name", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-element", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-cssomstring", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-cssrule", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-document", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-element%E2%91%A0", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-tree-ancestor", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-class", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-document", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-document-element", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-id", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-node-document", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-document-origin", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-tree-root", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-propdef-filter", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-matrix", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-multiply", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dfn-duration", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-htmllinkelement", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-navigationtype", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-pageswapevent", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-pageswapevent-activation", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-script-blocking", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-style-blocking", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-settings-object-cross-origin-isolated-capability", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-manipulation-task-source", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-link-type-expect", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-fully-active", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-has-been-revealed", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-in-parallel", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-latest-entry", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-event-pagereveal", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-event-pageswap", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-navigationtype-push", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-queue-a-global-task", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-reactivate-a-document", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-relevant-global", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-relevant-realm", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-navigationtype-reload", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-render-blocking-mechanism", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-rendering-opportunity", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-navigationtype-replace", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-same-origin", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-sessionstorage", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-concept-task", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-navigationtype-traverse", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-pagerevealevent-viewtransition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-dom-pageswapevent-viewtransition", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-visibility-state", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-was-created-via-cross-origin-redirects", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-list-append", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-assert", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-list-clone", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-map-clone", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-string-concatenate", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-list-contain", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-implementation-defined", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-struct-item", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-list", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-ordered-map", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-ordered-set", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-struct", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-tuple", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-x", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-class-selector", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-selector", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-specificity", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-type-selector", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-aborterror", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-idl-DOMException", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-idl-DOMString", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-Exposed", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-idl-frozen-array", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-invalidstateerror", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-SameObject", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-getter-steps", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-method-steps", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-resolve", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-idl-sequence", + "https://www.w3.org/TR/css-view-transitions-2/#term-for-this", "https://www.w3.org/TR/css-view-transitions-2/#references", "https://www.w3.org/TR/css-view-transitions-2/#normative", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-backgrounds-3", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-borders-4", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-box-4", "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-cascade-5", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-color-4", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-contain-2", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-images-3", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-masking-1", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-overflow-3", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-scoping-1", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-sizing-3", "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-syntax-3", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-transforms-1", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-transforms-2", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-ui-4", "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-values-4", "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-view-transitions-1", "https://www.w3.org/TR/css-view-transitions-2/#biblio-css22", "https://www.w3.org/TR/css-view-transitions-2/#biblio-cssom-1", "https://www.w3.org/TR/css-view-transitions-2/#biblio-dom", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-filter-effects-1", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-geometry-1", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-hr-time-3", "https://www.w3.org/TR/css-view-transitions-2/#biblio-html", "https://www.w3.org/TR/css-view-transitions-2/#biblio-infra", "https://www.w3.org/TR/css-view-transitions-2/#biblio-rfc2119", @@ -636,10 +997,13 @@ "https://www.w3.org/TR/css-view-transitions-2/#biblio-webidl", "https://www.w3.org/TR/css-view-transitions-2/#informative", "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-conditional-3", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-position-3", + "https://www.w3.org/TR/css-view-transitions-2/#biblio-css-shadow-parts-1", "https://www.w3.org/TR/css-view-transitions-2/#property-index", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-class%E2%91%A8", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-propdef-view-transition-group%E2%91%A8", "https://www.w3.org/TR/css-view-transitions-2/#view-transition-descriptor-table", - "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A4", + "https://www.w3.org/TR/css-view-transitions-2/#ref-for-at-view-transition-rule%E2%91%A0%E2%91%A5", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-descdef-view-transition-navigation", "https://www.w3.org/TR/css-view-transitions-2/#ref-for-descdef-view-transition-types", "https://www.w3.org/TR/css-view-transitions-2/#idl-index", diff --git a/tr/ids/largest-contentful-paint.json b/tr/ids/largest-contentful-paint.json index aa62d826bd8b..a2489621f01e 100644 --- a/tr/ids/largest-contentful-paint.json +++ b/tr/ids/largest-contentful-paint.json @@ -7,6 +7,7 @@ "https://www.w3.org/TR/largest-contentful-paint/#toc-nav", "https://www.w3.org/TR/largest-contentful-paint/#toc-jump", "https://www.w3.org/TR/largest-contentful-paint/#toc-toggle", + "https://www.w3.org/TR/largest-contentful-paint/#toc-theme-toggle", "https://www.w3.org/TR/largest-contentful-paint/#title", "https://www.w3.org/TR/largest-contentful-paint/#w3c-state", "https://www.w3.org/TR/largest-contentful-paint/#abstract", @@ -43,8 +44,6 @@ "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-the-performanceentry-interface", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-domhighrestimestamp", - "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-rendertime", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-domhighrestimestamp%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-loadtime", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-idl-unsigned-long", "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-size", @@ -58,7 +57,8 @@ "https://www.w3.org/TR/largest-contentful-paint/#ref-for-idl-object", "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-tojson", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A0", - "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-rendertime", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-painttimingmixin", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-size", "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-loadtime", "https://www.w3.org/TR/largest-contentful-paint/#largestcontentfulpaint-id", @@ -70,13 +70,14 @@ "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-performanceentry-name", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-performanceentry-starttime", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-this", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint-rendertime", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-rendertime", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-this%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint-loadtime", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-performanceentry-duration", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-rendertime", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-rendertime%E2%91%A0", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-default-paint-timestamp", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-this%E2%91%A1", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint-rendertime%E2%91%A0", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-paint-timing-info", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-loadtime", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-this%E2%91%A2", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint-loadtime%E2%91%A0", @@ -126,6 +127,7 @@ "https://www.w3.org/TR/largest-contentful-paint/#sec-report-largest-contentful-paint", "https://www.w3.org/TR/largest-contentful-paint/#report-largest-contentful-paint", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-document%E2%91%A1", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-paint-timing-info%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-ordered-set%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-pending-image-record", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-ordered-set%E2%91%A2", @@ -138,6 +140,12 @@ "https://www.w3.org/TR/largest-contentful-paint/#ref-for-pending-image-record-loadtime", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-list-iterate%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-exposed-for-paint-timing%E2%91%A1", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-alpha-channel", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-opacity", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-propdef-text-shadow", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-propdef-stroke-color", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-transparent", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-propdef-stroke-image", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-list-iterate%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-text", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-boundary-point-node", @@ -175,9 +183,10 @@ "https://www.w3.org/TR/largest-contentful-paint/#ref-for-supportedentrytypes-attribute", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-window%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#potentially-add-a-largestcontentfulpaint-entry", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A1", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A2", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largest-contentful-paint-candidate%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-domrectreadonly%E2%91%A2", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-paint-timing-info%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-concept-document%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-content-set%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-list-contain", @@ -199,16 +208,17 @@ "https://www.w3.org/TR/largest-contentful-paint/#ref-for-create-a-largestcontentfulpaint-entry", "https://www.w3.org/TR/largest-contentful-paint/#sec-create-entry", "https://www.w3.org/TR/largest-contentful-paint/#create-a-largestcontentfulpaint-entry", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A2", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A3", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-ordered-map%E2%91%A0", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-paint-timing-info%E2%91%A2", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-document%E2%91%A2", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largest-contentful-paint-size%E2%91%A0", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A3", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-largestcontentfulpaint%E2%91%A4", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-concept-relevant-realm", + "https://www.w3.org/TR/largest-contentful-paint/#ref-for-paint-timing-info%E2%91%A3", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-size%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-url%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-id%E2%91%A0", - "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-rendertime%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-loadtime%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dom-largestcontentfulpaint-element%E2%91%A1", "https://www.w3.org/TR/largest-contentful-paint/#ref-for-dfn-queue-a-performanceentry", @@ -222,10 +232,14 @@ "https://www.w3.org/TR/largest-contentful-paint/#index-defined-elsewhere", "https://www.w3.org/TR/largest-contentful-paint/#f2249e38", "https://www.w3.org/TR/largest-contentful-paint/#f72f5cb4", + "https://www.w3.org/TR/largest-contentful-paint/#8e52c2e2", + "https://www.w3.org/TR/largest-contentful-paint/#1eedc6cc", + "https://www.w3.org/TR/largest-contentful-paint/#bb3ae542", "https://www.w3.org/TR/largest-contentful-paint/#e9e2f325", "https://www.w3.org/TR/largest-contentful-paint/#b9cef6bf", "https://www.w3.org/TR/largest-contentful-paint/#24ae9eec", "https://www.w3.org/TR/largest-contentful-paint/#534310cb", + "https://www.w3.org/TR/largest-contentful-paint/#a7f17cc4", "https://www.w3.org/TR/largest-contentful-paint/#7f14f658", "https://www.w3.org/TR/largest-contentful-paint/#62a0057d", "https://www.w3.org/TR/largest-contentful-paint/#85394472", @@ -244,6 +258,8 @@ "https://www.w3.org/TR/largest-contentful-paint/#55213b5b", "https://www.w3.org/TR/largest-contentful-paint/#efe51bb4", "https://www.w3.org/TR/largest-contentful-paint/#ee7bba09", + "https://www.w3.org/TR/largest-contentful-paint/#cd67c18a", + "https://www.w3.org/TR/largest-contentful-paint/#436d2642", "https://www.w3.org/TR/largest-contentful-paint/#224fa1d7", "https://www.w3.org/TR/largest-contentful-paint/#a29193af", "https://www.w3.org/TR/largest-contentful-paint/#0f3c26d0", @@ -262,9 +278,14 @@ "https://www.w3.org/TR/largest-contentful-paint/#15e48c39", "https://www.w3.org/TR/largest-contentful-paint/#984221ca", "https://www.w3.org/TR/largest-contentful-paint/#0e8de730", + "https://www.w3.org/TR/largest-contentful-paint/#d75bc78e", + "https://www.w3.org/TR/largest-contentful-paint/#0f3bdec9", + "https://www.w3.org/TR/largest-contentful-paint/#cf22a135", "https://www.w3.org/TR/largest-contentful-paint/#76cea803", "https://www.w3.org/TR/largest-contentful-paint/#3b786c72", "https://www.w3.org/TR/largest-contentful-paint/#dce2489a", + "https://www.w3.org/TR/largest-contentful-paint/#0d1464b6", + "https://www.w3.org/TR/largest-contentful-paint/#0d1464b6%E2%91%A0", "https://www.w3.org/TR/largest-contentful-paint/#a2de40e9", "https://www.w3.org/TR/largest-contentful-paint/#a9b574b7", "https://www.w3.org/TR/largest-contentful-paint/#85932d17", @@ -287,15 +308,20 @@ "https://www.w3.org/TR/largest-contentful-paint/#normative", "https://www.w3.org/TR/largest-contentful-paint/#biblio-css-backgrounds-3", "https://www.w3.org/TR/largest-contentful-paint/#biblio-css-box-4", + "https://www.w3.org/TR/largest-contentful-paint/#biblio-css-color-3", + "https://www.w3.org/TR/largest-contentful-paint/#biblio-css-color-4", "https://www.w3.org/TR/largest-contentful-paint/#biblio-css-images-3", + "https://www.w3.org/TR/largest-contentful-paint/#biblio-css-text-decor-4", "https://www.w3.org/TR/largest-contentful-paint/#biblio-cssom-view-1", "https://www.w3.org/TR/largest-contentful-paint/#biblio-dom", "https://www.w3.org/TR/largest-contentful-paint/#biblio-event-timing", "https://www.w3.org/TR/largest-contentful-paint/#biblio-fetch", + "https://www.w3.org/TR/largest-contentful-paint/#biblio-fill-stroke-3", "https://www.w3.org/TR/largest-contentful-paint/#biblio-geometry-1", "https://www.w3.org/TR/largest-contentful-paint/#biblio-hr-time-3", "https://www.w3.org/TR/largest-contentful-paint/#biblio-html", "https://www.w3.org/TR/largest-contentful-paint/#biblio-infra", + "https://www.w3.org/TR/largest-contentful-paint/#biblio-largest-contentful-paint", "https://www.w3.org/TR/largest-contentful-paint/#biblio-paint-timing", "https://www.w3.org/TR/largest-contentful-paint/#biblio-performance-timeline", "https://www.w3.org/TR/largest-contentful-paint/#biblio-rfc2119", diff --git a/tr/ids/sparql12-federated-query.json b/tr/ids/sparql12-federated-query.json index 93f8cf109670..f13e642b405d 100644 --- a/tr/ids/sparql12-federated-query.json +++ b/tr/ids/sparql12-federated-query.json @@ -13,64 +13,64 @@ "https://www.w3.org/TR/sparql12-federated-query/#abstract", "https://www.w3.org/TR/sparql12-federated-query/#sotd", "https://www.w3.org/TR/sparql12-federated-query/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-federated-query/#related", + "https://www.w3.org/TR/sparql12-federated-query/#set-of-documents", "https://www.w3.org/TR/sparql12-federated-query/#toc", "https://www.w3.org/TR/sparql12-federated-query/#table-of-contents", - "https://www.w3.org/TR/sparql12-federated-query/#related", - "https://www.w3.org/TR/sparql12-federated-query/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-federated-query/#introduction", - "https://www.w3.org/TR/sparql12-federated-query/#x2-introduction", + "https://www.w3.org/TR/sparql12-federated-query/#x1-introduction", "https://www.w3.org/TR/sparql12-federated-query/#docConventions", - "https://www.w3.org/TR/sparql12-federated-query/#x2-1-document-conventions", + "https://www.w3.org/TR/sparql12-federated-query/#x1-1-document-conventions", "https://www.w3.org/TR/sparql12-federated-query/#docNamespaces", - "https://www.w3.org/TR/sparql12-federated-query/#x2-1-1-namespaces", + "https://www.w3.org/TR/sparql12-federated-query/#x1-1-1-namespaces", "https://www.w3.org/TR/sparql12-federated-query/#docResultDesc", - "https://www.w3.org/TR/sparql12-federated-query/#x2-1-2-result-descriptions", + "https://www.w3.org/TR/sparql12-federated-query/#x1-1-2-result-descriptions", "https://www.w3.org/TR/sparql12-federated-query/#table39", "https://www.w3.org/TR/sparql12-federated-query/#docTerminology", - "https://www.w3.org/TR/sparql12-federated-query/#x2-1-3-terminology", + "https://www.w3.org/TR/sparql12-federated-query/#x1-1-3-terminology", "https://www.w3.org/TR/sparql12-federated-query/#service", - "https://www.w3.org/TR/sparql12-federated-query/#x3-sparql-1-1-federated-query-extension", + "https://www.w3.org/TR/sparql12-federated-query/#x2-sparql-1-1-federated-query-extension", "https://www.w3.org/TR/sparql12-federated-query/#simpleService", - "https://www.w3.org/TR/sparql12-federated-query/#x3-1-simple-query-to-a-remote-sparql-endpoint", + "https://www.w3.org/TR/sparql12-federated-query/#x2-1-simple-query-to-a-remote-sparql-endpoint", "https://www.w3.org/TR/sparql12-federated-query/#fooService1", "https://www.w3.org/TR/sparql12-federated-query/#table1", "https://www.w3.org/TR/sparql12-federated-query/#optionalTwoServices", - "https://www.w3.org/TR/sparql12-federated-query/#x3-2-sparql-query-with-optional-to-two-remote-sparql-endpoints", + "https://www.w3.org/TR/sparql12-federated-query/#x2-2-sparql-query-with-optional-to-two-remote-sparql-endpoints", "https://www.w3.org/TR/sparql12-federated-query/#optionalService1", "https://www.w3.org/TR/sparql12-federated-query/#table03", "https://www.w3.org/TR/sparql12-federated-query/#serviceFailure", - "https://www.w3.org/TR/sparql12-federated-query/#x3-3-service-execution-failure", + "https://www.w3.org/TR/sparql12-federated-query/#x2-3-service-execution-failure", "https://www.w3.org/TR/sparql12-federated-query/#fooService2", "https://www.w3.org/TR/sparql12-federated-query/#table2", "https://www.w3.org/TR/sparql12-federated-query/#values", - "https://www.w3.org/TR/sparql12-federated-query/#x3-4-interplay-of-service-and-values-informative", + "https://www.w3.org/TR/sparql12-federated-query/#x2-4-interplay-of-service-and-values-informative", "https://www.w3.org/TR/sparql12-federated-query/#bindingsService1", "https://www.w3.org/TR/sparql12-federated-query/#bindingsService2", "https://www.w3.org/TR/sparql12-federated-query/#table04a", "https://www.w3.org/TR/sparql12-federated-query/#table04b", "https://www.w3.org/TR/sparql12-federated-query/#table04c", "https://www.w3.org/TR/sparql12-federated-query/#fedSemantics", - "https://www.w3.org/TR/sparql12-federated-query/#x4-sparql-1-1-simple-federation-extension-semantics", + "https://www.w3.org/TR/sparql12-federated-query/#x3-sparql-1-1-simple-federation-extension-semantics", "https://www.w3.org/TR/sparql12-federated-query/#defn_service", - "https://www.w3.org/TR/sparql12-federated-query/#x4-1-translation-to-the-sparql-algebra", + "https://www.w3.org/TR/sparql12-federated-query/#x3-1-translation-to-the-sparql-algebra", "https://www.w3.org/TR/sparql12-federated-query/#algebra_service", - "https://www.w3.org/TR/sparql12-federated-query/#x4-2-sparql-1-1-simple-federation-extension-algebra", + "https://www.w3.org/TR/sparql12-federated-query/#x3-2-sparql-1-1-simple-federation-extension-algebra", "https://www.w3.org/TR/sparql12-federated-query/#defn_evalService", "https://www.w3.org/TR/sparql12-federated-query/#algebra_service_examples", - "https://www.w3.org/TR/sparql12-federated-query/#x4-2-1-service-examples", + "https://www.w3.org/TR/sparql12-federated-query/#x3-2-1-service-examples", "https://www.w3.org/TR/sparql12-federated-query/#variableService", - "https://www.w3.org/TR/sparql12-federated-query/#x5-service-variables-informative", + "https://www.w3.org/TR/sparql12-federated-query/#x4-service-variables-informative", "https://www.w3.org/TR/sparql12-federated-query/#tableResultsVarEndpoint", "https://www.w3.org/TR/sparql12-federated-query/#conformance", - "https://www.w3.org/TR/sparql12-federated-query/#x6-conformance", + "https://www.w3.org/TR/sparql12-federated-query/#x5-conformance", "https://www.w3.org/TR/sparql12-federated-query/#conformance-0", - "https://www.w3.org/TR/sparql12-federated-query/#x6-1-conformance", + "https://www.w3.org/TR/sparql12-federated-query/#x5-1-conformance", "https://www.w3.org/TR/sparql12-federated-query/#security-original", - "https://www.w3.org/TR/sparql12-federated-query/#x7-security-considerations", + "https://www.w3.org/TR/sparql12-federated-query/#x6-security-considerations", "https://www.w3.org/TR/sparql12-federated-query/#sec-bibliography", - "https://www.w3.org/TR/sparql12-federated-query/#x8-references", + "https://www.w3.org/TR/sparql12-federated-query/#x7-references", "https://www.w3.org/TR/sparql12-federated-query/#sec-normative-refs", - "https://www.w3.org/TR/sparql12-federated-query/#x8-1-normative-references", + "https://www.w3.org/TR/sparql12-federated-query/#x7-1-normative-references", "https://www.w3.org/TR/sparql12-federated-query/#SQRY", "https://www.w3.org/TR/sparql12-federated-query/#SPROT", "https://www.w3.org/TR/sparql12-federated-query/#CHARMOD", @@ -81,13 +81,13 @@ "https://www.w3.org/TR/sparql12-federated-query/#XML11", "https://www.w3.org/TR/sparql12-federated-query/#BCP47", "https://www.w3.org/TR/sparql12-federated-query/#sec-non-normative-refs", - "https://www.w3.org/TR/sparql12-federated-query/#x8-2-other-references", + "https://www.w3.org/TR/sparql12-federated-query/#x7-2-other-references", "https://www.w3.org/TR/sparql12-federated-query/#RESULTS", "https://www.w3.org/TR/sparql12-federated-query/#TURTLE", "https://www.w3.org/TR/sparql12-federated-query/#sec-acknowledgements", - "https://www.w3.org/TR/sparql12-federated-query/#x9-acknowledgements", + "https://www.w3.org/TR/sparql12-federated-query/#x8-acknowledgements", "https://www.w3.org/TR/sparql12-federated-query/#sec-cvsLog", - "https://www.w3.org/TR/sparql12-federated-query/#x10-cvs-history-last-call-and-after", + "https://www.w3.org/TR/sparql12-federated-query/#x9-cvs-history-last-call-and-after", "https://www.w3.org/TR/sparql12-federated-query/#changes-1-1", "https://www.w3.org/TR/sparql12-federated-query/#a-changes-between-sparql-1-1-federated-query-and-sparql-1-2-federated-query", "https://www.w3.org/TR/sparql12-federated-query/#privacy", @@ -108,6 +108,8 @@ "https://www.w3.org/TR/sparql12-federated-query/#f-1-normative-references", "https://www.w3.org/TR/sparql12-federated-query/#bib-rfc2119", "https://www.w3.org/TR/sparql12-federated-query/#bib-rfc8174", + "https://www.w3.org/TR/sparql12-federated-query/#informative-references", + "https://www.w3.org/TR/sparql12-federated-query/#f-2-informative-references", "https://www.w3.org/TR/sparql12-federated-query/#bib-sparql12-concepts", "https://www.w3.org/TR/sparql12-federated-query/#bib-sparql12-entailment", "https://www.w3.org/TR/sparql12-federated-query/#bib-sparql12-graph-store-protocol", diff --git a/tr/ids/sparql12-graph-store-protocol.json b/tr/ids/sparql12-graph-store-protocol.json index 81dcfe66b7fc..946871cace3b 100644 --- a/tr/ids/sparql12-graph-store-protocol.json +++ b/tr/ids/sparql12-graph-store-protocol.json @@ -13,52 +13,52 @@ "https://www.w3.org/TR/sparql12-graph-store-protocol/#abstract", "https://www.w3.org/TR/sparql12-graph-store-protocol/#sotd", "https://www.w3.org/TR/sparql12-graph-store-protocol/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#related", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#set-of-documents", "https://www.w3.org/TR/sparql12-graph-store-protocol/#toc", "https://www.w3.org/TR/sparql12-graph-store-protocol/#table-of-contents", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#related", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-graph-store-protocol/#introduction", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x2-introduction", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x1-introduction", "https://www.w3.org/TR/sparql12-graph-store-protocol/#terminology", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x3-terminology", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x2-terminology", "https://www.w3.org/TR/sparql12-graph-store-protocol/#protocol-model", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x4-protocol-model", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x3-protocol-model", "https://www.w3.org/TR/sparql12-graph-store-protocol/#graph-identification", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-graph-identification", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x4-graph-identification", "https://www.w3.org/TR/sparql12-graph-store-protocol/#direct-graph-identification", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-1-direct-graph-identification", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x4-1-direct-graph-identification", "https://www.w3.org/TR/sparql12-graph-store-protocol/#indirect-graph-identification", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-2-indirect-graph-identification", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x4-2-indirect-graph-identification", "https://www.w3.org/TR/sparql12-graph-store-protocol/#graph-management", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-graph-management-operations", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-graph-management-operations", "https://www.w3.org/TR/sparql12-graph-store-protocol/#status-codes", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-1-status-codes", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-1-status-codes", "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-get", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-2-http-get", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-2-http-get", "https://www.w3.org/TR/sparql12-graph-store-protocol/#httpRange-14", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-2-1-ambiguity-regarding-the-range-of-http-get-informative", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-2-1-ambiguity-regarding-the-range-of-http-get-informative", "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-put", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-3-http-put", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-3-http-put", "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-delete", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-4-http-delete", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-4-http-delete", "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-post", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-5-http-post", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-5-http-post", "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-head", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-6-http-head", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-6-http-head", "https://www.w3.org/TR/sparql12-graph-store-protocol/#http-patch", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-7-http-patch-informative", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x5-7-http-patch-informative", "https://www.w3.org/TR/sparql12-graph-store-protocol/#security-original", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x7-security-considerations", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x6-security-considerations", "https://www.w3.org/TR/sparql12-graph-store-protocol/#conformance", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x8-conformance", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x7-conformance", "https://www.w3.org/TR/sparql12-graph-store-protocol/#conformance-0", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x8-1-conformance", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x7-1-conformance", "https://www.w3.org/TR/sparql12-graph-store-protocol/#changes", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x9-changes", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x8-changes", "https://www.w3.org/TR/sparql12-graph-store-protocol/#sec-bibliography", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x10-references", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x9-references", "https://www.w3.org/TR/sparql12-graph-store-protocol/#section-Normative-References", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x10-1-normative-references", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x9-1-normative-references", "https://www.w3.org/TR/sparql12-graph-store-protocol/#rfc2119", "https://www.w3.org/TR/sparql12-graph-store-protocol/#html4", "https://www.w3.org/TR/sparql12-graph-store-protocol/#rfc3986", @@ -67,17 +67,17 @@ "https://www.w3.org/TR/sparql12-graph-store-protocol/#rfc3987", "https://www.w3.org/TR/sparql12-graph-store-protocol/#SPARQL-UPDATE", "https://www.w3.org/TR/sparql12-graph-store-protocol/#section-informative-references", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x10-2-informative-references", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x9-2-informative-references", "https://www.w3.org/TR/sparql12-graph-store-protocol/#RDF-MT", "https://www.w3.org/TR/sparql12-graph-store-protocol/#SPARQL", "https://www.w3.org/TR/sparql12-graph-store-protocol/#ackacknowledgements", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x11-acknowledgements", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x10-acknowledgements", "https://www.w3.org/TR/sparql12-graph-store-protocol/#privacy", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x12-privacy-considerations", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x11-privacy-considerations", "https://www.w3.org/TR/sparql12-graph-store-protocol/#security", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x13-security-considerations", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x12-security-considerations", "https://www.w3.org/TR/sparql12-graph-store-protocol/#internationalization", - "https://www.w3.org/TR/sparql12-graph-store-protocol/#x14-internationalization-considerations", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#x13-internationalization-considerations", "https://www.w3.org/TR/sparql12-graph-store-protocol/#changes-from-sparql11", "https://www.w3.org/TR/sparql12-graph-store-protocol/#a-change-log", "https://www.w3.org/TR/sparql12-graph-store-protocol/#index", @@ -92,6 +92,8 @@ "https://www.w3.org/TR/sparql12-graph-store-protocol/#c-1-normative-references", "https://www.w3.org/TR/sparql12-graph-store-protocol/#bib-rfc2119", "https://www.w3.org/TR/sparql12-graph-store-protocol/#bib-rfc8174", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#informative-references", + "https://www.w3.org/TR/sparql12-graph-store-protocol/#c-2-informative-references", "https://www.w3.org/TR/sparql12-graph-store-protocol/#bib-sparql12-concepts", "https://www.w3.org/TR/sparql12-graph-store-protocol/#bib-sparql12-entailment", "https://www.w3.org/TR/sparql12-graph-store-protocol/#bib-sparql12-federated-query", diff --git a/tr/ids/sparql12-protocol.json b/tr/ids/sparql12-protocol.json index 64474e518737..a8230f247ddc 100644 --- a/tr/ids/sparql12-protocol.json +++ b/tr/ids/sparql12-protocol.json @@ -13,44 +13,44 @@ "https://www.w3.org/TR/sparql12-protocol/#abstract", "https://www.w3.org/TR/sparql12-protocol/#sotd", "https://www.w3.org/TR/sparql12-protocol/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-protocol/#related", + "https://www.w3.org/TR/sparql12-protocol/#set-of-documents", "https://www.w3.org/TR/sparql12-protocol/#toc", "https://www.w3.org/TR/sparql12-protocol/#table-of-contents", - "https://www.w3.org/TR/sparql12-protocol/#related", - "https://www.w3.org/TR/sparql12-protocol/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-protocol/#intro", - "https://www.w3.org/TR/sparql12-protocol/#x2-introduction", + "https://www.w3.org/TR/sparql12-protocol/#x1-introduction", "https://www.w3.org/TR/sparql12-protocol/#conventions", - "https://www.w3.org/TR/sparql12-protocol/#x2-1-document-conventions", + "https://www.w3.org/TR/sparql12-protocol/#x1-1-document-conventions", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-rfc-2119-1", "https://www.w3.org/TR/sparql12-protocol/#terminology", - "https://www.w3.org/TR/sparql12-protocol/#x2-2-terminology", + "https://www.w3.org/TR/sparql12-protocol/#x1-2-terminology", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-section-3-3-connections-clients-and-servers-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-section-3-3-connections-clients-and-servers-2", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-sparql-1-2-query-language-1", "https://www.w3.org/TR/sparql12-protocol/#protocol", - "https://www.w3.org/TR/sparql12-protocol/#x3-sparql-protocol-operations", + "https://www.w3.org/TR/sparql12-protocol/#x2-sparql-protocol-operations", "https://www.w3.org/TR/sparql12-protocol/#query-operation", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-query-operation", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-query-operation", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-query-form-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-content-negotiation-1", "https://www.w3.org/TR/sparql12-protocol/#query-summary", "https://www.w3.org/TR/sparql12-protocol/#query-via-get", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-1-query-via-get", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-1-query-via-get", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-percent-encode-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-query-parameter-1", "https://www.w3.org/TR/sparql12-protocol/#query-via-post-urlencoded", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-2-query-via-post-with-url-encoded-parameters", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-2-query-via-post-with-url-encoded-parameters", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-percent-encode-2", "https://www.w3.org/TR/sparql12-protocol/#query-via-post-direct", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-3-query-via-post-directly", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-3-query-via-post-directly", "https://www.w3.org/TR/sparql12-protocol/#dataset", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-4-specifying-an-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-4-specifying-an-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-sparql-1-2-query-language-2", "https://www.w3.org/TR/sparql12-protocol/#conneg", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-5-accepted-response-formats", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-5-accepted-response-formats", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-content-negotiation-2", "https://www.w3.org/TR/sparql12-protocol/#query-success", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-6-success-responses", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-6-success-responses", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-http-specification-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-xml-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-json-1", @@ -60,93 +60,93 @@ "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-describe-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-construct-1", "https://www.w3.org/TR/sparql12-protocol/#query-failure", - "https://www.w3.org/TR/sparql12-protocol/#x3-1-7-failure-responses", + "https://www.w3.org/TR/sparql12-protocol/#x2-1-7-failure-responses", "https://www.w3.org/TR/sparql12-protocol/#update-operation", - "https://www.w3.org/TR/sparql12-protocol/#x3-2-update-operation", + "https://www.w3.org/TR/sparql12-protocol/#x2-2-update-operation", "https://www.w3.org/TR/sparql12-protocol/#update-summary", "https://www.w3.org/TR/sparql12-protocol/#update-via-post-urlencoded", - "https://www.w3.org/TR/sparql12-protocol/#x3-2-1-update-via-post-with-url-encoded-parameters", + "https://www.w3.org/TR/sparql12-protocol/#x2-2-1-update-via-post-with-url-encoded-parameters", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-percent-encode-0-1", "https://www.w3.org/TR/sparql12-protocol/#update-via-post-direct", - "https://www.w3.org/TR/sparql12-protocol/#x3-2-2-update-via-post-directly", + "https://www.w3.org/TR/sparql12-protocol/#x2-2-2-update-via-post-directly", "https://www.w3.org/TR/sparql12-protocol/#update-dataset", - "https://www.w3.org/TR/sparql12-protocol/#x3-2-3-specifying-an-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x2-2-3-specifying-an-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-delete-insert-operation-1", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-sparql-1-2-query-language-3", "https://www.w3.org/TR/sparql12-protocol/#update-success", - "https://www.w3.org/TR/sparql12-protocol/#x3-2-4-success-responses", + "https://www.w3.org/TR/sparql12-protocol/#x2-2-4-success-responses", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-http-specification-2", "https://www.w3.org/TR/sparql12-protocol/#update-failure", - "https://www.w3.org/TR/sparql12-protocol/#x3-2-5-failure-responses", + "https://www.w3.org/TR/sparql12-protocol/#x2-2-5-failure-responses", "https://www.w3.org/TR/sparql12-protocol/#base-iri", - "https://www.w3.org/TR/sparql12-protocol/#x3-3-determining-the-base-iri", + "https://www.w3.org/TR/sparql12-protocol/#x2-3-determining-the-base-iri", "https://www.w3.org/TR/sparql12-protocol/#examples", - "https://www.w3.org/TR/sparql12-protocol/#x4-example-sparql-protocol-requests-informative", + "https://www.w3.org/TR/sparql12-protocol/#x3-example-sparql-protocol-requests-informative", "https://www.w3.org/TR/sparql12-protocol/#query-bindings-http-examples", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-examples-of-sparql-query", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-examples-of-sparql-query", "https://www.w3.org/TR/sparql12-protocol/#select-svcsupplied", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-1-select-with-service-supplied-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-1-select-with-service-supplied-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-select-svcsupplied", "https://www.w3.org/TR/sparql12-protocol/#select-simple", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-2-select-with-simple-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-2-select-with-simple-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-select-simple", "https://www.w3.org/TR/sparql12-protocol/#construct-simple", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-3-construct-with-simple-rdf-dataset-and-http-content-negotiation", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-3-construct-with-simple-rdf-dataset-and-http-content-negotiation", "https://www.w3.org/TR/sparql12-protocol/#div-construct-simple", "https://www.w3.org/TR/sparql12-protocol/#ask-simple", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-4-ask-with-simple-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-4-ask-with-simple-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-ask-simple", "https://www.w3.org/TR/sparql12-protocol/#describe-simple", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-5-describe-with-simple-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-5-describe-with-simple-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-describe-simple", "https://www.w3.org/TR/sparql12-protocol/#select-complex", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-6-select-with-complex-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-6-select-with-complex-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-select-complex", "https://www.w3.org/TR/sparql12-protocol/#select-queryonly", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-7-select-with-query-only-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-7-select-with-query-only-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-select-queryonly", "https://www.w3.org/TR/sparql12-protocol/#select-ambiguous", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-8-select-with-ambiguous-rdf-dataset", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-8-select-with-ambiguous-rdf-dataset", "https://www.w3.org/TR/sparql12-protocol/#div-select-ambiguous", "https://www.w3.org/TR/sparql12-protocol/#select-malformed", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-9-select-with-malformed-query-fault", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-9-select-with-malformed-query-fault", "https://www.w3.org/TR/sparql12-protocol/#div-select-malformed", "https://www.w3.org/TR/sparql12-protocol/#select-refused", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-10-select-with-query-request-refused-fault", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-10-select-with-query-request-refused-fault", "https://www.w3.org/TR/sparql12-protocol/#div-select-refused", "https://www.w3.org/TR/sparql12-protocol/#select-longpost", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-11-long-select-query-using-post-with-url-encoding", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-11-long-select-query-using-post-with-url-encoding", "https://www.w3.org/TR/sparql12-protocol/#div-select-longpost", "https://www.w3.org/TR/sparql12-protocol/#select-longpost-direct", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-12-long-select-query-using-direct-post", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-12-long-select-query-using-direct-post", "https://www.w3.org/TR/sparql12-protocol/#select-kanji", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-13-select-with-internationalization", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-13-select-with-internationalization", "https://www.w3.org/TR/sparql12-protocol/#div-select-kanji", "https://www.w3.org/TR/sparql12-protocol/#select-reified-triples", - "https://www.w3.org/TR/sparql12-protocol/#x4-1-14-select-with-reified-triple-patterns", + "https://www.w3.org/TR/sparql12-protocol/#x3-1-14-select-with-reified-triple-patterns", "https://www.w3.org/TR/sparql12-protocol/#div-select-reified-triple", "https://www.w3.org/TR/sparql12-protocol/#update-bindings-http-examples", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-examples-of-sparql-update", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-examples-of-sparql-update", "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-simple", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-1-update-using-url-encoded-parameters", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-1-update-using-url-encoded-parameters", "https://www.w3.org/TR/sparql12-protocol/#update-direct-simple", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-2-update-using-post-directly", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-2-update-using-post-directly", "https://www.w3.org/TR/sparql12-protocol/#update-direct-simple-dataset", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-3-update-specifying-dataset-and-using-post-directly", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-3-update-specifying-dataset-and-using-post-directly", "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-multi", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-4-multi-operation-update-using-url-encoded-parameters", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-4-multi-operation-update-using-url-encoded-parameters", "https://www.w3.org/TR/sparql12-protocol/#update-urlencoded-multi-dataset", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-5-multi-operation-update-specifying-dataset-and-using-url-encoded-parameters", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-5-multi-operation-update-specifying-dataset-and-using-url-encoded-parameters", "https://www.w3.org/TR/sparql12-protocol/#update-direct-multi-dataset", - "https://www.w3.org/TR/sparql12-protocol/#x4-2-6-multi-operation-update-specifying-dataset-and-using-post-directly", + "https://www.w3.org/TR/sparql12-protocol/#x3-2-6-multi-operation-update-specifying-dataset-and-using-post-directly", "https://www.w3.org/TR/sparql12-protocol/#policy", - "https://www.w3.org/TR/sparql12-protocol/#x5-policy-considerations", + "https://www.w3.org/TR/sparql12-protocol/#x4-policy-considerations", "https://www.w3.org/TR/sparql12-protocol/#policy-security", - "https://www.w3.org/TR/sparql12-protocol/#x5-1-security", + "https://www.w3.org/TR/sparql12-protocol/#x4-1-security", "https://www.w3.org/TR/sparql12-protocol/#conformance", - "https://www.w3.org/TR/sparql12-protocol/#x6-conformance", + "https://www.w3.org/TR/sparql12-protocol/#x5-conformance", "https://www.w3.org/TR/sparql12-protocol/#conformance-0", - "https://www.w3.org/TR/sparql12-protocol/#x6-1-conformance", + "https://www.w3.org/TR/sparql12-protocol/#x5-1-conformance", "https://www.w3.org/TR/sparql12-protocol/#conformant-sparql-protocol-service", "https://www.w3.org/TR/sparql12-protocol/#ref-for-index-term-rfc-2119-2", "https://www.w3.org/TR/sparql12-protocol/#changes-1-1", @@ -193,18 +193,20 @@ "https://www.w3.org/TR/sparql12-protocol/#bib-rfc3987", "https://www.w3.org/TR/sparql12-protocol/#bib-rfc8174", "https://www.w3.org/TR/sparql12-protocol/#bib-rfc9110", - "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-concepts", - "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-entailment", - "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-federated-query", "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-graph-store-protocol", - "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-new", "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-query", "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-results-csv-tsv", "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-results-json", "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-results-xml", - "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-service-description", "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-update", "https://www.w3.org/TR/sparql12-protocol/#bib-utr36", + "https://www.w3.org/TR/sparql12-protocol/#informative-references", + "https://www.w3.org/TR/sparql12-protocol/#g-2-informative-references", + "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-concepts", + "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-entailment", + "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-federated-query", + "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-new", + "https://www.w3.org/TR/sparql12-protocol/#bib-sparql12-service-description", "https://www.w3.org/TR/sparql12-protocol/#back-to-top" ] } \ No newline at end of file diff --git a/tr/ids/sparql12-results-csv-tsv.json b/tr/ids/sparql12-results-csv-tsv.json index 38533ae0c1eb..b5564a5fe55a 100644 --- a/tr/ids/sparql12-results-csv-tsv.json +++ b/tr/ids/sparql12-results-csv-tsv.json @@ -13,43 +13,43 @@ "https://www.w3.org/TR/sparql12-results-csv-tsv/#abstract", "https://www.w3.org/TR/sparql12-results-csv-tsv/#sotd", "https://www.w3.org/TR/sparql12-results-csv-tsv/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#related", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#set-of-documents", "https://www.w3.org/TR/sparql12-results-csv-tsv/#toc", "https://www.w3.org/TR/sparql12-results-csv-tsv/#table-of-contents", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#related", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-results-csv-tsv/#introduction", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x2-introduction", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x1-introduction", "https://www.w3.org/TR/sparql12-results-csv-tsv/#example1", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x2-1-example", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x1-1-example", "https://www.w3.org/TR/sparql12-results-csv-tsv/#general-comments", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x3-transmission-issues-using-csv-and-tsv-formats", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x2-transmission-issues-using-csv-and-tsv-formats", "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-table", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-csv-comma-separated-values", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x3-csv-comma-separated-values", "https://www.w3.org/TR/sparql12-results-csv-tsv/#serializing-results", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-1-serializing-the-results-table", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x3-1-serializing-the-results-table", "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-terms", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-2-serializing-rdf-terms", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x3-2-serializing-rdf-terms", "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-terms-escaping", "https://www.w3.org/TR/sparql12-results-csv-tsv/#h-note", "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-example", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-3-example-of-csv-serialized-results", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x3-3-example-of-csv-serialized-results", "https://www.w3.org/TR/sparql12-results-csv-tsv/#csv-example-triple-terms", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-4-example-of-csv-serialized-results-with-triple-terms", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x3-4-example-of-csv-serialized-results-with-triple-terms", "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-tsv-tab-separated-values", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-tsv-tab-separated-values", "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-table", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-1-serializing-the-results-table", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-1-serializing-the-results-table", "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-terms", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-2-serializing-rdf-terms", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-2-serializing-rdf-terms", "https://www.w3.org/TR/sparql12-results-csv-tsv/#ref-for-index-term-relative-reference-1", "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-example", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-3-example-of-tsv-serialized-results", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-3-example-of-tsv-serialized-results", "https://www.w3.org/TR/sparql12-results-csv-tsv/#tsv-example-triple-terms", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-4-example-of-tsv-serialized-results-with-triple-terms", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x4-4-example-of-tsv-serialized-results-with-triple-terms", "https://www.w3.org/TR/sparql12-results-csv-tsv/#conformance", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x6-conformance", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-conformance", "https://www.w3.org/TR/sparql12-results-csv-tsv/#conformance-0", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#x6-1-conformance", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#x5-1-conformance", "https://www.w3.org/TR/sparql12-results-csv-tsv/#changes-1-1", "https://www.w3.org/TR/sparql12-results-csv-tsv/#a-changes-between-sparql-1-1-query-results-csv-and-tsv-formats-and-sparql-1-2-query-results-csv-and-tsv-formats", "https://www.w3.org/TR/sparql12-results-csv-tsv/#privacy", @@ -75,18 +75,20 @@ "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-rfc3986", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-rfc3987", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-rfc4180", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-query", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-results-json", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-results-xml", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-unicode", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#informative-references", + "https://www.w3.org/TR/sparql12-results-csv-tsv/#f-2-informative-references", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-concepts", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-entailment", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-federated-query", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-graph-store-protocol", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-new", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-protocol", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-query", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-results-json", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-results-xml", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-service-description", "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-sparql12-update", - "https://www.w3.org/TR/sparql12-results-csv-tsv/#bib-unicode", "https://www.w3.org/TR/sparql12-results-csv-tsv/#back-to-top" ] } \ No newline at end of file diff --git a/tr/ids/sparql12-results-json.json b/tr/ids/sparql12-results-json.json index 16025f3eec96..249a0df144c9 100644 --- a/tr/ids/sparql12-results-json.json +++ b/tr/ids/sparql12-results-json.json @@ -15,47 +15,47 @@ "https://www.w3.org/TR/sparql12-results-json/#ref-for-index-term-json-1", "https://www.w3.org/TR/sparql12-results-json/#sotd", "https://www.w3.org/TR/sparql12-results-json/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-results-json/#related", + "https://www.w3.org/TR/sparql12-results-json/#set-of-documents", "https://www.w3.org/TR/sparql12-results-json/#toc", "https://www.w3.org/TR/sparql12-results-json/#table-of-contents", - "https://www.w3.org/TR/sparql12-results-json/#related", - "https://www.w3.org/TR/sparql12-results-json/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-results-json/#introduction", - "https://www.w3.org/TR/sparql12-results-json/#x2-introduction", + "https://www.w3.org/TR/sparql12-results-json/#x1-introduction", "https://www.w3.org/TR/sparql12-results-json/#ref-for-index-term-json-2", "https://www.w3.org/TR/sparql12-results-json/#json-result-object", - "https://www.w3.org/TR/sparql12-results-json/#x3-json-results-object", + "https://www.w3.org/TR/sparql12-results-json/#x2-json-results-object", "https://www.w3.org/TR/sparql12-results-json/#select-results-form", - "https://www.w3.org/TR/sparql12-results-json/#x4-variable-binding-results", + "https://www.w3.org/TR/sparql12-results-json/#x3-variable-binding-results", "https://www.w3.org/TR/sparql12-results-json/#select-head", - "https://www.w3.org/TR/sparql12-results-json/#x4-1-head", + "https://www.w3.org/TR/sparql12-results-json/#x3-1-head", "https://www.w3.org/TR/sparql12-results-json/#select-vars", - "https://www.w3.org/TR/sparql12-results-json/#x4-1-1-vars", + "https://www.w3.org/TR/sparql12-results-json/#x3-1-1-vars", "https://www.w3.org/TR/sparql12-results-json/#select-link", - "https://www.w3.org/TR/sparql12-results-json/#x4-1-2-link", + "https://www.w3.org/TR/sparql12-results-json/#x3-1-2-link", "https://www.w3.org/TR/sparql12-results-json/#select-results", - "https://www.w3.org/TR/sparql12-results-json/#x4-2-results", + "https://www.w3.org/TR/sparql12-results-json/#x3-2-results", "https://www.w3.org/TR/sparql12-results-json/#select-bindings", - "https://www.w3.org/TR/sparql12-results-json/#x4-2-1-bindings", + "https://www.w3.org/TR/sparql12-results-json/#x3-2-1-bindings", "https://www.w3.org/TR/sparql12-results-json/#select-encode-terms", - "https://www.w3.org/TR/sparql12-results-json/#x4-2-2-encoding-rdf-terms", + "https://www.w3.org/TR/sparql12-results-json/#x3-2-2-encoding-rdf-terms", "https://www.w3.org/TR/sparql12-results-json/#issue-container-generatedID", "https://www.w3.org/TR/sparql12-results-json/#h-note", "https://www.w3.org/TR/sparql12-results-json/#ask-result-form", - "https://www.w3.org/TR/sparql12-results-json/#x5-boolean-results", + "https://www.w3.org/TR/sparql12-results-json/#x4-boolean-results", "https://www.w3.org/TR/sparql12-results-json/#ask-head", - "https://www.w3.org/TR/sparql12-results-json/#x5-1-head", + "https://www.w3.org/TR/sparql12-results-json/#x4-1-head", "https://www.w3.org/TR/sparql12-results-json/#ask-link", - "https://www.w3.org/TR/sparql12-results-json/#x5-1-1-link", + "https://www.w3.org/TR/sparql12-results-json/#x4-1-1-link", "https://www.w3.org/TR/sparql12-results-json/#ask-boolean", - "https://www.w3.org/TR/sparql12-results-json/#x5-2-boolean", + "https://www.w3.org/TR/sparql12-results-json/#x4-2-boolean", "https://www.w3.org/TR/sparql12-results-json/#example", - "https://www.w3.org/TR/sparql12-results-json/#x6-examples", + "https://www.w3.org/TR/sparql12-results-json/#x5-examples", "https://www.w3.org/TR/sparql12-results-json/#example-bindings", - "https://www.w3.org/TR/sparql12-results-json/#x6-1-variable-binding-results-examples", + "https://www.w3.org/TR/sparql12-results-json/#x5-1-variable-binding-results-examples", "https://www.w3.org/TR/sparql12-results-json/#example-bindings-triple-term", - "https://www.w3.org/TR/sparql12-results-json/#x6-2-variable-binding-results-examples-with-triple-terms", + "https://www.w3.org/TR/sparql12-results-json/#x5-2-variable-binding-results-examples-with-triple-terms", "https://www.w3.org/TR/sparql12-results-json/#media-type", - "https://www.w3.org/TR/sparql12-results-json/#x7-internet-media-type-file-extension-and-macintosh-file-type", + "https://www.w3.org/TR/sparql12-results-json/#x6-internet-media-type-file-extension-and-macintosh-file-type", "https://www.w3.org/TR/sparql12-results-json/#mime", "https://www.w3.org/TR/sparql12-results-json/#changes-1-1", "https://www.w3.org/TR/sparql12-results-json/#a-changes-between-sparql-1-1-query-results-json-format-and-sparql-1-2-query-results-json-format", diff --git a/tr/ids/sparql12-results-xml.json b/tr/ids/sparql12-results-xml.json index 90d74588298e..35e78d0a3230 100644 --- a/tr/ids/sparql12-results-xml.json +++ b/tr/ids/sparql12-results-xml.json @@ -13,45 +13,45 @@ "https://www.w3.org/TR/sparql12-results-xml/#abstract", "https://www.w3.org/TR/sparql12-results-xml/#sotd", "https://www.w3.org/TR/sparql12-results-xml/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-results-xml/#related", + "https://www.w3.org/TR/sparql12-results-xml/#set-of-documents", "https://www.w3.org/TR/sparql12-results-xml/#toc", "https://www.w3.org/TR/sparql12-results-xml/#table-of-contents", - "https://www.w3.org/TR/sparql12-results-xml/#related", - "https://www.w3.org/TR/sparql12-results-xml/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-results-xml/#introduction", - "https://www.w3.org/TR/sparql12-results-xml/#x2-introduction", + "https://www.w3.org/TR/sparql12-results-xml/#x1-introduction", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-sparql-query-section-10-1", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-sparql-query-section-10-2-1", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-sparql-query-section-10-5-1", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-xml-1", "https://www.w3.org/TR/sparql12-results-xml/#definition", - "https://www.w3.org/TR/sparql12-results-xml/#x3-definition", + "https://www.w3.org/TR/sparql12-results-xml/#x2-definition", "https://www.w3.org/TR/sparql12-results-xml/#defn-srd", "https://www.w3.org/TR/sparql12-results-xml/#docElement", - "https://www.w3.org/TR/sparql12-results-xml/#x3-1-document-element", + "https://www.w3.org/TR/sparql12-results-xml/#x2-1-document-element", "https://www.w3.org/TR/sparql12-results-xml/#issue-container-generatedID", "https://www.w3.org/TR/sparql12-results-xml/#h-note", "https://www.w3.org/TR/sparql12-results-xml/#head", - "https://www.w3.org/TR/sparql12-results-xml/#x3-2-header", + "https://www.w3.org/TR/sparql12-results-xml/#x2-2-header", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-query-variable-1", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-solution-sequence-1", "https://www.w3.org/TR/sparql12-results-xml/#results", - "https://www.w3.org/TR/sparql12-results-xml/#x3-3-results", + "https://www.w3.org/TR/sparql12-results-xml/#x2-3-results", "https://www.w3.org/TR/sparql12-results-xml/#vb-results", - "https://www.w3.org/TR/sparql12-results-xml/#x3-3-1-variable-binding-results", + "https://www.w3.org/TR/sparql12-results-xml/#x2-3-1-variable-binding-results", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-query-solution-1", "https://www.w3.org/TR/sparql12-results-xml/#ref-for-index-term-rdf-terms-1", "https://www.w3.org/TR/sparql12-results-xml/#boolean-results", - "https://www.w3.org/TR/sparql12-results-xml/#x3-3-2-boolean-results", + "https://www.w3.org/TR/sparql12-results-xml/#x2-3-2-boolean-results", "https://www.w3.org/TR/sparql12-results-xml/#examples", - "https://www.w3.org/TR/sparql12-results-xml/#x4-examples", + "https://www.w3.org/TR/sparql12-results-xml/#x3-examples", "https://www.w3.org/TR/sparql12-results-xml/#vb-examples", - "https://www.w3.org/TR/sparql12-results-xml/#x4-1-variable-binding-results-examples", + "https://www.w3.org/TR/sparql12-results-xml/#x3-1-variable-binding-results-examples", "https://www.w3.org/TR/sparql12-results-xml/#vb-triple-terms-examples", - "https://www.w3.org/TR/sparql12-results-xml/#x4-2-variable-binding-results-examples-with-triple-terms", + "https://www.w3.org/TR/sparql12-results-xml/#x3-2-variable-binding-results-examples-with-triple-terms", "https://www.w3.org/TR/sparql12-results-xml/#boolean-examples", - "https://www.w3.org/TR/sparql12-results-xml/#x4-3-boolean-results-examples", + "https://www.w3.org/TR/sparql12-results-xml/#x3-3-boolean-results-examples", "https://www.w3.org/TR/sparql12-results-xml/#schemas", - "https://www.w3.org/TR/sparql12-results-xml/#x5-xml-schemas", + "https://www.w3.org/TR/sparql12-results-xml/#x4-xml-schemas", "https://www.w3.org/TR/sparql12-results-xml/#changes-1-1", "https://www.w3.org/TR/sparql12-results-xml/#a-changes-between-sparql-query-results-xml-format-second-edition-and-sparql-1-2-query-results-xml-format", "https://www.w3.org/TR/sparql12-results-xml/#mediatype", diff --git a/tr/ids/sparql12-service-description.json b/tr/ids/sparql12-service-description.json index bb000997f8c3..9fc5a9889fd4 100644 --- a/tr/ids/sparql12-service-description.json +++ b/tr/ids/sparql12-service-description.json @@ -13,40 +13,40 @@ "https://www.w3.org/TR/sparql12-service-description/#abstract", "https://www.w3.org/TR/sparql12-service-description/#sotd", "https://www.w3.org/TR/sparql12-service-description/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-service-description/#related", + "https://www.w3.org/TR/sparql12-service-description/#set-of-documents", "https://www.w3.org/TR/sparql12-service-description/#toc", "https://www.w3.org/TR/sparql12-service-description/#table-of-contents", - "https://www.w3.org/TR/sparql12-service-description/#related", - "https://www.w3.org/TR/sparql12-service-description/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-service-description/#intro", - "https://www.w3.org/TR/sparql12-service-description/#x2-introduction", + "https://www.w3.org/TR/sparql12-service-description/#x1-introduction", "https://www.w3.org/TR/sparql12-service-description/#terminology", - "https://www.w3.org/TR/sparql12-service-description/#x2-1-terminology", + "https://www.w3.org/TR/sparql12-service-description/#x1-1-terminology", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-sparql-protocol-service-1", "https://www.w3.org/TR/sparql12-service-description/#accessing", - "https://www.w3.org/TR/sparql12-service-description/#x3-accessing-a-service-description", + "https://www.w3.org/TR/sparql12-service-description/#x2-accessing-a-service-description", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-content-negotiation-1", "https://www.w3.org/TR/sparql12-service-description/#vocab", - "https://www.w3.org/TR/sparql12-service-description/#x4-service-description-vocabulary", + "https://www.w3.org/TR/sparql12-service-description/#x3-service-description-vocabulary", "https://www.w3.org/TR/sparql12-service-description/#namespace", - "https://www.w3.org/TR/sparql12-service-description/#x4-1-sparql-service-description-namespace-and-owl-ontology", + "https://www.w3.org/TR/sparql12-service-description/#x3-1-sparql-service-description-namespace-and-owl-ontology", "https://www.w3.org/TR/sparql12-service-description/#properties", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-properties", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-properties", "https://www.w3.org/TR/sparql12-service-description/#sd-endpoint", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-1-sd-endpoint", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-1-sd-endpoint", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-sparql-protocol-service-2", "https://www.w3.org/TR/sparql12-service-description/#sd-feature", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-2-sd-feature", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-2-sd-feature", "https://www.w3.org/TR/sparql12-service-description/#sd-defaultEntailmentRegime", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-3-sd-defaultentailmentregime", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-3-sd-defaultentailmentregime", "https://www.w3.org/TR/sparql12-service-description/#sd-entailmentRegime", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-4-sd-entailmentregime", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-4-sd-entailmentregime", "https://www.w3.org/TR/sparql12-service-description/#sd-defaultSupportedEntailmentProfile", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-5-sd-defaultsupportedentailmentprofile", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-5-sd-defaultsupportedentailmentprofile", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-sparql-1-2-entailment-regimes-1", "https://www.w3.org/TR/sparql12-service-description/#sd-supportedEntailmentProfile", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-6-sd-supportedentailmentprofile", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-6-sd-supportedentailmentprofile", "https://www.w3.org/TR/sparql12-service-description/#sd-extensionFunction", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-7-sd-extensionfunction", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-7-sd-extensionfunction", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-select-expression-1", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-filter-1", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-having-1", @@ -54,43 +54,43 @@ "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-order-by-1", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-bind-1", "https://www.w3.org/TR/sparql12-service-description/#sd-extensionAggregate", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-8-sd-extensionaggregate", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-8-sd-extensionaggregate", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-having-2", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-select-expression-2", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-supported-aggregates-1", "https://www.w3.org/TR/sparql12-service-description/#sd-languageExtension", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-9-sd-languageextension", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-9-sd-languageextension", "https://www.w3.org/TR/sparql12-service-description/#sd-supportedLanguage", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-10-sd-supportedlanguage", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-10-sd-supportedlanguage", "https://www.w3.org/TR/sparql12-service-description/#sd-propertyFeature", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-11-sd-propertyfeature", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-11-sd-propertyfeature", "https://www.w3.org/TR/sparql12-service-description/#sd-defaultDataset", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-12-sd-defaultdataset", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-12-sd-defaultdataset", "https://www.w3.org/TR/sparql12-service-description/#sd-availableGraphs", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-13-sd-availablegraphs", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-13-sd-availablegraphs", "https://www.w3.org/TR/sparql12-service-description/#sd-resultFormat", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-14-sd-resultformat", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-14-sd-resultformat", "https://www.w3.org/TR/sparql12-service-description/#sd-inputFormat", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-15-sd-inputformat", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-15-sd-inputformat", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-load-statement-1", "https://www.w3.org/TR/sparql12-service-description/#sd-defaultGraph", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-16-sd-defaultgraph", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-16-sd-defaultgraph", "https://www.w3.org/TR/sparql12-service-description/#sd-namedGraph", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-17-sd-namedgraph", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-17-sd-namedgraph", "https://www.w3.org/TR/sparql12-service-description/#sd-name", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-18-sd-name", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-18-sd-name", "https://www.w3.org/TR/sparql12-service-description/#sd-graph", - "https://www.w3.org/TR/sparql12-service-description/#x4-2-19-sd-graph", + "https://www.w3.org/TR/sparql12-service-description/#x3-2-19-sd-graph", "https://www.w3.org/TR/sparql12-service-description/#classes", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-classes", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-classes", "https://www.w3.org/TR/sparql12-service-description/#sd-Service", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-1-sd-service", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-1-sd-service", "https://www.w3.org/TR/sparql12-service-description/#sd-Feature", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-2-sd-feature", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-2-sd-feature", "https://www.w3.org/TR/sparql12-service-description/#sd-Language", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-3-sd-language", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-3-sd-language", "https://www.w3.org/TR/sparql12-service-description/#sd-Function", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-4-sd-function", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-4-sd-function", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-select-expression-3", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-filter-2", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-having-3", @@ -98,67 +98,67 @@ "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-order-by-2", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-bind-2", "https://www.w3.org/TR/sparql12-service-description/#sd-Aggregate", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-5-sd-aggregate", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-5-sd-aggregate", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-having-4", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-select-expression-4", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-supported-aggregates-2", "https://www.w3.org/TR/sparql12-service-description/#sd-EntailmentRegime", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-6-sd-entailmentregime", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-6-sd-entailmentregime", "https://www.w3.org/TR/sparql12-service-description/#sd-EntailmentProfile", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-7-sd-entailmentprofile", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-7-sd-entailmentprofile", "https://www.w3.org/TR/sparql12-service-description/#sd-GraphCollection", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-8-sd-graphcollection", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-8-sd-graphcollection", "https://www.w3.org/TR/sparql12-service-description/#sd-Dataset", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-9-sd-dataset", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-9-sd-dataset", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-rdf-dataset-1", "https://www.w3.org/TR/sparql12-service-description/#sd-Graph", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-10-sd-graph", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-10-sd-graph", "https://www.w3.org/TR/sparql12-service-description/#sd-NamedGraph", - "https://www.w3.org/TR/sparql12-service-description/#x4-3-11-sd-namedgraph", + "https://www.w3.org/TR/sparql12-service-description/#x3-3-11-sd-namedgraph", "https://www.w3.org/TR/sparql12-service-description/#instances", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-instances", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-instances", "https://www.w3.org/TR/sparql12-service-description/#lang-sparql10query", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-1-sd-sparql10query", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-1-sd-sparql10query", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-sparql-1-0-query-language-1", "https://www.w3.org/TR/sparql12-service-description/#lang-sparql11query", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-2-sd-sparql11query", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-2-sd-sparql11query", "https://www.w3.org/TR/sparql12-service-description/#lang-sparql11update", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-3-sd-sparql11update", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-3-sd-sparql11update", "https://www.w3.org/TR/sparql12-service-description/#lang-sparql12query", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-4-sd-sparql12query", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-4-sd-sparql12query", "https://www.w3.org/TR/sparql12-service-description/#lang-sparql12update", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-5-sd-sparql12update", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-5-sd-sparql12update", "https://www.w3.org/TR/sparql12-service-description/#sd-dereferencesuris", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-6-sd-dereferencesuris", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-6-sd-dereferencesuris", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-dereference-1", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-from-from-named-1", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-using-using-named-1", "https://www.w3.org/TR/sparql12-service-description/#sd-uniondefaultgraph", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-7-sd-uniondefaultgraph", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-7-sd-uniondefaultgraph", "https://www.w3.org/TR/sparql12-service-description/#sd-requiresdataset", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-8-sd-requiresdataset", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-8-sd-requiresdataset", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-from-from-named-2", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-using-using-named-2", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-appropriate-sparql-protocol-parameters-1", "https://www.w3.org/TR/sparql12-service-description/#sd-emptygraphs", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-9-sd-emptygraphs", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-9-sd-emptygraphs", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-3-1-graph-update-in-sparql-1-2-update-1", "https://www.w3.org/TR/sparql12-service-description/#sd-basicfederatedquery", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-10-sd-basicfederatedquery", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-10-sd-basicfederatedquery", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-service-keyword-1", "https://www.w3.org/TR/sparql12-service-description/#other-instances", - "https://www.w3.org/TR/sparql12-service-description/#x4-4-11-other-instances", + "https://www.w3.org/TR/sparql12-service-description/#x3-4-11-other-instances", "https://www.w3.org/TR/sparql12-service-description/#example", - "https://www.w3.org/TR/sparql12-service-description/#x5-example-informative", + "https://www.w3.org/TR/sparql12-service-description/#x4-example-informative", "https://www.w3.org/TR/sparql12-service-description/#example-rdfxml", - "https://www.w3.org/TR/sparql12-service-description/#x5-1-rdf-xml-service-description", + "https://www.w3.org/TR/sparql12-service-description/#x4-1-rdf-xml-service-description", "https://www.w3.org/TR/sparql12-service-description/#example-turtle", - "https://www.w3.org/TR/sparql12-service-description/#x5-2-turtle-service-description", + "https://www.w3.org/TR/sparql12-service-description/#x4-2-turtle-service-description", "https://www.w3.org/TR/sparql12-service-description/#ref-for-index-term-turtle-1", "https://www.w3.org/TR/sparql12-service-description/#conformance", - "https://www.w3.org/TR/sparql12-service-description/#x6-conformance", + "https://www.w3.org/TR/sparql12-service-description/#x5-conformance", "https://www.w3.org/TR/sparql12-service-description/#conformance-0", - "https://www.w3.org/TR/sparql12-service-description/#x6-1-conformance", + "https://www.w3.org/TR/sparql12-service-description/#x5-1-conformance", "https://www.w3.org/TR/sparql12-service-description/#changes-1-1", "https://www.w3.org/TR/sparql12-service-description/#a-changes-between-sparql-1-1-service-description-and-sparql-1-2-service-description", "https://www.w3.org/TR/sparql12-service-description/#privacy", @@ -205,19 +205,21 @@ "https://www.w3.org/TR/sparql12-service-description/#bib-sparql-query", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql11-query", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql11-update", - "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-concepts", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-entailment", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-federated-query", - "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-graph-store-protocol", - "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-new", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-protocol", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-query", - "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-results-csv-tsv", - "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-results-json", - "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-results-xml", "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-update", "https://www.w3.org/TR/sparql12-service-description/#bib-void", "https://www.w3.org/TR/sparql12-service-description/#bib-webarch", + "https://www.w3.org/TR/sparql12-service-description/#informative-references", + "https://www.w3.org/TR/sparql12-service-description/#f-2-informative-references", + "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-concepts", + "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-graph-store-protocol", + "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-new", + "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-results-csv-tsv", + "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-results-json", + "https://www.w3.org/TR/sparql12-service-description/#bib-sparql12-results-xml", "https://www.w3.org/TR/sparql12-service-description/#back-to-top" ] } \ No newline at end of file diff --git a/tr/ids/sparql12-update.json b/tr/ids/sparql12-update.json index 961a650c79a8..13f0a986e658 100644 --- a/tr/ids/sparql12-update.json +++ b/tr/ids/sparql12-update.json @@ -13,17 +13,17 @@ "https://www.w3.org/TR/sparql12-update/#abstract", "https://www.w3.org/TR/sparql12-update/#sotd", "https://www.w3.org/TR/sparql12-update/#w3c_process_revision", + "https://www.w3.org/TR/sparql12-update/#related", + "https://www.w3.org/TR/sparql12-update/#set-of-documents", "https://www.w3.org/TR/sparql12-update/#toc", "https://www.w3.org/TR/sparql12-update/#table-of-contents", - "https://www.w3.org/TR/sparql12-update/#related", - "https://www.w3.org/TR/sparql12-update/#x1-set-of-documents", "https://www.w3.org/TR/sparql12-update/#sec-intro", - "https://www.w3.org/TR/sparql12-update/#x2-introduction", + "https://www.w3.org/TR/sparql12-update/#x1-introduction", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-sparql-query-processing-service-1", "https://www.w3.org/TR/sparql12-update/#documentConventions", - "https://www.w3.org/TR/sparql12-update/#x2-1-document-conventions", + "https://www.w3.org/TR/sparql12-update/#x1-1-document-conventions", "https://www.w3.org/TR/sparql12-update/#languageForm", - "https://www.w3.org/TR/sparql12-update/#x2-1-1-language-form", + "https://www.w3.org/TR/sparql12-update/#x1-1-1-language-form", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-sparql-1-2-query-1", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-1", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-deleteclause-1", @@ -36,7 +36,7 @@ "https://www.w3.org/TR/sparql12-update/#h-note", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-syntax-for-iris-1", "https://www.w3.org/TR/sparql12-update/#terminology", - "https://www.w3.org/TR/sparql12-update/#x2-1-2-terminology", + "https://www.w3.org/TR/sparql12-update/#x1-1-2-terminology", "https://www.w3.org/TR/sparql12-update/#operation", "https://www.w3.org/TR/sparql12-update/#request", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-1", @@ -45,22 +45,22 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-2", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-groupgraphpattern-2", "https://www.w3.org/TR/sparql12-update/#graphStore", - "https://www.w3.org/TR/sparql12-update/#x3-the-graph-store", + "https://www.w3.org/TR/sparql12-update/#x2-the-graph-store", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-rdf-dataset-1", "https://www.w3.org/TR/sparql12-update/#graphStoreQueryServices", - "https://www.w3.org/TR/sparql12-update/#x3-1-graph-store-and-sparql-query-services", + "https://www.w3.org/TR/sparql12-update/#x2-1-graph-store-and-sparql-query-services", "https://www.w3.org/TR/sparql12-update/#updateServices", - "https://www.w3.org/TR/sparql12-update/#x3-2-sparql-1-2-update-services", + "https://www.w3.org/TR/sparql12-update/#x2-2-sparql-1-2-update-services", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-service-1", "https://www.w3.org/TR/sparql12-update/#entailmentConsistency", - "https://www.w3.org/TR/sparql12-update/#x3-3-entailment-and-consistency", + "https://www.w3.org/TR/sparql12-update/#x2-3-entailment-and-consistency", "https://www.w3.org/TR/sparql12-update/#updateLanguage", - "https://www.w3.org/TR/sparql12-update/#x4-sparql-1-2-update-language", + "https://www.w3.org/TR/sparql12-update/#x3-sparql-1-2-update-language", "https://www.w3.org/TR/sparql12-update/#graphUpdate", - "https://www.w3.org/TR/sparql12-update/#x4-1-graph-update", + "https://www.w3.org/TR/sparql12-update/#x3-1-graph-update", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-sparql-1-2-query-3", "https://www.w3.org/TR/sparql12-update/#insertData", - "https://www.w3.org/TR/sparql12-update/#x4-1-1-insert-data", + "https://www.w3.org/TR/sparql12-update/#x3-1-1-insert-data", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quaddata-2", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-triplestemplate-1", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-varoriri-1", @@ -74,7 +74,7 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-reifying-triples-2", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-asserted-triples-2", "https://www.w3.org/TR/sparql12-update/#deleteData", - "https://www.w3.org/TR/sparql12-update/#x4-1-2-delete-data", + "https://www.w3.org/TR/sparql12-update/#x3-1-2-delete-data", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quaddata-3", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-sparql-1-2-query-5", "https://www.w3.org/TR/sparql12-update/#example_4", @@ -86,7 +86,7 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-asserted-triples-5", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-reifying-triples-4", "https://www.w3.org/TR/sparql12-update/#deleteInsert", - "https://www.w3.org/TR/sparql12-update/#x4-1-3-delete-insert", + "https://www.w3.org/TR/sparql12-update/#x3-1-3-delete-insert", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-3", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-deleteclause-2", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-insertclause-3", @@ -111,7 +111,7 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-reifying-triples-5", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-asserted-triples-6", "https://www.w3.org/TR/sparql12-update/#delete", - "https://www.w3.org/TR/sparql12-update/#x4-1-3-1-delete-informative", + "https://www.w3.org/TR/sparql12-update/#x3-1-3-1-delete-informative", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-5", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-5", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-6", @@ -119,7 +119,7 @@ "https://www.w3.org/TR/sparql12-update/#example_9", "https://www.w3.org/TR/sparql12-update/#example_10", "https://www.w3.org/TR/sparql12-update/#insert", - "https://www.w3.org/TR/sparql12-update/#x4-1-3-2-insert-informative", + "https://www.w3.org/TR/sparql12-update/#x3-1-3-2-insert-informative", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-7", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-6", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-8", @@ -128,31 +128,31 @@ "https://www.w3.org/TR/sparql12-update/#example_12", "https://www.w3.org/TR/sparql12-update/#example_13", "https://www.w3.org/TR/sparql12-update/#deleteWhere", - "https://www.w3.org/TR/sparql12-update/#x4-1-3-3-delete-where", + "https://www.w3.org/TR/sparql12-update/#x3-1-3-3-delete-where", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-7", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-8", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-9", "https://www.w3.org/TR/sparql12-update/#example_14", "https://www.w3.org/TR/sparql12-update/#example_15", "https://www.w3.org/TR/sparql12-update/#load", - "https://www.w3.org/TR/sparql12-update/#x4-1-4-load", + "https://www.w3.org/TR/sparql12-update/#x3-1-4-load", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-9", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-10", "https://www.w3.org/TR/sparql12-update/#clear", - "https://www.w3.org/TR/sparql12-update/#x4-1-5-clear", + "https://www.w3.org/TR/sparql12-update/#x3-1-5-clear", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-11", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-0", "https://www.w3.org/TR/sparql12-update/#h-note-0", "https://www.w3.org/TR/sparql12-update/#graphManagement", - "https://www.w3.org/TR/sparql12-update/#x4-2-graph-management", + "https://www.w3.org/TR/sparql12-update/#x3-2-graph-management", "https://www.w3.org/TR/sparql12-update/#create", - "https://www.w3.org/TR/sparql12-update/#x4-2-1-create", + "https://www.w3.org/TR/sparql12-update/#x3-2-1-create", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-12", "https://www.w3.org/TR/sparql12-update/#drop", - "https://www.w3.org/TR/sparql12-update/#x4-2-2-drop", + "https://www.w3.org/TR/sparql12-update/#x3-2-2-drop", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-13", "https://www.w3.org/TR/sparql12-update/#copy", - "https://www.w3.org/TR/sparql12-update/#x4-2-3-copy", + "https://www.w3.org/TR/sparql12-update/#x3-2-3-copy", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-14", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-15", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-16", @@ -160,7 +160,7 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-18", "https://www.w3.org/TR/sparql12-update/#example_16", "https://www.w3.org/TR/sparql12-update/#move", - "https://www.w3.org/TR/sparql12-update/#x4-2-4-move", + "https://www.w3.org/TR/sparql12-update/#x3-2-4-move", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-19", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-20", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-21", @@ -169,40 +169,40 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-24", "https://www.w3.org/TR/sparql12-update/#example_17", "https://www.w3.org/TR/sparql12-update/#add", - "https://www.w3.org/TR/sparql12-update/#x4-2-5-add", + "https://www.w3.org/TR/sparql12-update/#x3-2-5-add", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-25", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-26", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-27", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-iriref-28", "https://www.w3.org/TR/sparql12-update/#example_18", "https://www.w3.org/TR/sparql12-update/#formalModel", - "https://www.w3.org/TR/sparql12-update/#x5-sparql-update-formal-model", + "https://www.w3.org/TR/sparql12-update/#x4-sparql-update-formal-model", "https://www.w3.org/TR/sparql12-update/#formalModelGeneral", - "https://www.w3.org/TR/sparql12-update/#x5-1-general-definitions", + "https://www.w3.org/TR/sparql12-update/#x4-1-general-definitions", "https://www.w3.org/TR/sparql12-update/#def_graphstore", - "https://www.w3.org/TR/sparql12-update/#x5-1-1-graph-store", + "https://www.w3.org/TR/sparql12-update/#x4-1-1-graph-store", "https://www.w3.org/TR/sparql12-update/#defn_graphStore", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-rdf-dataset-2", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-1", "https://www.w3.org/TR/sparql12-update/#h-note-1", "https://www.w3.org/TR/sparql12-update/#def_updateoperation", - "https://www.w3.org/TR/sparql12-update/#x5-1-2-abstract-update-operation", + "https://www.w3.org/TR/sparql12-update/#x4-1-2-abstract-update-operation", "https://www.w3.org/TR/sparql12-update/#defn_updateOperation", "https://www.w3.org/TR/sparql12-update/#formalModelAuxiliary", - "https://www.w3.org/TR/sparql12-update/#x5-2-auxiliary-definitions", + "https://www.w3.org/TR/sparql12-update/#x4-2-auxiliary-definitions", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-rdf-dataset-0-2", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-2", "https://www.w3.org/TR/sparql12-update/#h-note-2", "https://www.w3.org/TR/sparql12-update/#def_datasetUnion", - "https://www.w3.org/TR/sparql12-update/#x5-2-1-dataset-union", + "https://www.w3.org/TR/sparql12-update/#x4-2-1-dataset-union", "https://www.w3.org/TR/sparql12-update/#defn_datasetUnion", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-3", "https://www.w3.org/TR/sparql12-update/#h-note-3", "https://www.w3.org/TR/sparql12-update/#def_datasetDiff", - "https://www.w3.org/TR/sparql12-update/#x5-2-2-dataset-diff", + "https://www.w3.org/TR/sparql12-update/#x4-2-2-dataset-diff", "https://www.w3.org/TR/sparql12-update/#defn_datasetDiff", "https://www.w3.org/TR/sparql12-update/#def_datasetQuadPattern", - "https://www.w3.org/TR/sparql12-update/#x5-2-3-dataset-quadpattern-ds-gs", + "https://www.w3.org/TR/sparql12-update/#x4-2-3-dataset-quadpattern-ds-gs", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-10", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-11", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-solution-mapping-1", @@ -219,59 +219,59 @@ "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-templates-with-blank-nodes-2", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-remarks-on-scoping-of-blank-nodes-within-requests-in-the-sparql-grammar-1", "https://www.w3.org/TR/sparql12-update/#def_datasetPattern", - "https://www.w3.org/TR/sparql12-update/#x5-2-4-dataset-quadpattern-p-ds-gs", + "https://www.w3.org/TR/sparql12-update/#x4-2-4-dataset-quadpattern-p-ds-gs", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-12", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-13", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-eval-1", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-treatment-of-blank-nodes-in-bgp-matching-for-sparql-1-2-query-1", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-treatment-of-blank-nodes-in-bgp-matching-for-sparql-1-2-query-2", "https://www.w3.org/TR/sparql12-update/#formalModelGraphUpdate", - "https://www.w3.org/TR/sparql12-update/#x5-3-graph-update-operations", + "https://www.w3.org/TR/sparql12-update/#x4-3-graph-update-operations", "https://www.w3.org/TR/sparql12-update/#def_insertdataoperation", - "https://www.w3.org/TR/sparql12-update/#x5-3-1-insert-data-operation", + "https://www.w3.org/TR/sparql12-update/#x4-3-1-insert-data-operation", "https://www.w3.org/TR/sparql12-update/#defn_insertDataOperation", "https://www.w3.org/TR/sparql12-update/#def_deletedataoperation", - "https://www.w3.org/TR/sparql12-update/#x5-3-2-delete-data-operation", + "https://www.w3.org/TR/sparql12-update/#x4-3-2-delete-data-operation", "https://www.w3.org/TR/sparql12-update/#defn_deleteDataOperation", "https://www.w3.org/TR/sparql12-update/#def_deleteinsertoperation", - "https://www.w3.org/TR/sparql12-update/#x5-3-3-delete-insert-operation", + "https://www.w3.org/TR/sparql12-update/#x4-3-3-delete-insert-operation", "https://www.w3.org/TR/sparql12-update/#defn_deleteInsertOperation", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-quadpattern-14", "https://www.w3.org/TR/sparql12-update/#def_loadoperation", - "https://www.w3.org/TR/sparql12-update/#x5-3-4-load-operation", + "https://www.w3.org/TR/sparql12-update/#x4-3-4-load-operation", "https://www.w3.org/TR/sparql12-update/#defn_loadOperation", "https://www.w3.org/TR/sparql12-update/#def_clearOperation", - "https://www.w3.org/TR/sparql12-update/#x5-3-5-clear-operation", + "https://www.w3.org/TR/sparql12-update/#x4-3-5-clear-operation", "https://www.w3.org/TR/sparql12-update/#defn_clearOperation", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-4", "https://www.w3.org/TR/sparql12-update/#h-note-4", "https://www.w3.org/TR/sparql12-update/#formalModelGraphMgt", - "https://www.w3.org/TR/sparql12-update/#x5-4-graph-management-operations", + "https://www.w3.org/TR/sparql12-update/#x4-4-graph-management-operations", "https://www.w3.org/TR/sparql12-update/#def_createOperation", - "https://www.w3.org/TR/sparql12-update/#x5-4-1-create-operation", + "https://www.w3.org/TR/sparql12-update/#x4-4-1-create-operation", "https://www.w3.org/TR/sparql12-update/#defn_createOperation", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-5", "https://www.w3.org/TR/sparql12-update/#h-note-5", "https://www.w3.org/TR/sparql12-update/#def_dropOperation", - "https://www.w3.org/TR/sparql12-update/#x5-4-2-drop-operation", + "https://www.w3.org/TR/sparql12-update/#x4-4-2-drop-operation", "https://www.w3.org/TR/sparql12-update/#defn_dropOperation", "https://www.w3.org/TR/sparql12-update/#mappingRequestsToOperations", - "https://www.w3.org/TR/sparql12-update/#x5-5-mapping-update-requests-to-the-formal-model", + "https://www.w3.org/TR/sparql12-update/#x4-5-mapping-update-requests-to-the-formal-model", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-usingclause-1", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-usingclause-2", "https://www.w3.org/TR/sparql12-update/#issue-container-generatedID-6", "https://www.w3.org/TR/sparql12-update/#h-note-6", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-rdf-datasets-in-the-sparql-1-2-query-language-2", "https://www.w3.org/TR/sparql12-update/#conformance", - "https://www.w3.org/TR/sparql12-update/#x6-conformance", + "https://www.w3.org/TR/sparql12-update/#x5-conformance", "https://www.w3.org/TR/sparql12-update/#conformance-0", - "https://www.w3.org/TR/sparql12-update/#x6-1-conformance", + "https://www.w3.org/TR/sparql12-update/#x5-1-conformance", "https://www.w3.org/TR/sparql12-update/#security-original", - "https://www.w3.org/TR/sparql12-update/#x7-security-considerations", + "https://www.w3.org/TR/sparql12-update/#x6-security-considerations", "https://www.w3.org/TR/sparql12-update/#mediaType", - "https://www.w3.org/TR/sparql12-update/#x8-internet-media-type-file-extension-and-macintosh-file-type", + "https://www.w3.org/TR/sparql12-update/#x7-internet-media-type-file-extension-and-macintosh-file-type", "https://www.w3.org/TR/sparql12-update/#grammar", - "https://www.w3.org/TR/sparql12-update/#x9-sparql-1-2-update-grammar", + "https://www.w3.org/TR/sparql12-update/#x8-sparql-1-2-update-grammar", "https://www.w3.org/TR/sparql12-update/#ref-for-index-term-sparql-1-2-query-grammar-1", "https://www.w3.org/TR/sparql12-update/#changes-1-1", "https://www.w3.org/TR/sparql12-update/#a-changes-between-sparql-1-1-update-and-sparql-1-2-update", @@ -321,18 +321,20 @@ "https://www.w3.org/TR/sparql12-update/#bib-rfc2119", "https://www.w3.org/TR/sparql12-update/#bib-rfc3629", "https://www.w3.org/TR/sparql12-update/#bib-rfc8174", - "https://www.w3.org/TR/sparql12-update/#bib-sparql12-concepts", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-entailment", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-federated-query", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-graph-store-protocol", - "https://www.w3.org/TR/sparql12-update/#bib-sparql12-new", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-protocol", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-query", + "https://www.w3.org/TR/sparql12-update/#bib-unicode", + "https://www.w3.org/TR/sparql12-update/#informative-references", + "https://www.w3.org/TR/sparql12-update/#f-2-informative-references", + "https://www.w3.org/TR/sparql12-update/#bib-sparql12-concepts", + "https://www.w3.org/TR/sparql12-update/#bib-sparql12-new", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-results-csv-tsv", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-results-json", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-results-xml", "https://www.w3.org/TR/sparql12-update/#bib-sparql12-service-description", - "https://www.w3.org/TR/sparql12-update/#bib-unicode", "https://www.w3.org/TR/sparql12-update/#back-to-top" ] } \ No newline at end of file diff --git a/tr/index.json b/tr/index.json index 7cce19dadbcf..3f0fab455741 100644 --- a/tr/index.json +++ b/tr/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2024-11-13T01:35:00.759Z", + "date": "2024-11-14T01:34:55.438Z", "options": { "fallback": "tr/index.json", "output": "report", @@ -714,7 +714,7 @@ "https://aomediacodec.github.io/av1-spec/" ], "crawled": "https://aomediacodec.github.io/av1-spec/av1-spec.pdf", - "date": "13 November 2024", + "date": "14 November 2024", "links": "links/av1-spec.json" }, { @@ -8382,11 +8382,11 @@ ], "crawled": "https://www.w3.org/TR/css-view-transitions-2/", "crawlCacheInfo": { - "lastModified": "Tue, 14 May 2024 20:39:49 GMT" + "lastModified": "Wed, 13 Nov 2024 17:25:15 GMT" }, "generator": "bikeshed", - "date": "16 May 2024", - "revision": "f0de23017382a3a5100164410e2b4b48a871076f", + "date": "13 November 2024", + "revision": "59a37d9104bb346aec2ffaa900536d1a2a6666bd", "algorithms": "algorithms/css-view-transitions-2.json", "links": "links/css-view-transitions-2.json", "refs": "refs/css-view-transitions-2.json", @@ -11959,11 +11959,11 @@ ], "crawled": "https://www.w3.org/TR/largest-contentful-paint/", "crawlCacheInfo": { - "lastModified": "Mon, 15 Jan 2024 17:13:42 GMT" + "lastModified": "Wed, 13 Nov 2024 20:23:32 GMT" }, "generator": "bikeshed", - "date": "15 January 2024", - "revision": "06358fd7cc500829c9b849c0ec04838f2e476d1a", + "date": "13 November 2024", + "revision": "ac7725e5f0751988d717b8cbf3314bf4cc667167", "algorithms": "algorithms/largest-contentful-paint.json", "links": "links/largest-contentful-paint.json", "refs": "refs/largest-contentful-paint.json", @@ -16762,11 +16762,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-federated-query/", "crawlCacheInfo": { - "lastModified": "Thu, 12 Sep 2024 16:28:44 GMT" + "lastModified": "Wed, 13 Nov 2024 15:07:57 GMT" }, "generator": "respec", - "date": "12 September 2024", - "revision": "bbfa55a171eb06ab9da4112e42ac59fbb53b3d4a", + "date": "13 November 2024", + "revision": "19cca5860d7cdc8f2cc47a46cade734c319ff01f", "links": "links/sparql12-federated-query.json", "refs": "refs/sparql12-federated-query.json", "headings": "headings/sparql12-federated-query.json", @@ -16816,11 +16816,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-graph-store-protocol/", "crawlCacheInfo": { - "lastModified": "Thu, 18 Apr 2024 20:50:51 GMT" + "lastModified": "Wed, 13 Nov 2024 15:08:43 GMT" }, "generator": "respec", - "date": "18 April 2024", - "revision": "d8814425d5edecd0af68bb91f5778654d7e0a88d", + "date": "13 November 2024", + "revision": "dd391de3de9bb92fbe3a1ba06b782f0d49929293", "links": "links/sparql12-graph-store-protocol.json", "refs": "refs/sparql12-graph-store-protocol.json", "headings": "headings/sparql12-graph-store-protocol.json", @@ -16870,11 +16870,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-protocol/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Aug 2024 16:52:03 GMT" + "lastModified": "Wed, 13 Nov 2024 15:10:10 GMT" }, "generator": "respec", - "date": "29 August 2024", - "revision": "1da9ab5e9aa2e26ed078f790bb33cd150181e234", + "date": "13 November 2024", + "revision": "d88705fea72f0b4a55a6dcf23babbe31b20e8cc6", "algorithms": "algorithms/sparql12-protocol.json", "links": "links/sparql12-protocol.json", "refs": "refs/sparql12-protocol.json", @@ -16981,11 +16981,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-results-csv-tsv/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Aug 2024 16:52:08 GMT" + "lastModified": "Wed, 13 Nov 2024 15:10:43 GMT" }, "generator": "respec", - "date": "29 August 2024", - "revision": "0cb043836cc71544dfc950540a1b9ef641dbfa32", + "date": "13 November 2024", + "revision": "c1cdbfee091f54c7283a4989bfdd6748b81880d0", "links": "links/sparql12-results-csv-tsv.json", "refs": "refs/sparql12-results-csv-tsv.json", "headings": "headings/sparql12-results-csv-tsv.json", @@ -17035,11 +17035,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-results-json/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Aug 2024 16:51:44 GMT" + "lastModified": "Wed, 13 Nov 2024 15:10:05 GMT" }, "generator": "respec", - "date": "29 August 2024", - "revision": "c313cbe2ee16c2aa763dc38a108411815c769ceb", + "date": "13 November 2024", + "revision": "58da7120b01ce3270e4b8de1a688d4b27bb41d92", "links": "links/sparql12-results-json.json", "refs": "refs/sparql12-results-json.json", "headings": "headings/sparql12-results-json.json", @@ -17089,11 +17089,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-results-xml/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Aug 2024 16:52:30 GMT" + "lastModified": "Wed, 13 Nov 2024 15:11:07 GMT" }, "generator": "respec", - "date": "29 August 2024", - "revision": "35b8d67534083622538c81cce3c1313f3d931a32", + "date": "13 November 2024", + "revision": "af004c823cfd83ceefa34d321136f03069087ea9", "links": "links/sparql12-results-xml.json", "refs": "refs/sparql12-results-xml.json", "headings": "headings/sparql12-results-xml.json", @@ -17143,11 +17143,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-service-description/", "crawlCacheInfo": { - "lastModified": "Thu, 29 Aug 2024 16:51:07 GMT" + "lastModified": "Wed, 13 Nov 2024 15:08:37 GMT" }, "generator": "respec", - "date": "29 August 2024", - "revision": "89f7c496e6b805935ed07063442e5e8416b8e2dd", + "date": "13 November 2024", + "revision": "4b3733164c8f506d38e55424da1b97aaca80d0e8", "links": "links/sparql12-service-description.json", "refs": "refs/sparql12-service-description.json", "headings": "headings/sparql12-service-description.json", @@ -17197,11 +17197,11 @@ ], "crawled": "https://www.w3.org/TR/sparql12-update/", "crawlCacheInfo": { - "lastModified": "Fri, 25 Oct 2024 20:32:50 GMT" + "lastModified": "Wed, 13 Nov 2024 15:07:39 GMT" }, "generator": "respec", - "date": "25 October 2024", - "revision": "80bf54a22e695d165b4acbaf55db159ccb064b16", + "date": "13 November 2024", + "revision": "28f79bcbbd1fdb040aadff854c689ea55be06e42", "links": "links/sparql12-update.json", "refs": "refs/sparql12-update.json", "headings": "headings/sparql12-update.json", diff --git a/tr/links/css-view-transitions-2.json b/tr/links/css-view-transitions-2.json index 72c0cbdb5ca5..705d67140532 100644 --- a/tr/links/css-view-transitions-2.json +++ b/tr/links/css-view-transitions-2.json @@ -7,9 +7,24 @@ "rawlinks": { "https://datatracker.ietf.org/doc/html/rfc2119": {}, "https://dom.spec.whatwg.org/": {}, + "https://drafts.csswg.org/css-borders-4/": {}, "https://github.com/WICG/view-transitions/issues/200": {}, "https://github.com/w3c/csswg-drafts/issues": {}, + "https://github.com/w3c/csswg-drafts/issues/10334": {}, + "https://github.com/w3c/csswg-drafts/issues/10529": {}, + "https://github.com/w3c/csswg-drafts/issues/10585": {}, + "https://github.com/w3c/csswg-drafts/issues/10606": {}, + "https://github.com/w3c/csswg-drafts/issues/10631": {}, + "https://github.com/w3c/csswg-drafts/issues/10633": {}, + "https://github.com/w3c/csswg-drafts/issues/10654": {}, + "https://github.com/w3c/csswg-drafts/issues/10780": {}, + "https://github.com/w3c/csswg-drafts/issues/10800": {}, + "https://github.com/w3c/csswg-drafts/issues/11063": {}, + "https://github.com/w3c/csswg-drafts/issues/11078": {}, + "https://github.com/w3c/csswg-drafts/issues/11079": {}, + "https://github.com/w3c/csswg-drafts/issues/8320": {}, "https://github.com/w3c/csswg-drafts/issues/8684": {}, + "https://github.com/w3c/csswg-drafts/issues/9822": {}, "https://html.spec.whatwg.org/multipage/": {}, "https://html.spec.whatwg.org/multipage/browsing-the-web.html": { "anchors": [ @@ -21,19 +36,9 @@ "https://lists.w3.org/Archives/Public/public-css-testsuite": {}, "https://lists.w3.org/Archives/Public/www-style/": {}, "https://webidl.spec.whatwg.org/": {}, - "https://www.w3.org/2023/Process-20231103/": { - "anchors": [ - "recs-and-notes" - ] - }, - "https://www.w3.org/Consortium/Patent-Policy-20200915/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, "https://www.w3.org/Style/CSS/Test/": {}, "https://www.w3.org/TR/": {}, + "https://www.w3.org/TR/2024/WD-css-view-transitions-2-20240516/": {}, "https://www.w3.org/TR/CSS/": { "anchors": [ "future-proofing", @@ -49,6 +54,8 @@ ] }, "https://www.w3.org/TR/CSS22/": {}, + "https://www.w3.org/TR/css-backgrounds-3/": {}, + "https://www.w3.org/TR/css-box-4/": {}, "https://www.w3.org/TR/css-cascade-5/": {}, "https://www.w3.org/TR/css-cascade/": { "anchors": [ @@ -58,13 +65,25 @@ "computed" ] }, + "https://www.w3.org/TR/css-color-4/": {}, "https://www.w3.org/TR/css-conditional-3/": {}, + "https://www.w3.org/TR/css-contain-2/": {}, + "https://www.w3.org/TR/css-images-3/": {}, + "https://www.w3.org/TR/css-masking-1/": {}, + "https://www.w3.org/TR/css-overflow-3/": {}, + "https://www.w3.org/TR/css-position-3/": {}, "https://www.w3.org/TR/css-pseudo/": { "anchors": [ "generated-content" ] }, + "https://www.w3.org/TR/css-scoping-1/": {}, + "https://www.w3.org/TR/css-shadow-parts-1/": {}, + "https://www.w3.org/TR/css-sizing-3/": {}, "https://www.w3.org/TR/css-syntax-3/": {}, + "https://www.w3.org/TR/css-transforms-1/": {}, + "https://www.w3.org/TR/css-transforms-2/": {}, + "https://www.w3.org/TR/css-ui-4/": {}, "https://www.w3.org/TR/css-values-4/": {}, "https://www.w3.org/TR/css-values/": { "anchors": [ @@ -74,7 +93,11 @@ }, "https://www.w3.org/TR/css-view-transitions-1/": { "anchors": [ - "examples" + "examples", + "capture-old-state-algorithm", + "capture-new-state-algorithm", + "setup-transition-pseudo-elements-algorithm", + "style-transition-pseudo-elements-algorithm" ] }, "https://www.w3.org/TR/cssom-1/": {}, @@ -83,6 +106,9 @@ "serializing-css-values" ] }, + "https://www.w3.org/TR/filter-effects-1/": {}, + "https://www.w3.org/TR/geometry-1/": {}, + "https://www.w3.org/TR/hr-time-3/": {}, "https://www.w3.org/TR/selectors-3/": {}, "https://www.w3.org/TR/selectors-4/": {}, "https://www.w3.org/TR/web-animations/": { @@ -91,7 +117,18 @@ ] }, "https://www.w3.org/groups/wg/css": {}, - "https://www.w3.org/groups/wg/css/ipr": {} + "https://www.w3.org/groups/wg/css/ipr": {}, + "https://www.w3.org/policies/patent-policy/20200915/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes" + ] + } }, "autolinks": { "https://dom.spec.whatwg.org/": { @@ -101,7 +138,39 @@ "document-element", "concept-node-document", "concept-class", - "concept-document-origin" + "concept-id", + "concept-tree-root", + "concept-document-origin", + "element", + "concept-tree-ancestor" + ] + }, + "https://drafts.csswg.org/css-borders-4/": { + "anchors": [ + "propdef-border-radius", + "propdef-box-shadow", + "propdef-border-left", + "propdef-border-top", + "propdef-border-bottom", + "propdef-border-right" + ] + }, + "https://drafts.csswg.org/css-contain-2/": { + "anchors": [ + "element-contents" + ] + }, + "https://drafts.csswg.org/css-scoping-1/": { + "anchors": [ + "css-tree-scoped-name", + "flat-tree" + ] + }, + "https://drafts.csswg.org/css-view-transitions-1/": { + "anchors": [ + "callbackdef-viewtransitionupdatecallback", + "view-transition-page-visibility-change-steps", + "document-scoped-view-transition-name" ] }, "https://drafts.csswg.org/css2/": { @@ -116,6 +185,7 @@ }, "https://html.spec.whatwg.org/multipage/browsing-the-web.html": { "anchors": [ + "latest-entry", "has-been-revealed", "reactivate-a-document" ] @@ -194,6 +264,7 @@ }, "https://infra.spec.whatwg.org/": { "anchors": [ + "list", "list-contain", "ordered-set", "list-clone", @@ -201,15 +272,15 @@ "struct-item", "ordered-map", "tuple", - "list", "implementation-defined", "assert", - "map-clone" + "map-clone", + "list-append", + "string-concatenate" ] }, "https://webidl.spec.whatwg.org/": { "anchors": [ - "idl-unsigned-short", "Exposed", "SameObject", "idl-frozen-array", @@ -221,15 +292,36 @@ "invalidstateerror", "idl-DOMException", "aborterror", - "resolve", - "timeouterror" + "resolve" + ] + }, + "https://www.w3.org/TR/css-backgrounds-3/": { + "anchors": [ + "propdef-background", + "propdef-border-image", + "propdef-border" + ] + }, + "https://www.w3.org/TR/css-box-4/": { + "anchors": [ + "propdef-padding", + "border-box", + "padding-box", + "content-box", + "padding-edge" ] }, "https://www.w3.org/TR/css-cascade-5/": { "anchors": [ + "used-value", "computed-value" ] }, + "https://www.w3.org/TR/css-color-4/": { + "anchors": [ + "propdef-opacity" + ] + }, "https://www.w3.org/TR/css-conditional-3/": { "anchors": [ "conditional-group-rule", @@ -237,11 +329,62 @@ "at-ruledef-supports" ] }, + "https://www.w3.org/TR/css-images-3/": { + "anchors": [ + "natural-dimensions" + ] + }, + "https://www.w3.org/TR/css-masking-1/": { + "anchors": [ + "propdef-clip-path", + "propdef-mask-image", + "propdef-mask" + ] + }, + "https://www.w3.org/TR/css-overflow-3/": { + "anchors": [ + "propdef-overflow" + ] + }, + "https://www.w3.org/TR/css-position-3/": { + "anchors": [ + "valdef-position-relative" + ] + }, + "https://www.w3.org/TR/css-shadow-parts-1/": { + "anchors": [ + "selectordef-part" + ] + }, + "https://www.w3.org/TR/css-sizing-3/": { + "anchors": [ + "propdef-box-sizing", + "valdef-box-sizing-border-box", + "valdef-box-sizing-content-box" + ] + }, "https://www.w3.org/TR/css-syntax-3/": { "anchors": [ "typedef-declaration-list" ] }, + "https://www.w3.org/TR/css-transforms-1/": { + "anchors": [ + "propdef-transform", + "identity-transform-function" + ] + }, + "https://www.w3.org/TR/css-transforms-2/": { + "anchors": [ + "propdef-transform-style", + "propdef-perspective" + ] + }, + "https://www.w3.org/TR/css-ui-4/": { + "anchors": [ + "propdef-outline" + ] + }, "https://www.w3.org/TR/css-values-4/": { "anchors": [ "comb-one", @@ -271,15 +414,24 @@ "selectordef-view-transition-new", "typedef-pt-name-selector", "viewtransition-named-elements", - "callbackdef-updatecallback", "viewtransition-update-callback", "skip-the-view-transition", "dom-document-startviewtransition", + "view-transition-tree", + "selectordef-view-transition", + "snapshot-containing-block", + "valdef-view-transition-name-none", "perform-pending-transition-operations", "viewtransition-phase", "document-rendering-suppression-for-view-transitions", "viewtransition-initial-snapshot-containing-block-size", - "viewtransition-update-callback-done-promise" + "viewtransition-update-callback-done-promise", + "view-transition-name", + "captured-element-old-transform", + "captured-element-old-width", + "captured-element-old-height", + "captured-element-group-styles-rule", + "capture-the-image" ] }, "https://www.w3.org/TR/cssom-1/": { @@ -288,6 +440,22 @@ "cssomstring" ] }, + "https://www.w3.org/TR/filter-effects-1/": { + "anchors": [ + "propdef-filter" + ] + }, + "https://www.w3.org/TR/geometry-1/": { + "anchors": [ + "matrix", + "multiply" + ] + }, + "https://www.w3.org/TR/hr-time-3/": { + "anchors": [ + "dfn-duration" + ] + }, "https://www.w3.org/TR/selectors-3/": { "anchors": [ "x" diff --git a/tr/links/largest-contentful-paint.json b/tr/links/largest-contentful-paint.json index e74472e63391..ac7643745367 100644 --- a/tr/links/largest-contentful-paint.json +++ b/tr/links/largest-contentful-paint.json @@ -14,29 +14,34 @@ "https://streams.spec.whatwg.org/": {}, "https://webidl.spec.whatwg.org/": {}, "https://wicg.github.io/element-timing/": {}, - "https://www.w3.org/2023/Process-20231103/": { - "anchors": [ - "recs-and-notes" - ] - }, - "https://www.w3.org/Consortium/Patent-Policy/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/css-backgrounds-3/": {}, "https://www.w3.org/TR/css-box-4/": {}, + "https://www.w3.org/TR/css-color-3/": {}, + "https://www.w3.org/TR/css-color-4/": {}, "https://www.w3.org/TR/css-images-3/": {}, + "https://www.w3.org/TR/css-text-decor-4/": {}, "https://www.w3.org/TR/cssom-view-1/": {}, "https://www.w3.org/TR/event-timing/": {}, + "https://www.w3.org/TR/fill-stroke-3/": {}, "https://www.w3.org/TR/geometry-1/": {}, "https://www.w3.org/TR/hr-time-3/": {}, + "https://www.w3.org/TR/largest-contentful-paint/": {}, "https://www.w3.org/TR/paint-timing/": {}, "https://www.w3.org/TR/performance-timeline/": {}, "https://www.w3.org/groups/wg/webperf": {}, - "https://www.w3.org/groups/wg/webperf/ipr": {} + "https://www.w3.org/groups/wg/webperf/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes" + ] + } }, "autolinks": { "https://dom.spec.whatwg.org/": { @@ -54,6 +59,11 @@ "dom-element-id" ] }, + "https://drafts.csswg.org/css-color-3/": { + "anchors": [ + "transparent" + ] + }, "https://drafts.csswg.org/cssom-view/": { "anchors": [ "visual-viewport" @@ -109,6 +119,9 @@ "https://w3c.github.io/paint-timing/": { "anchors": [ "timing-eligible", + "painttimingmixin", + "default-paint-timestamp", + "paint-timing-info", "exposed-for-paint-timing", "pending-image-record", "pending-image-record-element", @@ -153,6 +166,16 @@ "content-box" ] }, + "https://www.w3.org/TR/css-color-3/": { + "anchors": [ + "opacity" + ] + }, + "https://www.w3.org/TR/css-color-4/": { + "anchors": [ + "alpha-channel" + ] + }, "https://www.w3.org/TR/css-images-3/": { "anchors": [ "concrete-object-size", @@ -161,17 +184,33 @@ "natural-height" ] }, + "https://www.w3.org/TR/css-text-decor-4/": { + "anchors": [ + "propdef-text-shadow" + ] + }, "https://www.w3.org/TR/cssom-view-1/": { "anchors": [ "eventdef-document-scroll" ] }, + "https://www.w3.org/TR/fill-stroke-3/": { + "anchors": [ + "propdef-stroke-color", + "propdef-stroke-image" + ] + }, "https://www.w3.org/TR/geometry-1/": { "anchors": [ "domrectreadonly", "dom-domrectreadonly-width", "dom-domrectreadonly-height" ] + }, + "https://www.w3.org/TR/largest-contentful-paint/": { + "anchors": [ + "dom-largestcontentfulpaint-rendertime" + ] } } } diff --git a/tr/links/sparql12-graph-store-protocol.json b/tr/links/sparql12-graph-store-protocol.json index 951efcec1851..e7dd9dc81aeb 100644 --- a/tr/links/sparql12-graph-store-protocol.json +++ b/tr/links/sparql12-graph-store-protocol.json @@ -27,18 +27,6 @@ "httpRange-14" ] }, - "https://www.w3.org/2023/Process-20231103/": { - "anchors": [ - "recs-and-notes", - "allow-new-features" - ] - }, - "https://www.w3.org/Consortium/Patent-Policy/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, "https://www.w3.org/TR/": {}, "https://www.w3.org/TR/2004/REC-rdf-mt-20040210/": {}, "https://www.w3.org/TR/2004/REC-webarch-20041215/": {}, @@ -68,7 +56,19 @@ ] }, "https://www.w3.org/groups/wg/rdf-star": {}, - "https://www.w3.org/groups/wg/rdf-star/ipr": {} + "https://www.w3.org/groups/wg/rdf-star/ipr": {}, + "https://www.w3.org/policies/patent-policy/": { + "anchors": [ + "def-essential", + "sec-Disclosure" + ] + }, + "https://www.w3.org/policies/process/20231103/": { + "anchors": [ + "recs-and-notes", + "allow-new-features" + ] + } }, "autolinks": {} } diff --git a/tr/refs/css-view-transitions-2.json b/tr/refs/css-view-transitions-2.json index aa7233d7beef..70e2a6eb9630 100644 --- a/tr/refs/css-view-transitions-2.json +++ b/tr/refs/css-view-transitions-2.json @@ -5,14 +5,66 @@ }, "refs": { "normative": [ + { + "name": "CSS-BACKGROUNDS-3", + "url": "https://www.w3.org/TR/css-backgrounds-3/" + }, + { + "name": "CSS-BORDERS-4", + "url": "https://drafts.csswg.org/css-borders-4/" + }, + { + "name": "CSS-BOX-4", + "url": "https://www.w3.org/TR/css-box-4/" + }, { "name": "CSS-CASCADE-5", "url": "https://www.w3.org/TR/css-cascade-5/" }, + { + "name": "CSS-COLOR-4", + "url": "https://www.w3.org/TR/css-color-4/" + }, + { + "name": "CSS-CONTAIN-2", + "url": "https://www.w3.org/TR/css-contain-2/" + }, + { + "name": "CSS-IMAGES-3", + "url": "https://www.w3.org/TR/css-images-3/" + }, + { + "name": "CSS-MASKING-1", + "url": "https://www.w3.org/TR/css-masking-1/" + }, + { + "name": "CSS-OVERFLOW-3", + "url": "https://www.w3.org/TR/css-overflow-3/" + }, + { + "name": "CSS-SCOPING-1", + "url": "https://www.w3.org/TR/css-scoping-1/" + }, + { + "name": "CSS-SIZING-3", + "url": "https://www.w3.org/TR/css-sizing-3/" + }, { "name": "CSS-SYNTAX-3", "url": "https://www.w3.org/TR/css-syntax-3/" }, + { + "name": "CSS-TRANSFORMS-1", + "url": "https://www.w3.org/TR/css-transforms-1/" + }, + { + "name": "CSS-TRANSFORMS-2", + "url": "https://www.w3.org/TR/css-transforms-2/" + }, + { + "name": "CSS-UI-4", + "url": "https://www.w3.org/TR/css-ui-4/" + }, { "name": "CSS-VALUES-4", "url": "https://www.w3.org/TR/css-values-4/" @@ -33,6 +85,18 @@ "name": "DOM", "url": "https://dom.spec.whatwg.org/" }, + { + "name": "FILTER-EFFECTS-1", + "url": "https://www.w3.org/TR/filter-effects-1/" + }, + { + "name": "GEOMETRY-1", + "url": "https://www.w3.org/TR/geometry-1/" + }, + { + "name": "HR-TIME-3", + "url": "https://www.w3.org/TR/hr-time-3/" + }, { "name": "HTML", "url": "https://html.spec.whatwg.org/multipage/" @@ -62,6 +126,14 @@ { "name": "CSS-CONDITIONAL-3", "url": "https://www.w3.org/TR/css-conditional-3/" + }, + { + "name": "CSS-POSITION-3", + "url": "https://www.w3.org/TR/css-position-3/" + }, + { + "name": "CSS-SHADOW-PARTS-1", + "url": "https://www.w3.org/TR/css-shadow-parts-1/" } ] } diff --git a/tr/refs/largest-contentful-paint.json b/tr/refs/largest-contentful-paint.json index 16db8b62f493..644b9d32874e 100644 --- a/tr/refs/largest-contentful-paint.json +++ b/tr/refs/largest-contentful-paint.json @@ -13,10 +13,22 @@ "name": "CSS-BOX-4", "url": "https://www.w3.org/TR/css-box-4/" }, + { + "name": "CSS-COLOR-3", + "url": "https://www.w3.org/TR/css-color-3/" + }, + { + "name": "CSS-COLOR-4", + "url": "https://www.w3.org/TR/css-color-4/" + }, { "name": "CSS-IMAGES-3", "url": "https://www.w3.org/TR/css-images-3/" }, + { + "name": "CSS-TEXT-DECOR-4", + "url": "https://www.w3.org/TR/css-text-decor-4/" + }, { "name": "CSSOM-VIEW-1", "url": "https://www.w3.org/TR/cssom-view-1/" @@ -33,6 +45,10 @@ "name": "FETCH", "url": "https://fetch.spec.whatwg.org/" }, + { + "name": "FILL-STROKE-3", + "url": "https://www.w3.org/TR/fill-stroke-3/" + }, { "name": "GEOMETRY-1", "url": "https://www.w3.org/TR/geometry-1/" @@ -49,6 +65,10 @@ "name": "INFRA", "url": "https://infra.spec.whatwg.org/" }, + { + "name": "LARGEST-CONTENTFUL-PAINT", + "url": "https://www.w3.org/TR/largest-contentful-paint/" + }, { "name": "PAINT-TIMING", "url": "https://www.w3.org/TR/paint-timing/" diff --git a/tr/refs/sparql12-federated-query.json b/tr/refs/sparql12-federated-query.json index 6156aa432495..04f0b332a082 100644 --- a/tr/refs/sparql12-federated-query.json +++ b/tr/refs/sparql12-federated-query.json @@ -12,7 +12,9 @@ { "name": "RFC8174", "url": "https://www.rfc-editor.org/rfc/rfc8174" - }, + } + ], + "informative": [ { "name": "SPARQL12-CONCEPTS", "url": "https://w3c.github.io/sparql-concepts/spec/" @@ -57,7 +59,6 @@ "name": "SPARQL12-UPDATE", "url": "https://www.w3.org/TR/sparql12-update/" } - ], - "informative": [] + ] } } \ No newline at end of file diff --git a/tr/refs/sparql12-graph-store-protocol.json b/tr/refs/sparql12-graph-store-protocol.json index 826d66bfd923..fb28bfca2476 100644 --- a/tr/refs/sparql12-graph-store-protocol.json +++ b/tr/refs/sparql12-graph-store-protocol.json @@ -12,7 +12,9 @@ { "name": "RFC8174", "url": "https://www.rfc-editor.org/rfc/rfc8174" - }, + } + ], + "informative": [ { "name": "SPARQL12-CONCEPTS", "url": "https://w3c.github.io/sparql-concepts/spec/" @@ -57,7 +59,6 @@ "name": "SPARQL12-UPDATE", "url": "https://www.w3.org/TR/sparql12-update/" } - ], - "informative": [] + ] } } \ No newline at end of file diff --git a/tr/refs/sparql12-protocol.json b/tr/refs/sparql12-protocol.json index d9cfee74f80c..d24e737c5eb2 100644 --- a/tr/refs/sparql12-protocol.json +++ b/tr/refs/sparql12-protocol.json @@ -33,26 +33,10 @@ "name": "RFC9110", "url": "https://httpwg.org/specs/rfc9110.html" }, - { - "name": "SPARQL12-CONCEPTS", - "url": "https://w3c.github.io/sparql-concepts/spec/" - }, - { - "name": "SPARQL12-ENTAILMENT", - "url": "https://www.w3.org/TR/sparql12-entailment/" - }, - { - "name": "SPARQL12-FEDERATED-QUERY", - "url": "https://www.w3.org/TR/sparql12-federated-query/" - }, { "name": "SPARQL12-GRAPH-STORE-PROTOCOL", "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/" }, - { - "name": "SPARQL12-NEW", - "url": "https://w3c.github.io/sparql-new/spec/" - }, { "name": "SPARQL12-QUERY", "url": "https://www.w3.org/TR/sparql12-query/" @@ -69,10 +53,6 @@ "name": "SPARQL12-RESULTS-XML", "url": "https://www.w3.org/TR/sparql12-results-xml/" }, - { - "name": "SPARQL12-SERVICE-DESCRIPTION", - "url": "https://www.w3.org/TR/sparql12-service-description/" - }, { "name": "SPARQL12-UPDATE", "url": "https://www.w3.org/TR/sparql12-update/" @@ -82,6 +62,27 @@ "url": "https://www.unicode.org/reports/tr36/tr36-15.html" } ], - "informative": [] + "informative": [ + { + "name": "SPARQL12-CONCEPTS", + "url": "https://w3c.github.io/sparql-concepts/spec/" + }, + { + "name": "SPARQL12-ENTAILMENT", + "url": "https://www.w3.org/TR/sparql12-entailment/" + }, + { + "name": "SPARQL12-FEDERATED-QUERY", + "url": "https://www.w3.org/TR/sparql12-federated-query/" + }, + { + "name": "SPARQL12-NEW", + "url": "https://w3c.github.io/sparql-new/spec/" + }, + { + "name": "SPARQL12-SERVICE-DESCRIPTION", + "url": "https://www.w3.org/TR/sparql12-service-description/" + } + ] } } \ No newline at end of file diff --git a/tr/refs/sparql12-results-csv-tsv.json b/tr/refs/sparql12-results-csv-tsv.json index 8a64a8a853df..4f5b5c42e12f 100644 --- a/tr/refs/sparql12-results-csv-tsv.json +++ b/tr/refs/sparql12-results-csv-tsv.json @@ -29,6 +29,24 @@ "name": "RFC4180", "url": "https://www.rfc-editor.org/rfc/rfc4180" }, + { + "name": "SPARQL12-QUERY", + "url": "https://www.w3.org/TR/sparql12-query/" + }, + { + "name": "SPARQL12-RESULTS-JSON", + "url": "https://www.w3.org/TR/sparql12-results-json/" + }, + { + "name": "SPARQL12-RESULTS-XML", + "url": "https://www.w3.org/TR/sparql12-results-xml/" + }, + { + "name": "UNICODE", + "url": "https://www.unicode.org/versions/latest/" + } + ], + "informative": [ { "name": "SPARQL12-CONCEPTS", "url": "https://w3c.github.io/sparql-concepts/spec/" @@ -53,18 +71,6 @@ "name": "SPARQL12-PROTOCOL", "url": "https://www.w3.org/TR/sparql12-protocol/" }, - { - "name": "SPARQL12-QUERY", - "url": "https://www.w3.org/TR/sparql12-query/" - }, - { - "name": "SPARQL12-RESULTS-JSON", - "url": "https://www.w3.org/TR/sparql12-results-json/" - }, - { - "name": "SPARQL12-RESULTS-XML", - "url": "https://www.w3.org/TR/sparql12-results-xml/" - }, { "name": "SPARQL12-SERVICE-DESCRIPTION", "url": "https://www.w3.org/TR/sparql12-service-description/" @@ -72,12 +78,7 @@ { "name": "SPARQL12-UPDATE", "url": "https://www.w3.org/TR/sparql12-update/" - }, - { - "name": "UNICODE", - "url": "https://www.unicode.org/versions/latest/" } - ], - "informative": [] + ] } } \ No newline at end of file diff --git a/tr/refs/sparql12-service-description.json b/tr/refs/sparql12-service-description.json index 7e1b677f78b2..2bdfdae86da7 100644 --- a/tr/refs/sparql12-service-description.json +++ b/tr/refs/sparql12-service-description.json @@ -37,10 +37,6 @@ "name": "SPARQL11-UPDATE", "url": "https://www.w3.org/TR/sparql11-update/" }, - { - "name": "SPARQL12-CONCEPTS", - "url": "https://w3c.github.io/sparql-concepts/spec/" - }, { "name": "SPARQL12-ENTAILMENT", "url": "https://www.w3.org/TR/sparql12-entailment/" @@ -49,14 +45,6 @@ "name": "SPARQL12-FEDERATED-QUERY", "url": "https://www.w3.org/TR/sparql12-federated-query/" }, - { - "name": "SPARQL12-GRAPH-STORE-PROTOCOL", - "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/" - }, - { - "name": "SPARQL12-NEW", - "url": "https://w3c.github.io/sparql-new/spec/" - }, { "name": "SPARQL12-PROTOCOL", "url": "https://www.w3.org/TR/sparql12-protocol/" @@ -65,18 +53,6 @@ "name": "SPARQL12-QUERY", "url": "https://www.w3.org/TR/sparql12-query/" }, - { - "name": "SPARQL12-RESULTS-CSV-TSV", - "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/" - }, - { - "name": "SPARQL12-RESULTS-JSON", - "url": "https://www.w3.org/TR/sparql12-results-json/" - }, - { - "name": "SPARQL12-RESULTS-XML", - "url": "https://www.w3.org/TR/sparql12-results-xml/" - }, { "name": "SPARQL12-UPDATE", "url": "https://www.w3.org/TR/sparql12-update/" @@ -90,6 +66,31 @@ "url": "https://www.w3.org/TR/webarch/" } ], - "informative": [] + "informative": [ + { + "name": "SPARQL12-CONCEPTS", + "url": "https://w3c.github.io/sparql-concepts/spec/" + }, + { + "name": "SPARQL12-GRAPH-STORE-PROTOCOL", + "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/" + }, + { + "name": "SPARQL12-NEW", + "url": "https://w3c.github.io/sparql-new/spec/" + }, + { + "name": "SPARQL12-RESULTS-CSV-TSV", + "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/" + }, + { + "name": "SPARQL12-RESULTS-JSON", + "url": "https://www.w3.org/TR/sparql12-results-json/" + }, + { + "name": "SPARQL12-RESULTS-XML", + "url": "https://www.w3.org/TR/sparql12-results-xml/" + } + ] } } \ No newline at end of file diff --git a/tr/refs/sparql12-update.json b/tr/refs/sparql12-update.json index deaa2a895e90..a6989c1bbbcf 100644 --- a/tr/refs/sparql12-update.json +++ b/tr/refs/sparql12-update.json @@ -21,10 +21,6 @@ "name": "RFC8174", "url": "https://www.rfc-editor.org/rfc/rfc8174" }, - { - "name": "SPARQL12-CONCEPTS", - "url": "https://w3c.github.io/sparql-concepts/spec/" - }, { "name": "SPARQL12-ENTAILMENT", "url": "https://www.w3.org/TR/sparql12-entailment/" @@ -37,10 +33,6 @@ "name": "SPARQL12-GRAPH-STORE-PROTOCOL", "url": "https://www.w3.org/TR/sparql12-graph-store-protocol/" }, - { - "name": "SPARQL12-NEW", - "url": "https://w3c.github.io/sparql-new/spec/" - }, { "name": "SPARQL12-PROTOCOL", "url": "https://www.w3.org/TR/sparql12-protocol/" @@ -49,6 +41,20 @@ "name": "SPARQL12-QUERY", "url": "https://www.w3.org/TR/sparql12-query/" }, + { + "name": "UNICODE", + "url": "https://www.unicode.org/versions/latest/" + } + ], + "informative": [ + { + "name": "SPARQL12-CONCEPTS", + "url": "https://w3c.github.io/sparql-concepts/spec/" + }, + { + "name": "SPARQL12-NEW", + "url": "https://w3c.github.io/sparql-new/spec/" + }, { "name": "SPARQL12-RESULTS-CSV-TSV", "url": "https://www.w3.org/TR/sparql12-results-csv-tsv/" @@ -64,12 +70,7 @@ { "name": "SPARQL12-SERVICE-DESCRIPTION", "url": "https://www.w3.org/TR/sparql12-service-description/" - }, - { - "name": "UNICODE", - "url": "https://www.unicode.org/versions/latest/" } - ], - "informative": [] + ] } } \ No newline at end of file