Skip to content

Commit 95fbf76

Browse files
committed
Update iana links registry data!
1 parent 02ba27f commit 95fbf76

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,16 @@ clean:
3636
dist/build: $(SOURCE_FILES)
3737
npx tsc
3838
touch dist/build
39+
40+
.PHONY:assets
41+
assets: assets/js/html-form-enhancer.js assets/js/serialize-json-form.js
42+
43+
assets/js/html-form-enhancer.js: node_modules/html-form-enhancer/dist/html-form-enhancer.js
44+
mkdir -p assets/js
45+
cp node_modules/html-form-enhancer/dist/html-form-enhancer.* assets/js
46+
47+
assets/js/serialize-json-form.js: node_modules/html-form-enhancer/dist/serialize-json-form.js
48+
cp node_modules/html-form-enhancer/dist/serialize-json-form.* assets/js
49+
50+
data/iana-links.json:
51+
node util/fetch-link-relation-data.mjs > data/iana-links.json

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
1.1.3 (????-??-??)
5+
------------------
6+
7+
* Added support for tooltips for c2pa-manifest, compression-dictionary,
8+
ice-server and depreciation.
9+
10+
411
1.1.2 (2024-12-06)
512
------------------
613

data/iana-links.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
"description": "Gives a permanent link to use for bookmarking purposes.",
4444
"href": "https://html.spec.whatwg.org/multipage/links.html#link-type-bookmark"
4545
},
46+
"c2pa-manifest": {
47+
"description": "This link relation identifies the C2PA Manifest associated with the link context",
48+
"href": "https://c2pa.org/specifications/specifications/2.0/specs/C2PA_Specification.html#_by_link_header"
49+
},
4650
"canonical": {
4751
"description": "Designates the preferred version of a resource (the IRI and its contents).",
4852
"href": "https://datatracker.ietf.org/doc/html/rfc6596"
@@ -59,6 +63,9 @@
5963
"description": "The target IRI points to a resource which represents the collection resource for the context IRI.",
6064
"href": "https://datatracker.ietf.org/doc/html/rfc6573"
6165
},
66+
"compression-dictionary": {
67+
"description": "Refers to a compression dictionary used for content encoding."
68+
},
6269
"contents": {
6370
"description": "Refers to a table of contents.",
6471
"href": "https://www.w3.org/TR/html401/"
@@ -79,6 +86,9 @@
7986
"description": "Refers to a resource containing the most recent item(s) in a collection of resources.",
8087
"href": "https://datatracker.ietf.org/doc/html/rfc5005"
8188
},
89+
"deprecation": {
90+
"description": "Refers to a resource that is documentation (intended for human consumption) about the deprecation of the link's context."
91+
},
8292
"describedby": {
8393
"description": "Refers to a resource providing information about the link's context.",
8494
"href": "http://www.w3.org/TR/powder-dr/#assoc-linking"
@@ -139,6 +149,9 @@
139149
"description": "Refers to a hub that enables registration for\n notification of updates to the context.",
140150
"href": "https://www.w3.org/TR/websub/"
141151
},
152+
"ice-server": {
153+
"description": "Conveys the STUN and TURN servers that can be used by an ICE Agent to establish a connection with a peer."
154+
},
142155
"icon": {
143156
"description": "Refers to an icon representing the link's context.",
144157
"href": "https://html.spec.whatwg.org/multipage/links.html#rel-icon"

0 commit comments

Comments
 (0)