Skip to content

Commit

Permalink
docs: update http certification docs symlinks (#3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanosdev authored Jan 21, 2025
1 parent c62fb82 commit 5399f4d
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 2,101 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ docs/references/execution-errors.mdx @dfinity/execution
docs/references/ingress-messages.mdx @dfinity/product-security
docs/references/message-execution-properties.mdx @dfinity/product-security
docs/developer-docs/web-apps/custom-domains @dfinity/boundary-node
docs/developer-docs/web-apps/http-compatible-canisters @dfinity/trust

# Each piece of documentation must be owned by the respective teams
docs/developer-docssmart-contracts/advanced-features/simd.mdx @dfinity/execution
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

15 changes: 10 additions & 5 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,16 @@ const sidebars = {
type: "category",
label: "HTTP certification",
items: [
{
type: "doc",
id: "developer-docs/web-apps/http-compatible-canisters/ic-asset-certification-library",
label: "The asset certification library",
},
{
type: "doc",
id: "developer-docs/web-apps/http-compatible-canisters/example-canister-serving-assets",
label: "Example canister serving assets",
},
{
type: "doc",
id: "developer-docs/web-apps/http-compatible-canisters/custom-http-canisters",
Expand All @@ -234,11 +244,6 @@ const sidebars = {
id: "developer-docs/web-apps/http-compatible-canisters/serving-json-over-http",
label: "Serving JSON over HTTP",
},
{
type: "doc",
id: "developer-docs/web-apps/http-compatible-canisters/serving-static-assets-ic-assets",
label: "Serving static assets over HTTP",
},
{
type: "doc",
id: "developer-docs/web-apps/http-compatible-canisters/serving-static-assets-over-http",
Expand Down
2 changes: 1 addition & 1 deletion submodules/internetidentity
Submodule internetidentity updated 30 files
+1 −1 rust-toolchain.toml
+4 −2 src/frontend/generated/internet_identity_idl.js
+2 −1 src/frontend/generated/internet_identity_types.d.ts
+8 −2 src/frontend/src/components/alias/index.ts
+2 −1 src/frontend/src/components/promptUserNumber.ts
+4 −1 src/frontend/src/flows/addDevice/manage/addDevice.ts
+3 −2 src/frontend/src/flows/addDevice/manage/pollForTentativeDevice.ts
+8 −3 src/frontend/src/flows/manage/deviceSettings.ts
+5 −4 src/frontend/src/flows/manage/index.ts
+2 −1 src/frontend/src/flows/recovery/recoverWith/device.ts
+1 −1 src/frontend/src/flows/recovery/recoveryWizard.ts
+76 −0 src/frontend/src/storage/index.test.ts
+104 −0 src/frontend/src/storage/index.ts
+33 −4 src/frontend/src/test-e2e/flows.ts
+54 −1 src/frontend/src/test-e2e/recovery/index.test.ts
+3 −3 src/frontend/src/test-e2e/recovery/protected/reset.test.ts
+49 −5 src/frontend/src/test-e2e/views.ts
+63 −3 src/frontend/src/utils/iiConnection.test.ts
+22 −15 src/frontend/src/utils/iiConnection.ts
+11 −2 src/internet_identity/internet_identity.did
+1 −1 src/internet_identity/src/archive.rs
+15 −14 src/internet_identity/src/main.rs
+5 −3 src/internet_identity/src/openid.rs
+18 −7 src/internet_identity/src/openid/google.rs
+3 −3 src/internet_identity/src/state.rs
+6 −6 src/internet_identity/src/storage/storable_persistent_state.rs
+15 −10 src/internet_identity/tests/integration/config.rs
+4 −4 src/internet_identity/tests/integration/http.rs
+13 −1 src/internet_identity_interface/src/internet_identity/types.rs
+4 −0 src/sig-verifier-js/Cargo.toml
2 changes: 1 addition & 1 deletion submodules/motoko
Submodule motoko updated 49 files
+19 −5 Changelog.md
+3 −2 doc/md/base/Debug.md
+10 −0 doc/md/base/ExperimentalInternetComputer.md
+1 −1 doc/md/base/OrderedMap.md
+1 −1 doc/md/base/OrderedSet.md
+1 −1 doc/md/base/RBTree.md
+58 −0 doc/md/base/Text.md
+26 −0 doc/md/canister-maintenance/memory.md
+2 −13 nix/drun.nix
+10 −10 nix/sources.json
+58 −27 rts/motoko-rts/src/idl.rs
+21 −0 src/codegen/compile_classical.ml
+21 −0 src/codegen/compile_enhanced.ml
+2 −1 src/ir_def/arrange_ir.ml
+8 −2 src/ir_def/check_ir.ml
+7 −0 src/ir_def/construct.ml
+1 −0 src/ir_def/construct.mli
+2 −1 src/ir_def/freevars.ml
+1 −0 src/ir_def/ir.ml
+4 −2 src/ir_def/rename.ml
+4 −2 src/ir_passes/async.ml
+17 −5 src/ir_passes/await.ml
+4 −2 src/ir_passes/const.ml
+6 −2 src/ir_passes/eq.ml
+4 −2 src/ir_passes/erase_typ_field.ml
+6 −2 src/ir_passes/show.ml
+11 −4 src/lowering/desugar.ml
+3 −10 src/mo_frontend/typing.ml
+0 −2 src/mo_frontend/typing.mli
+19 −3 src/mo_types/type.ml
+5 −1 src/mo_types/type.mli
+21 −6 src/prelude/internals.mo
+1 −1 test/bench/ok/region-mem.drun-run.ok
+1 −1 test/bench/ok/region0-mem.drun-run.ok
+1 −1 test/bench/ok/stable-mem.drun-run.ok
+1 −1 test/fail/ok/M0129.tc.ok
+5 −5 test/fail/ok/illegal-await.tc.ok
+2 −2 test/run-drun/actor-class-mgmt-enhanced.mo
+61 −0 test/run-drun/low-memory.mo
+27 −0 test/run-drun/low-memory/low-memory-actor.mo
+2 −2 test/run-drun/map-mixed-upgrades/map0.mo
+2 −2 test/run-drun/map-mixed-upgrades/map1.mo
+2 −2 test/run-drun/migration-paths/new-installer.mo
+2 −2 test/run-drun/migration-paths/old-installer.mo
+6 −0 test/run-drun/ok/low-memory.drun-run.ok
+3 −0 test/run-drun/ok/tmp_upgrade.drun.ok
+3 −0 test/run-drun/tmp_upgrade.drun
+6 −0 test/run-drun/tmp_upgrade/version0.mo
+6 −0 test/run-drun/tmp_upgrade/version1.mo

0 comments on commit 5399f4d

Please sign in to comment.