Skip to content

Commit 50e811d

Browse files
jt55401claude
andcommitted
chore: complete ArcadeLabsInc → HTMLTrust org rename
Updates Go module path, conformance runner import, and documentation URLs to point at the new HTMLTrust org. No behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 67e13aa commit 50e811d

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const canonical = normalizeText('He said, \u201CHello\u2026\u201D');
5353
### Go
5454

5555
```go
56-
import "github.com/ArcadeLabsInc/htmltrust-canonicalization/go"
56+
import "github.com/HTMLTrust/htmltrust-canonicalization/go"
5757

5858
canonical := canonicalize.Normalize("He said, \u201CHello\u2026\u201D")
5959
// → "He said, \"Hello...\""
@@ -103,11 +103,11 @@ cd php && composer install && composer test
103103

104104
| Repository | Description |
105105
|---|---|
106-
| [htmltrust-spec](https://github.com/ArcadeLabsInc/htmltrust-spec) | The HTMLTrust specification and paper |
107-
| [htmltrust-server-reference](https://github.com/ArcadeLabsInc/htmltrust-server-reference) | Reference trust directory API server |
108-
| [htmltrust-browser-reference](https://github.com/ArcadeLabsInc/htmltrust-browser-reference) | Reference browser extension |
109-
| [htmltrust-cms-reference](https://github.com/ArcadeLabsInc/htmltrust-cms-reference) | Reference CMS plugins (WordPress, Hugo) |
110-
| [htmltrust-website](https://github.com/ArcadeLabsInc/htmltrust-website) | Project website |
106+
| [htmltrust-spec](https://github.com/HTMLTrust/htmltrust-spec) | The HTMLTrust specification and paper |
107+
| [htmltrust-server-reference](https://github.com/HTMLTrust/htmltrust-server-reference) | Reference trust directory API server |
108+
| [htmltrust-browser-reference](https://github.com/HTMLTrust/htmltrust-browser-reference) | Reference browser extension |
109+
| [htmltrust-cms-reference](https://github.com/HTMLTrust/htmltrust-cms-reference) | Reference CMS plugins (WordPress, Hugo) |
110+
| [htmltrust-website](https://github.com/HTMLTrust/htmltrust-website) | Project website |
111111

112112
## License
113113

conformance/runners/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ module htmltrust.conformance/run-go
22

33
go 1.21
44

5-
require github.com/ArcadeLabsInc/htmltrust-canonicalization/go v0.0.0
5+
require github.com/HTMLTrust/htmltrust-canonicalization/go v0.0.0
66

77
require golang.org/x/text v0.21.0 // indirect
88

9-
replace github.com/ArcadeLabsInc/htmltrust-canonicalization/go => ../../go
9+
replace github.com/HTMLTrust/htmltrust-canonicalization/go => ../../go

conformance/runners/run-go.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"runtime"
3131
"sort"
3232

33-
canonicalize "github.com/ArcadeLabsInc/htmltrust-canonicalization/go"
33+
canonicalize "github.com/HTMLTrust/htmltrust-canonicalization/go"
3434
)
3535

3636
// fixture is the on-disk shape of every fixture JSON file. The `Input`

go/canonicalize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// form suitable for content hashing and signing. Zero external dependencies
55
// beyond the Go standard library and golang.org/x/text for NFKC.
66
//
7-
// Spec: https://github.com/ArcadeLabsInc/htmltrust-canonicalization
7+
// Spec: https://github.com/HTMLTrust/htmltrust-canonicalization
88
package canonicalize
99

1010
import (

go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ArcadeLabsInc/htmltrust-canonicalization/go
1+
module github.com/HTMLTrust/htmltrust-canonicalization/go
22

33
go 1.21
44

javascript/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* HTMLTrust Canonical Text Normalization
3-
* Spec: https://github.com/ArcadeLabsInc/htmltrust-canonicalization
3+
* Spec: https://github.com/HTMLTrust/htmltrust-canonicalization
44
*
55
* Zero dependencies. Works in browsers and Node.js.
66
*/

php/src/Canonicalize.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Implements all 8 phases of the HTMLTrust canonicalization spec.
66
* Requires PHP 7.2+ with the intl extension (for Normalizer::normalize).
77
*
8-
* Spec: https://github.com/ArcadeLabsInc/htmltrust-canonicalization
8+
* Spec: https://github.com/HTMLTrust/htmltrust-canonicalization
99
*
1010
* @package HTMLTrust\Canonicalization
1111
*/

0 commit comments

Comments
 (0)