From 7e5de12cb678c66e1d8e02247b1a316ff0bc5307 Mon Sep 17 00:00:00 2001 From: Leon Hudak <33522493+leohhhn@users.noreply.github.com> Date: Wed, 20 Nov 2024 21:57:22 +0900 Subject: [PATCH] chore: move `hof` under `r/leon` (#3167) ## Description Moves `r/demo/hof` under `r/leon`. After discussing internally, we should start utilizing personal namespaces as much as possible. cc @moul
Contributors' checklist... - [x] Added new tests, or not needed, or not feasible - [x] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [x] Updated the official documentation or not needed - [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [x] Added references to related issues and PRs - [x] Provided any useful hints for running manual tests
--- examples/gno.land/r/gnoland/home/gno.mod | 2 +- examples/gno.land/r/gnoland/home/home.gno | 2 +- examples/gno.land/r/{demo => leon}/hof/administration.gno | 0 examples/gno.land/r/{demo => leon}/hof/errors.gno | 0 examples/gno.land/r/{demo => leon}/hof/gno.mod | 2 +- examples/gno.land/r/{demo => leon}/hof/hof.gno | 0 examples/gno.land/r/{demo => leon}/hof/hof_test.gno | 0 examples/gno.land/r/{demo => leon}/hof/render.gno | 0 examples/gno.land/r/leon/home/gno.mod | 2 +- examples/gno.land/r/leon/home/home.gno | 2 +- examples/gno.land/r/manfred/home/gno.mod | 2 +- examples/gno.land/r/manfred/home/home.gno | 2 +- examples/gno.land/r/morgan/home/gno.mod | 2 +- examples/gno.land/r/morgan/home/home.gno | 2 +- 14 files changed, 9 insertions(+), 9 deletions(-) rename examples/gno.land/r/{demo => leon}/hof/administration.gno (100%) rename examples/gno.land/r/{demo => leon}/hof/errors.gno (100%) rename examples/gno.land/r/{demo => leon}/hof/gno.mod (94%) rename examples/gno.land/r/{demo => leon}/hof/hof.gno (100%) rename examples/gno.land/r/{demo => leon}/hof/hof_test.gno (100%) rename examples/gno.land/r/{demo => leon}/hof/render.gno (100%) diff --git a/examples/gno.land/r/gnoland/home/gno.mod b/examples/gno.land/r/gnoland/home/gno.mod index ff52ef4c8b1..52d01c6d38c 100644 --- a/examples/gno.land/r/gnoland/home/gno.mod +++ b/examples/gno.land/r/gnoland/home/gno.mod @@ -4,7 +4,7 @@ require ( gno.land/p/demo/ownable v0.0.0-latest gno.land/p/demo/ufmt v0.0.0-latest gno.land/p/demo/ui v0.0.0-latest - gno.land/r/demo/hof v0.0.0-latest gno.land/r/gnoland/blog v0.0.0-latest gno.land/r/gnoland/events v0.0.0-latest + gno.land/r/leon/hof v0.0.0-latest ) diff --git a/examples/gno.land/r/gnoland/home/home.gno b/examples/gno.land/r/gnoland/home/home.gno index ce976923ef5..04c549a0d27 100644 --- a/examples/gno.land/r/gnoland/home/home.gno +++ b/examples/gno.land/r/gnoland/home/home.gno @@ -6,9 +6,9 @@ import ( "gno.land/p/demo/ownable" "gno.land/p/demo/ufmt" "gno.land/p/demo/ui" - "gno.land/r/demo/hof" blog "gno.land/r/gnoland/blog" events "gno.land/r/gnoland/events" + "gno.land/r/leon/hof" ) // XXX: p/demo/ui API is crappy, we need to make it more idiomatic diff --git a/examples/gno.land/r/demo/hof/administration.gno b/examples/gno.land/r/leon/hof/administration.gno similarity index 100% rename from examples/gno.land/r/demo/hof/administration.gno rename to examples/gno.land/r/leon/hof/administration.gno diff --git a/examples/gno.land/r/demo/hof/errors.gno b/examples/gno.land/r/leon/hof/errors.gno similarity index 100% rename from examples/gno.land/r/demo/hof/errors.gno rename to examples/gno.land/r/leon/hof/errors.gno diff --git a/examples/gno.land/r/demo/hof/gno.mod b/examples/gno.land/r/leon/hof/gno.mod similarity index 94% rename from examples/gno.land/r/demo/hof/gno.mod rename to examples/gno.land/r/leon/hof/gno.mod index ac5c91295a6..feb31992513 100644 --- a/examples/gno.land/r/demo/hof/gno.mod +++ b/examples/gno.land/r/leon/hof/gno.mod @@ -1,4 +1,4 @@ -module gno.land/r/demo/hof +module gno.land/r/leon/hof require ( gno.land/p/demo/avl v0.0.0-latest diff --git a/examples/gno.land/r/demo/hof/hof.gno b/examples/gno.land/r/leon/hof/hof.gno similarity index 100% rename from examples/gno.land/r/demo/hof/hof.gno rename to examples/gno.land/r/leon/hof/hof.gno diff --git a/examples/gno.land/r/demo/hof/hof_test.gno b/examples/gno.land/r/leon/hof/hof_test.gno similarity index 100% rename from examples/gno.land/r/demo/hof/hof_test.gno rename to examples/gno.land/r/leon/hof/hof_test.gno diff --git a/examples/gno.land/r/demo/hof/render.gno b/examples/gno.land/r/leon/hof/render.gno similarity index 100% rename from examples/gno.land/r/demo/hof/render.gno rename to examples/gno.land/r/leon/hof/render.gno diff --git a/examples/gno.land/r/leon/home/gno.mod b/examples/gno.land/r/leon/home/gno.mod index 7288c176050..e7ffc49a37f 100644 --- a/examples/gno.land/r/leon/home/gno.mod +++ b/examples/gno.land/r/leon/home/gno.mod @@ -4,7 +4,7 @@ require ( gno.land/p/demo/ufmt v0.0.0-latest gno.land/r/demo/art/gnoface v0.0.0-latest gno.land/r/demo/art/millipede v0.0.0-latest - gno.land/r/demo/hof v0.0.0-latest gno.land/r/demo/mirror v0.0.0-latest gno.land/r/leon/config v0.0.0-latest + gno.land/r/leon/hof v0.0.0-latest ) diff --git a/examples/gno.land/r/leon/home/home.gno b/examples/gno.land/r/leon/home/home.gno index 632b3f14a62..cf33260cc6b 100644 --- a/examples/gno.land/r/leon/home/home.gno +++ b/examples/gno.land/r/leon/home/home.gno @@ -8,9 +8,9 @@ import ( "gno.land/r/demo/art/gnoface" "gno.land/r/demo/art/millipede" - "gno.land/r/demo/hof" "gno.land/r/demo/mirror" "gno.land/r/leon/config" + "gno.land/r/leon/hof" ) var ( diff --git a/examples/gno.land/r/manfred/home/gno.mod b/examples/gno.land/r/manfred/home/gno.mod index 9885cac19c2..0ef23834fb5 100644 --- a/examples/gno.land/r/manfred/home/gno.mod +++ b/examples/gno.land/r/manfred/home/gno.mod @@ -1,6 +1,6 @@ module gno.land/r/manfred/home require ( - gno.land/r/demo/hof v0.0.0-latest + gno.land/r/leon/hof v0.0.0-latest gno.land/r/manfred/config v0.0.0-latest ) diff --git a/examples/gno.land/r/manfred/home/home.gno b/examples/gno.land/r/manfred/home/home.gno index 4766f54e51f..3e29636439d 100644 --- a/examples/gno.land/r/manfred/home/home.gno +++ b/examples/gno.land/r/manfred/home/home.gno @@ -1,7 +1,7 @@ package home import ( - "gno.land/r/demo/hof" + "gno.land/r/leon/hof" "gno.land/r/manfred/config" ) diff --git a/examples/gno.land/r/morgan/home/gno.mod b/examples/gno.land/r/morgan/home/gno.mod index 35e2fbb2119..412666e4171 100644 --- a/examples/gno.land/r/morgan/home/gno.mod +++ b/examples/gno.land/r/morgan/home/gno.mod @@ -1,3 +1,3 @@ module gno.land/r/morgan/home -require gno.land/r/demo/hof v0.0.0-latest +require gno.land/r/leon/hof v0.0.0-latest diff --git a/examples/gno.land/r/morgan/home/home.gno b/examples/gno.land/r/morgan/home/home.gno index 571f14ed5ec..20b66b895e3 100644 --- a/examples/gno.land/r/morgan/home/home.gno +++ b/examples/gno.land/r/morgan/home/home.gno @@ -1,6 +1,6 @@ package home -import "gno.land/r/demo/hof" +import "gno.land/r/leon/hof" const staticHome = `# morgan's (gn)home