From 46658770b224ff7accefa33f64ccd56a12764db7 Mon Sep 17 00:00:00 2001 From: Leonard Rosenthol Date: Sun, 15 Jun 2025 16:03:36 -0400 Subject: [PATCH 1/4] set of changes for the version and the missing DST URLs --- config.toml | 2 +- content/en/digitalsourcetype/_index.md | 4 ++++ content/en/digitalsourcetype/empty.md | 18 ++++++++++++++++++ .../trainedAlgorithmicData.md | 17 +++++++++++++++++ hugo_stats.json | 4 ++++ 5 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 content/en/digitalsourcetype/_index.md create mode 100644 content/en/digitalsourcetype/empty.md create mode 100644 content/en/digitalsourcetype/trainedAlgorithmicData.md diff --git a/config.toml b/config.toml index 0ba68b7..398ac52 100644 --- a/config.toml +++ b/config.toml @@ -323,7 +323,7 @@ weight = 20 [[menu.main]] identifier = "spec" title = "Specification" -url = "https://c2pa.org/specifications/specifications/2.1/index.html" +url = "https://c2pa.org/specifications/specifications/2.2/index.html" weight = 25 [[menu.main]] identifier = "membership" diff --git a/content/en/digitalsourcetype/_index.md b/content/en/digitalsourcetype/_index.md new file mode 100644 index 0000000..8849052 --- /dev/null +++ b/content/en/digitalsourcetype/_index.md @@ -0,0 +1,4 @@ +--- +title: "Digital Source Types" +featured_image: '' +--- diff --git a/content/en/digitalsourcetype/empty.md b/content/en/digitalsourcetype/empty.md new file mode 100644 index 0000000..b6d80ca --- /dev/null +++ b/content/en/digitalsourcetype/empty.md @@ -0,0 +1,18 @@ +--- +title: "Digital Source Type: Empty" +featured_image: '' +---- + + +```json +{ + "@context": "https://www.c2pa.org/dstEmpty.jsonld", + "uri" : "http://c2pa.org/digitalsourcetype/empty", + "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], + "modified" : "2025-06-15T19:58:50.916Z", + "definition" : { + "en-GB" : "Media whose digital content is effectively empty, such as a blank canvas or zero-length video." + }, + "created" : "2025-06-15T19:59:42.509Z" +} +``` diff --git a/content/en/digitalsourcetype/trainedAlgorithmicData.md b/content/en/digitalsourcetype/trainedAlgorithmicData.md new file mode 100644 index 0000000..a46ca89 --- /dev/null +++ b/content/en/digitalsourcetype/trainedAlgorithmicData.md @@ -0,0 +1,17 @@ +--- +title: "Digital Source Type: Trained Algorithmic Data" +featured_image: '' +--- + +```json +{ + "@context": "https://www.c2pa.org/dstTrainedAlgorithmicData.jsonld", + "uri" : "http://c2pa.org/digitalsourcetype/trainedAlgorithmicData", + "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], + "modified" : "2025-06-15T19:58:50.916Z", + "definition" : { + "en-GB" : "Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle)." + }, + "created" : "2025-06-15T19:59:42.509Z" +} +``` diff --git a/hugo_stats.json b/hugo_stats.json index d7abc96..2065cc3 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -8,6 +8,7 @@ "body", "br", "button", + "code", "div", "em", "footer", @@ -28,6 +29,7 @@ "p", "path", "polygon", + "pre", "script", "script\r", "section", @@ -83,6 +85,7 @@ "h-full", "hero-members", "hidden", + "highlight", "hover:bg-gray-50", "hover:border-gray-400", "hover:scale-105", @@ -93,6 +96,7 @@ "inset-y-0", "items-center", "justify-between", + "language-json", "left-0", "lg:bg-transparent", "lg:col-span-9", From 3227fbd4c01e7ac235b19038b356764237164760 Mon Sep 17 00:00:00 2001 From: Leonard Rosenthol Date: Sun, 15 Jun 2025 16:04:48 -0400 Subject: [PATCH 2/4] hugo build --- docs/404.html | 12 +- docs/about/about/index.html | 12 +- docs/about/charter/index.html | 12 +- docs/about/index.html | 12 +- docs/about/resources/index.html | 12 +- docs/categories/index.html | 12 +- docs/contact/index.html | 12 +- docs/digitalsourcetype/empty/index.html | 232 +++++++++++++++ docs/digitalsourcetype/index.html | 274 ++++++++++++++++++ docs/digitalsourcetype/index.xml | 28 ++ docs/digitalsourcetype/page/1/index.html | 1 + .../trainedalgorithmicdata/index.html | 229 +++++++++++++++ docs/faq/index.html | 12 +- docs/index.html | 12 +- docs/index.xml | 18 ++ docs/jan-2022_event/index.html | 12 +- docs/membership/index.html | 30 +- docs/post/c2pa_initial_pr/index.html | 12 +- docs/post/contentcredentials/index.html | 12 +- docs/post/draft_1_pr/index.html | 12 +- docs/post/google_pr/index.html | 12 +- docs/post/index.html | 91 +----- docs/post/openai_pr/index.html | 12 +- docs/post/publicis_pr/index.html | 12 +- docs/post/release_1_pr/index.html | 12 +- docs/post/sony_pr/index.html | 12 +- docs/post/twitter_pr/index.html | 12 +- docs/principles/index.html | 12 +- docs/sitemap.xml | 12 + docs/tags/index.html | 12 +- 30 files changed, 1054 insertions(+), 113 deletions(-) create mode 100644 docs/digitalsourcetype/empty/index.html create mode 100644 docs/digitalsourcetype/index.html create mode 100644 docs/digitalsourcetype/index.xml create mode 100644 docs/digitalsourcetype/page/1/index.html create mode 100644 docs/digitalsourcetype/trainedalgorithmicdata/index.html diff --git a/docs/404.html b/docs/404.html index 0aa4b20..3bf8795 100644 --- a/docs/404.html +++ b/docs/404.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/about/about/index.html b/docs/about/about/index.html index d9cd17e..ce3f293 100644 --- a/docs/about/about/index.html +++ b/docs/about/about/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/about/charter/index.html b/docs/about/charter/index.html index a101f23..f89d5e4 100644 --- a/docs/about/charter/index.html +++ b/docs/about/charter/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/about/index.html b/docs/about/index.html index 0ae286d..fdb12bc 100644 --- a/docs/about/index.html +++ b/docs/about/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/about/resources/index.html b/docs/about/resources/index.html index 1d34138..90b2799 100644 --- a/docs/about/resources/index.html +++ b/docs/about/resources/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/categories/index.html b/docs/categories/index.html index ea47ca9..5e4d5e8 100644 --- a/docs/categories/index.html +++ b/docs/categories/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/contact/index.html b/docs/contact/index.html index 3b5bc81..a3281c7 100644 --- a/docs/contact/index.html +++ b/docs/contact/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/digitalsourcetype/empty/index.html b/docs/digitalsourcetype/empty/index.html new file mode 100644 index 0000000..0899971 --- /dev/null +++ b/docs/digitalsourcetype/empty/index.html @@ -0,0 +1,232 @@ + + + + + + + + Digital Source Type: Empty - C2PA + + + + + + +
    +
    +
    + + + +
    + + + + +
    + +

    Digital Source Type: Empty

    +
    +
    +
    +
    +
    +
      +
    • +
    +
    {
    +	"@context": "https://www.c2pa.org/dstEmpty.jsonld", 
    +	"uri" : "http://c2pa.org/digitalsourcetype/empty", 
    +	"inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], 
    +	"modified" : "2025-06-15T19:58:50.916Z", 
    +	"definition" : {
    +		"en-GB" : "Media whose digital content is effectively empty, such as a blank canvas or zero-length video."
    +	},
    +	"created" : "2025-06-15T19:59:42.509Z"
    +}
    +
    +
    + +
    + +
    + + diff --git a/docs/digitalsourcetype/index.html b/docs/digitalsourcetype/index.html new file mode 100644 index 0000000..e9686a8 --- /dev/null +++ b/docs/digitalsourcetype/index.html @@ -0,0 +1,274 @@ + + + + + + + + Digital Source Types - C2PA + + + + + + +
    +
    +
    + + + +
    + + + + +
    + +

    Digital Source Types

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +

    + + Digital Source Type: Empty + +

    +
    + { "@context": "https://www.c2pa.org/dstEmpty.jsonld", "uri" : "http://c2pa.org/digitalsourcetype/empty", "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], "modified" : "2025-06-15T19:58:50.916Z", "definition" : { "en-GB" : "Media whose digital content is effectively empty, such as a blank canvas or zero-length video." }, "created" : "2025-06-15T19:59:42.509Z" } + +
    +
    +
    +
    + +
    +
    +
    +

    + + Digital Source Type: Trained Algorithmic Data + +

    +
    + { "@context": "https://www.c2pa.org/dstTrainedAlgorithmicData.jsonld", "uri" : "http://c2pa.org/digitalsourcetype/trainedAlgorithmicData", "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], "modified" : "2025-06-15T19:58:50.916Z", "definition" : { "en-GB" : "Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle)." }, "created" : "2025-06-15T19:59:42.509Z" } + +
    +
    +
    +
    + +
    + +
    + +
    + + diff --git a/docs/digitalsourcetype/index.xml b/docs/digitalsourcetype/index.xml new file mode 100644 index 0000000..c331d28 --- /dev/null +++ b/docs/digitalsourcetype/index.xml @@ -0,0 +1,28 @@ + + + + Digital Source Types on C2PA + https://c2pa.org/digitalsourcetype/ + Recent content in Digital Source Types on C2PA + Hugo -- gohugo.io + en-us + + Digital Source Type: Empty + https://c2pa.org/digitalsourcetype/empty/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://c2pa.org/digitalsourcetype/empty/ + { "@context": "https://www.c2pa.org/dstEmpty.jsonld", "uri" : "http://c2pa.org/digitalsourcetype/empty", "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], "modified" : "2025-06-15T19:58:50.916Z", "definition" : { "en-GB" : "Media whose digital content is effectively empty, such as a blank canvas or zero-length video." }, "created" : "2025-06-15T19:59:42.509Z" } + + + + Digital Source Type: Trained Algorithmic Data + https://c2pa.org/digitalsourcetype/trainedalgorithmicdata/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://c2pa.org/digitalsourcetype/trainedalgorithmicdata/ + { "@context": "https://www.c2pa.org/dstTrainedAlgorithmicData.jsonld", "uri" : "http://c2pa.org/digitalsourcetype/trainedAlgorithmicData", "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], "modified" : "2025-06-15T19:58:50.916Z", "definition" : { "en-GB" : "Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle)." }, "created" : "2025-06-15T19:59:42.509Z" } + + + + diff --git a/docs/digitalsourcetype/page/1/index.html b/docs/digitalsourcetype/page/1/index.html new file mode 100644 index 0000000..a9bd1d1 --- /dev/null +++ b/docs/digitalsourcetype/page/1/index.html @@ -0,0 +1 @@ +https://c2pa.org/digitalsourcetype/ \ No newline at end of file diff --git a/docs/digitalsourcetype/trainedalgorithmicdata/index.html b/docs/digitalsourcetype/trainedalgorithmicdata/index.html new file mode 100644 index 0000000..cfc639c --- /dev/null +++ b/docs/digitalsourcetype/trainedalgorithmicdata/index.html @@ -0,0 +1,229 @@ + + + + + + + + Digital Source Type: Trained Algorithmic Data - C2PA + + + + + + +
    +
    +
    + + + +
    + + + + +
    + +

    Digital Source Type: Trained Algorithmic Data

    +
    +
    +
    +
    +
    +
    {
    +	"@context": "https://www.c2pa.org/dstTrainedAlgorithmicData.jsonld", 
    +	"uri" : "http://c2pa.org/digitalsourcetype/trainedAlgorithmicData", 
    +	"inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], 
    +	"modified" : "2025-06-15T19:58:50.916Z", 
    +	"definition" : {
    +		"en-GB" : "Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle)."
    +	},
    +	"created" : "2025-06-15T19:59:42.509Z"
    +}
    +
    +
    + +
    + +
    + + diff --git a/docs/faq/index.html b/docs/faq/index.html index c7ecc47..d7c2601 100644 --- a/docs/faq/index.html +++ b/docs/faq/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/index.html b/docs/index.html index 2c49d1c..315cc61 100644 --- a/docs/index.html +++ b/docs/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/index.xml b/docs/index.xml index 536f7c5..60ba67f 100644 --- a/docs/index.xml +++ b/docs/index.xml @@ -125,5 +125,23 @@ Agenda Topic Speaker(s) Welcome and Introduction to the C2PA Dr. + + Digital Source Type: Empty + https://c2pa.org/digitalsourcetype/empty/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://c2pa.org/digitalsourcetype/empty/ + { "@context": "https://www.c2pa.org/dstEmpty.jsonld", "uri" : "http://c2pa.org/digitalsourcetype/empty", "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], "modified" : "2025-06-15T19:58:50.916Z", "definition" : { "en-GB" : "Media whose digital content is effectively empty, such as a blank canvas or zero-length video." }, "created" : "2025-06-15T19:59:42.509Z" } + + + + Digital Source Type: Trained Algorithmic Data + https://c2pa.org/digitalsourcetype/trainedalgorithmicdata/ + Mon, 01 Jan 0001 00:00:00 +0000 + + https://c2pa.org/digitalsourcetype/trainedalgorithmicdata/ + { "@context": "https://www.c2pa.org/dstTrainedAlgorithmicData.jsonld", "uri" : "http://c2pa.org/digitalsourcetype/trainedAlgorithmicData", "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], "modified" : "2025-06-15T19:58:50.916Z", "definition" : { "en-GB" : "Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle)." }, "created" : "2025-06-15T19:59:42.509Z" } + + diff --git a/docs/jan-2022_event/index.html b/docs/jan-2022_event/index.html index f07f590..b1ffc94 100644 --- a/docs/jan-2022_event/index.html +++ b/docs/jan-2022_event/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/membership/index.html b/docs/membership/index.html index 05d3f23..a7812ae 100644 --- a/docs/membership/index.html +++ b/docs/membership/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + @@ -195,13 +205,13 @@

    Membership

    Apply Now

    Are you interested in joining C2PA to develop open standards that certify the source and provenance of online content? Apply now to join our incredible roster of members. C2PA Introduction

    -
    - - - -
    +
    + + + +

    Steering Committee Members

    @@ -255,8 +265,6 @@

    Steering Committee Members

    -
    -

    General Members

    @@ -413,8 +421,6 @@

    General Members

    -
    -

    Contributor Members

    diff --git a/docs/post/c2pa_initial_pr/index.html b/docs/post/c2pa_initial_pr/index.html index c3f30a5..ae24caf 100644 --- a/docs/post/c2pa_initial_pr/index.html +++ b/docs/post/c2pa_initial_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/post/contentcredentials/index.html b/docs/post/contentcredentials/index.html index be52340..95177e8 100644 --- a/docs/post/contentcredentials/index.html +++ b/docs/post/contentcredentials/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/post/draft_1_pr/index.html b/docs/post/draft_1_pr/index.html index 6b160d8..a9378ae 100644 --- a/docs/post/draft_1_pr/index.html +++ b/docs/post/draft_1_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/post/google_pr/index.html b/docs/post/google_pr/index.html index 9a4d8ba..3a29fff 100644 --- a/docs/post/google_pr/index.html +++ b/docs/post/google_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/post/index.html b/docs/post/index.html index 79c98d9..4e59c50 100644 --- a/docs/post/index.html +++ b/docs/post/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + @@ -202,85 +212,6 @@

    News

    - - The C2PA and Embassy of France Collaborate to Advance Authenticity and Transparency in Digital Content - -

    -
    - WASHINGTON, D.C. — Oct 02, 2024 — The Embassy of France in Washington, D.C., in collaboration with the Coalition for Content Provenance and Authenticity (C2PA), hosted the inaugural international briefing on content authenticity and the groundbreaking C2PA standard, Content Credentials. - -
    -
    -
    - - -
    -
    -
    -

    - - Amazon Joins the C2PA Steering Committee - -

    -
    - SAN FRANCISCO, Calif. — Sep 12, 2024 — Today, the Coalition for Content Provenance and Authenticity (C2PA) announced that Amazon has joined the organization as a new steering committee member. Amazon’s commitment to the C2PA advances the coalition’s mission to increase transparency of digital content and promote broad adoption of Content Credentials. - -
    -
    -
    -
    - -
    -
    -
    -

    - - Meta Joins C2PA Steering Committee - -

    -
    - SAN FRANCISCO, Calif. — Sep 05, 2024 — Today, the Coalition for Content Provenance and Authenticity (C2PA) announced that Meta is continuing its commitment to content provenance by joining the organization as a new steering committee member. Meta’s commitment to Content Credentials increases transparency for people who use Meta’s apps and platforms as well as the digital ecosystem. - -
    -
    -
    -
    -
    -
    -

    OpenAI Joins C2PA Steering Committee diff --git a/docs/post/openai_pr/index.html b/docs/post/openai_pr/index.html index 94d314b..caa33c5 100644 --- a/docs/post/openai_pr/index.html +++ b/docs/post/openai_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + +

    diff --git a/docs/post/publicis_pr/index.html b/docs/post/publicis_pr/index.html index 0f88e69..54129d1 100644 --- a/docs/post/publicis_pr/index.html +++ b/docs/post/publicis_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + +
    diff --git a/docs/post/release_1_pr/index.html b/docs/post/release_1_pr/index.html index bdb35f4..c445835 100644 --- a/docs/post/release_1_pr/index.html +++ b/docs/post/release_1_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/post/sony_pr/index.html b/docs/post/sony_pr/index.html index 288138e..2cfdbe1 100644 --- a/docs/post/sony_pr/index.html +++ b/docs/post/sony_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/post/twitter_pr/index.html b/docs/post/twitter_pr/index.html index ae6d892..e08fd5b 100644 --- a/docs/post/twitter_pr/index.html +++ b/docs/post/twitter_pr/index.html @@ -134,7 +134,7 @@
  • Specification @@ -185,6 +185,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/principles/index.html b/docs/principles/index.html index e133b0a..7def611 100644 --- a/docs/principles/index.html +++ b/docs/principles/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 9bc5a9d..08fde5a 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -88,6 +88,18 @@ https://c2pa.org/jan-2022_event/ monthly 0.5 + + https://c2pa.org/digitalsourcetype/empty/ + monthly + 0.5 + + https://c2pa.org/digitalsourcetype/trainedalgorithmicdata/ + monthly + 0.5 + + https://c2pa.org/digitalsourcetype/ + monthly + 0.5 https://c2pa.org/faq/ monthly diff --git a/docs/tags/index.html b/docs/tags/index.html index a61a8d7..c2ff68c 100644 --- a/docs/tags/index.html +++ b/docs/tags/index.html @@ -132,7 +132,7 @@
  • Specification @@ -183,6 +183,16 @@
  • + +
  • + Digital Source Types +
  • + + From 3dd43d9c599884b6c6dd2c63f01fd0202925bdfb Mon Sep 17 00:00:00 2001 From: Leonard Rosenthol Date: Tue, 17 Jun 2025 18:27:44 -0400 Subject: [PATCH 3/4] digitalsourcetypes working better --- Dockerfile | 2 +- config.toml | 16 ++++- content/en/digitalsourcetype/_index.md | 3 + content/en/digitalsourcetype/empty.adoc | 22 +++++++ content/en/digitalsourcetype/empty.md | 18 ------ .../trainedAlgorithmicData.adoc | 21 +++++++ .../trainedAlgorithmicData.md | 17 ------ docs/404.html | 16 +---- docs/about/about/index.html | 18 ++---- docs/about/charter/index.html | 18 ++---- docs/about/index.html | 22 ++----- docs/about/page/1/index.html | 11 +++- docs/about/resources/index.html | 18 ++---- docs/categories/index.html | 20 ++----- docs/categories/page/1/index.html | 11 +++- docs/contact/index.html | 22 ++----- docs/contact/page/1/index.html | 11 +++- ...fde6cf09359f047174520b04093196ef970cab.css | 1 + docs/digitalsourcetype/empty/index.html | 59 ++++++++++--------- docs/digitalsourcetype/index.html | 38 ++++++------ docs/digitalsourcetype/index.xml | 18 +++++- docs/digitalsourcetype/page/1/index.html | 11 +++- .../trainedalgorithmicdata/index.html | 56 ++++++++++-------- docs/faq/index.html | 22 ++----- docs/faq/page/1/index.html | 11 +++- docs/index.html | 16 +---- docs/index.xml | 20 ++++++- docs/jan-2022_event/index.html | 16 +---- docs/membership/index.html | 22 ++----- docs/membership/page/1/index.html | 11 +++- docs/post/c2pa_initial_pr/index.html | 18 ++---- docs/post/contentcredentials/index.html | 18 ++---- docs/post/draft_1_pr/index.html | 18 ++---- docs/post/google_pr/index.html | 18 ++---- docs/post/index.html | 22 ++----- docs/post/openai_pr/index.html | 18 ++---- docs/post/page/1/index.html | 11 +++- docs/post/publicis_pr/index.html | 20 ++----- docs/post/release_1_pr/index.html | 18 ++---- docs/post/sony_pr/index.html | 18 ++---- docs/post/twitter_pr/index.html | 18 ++---- docs/principles/index.html | 24 ++------ docs/principles/page/1/index.html | 11 +++- docs/tags/index.html | 20 ++----- docs/tags/page/1/index.html | 11 +++- hugo-build.sh | 4 +- hugo-serve.sh | 2 +- hugo_stats.json | 17 +++--- 48 files changed, 380 insertions(+), 473 deletions(-) create mode 100644 content/en/digitalsourcetype/empty.adoc delete mode 100644 content/en/digitalsourcetype/empty.md create mode 100644 content/en/digitalsourcetype/trainedAlgorithmicData.adoc delete mode 100644 content/en/digitalsourcetype/trainedAlgorithmicData.md create mode 100644 docs/css/styles.min.c02c16b613868668e51e6a93f1fde6cf09359f047174520b04093196ef970cab.css diff --git a/Dockerfile b/Dockerfile index 8199867..61fdf02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1 @@ -FROM klakegg/hugo:0.82.1-ext-alpine-onbuild \ No newline at end of file +FROM klakegg/hugo:0.101.0-ext-asciidoctor-onbuild \ No newline at end of file diff --git a/config.toml b/config.toml index 398ac52..8871e4a 100644 --- a/config.toml +++ b/config.toml @@ -6,7 +6,7 @@ title = "Coalition for Content Provenance and Authenticity" defaultContentLanguage = "en" paginate = 10 -sectionPagesMenu = "main" +# sectionPagesMenu = "main" enableRobotsTXT = false googleAnalytics = "" @@ -350,3 +350,17 @@ writeStats = true [markup.goldmark.renderer] unsafe = true + +[security] +enableInlineShortcodes = false + +[security.exec] +allow = ["^dart-sass-embedded$", "^go$", "^npx$", "^postcss$", "^asciidoctor$"] +osEnv = ["(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM|RUBYLIB)$"] + +[security.funcs] +getenv = ["^HUGO_"] + +[security.http] +methods = ["(?i)GET|POST"] +urls = [".*"] diff --git a/content/en/digitalsourcetype/_index.md b/content/en/digitalsourcetype/_index.md index 8849052..d45297e 100644 --- a/content/en/digitalsourcetype/_index.md +++ b/content/en/digitalsourcetype/_index.md @@ -1,4 +1,7 @@ --- +build: + list: never + render: never title: "Digital Source Types" featured_image: '' --- diff --git a/content/en/digitalsourcetype/empty.adoc b/content/en/digitalsourcetype/empty.adoc new file mode 100644 index 0000000..4cfc0e7 --- /dev/null +++ b/content/en/digitalsourcetype/empty.adoc @@ -0,0 +1,22 @@ +--- +title: "Digital Source Type: Empty" +featured_image: '' +--- + + +[%noheader] +[cols="1,1,1,1"] +|=== +4+| *Concept* ID (QCode) = digsrctype:empty, ID (URI) = http://c2pa.org/digitalsourcetype/empty + +| *Type*: cpnat:abstract +| *Created*: 2025-06-15T19:58:50.916Z +| *Modified*: 2025-06-15T19:58:50.916Z +| *Retired*: + +4+| *Name* (en): Empty media + +4+| *Definition* (en): Media whose digital content is effectively empty, such as a blank canvas or zero-length video. + +4+| *Member of scheme*: http://c2pa.org/digitalsourcetype/ +|=== diff --git a/content/en/digitalsourcetype/empty.md b/content/en/digitalsourcetype/empty.md deleted file mode 100644 index b6d80ca..0000000 --- a/content/en/digitalsourcetype/empty.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Digital Source Type: Empty" -featured_image: '' ----- - - -```json -{ - "@context": "https://www.c2pa.org/dstEmpty.jsonld", - "uri" : "http://c2pa.org/digitalsourcetype/empty", - "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], - "modified" : "2025-06-15T19:58:50.916Z", - "definition" : { - "en-GB" : "Media whose digital content is effectively empty, such as a blank canvas or zero-length video." - }, - "created" : "2025-06-15T19:59:42.509Z" -} -``` diff --git a/content/en/digitalsourcetype/trainedAlgorithmicData.adoc b/content/en/digitalsourcetype/trainedAlgorithmicData.adoc new file mode 100644 index 0000000..e125137 --- /dev/null +++ b/content/en/digitalsourcetype/trainedAlgorithmicData.adoc @@ -0,0 +1,21 @@ +--- +title: "Digital Source Type: Trained Algorithmic Data" +featured_image: '' +--- + +[%noheader] +[cols="1,1,1,1"] +|=== +4+| *Concept* ID (QCode) = digsrctype:trainedAlgorithmicMedia, ID (URI) = http://c2pa.org/digitalsourcetype/trainedAlgorithmicData + +| *Type*: cpnat:abstract +| *Created*: 2025-06-15T19:58:50.916Z +| *Modified*: 2025-06-15T19:58:50.916Z +| *Retired*: + +4+| *Name* (en): Data created using Generative AI + +4+| *Definition* (en): Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle). + +4+| *Member of scheme*: http://c2pa.org/digitalsourcetype/ +|=== diff --git a/content/en/digitalsourcetype/trainedAlgorithmicData.md b/content/en/digitalsourcetype/trainedAlgorithmicData.md deleted file mode 100644 index a46ca89..0000000 --- a/content/en/digitalsourcetype/trainedAlgorithmicData.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Digital Source Type: Trained Algorithmic Data" -featured_image: '' ---- - -```json -{ - "@context": "https://www.c2pa.org/dstTrainedAlgorithmicData.jsonld", - "uri" : "http://c2pa.org/digitalsourcetype/trainedAlgorithmicData", - "inScheme" : [ "http://c2pa.org/digitalsourcetype/" ], - "modified" : "2025-06-15T19:58:50.916Z", - "definition" : { - "en-GB" : "Data that is the result of algorithmically using a model derived from sampled content and data. Differs from http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia in that the result isn’t a media type (e.g., image or video) but is a data format (e.g., CSV, pickle)." - }, - "created" : "2025-06-15T19:59:42.509Z" -} -``` diff --git a/docs/404.html b/docs/404.html index 3bf8795..9fccf01 100644 --- a/docs/404.html +++ b/docs/404.html @@ -6,12 +6,12 @@ 404 Page not found - C2PA - + @@ -183,16 +183,6 @@ - -
  • - Digital Source Types -
  • - - diff --git a/docs/about/about/index.html b/docs/about/about/index.html index ce3f293..7595551 100644 --- a/docs/about/about/index.html +++ b/docs/about/about/index.html @@ -6,12 +6,12 @@ About - C2PA - + @@ -103,7 +103,7 @@
  • About
  • @@ -183,16 +183,6 @@ - -
  • - Digital Source Types -
  • - - diff --git a/docs/about/charter/index.html b/docs/about/charter/index.html index f89d5e4..e8d532d 100644 --- a/docs/about/charter/index.html +++ b/docs/about/charter/index.html @@ -6,12 +6,12 @@ Charter - C2PA - + @@ -103,7 +103,7 @@
  • About
  • @@ -183,16 +183,6 @@ - -
  • - Digital Source Types -
  • - - diff --git a/docs/about/index.html b/docs/about/index.html index fdb12bc..0878dca 100644 --- a/docs/about/index.html +++ b/docs/about/index.html @@ -6,12 +6,12 @@ About - C2PA - + @@ -103,7 +103,7 @@
  • About
  • @@ -183,16 +183,6 @@ - -
  • - Digital Source Types -
  • - - @@ -287,9 +277,7 @@

    - - - +