From 03e167c99a384a9af2ee14c00c93f2288fef2cdf Mon Sep 17 00:00:00 2001 From: ya7010 Date: Sun, 6 Jul 2025 10:57:38 +0900 Subject: [PATCH 1/4] feat: add date-time-local and time-local. --- registries/_format/date-time-local.md | 15 +++++++++++++++ registries/_format/time-local.md | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 registries/_format/date-time-local.md create mode 100644 registries/_format/time-local.md diff --git a/registries/_format/date-time-local.md b/registries/_format/date-time-local.md new file mode 100644 index 0000000000..320bd62743 --- /dev/null +++ b/registries/_format/date-time-local.md @@ -0,0 +1,15 @@ +--- +owner: ya7010 +issue: 4759 +description: date and time without timezone +base_type: string +layout: default +source_label: TOML +source: https://toml.io/en/v1.0.0#local-date-time +--- + +{% capture summary %} +The `{{page.slug}}` format represents a date and time without timezone for [TOML Local Date-Time](https://toml.io/en/v1.0.0#local-date-time) compatibility. +{% endcapture %} + +{% include format-entry.md summary=summary %} diff --git a/registries/_format/time-local.md b/registries/_format/time-local.md new file mode 100644 index 0000000000..bc0270eda7 --- /dev/null +++ b/registries/_format/time-local.md @@ -0,0 +1,15 @@ +--- +owner: ya7010 +issue: 4759 +description: time without timezone +base_type: string +layout: default +source_label: TOML +source: https://toml.io/en/v1.0.0#local-time +--- + +{% capture summary %} +The `{{page.slug}}` format represents a time without timezone for [TOML Local Time](https://toml.io/en/v1.0.0#local-time) compatibility. +{% endcapture %} + +{% include format-entry.md summary=summary %} From 33017465f9064774bde79ec92b6be61a54d07ddc Mon Sep 17 00:00:00 2001 From: ya7010 Date: Thu, 10 Jul 2025 01:06:47 +0900 Subject: [PATCH 2/4] update: description. --- registries/_format/date-time-local.md | 4 ++-- registries/_format/time-local.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/registries/_format/date-time-local.md b/registries/_format/date-time-local.md index 320bd62743..b151eee385 100644 --- a/registries/_format/date-time-local.md +++ b/registries/_format/date-time-local.md @@ -1,7 +1,7 @@ --- owner: ya7010 issue: 4759 -description: date and time without timezone +description: RFC3339 date-time without the timezone component base_type: string layout: default source_label: TOML @@ -9,7 +9,7 @@ source: https://toml.io/en/v1.0.0#local-date-time --- {% capture summary %} -The `{{page.slug}}` format represents a date and time without timezone for [TOML Local Date-Time](https://toml.io/en/v1.0.0#local-date-time) compatibility. +The `{{page.slug}}` format represents a RFC3339 date-time without timezone. {% endcapture %} {% include format-entry.md summary=summary %} diff --git a/registries/_format/time-local.md b/registries/_format/time-local.md index bc0270eda7..03a178aea6 100644 --- a/registries/_format/time-local.md +++ b/registries/_format/time-local.md @@ -1,7 +1,7 @@ --- owner: ya7010 issue: 4759 -description: time without timezone +description: RFC3339 time without the timezone component base_type: string layout: default source_label: TOML @@ -9,7 +9,7 @@ source: https://toml.io/en/v1.0.0#local-time --- {% capture summary %} -The `{{page.slug}}` format represents a time without timezone for [TOML Local Time](https://toml.io/en/v1.0.0#local-time) compatibility. +The `{{page.slug}}` format represents a RFC3339 time without timezone. {% endcapture %} {% include format-entry.md summary=summary %} From 1f4191427576b299dbd61068c7733bbca02f67af Mon Sep 17 00:00:00 2001 From: ya7010 Date: Fri, 11 Jul 2025 00:50:20 +0900 Subject: [PATCH 3/4] update: use rfc source. --- registries/_format/date-time-local.md | 4 ++-- registries/_format/time-local.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/registries/_format/date-time-local.md b/registries/_format/date-time-local.md index b151eee385..36ae985f59 100644 --- a/registries/_format/date-time-local.md +++ b/registries/_format/date-time-local.md @@ -4,8 +4,8 @@ issue: 4759 description: RFC3339 date-time without the timezone component base_type: string layout: default -source_label: TOML -source: https://toml.io/en/v1.0.0#local-date-time +source_label: RFC 3339 +source: https://datatracker.ietf.org/doc/html/rfc3339#section-5.6 --- {% capture summary %} diff --git a/registries/_format/time-local.md b/registries/_format/time-local.md index 03a178aea6..38561aa62c 100644 --- a/registries/_format/time-local.md +++ b/registries/_format/time-local.md @@ -4,8 +4,8 @@ issue: 4759 description: RFC3339 time without the timezone component base_type: string layout: default -source_label: TOML -source: https://toml.io/en/v1.0.0#local-time +source_label: RFC 3339 +source: https://datatracker.ietf.org/doc/html/rfc3339#section-5.6 --- {% capture summary %} From 41bb4955fad5d5709b5effd3e71452a2587977cc Mon Sep 17 00:00:00 2001 From: ya7010 Date: Fri, 11 Jul 2025 00:56:40 +0900 Subject: [PATCH 4/4] fix: source link. --- registries/_format/date-time-local.md | 2 +- registries/_format/time-local.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/registries/_format/date-time-local.md b/registries/_format/date-time-local.md index 36ae985f59..28b1d83c98 100644 --- a/registries/_format/date-time-local.md +++ b/registries/_format/date-time-local.md @@ -5,7 +5,7 @@ description: RFC3339 date-time without the timezone component base_type: string layout: default source_label: RFC 3339 -source: https://datatracker.ietf.org/doc/html/rfc3339#section-5.6 +source: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 --- {% capture summary %} diff --git a/registries/_format/time-local.md b/registries/_format/time-local.md index 38561aa62c..3416704aae 100644 --- a/registries/_format/time-local.md +++ b/registries/_format/time-local.md @@ -5,7 +5,7 @@ description: RFC3339 time without the timezone component base_type: string layout: default source_label: RFC 3339 -source: https://datatracker.ietf.org/doc/html/rfc3339#section-5.6 +source: https://www.rfc-editor.org/rfc/rfc3339#section-5.6 --- {% capture summary %}