├── .dockerignore ├── .dprint.jsonc ├── .editorconfig ├── .env.local ├── .eslintignore ├── .eslintrc.cjs ├── .gitattributes ├── .github └── workflows │ ├── build-leaf-rpc-server.yaml │ ├── build-weird.yaml │ ├── check-for-clc.yaml │ ├── lint.yaml │ ├── todos.yaml │ └── typescript-docs.yaml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .typos.toml ├── ARCHITECTURE.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── DEVELOPER.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── compose.local.yaml ├── compose.yaml ├── deploy └── rauthy │ ├── .gitignore │ ├── Dockerfile │ ├── Kraftfile │ ├── build-rootfs.sh │ ├── deploy.sh │ └── latest.txt ├── docs ├── README.md ├── login-with-weird.md ├── login-with-weird │ └── forgejo-config.png ├── old-weird-architecture.png └── services.png ├── justfile ├── leaf-rpc-server.Dockerfile ├── leaf ├── LICENSE.md ├── README.md ├── leaf-protocol │ ├── Cargo.toml │ ├── LICENSE.md │ ├── examples │ │ └── hashes.rs │ ├── macros │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── src │ │ ├── components.rs │ │ ├── lib.rs │ │ ├── store.rs │ │ └── store │ │ │ └── iroh.rs │ └── types │ │ ├── Cargo.toml │ │ └── src │ │ ├── borsh_schema.rs │ │ ├── digest.rs │ │ └── lib.rs ├── leaf-rpc-client-cli │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── leaf-rpc-client-tui │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── leaf-rpc-client │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── leaf-rpc-proto │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── leaf-rpc-server │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ └── proto.rs └── ts │ ├── .gitignore │ ├── README.md │ ├── components.ts │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── package.json ├── patches └── @discordjs__util.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.js ├── skeleton-themes.ts ├── src ├── app.css ├── app.d.ts ├── app.html ├── hooks.server.ts ├── hooks.ts ├── lib │ ├── billing.ts │ ├── components │ │ ├── avatar │ │ │ ├── editor.svelte │ │ │ ├── helpers.ts │ │ │ ├── types.ts │ │ │ └── view.svelte │ │ ├── editors │ │ │ ├── CollaborativeEditor.css │ │ │ ├── CompositeMarkdownEditor.svelte │ │ │ ├── DagView │ │ │ │ ├── DagView.css │ │ │ │ ├── DagView.svelte │ │ │ │ ├── dag-view-types.ts │ │ │ │ ├── dag-view.d.ts │ │ │ │ ├── dag-view.js │ │ │ │ └── editor-history.ts │ │ │ ├── InlineTextEditor.svelte │ │ │ ├── LinksEditor.svelte │ │ │ ├── LoroCompositeMarkdownEditor.svelte │ │ │ ├── LoroRichMarkdownEditor.svelte │ │ │ ├── MarkdownEditor.svelte │ │ │ ├── PagesListEditor.svelte │ │ │ ├── RichMarkdownEditor.svelte │ │ │ ├── SocialLinksEditor.svelte │ │ │ ├── SocialLinksEditor │ │ │ │ └── SocialLinkInput.svelte │ │ │ └── TemplateEditor.svelte │ │ ├── git │ │ │ ├── LanguageTag.svelte │ │ │ ├── Repository.svelte │ │ │ └── UserInfoItem.svelte │ │ ├── layouts │ │ │ ├── Details.svelte │ │ │ └── OuterLayout.svelte │ │ ├── pubpage-admin │ │ │ └── edit-links.svelte │ │ ├── social-media │ │ │ ├── SocialLinkIcon.svelte │ │ │ ├── featured-social-media-button.svelte │ │ │ └── social-media-button.svelte │ │ ├── subsite-admin │ │ │ └── panel.svelte │ │ └── theme │ │ │ ├── MainContent.svelte │ │ │ └── SearchInput.svelte │ ├── constants.ts │ ├── cron.ts │ ├── discord-bot.ts │ ├── dns │ │ ├── resolve.ts │ │ └── server.ts │ ├── email.ts │ ├── icons │ │ ├── CompanyIcon.svelte │ │ ├── Favorite.svelte │ │ ├── LinkIcon.svelte │ │ ├── MapPinIcon.svelte │ │ ├── Pin.svelte │ │ ├── Reblog.svelte │ │ ├── Reply.svelte │ │ └── TwitterIcon.svelte │ ├── image.ts │ ├── leaf │ │ ├── discord.ts │ │ ├── index.ts │ │ └── profile.ts │ ├── limited-fetch.ts │ ├── link_verifier │ │ ├── LinkVerifier.ts │ │ └── strategy │ │ │ ├── DefaultLinkVerificationStrategy.test.ts │ │ │ ├── DefaultLinkVerificationStrategy.ts │ │ │ └── LinkVerificationStrategy.ts │ ├── pages │ │ ├── server.ts │ │ └── types.ts │ ├── pow │ │ ├── index.ts │ │ └── wasm │ │ │ ├── spow-server-wasm.d.ts │ │ │ ├── spow-server-wasm.js │ │ │ ├── spow-server-wasm_bg.js │ │ │ ├── spow-server-wasm_bg.wasm │ │ │ └── spow-server-wasm_bg.wasm.d.ts │ ├── rauthy │ │ ├── client.ts │ │ ├── index.ts │ │ └── server.ts │ ├── redis.ts │ ├── renderer │ │ └── index.ts │ ├── server-globals.ts │ ├── themes │ │ ├── minimal.svelte │ │ ├── reader │ │ │ ├── page.jinja │ │ │ └── profile.jinja │ │ ├── retro.svelte │ │ ├── weird.svelte │ │ └── weird │ │ │ ├── page.html.j2 │ │ │ └── profile.html.j2 │ ├── types │ │ ├── embed-sdk.d.ts │ │ ├── git.ts │ │ ├── rss.ts │ │ └── zulip.ts │ ├── usernames │ │ ├── client.ts │ │ └── index.ts │ ├── utils │ │ ├── bsky.ts │ │ ├── databaseDump.ts │ │ ├── github.ts │ │ ├── http.ts │ │ ├── import-opml.ts │ │ ├── markdown.ts │ │ ├── social-links.ts │ │ └── time.ts │ ├── verifiedLinks.ts │ └── websocket-polyfill.ts ├── namedrop.d.ts ├── routes │ ├── (app) │ │ ├── +error.svelte │ │ ├── +layout.server.ts │ │ ├── +layout.svelte │ │ ├── +server.ts │ │ ├── [username] │ │ │ ├── +layout.server.ts │ │ │ ├── +layout.svelte │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ ├── [slug] │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── loroSnapshot │ │ │ │ │ └── +server.ts │ │ │ │ └── revisions │ │ │ │ │ └── +page.svelte │ │ │ ├── avatar │ │ │ │ └── +server.ts │ │ │ ├── components │ │ │ │ ├── ChangeHandleModal.svelte │ │ │ │ ├── DeleteProfileModal.svelte │ │ │ │ ├── ManageAccountModal.svelte │ │ │ │ └── ManageSubscriptionModal.svelte │ │ │ ├── mastodon │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ └── mastodon.d.ts │ │ │ ├── new │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ │ ├── post-card.svelte │ │ │ ├── settings │ │ │ │ ├── cancelBillingSubscription │ │ │ │ │ └── +server.ts │ │ │ │ ├── cancelDomainVerification │ │ │ │ │ └── +server.ts │ │ │ │ ├── deleteProfile │ │ │ │ │ └── +server.ts │ │ │ │ ├── getBillingCheckoutLink │ │ │ │ │ └── +server.ts │ │ │ │ ├── getBillingMethodUpdateLink │ │ │ │ │ └── +server.ts │ │ │ │ ├── resumeBillingSubscription │ │ │ │ │ └── +server.ts │ │ │ │ ├── setAtprotoDid │ │ │ │ │ └── +server.ts │ │ │ │ ├── setHandle │ │ │ │ │ └── +server.ts │ │ │ │ ├── setTheme │ │ │ │ │ └── +server.ts │ │ │ │ └── takingnames │ │ │ │ │ └── +page.svelte │ │ │ ├── theme-editor │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── examplePage.md │ │ │ │ ├── minimalPageTheme.html.j2 │ │ │ │ └── minimalProfileTheme.html.j2 │ │ │ └── utils.ts │ │ ├── account │ │ │ ├── bsky │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ └── profile │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ └── +page.svelte │ │ │ ├── codeberg │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ └── profile │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ └── +page.svelte │ │ │ ├── forgot-password │ │ │ │ ├── +page.svelte │ │ │ │ └── componenets │ │ │ │ │ ├── ForgetPasswordForm.svelte │ │ │ │ │ └── ForgotPasswordPage.svelte │ │ │ ├── github │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ └── profile │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── readme │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ └── +page.svelte │ │ │ ├── link-mastodon │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ │ ├── linktree │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ └── profile │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ └── +page.svelte │ │ │ ├── pages │ │ │ │ ├── +layout.svelte │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── edit │ │ │ │ │ └── [slug] │ │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ │ └── +page.svelte │ │ │ │ └── new │ │ │ │ │ └── +page.svelte │ │ │ ├── register │ │ │ │ └── confirmation │ │ │ │ │ ├── +page.svelte │ │ │ │ │ └── components │ │ │ │ │ ├── ConfirmationPage.svelte │ │ │ │ │ └── SuccessMessage.svelte │ │ │ └── zulip │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ └── profile │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ ├── auth │ │ │ ├── [...path] │ │ │ │ └── +server.ts │ │ │ ├── v1 │ │ │ │ ├── account │ │ │ │ │ └── +server.ts │ │ │ │ ├── oidc │ │ │ │ │ ├── authorize │ │ │ │ │ │ └── +server.ts │ │ │ │ │ └── logout │ │ │ │ │ │ └── +server.ts │ │ │ │ ├── providers │ │ │ │ │ └── callback │ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ │ └── +server.ts │ │ │ │ └── users │ │ │ │ │ ├── [user] │ │ │ │ │ └── reset │ │ │ │ │ │ └── [token] │ │ │ │ │ │ ├── +page.svelte │ │ │ │ │ │ ├── +page.ts │ │ │ │ │ │ └── +server.ts │ │ │ │ │ └── register │ │ │ │ │ ├── +page.svelte │ │ │ │ │ ├── +server.ts │ │ │ │ │ └── components │ │ │ │ │ ├── RegisterForm.svelte │ │ │ │ │ └── RegisterPage.svelte │ │ │ └── weird │ │ │ │ └── pow │ │ │ │ └── +server.ts │ │ ├── avatar │ │ │ └── +server.ts │ │ ├── claim-handle │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ └── components │ │ │ │ ├── ClaimHandleForm.svelte │ │ │ │ └── ClaimHandlePage.svelte │ │ ├── connect │ │ │ └── discord │ │ │ │ └── [linkId] │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ ├── feedback │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ ├── components │ │ │ │ ├── FeedbackForm.svelte │ │ │ │ └── FeedbackPage.svelte │ │ │ ├── confirmation │ │ │ │ ├── +page.svelte │ │ │ │ └── componenets │ │ │ │ │ └── FeedbackPage.svelte │ │ │ └── pow │ │ │ │ └── +server.ts │ │ ├── login │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ ├── +server.ts │ │ │ └── components │ │ │ │ ├── LoginForm.svelte │ │ │ │ ├── LoginPage.svelte │ │ │ │ └── ProviderLoginButtons.svelte │ │ ├── logout │ │ │ └── +page.svelte │ │ ├── my-profile │ │ │ └── +page.server.ts │ │ ├── order-confirmation │ │ │ ├── +page.svelte │ │ │ └── check │ │ │ │ └── +server.ts │ │ ├── people │ │ │ ├── +page.server.ts │ │ │ └── +page.svelte │ │ └── ppl │ │ │ └── +server.ts │ ├── (internal) │ │ └── __internal__ │ │ │ ├── [...path] │ │ │ └── +server.ts │ │ │ ├── admin │ │ │ ├── +layout.server.ts │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── billing │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ │ ├── database-dump │ │ │ │ ├── +page.server.ts │ │ │ │ ├── +page.svelte │ │ │ │ ├── download │ │ │ │ │ └── +server.ts │ │ │ │ └── view │ │ │ │ │ └── +server.ts │ │ │ ├── dns │ │ │ │ └── resolve │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ └── +page.svelte │ │ │ ├── explorer │ │ │ │ └── [[namespace]] │ │ │ │ │ └── [[subspace]] │ │ │ │ │ └── [[entityPath]] │ │ │ │ │ ├── +page.server.ts │ │ │ │ │ └── +page.svelte │ │ │ ├── migration-508f757 │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ │ ├── send-emails │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ │ └── usernames │ │ │ │ ├── +page.server.ts │ │ │ │ └── +page.svelte │ │ │ ├── favicon │ │ │ └── [url] │ │ │ │ └── +server.ts │ │ │ ├── polar-webhook │ │ │ └── +server.ts │ │ │ └── traefik-config │ │ │ └── +server.ts │ ├── (subsites) │ │ └── subsite │ │ │ └── [username] │ │ │ ├── +server.ts │ │ │ ├── [slug] │ │ │ └── +server.ts │ │ │ └── avatar │ │ │ └── +server.ts │ ├── .well-known │ │ ├── microsoft-identity-association.json │ │ │ └── +server.ts │ │ └── openid-configuration │ │ │ └── +server.ts │ └── api │ │ └── links │ │ └── +server.ts └── shims.d.ts ├── static ├── UncutSans-Variable.woff2 ├── default-avatar.svg ├── favicon.png ├── logo.webp ├── nube.svg ├── pico.colors.min.css ├── pico.min.css ├── renderers │ └── minijinja.wasm ├── star-2.svg ├── star-3.svg └── stars.avif ├── svelte.config.js ├── tailwind.config.ts ├── tsconfig.json ├── userattributes-api-key-bootstrap.json ├── vite.config.ts └── weird.Dockerfile /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.dockerignore -------------------------------------------------------------------------------- /.dprint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.dprint.jsonc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.env.local -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-leaf-rpc-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.github/workflows/build-leaf-rpc-server.yaml -------------------------------------------------------------------------------- /.github/workflows/build-weird.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.github/workflows/build-weird.yaml -------------------------------------------------------------------------------- /.github/workflows/check-for-clc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.github/workflows/check-for-clc.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/todos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.github/workflows/todos.yaml -------------------------------------------------------------------------------- /.github/workflows/typescript-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.github/workflows/typescript-docs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.prettierrc -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/.typos.toml -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/RELEASE.md -------------------------------------------------------------------------------- /compose.local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/compose.local.yaml -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/compose.yaml -------------------------------------------------------------------------------- /deploy/rauthy/.gitignore: -------------------------------------------------------------------------------- 1 | .unikraft 2 | rootfs.out 3 | -------------------------------------------------------------------------------- /deploy/rauthy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/deploy/rauthy/Dockerfile -------------------------------------------------------------------------------- /deploy/rauthy/Kraftfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/deploy/rauthy/Kraftfile -------------------------------------------------------------------------------- /deploy/rauthy/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/deploy/rauthy/build-rootfs.sh -------------------------------------------------------------------------------- /deploy/rauthy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/deploy/rauthy/deploy.sh -------------------------------------------------------------------------------- /deploy/rauthy/latest.txt: -------------------------------------------------------------------------------- 1 | 0.8.2 -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/login-with-weird.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/docs/login-with-weird.md -------------------------------------------------------------------------------- /docs/login-with-weird/forgejo-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/docs/login-with-weird/forgejo-config.png -------------------------------------------------------------------------------- /docs/old-weird-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/docs/old-weird-architecture.png -------------------------------------------------------------------------------- /docs/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/docs/services.png -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/justfile -------------------------------------------------------------------------------- /leaf-rpc-server.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf-rpc-server.Dockerfile -------------------------------------------------------------------------------- /leaf/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/LICENSE.md -------------------------------------------------------------------------------- /leaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/README.md -------------------------------------------------------------------------------- /leaf/leaf-protocol/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-protocol/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/LICENSE.md -------------------------------------------------------------------------------- /leaf/leaf-protocol/examples/hashes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/examples/hashes.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/macros/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-protocol/macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/macros/src/lib.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/src/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/src/components.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/src/lib.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/src/store.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/src/store/iroh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/src/store/iroh.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/types/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-protocol/types/src/borsh_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/types/src/borsh_schema.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/types/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/types/src/digest.rs -------------------------------------------------------------------------------- /leaf/leaf-protocol/types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-protocol/types/src/lib.rs -------------------------------------------------------------------------------- /leaf/leaf-rpc-client-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-client-cli/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-rpc-client-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-client-cli/src/main.rs -------------------------------------------------------------------------------- /leaf/leaf-rpc-client-tui/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-client-tui/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-rpc-client-tui/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-client-tui/src/main.rs -------------------------------------------------------------------------------- /leaf/leaf-rpc-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-client/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-rpc-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-client/src/lib.rs -------------------------------------------------------------------------------- /leaf/leaf-rpc-proto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-proto/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-rpc-proto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-proto/src/lib.rs -------------------------------------------------------------------------------- /leaf/leaf-rpc-server/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | data/ -------------------------------------------------------------------------------- /leaf/leaf-rpc-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-server/Cargo.toml -------------------------------------------------------------------------------- /leaf/leaf-rpc-server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-server/src/main.rs -------------------------------------------------------------------------------- /leaf/leaf-rpc-server/src/proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/leaf-rpc-server/src/proto.rs -------------------------------------------------------------------------------- /leaf/ts/.gitignore: -------------------------------------------------------------------------------- 1 | docs -------------------------------------------------------------------------------- /leaf/ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/ts/README.md -------------------------------------------------------------------------------- /leaf/ts/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/ts/components.ts -------------------------------------------------------------------------------- /leaf/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/ts/index.ts -------------------------------------------------------------------------------- /leaf/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/ts/package.json -------------------------------------------------------------------------------- /leaf/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/leaf/ts/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/package.json -------------------------------------------------------------------------------- /patches/@discordjs__util.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/patches/@discordjs__util.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/postcss.config.js -------------------------------------------------------------------------------- /skeleton-themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/skeleton-themes.ts -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/app.html -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/hooks.server.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/lib/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/billing.ts -------------------------------------------------------------------------------- /src/lib/components/avatar/editor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/avatar/editor.svelte -------------------------------------------------------------------------------- /src/lib/components/avatar/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/avatar/helpers.ts -------------------------------------------------------------------------------- /src/lib/components/avatar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/avatar/types.ts -------------------------------------------------------------------------------- /src/lib/components/avatar/view.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/avatar/view.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/CollaborativeEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/CollaborativeEditor.css -------------------------------------------------------------------------------- /src/lib/components/editors/CompositeMarkdownEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/CompositeMarkdownEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/DagView/DagView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/DagView/DagView.css -------------------------------------------------------------------------------- /src/lib/components/editors/DagView/DagView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/DagView/DagView.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/DagView/dag-view-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/DagView/dag-view-types.ts -------------------------------------------------------------------------------- /src/lib/components/editors/DagView/dag-view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/DagView/dag-view.d.ts -------------------------------------------------------------------------------- /src/lib/components/editors/DagView/dag-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/DagView/dag-view.js -------------------------------------------------------------------------------- /src/lib/components/editors/DagView/editor-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/DagView/editor-history.ts -------------------------------------------------------------------------------- /src/lib/components/editors/InlineTextEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/InlineTextEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/LinksEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/LinksEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/LoroCompositeMarkdownEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/LoroCompositeMarkdownEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/LoroRichMarkdownEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/LoroRichMarkdownEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/MarkdownEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/MarkdownEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/PagesListEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/PagesListEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/RichMarkdownEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/RichMarkdownEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/SocialLinksEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/SocialLinksEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/SocialLinksEditor/SocialLinkInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/SocialLinksEditor/SocialLinkInput.svelte -------------------------------------------------------------------------------- /src/lib/components/editors/TemplateEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/editors/TemplateEditor.svelte -------------------------------------------------------------------------------- /src/lib/components/git/LanguageTag.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/git/LanguageTag.svelte -------------------------------------------------------------------------------- /src/lib/components/git/Repository.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/git/Repository.svelte -------------------------------------------------------------------------------- /src/lib/components/git/UserInfoItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/git/UserInfoItem.svelte -------------------------------------------------------------------------------- /src/lib/components/layouts/Details.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/layouts/Details.svelte -------------------------------------------------------------------------------- /src/lib/components/layouts/OuterLayout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/layouts/OuterLayout.svelte -------------------------------------------------------------------------------- /src/lib/components/pubpage-admin/edit-links.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/pubpage-admin/edit-links.svelte -------------------------------------------------------------------------------- /src/lib/components/social-media/SocialLinkIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/social-media/SocialLinkIcon.svelte -------------------------------------------------------------------------------- /src/lib/components/social-media/featured-social-media-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/social-media/featured-social-media-button.svelte -------------------------------------------------------------------------------- /src/lib/components/social-media/social-media-button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/social-media/social-media-button.svelte -------------------------------------------------------------------------------- /src/lib/components/subsite-admin/panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/subsite-admin/panel.svelte -------------------------------------------------------------------------------- /src/lib/components/theme/MainContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/theme/MainContent.svelte -------------------------------------------------------------------------------- /src/lib/components/theme/SearchInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/components/theme/SearchInput.svelte -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/cron.ts -------------------------------------------------------------------------------- /src/lib/discord-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/discord-bot.ts -------------------------------------------------------------------------------- /src/lib/dns/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/dns/resolve.ts -------------------------------------------------------------------------------- /src/lib/dns/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/dns/server.ts -------------------------------------------------------------------------------- /src/lib/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/email.ts -------------------------------------------------------------------------------- /src/lib/icons/CompanyIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/CompanyIcon.svelte -------------------------------------------------------------------------------- /src/lib/icons/Favorite.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/Favorite.svelte -------------------------------------------------------------------------------- /src/lib/icons/LinkIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/LinkIcon.svelte -------------------------------------------------------------------------------- /src/lib/icons/MapPinIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/MapPinIcon.svelte -------------------------------------------------------------------------------- /src/lib/icons/Pin.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/Pin.svelte -------------------------------------------------------------------------------- /src/lib/icons/Reblog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/Reblog.svelte -------------------------------------------------------------------------------- /src/lib/icons/Reply.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/Reply.svelte -------------------------------------------------------------------------------- /src/lib/icons/TwitterIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/icons/TwitterIcon.svelte -------------------------------------------------------------------------------- /src/lib/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/image.ts -------------------------------------------------------------------------------- /src/lib/leaf/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/leaf/discord.ts -------------------------------------------------------------------------------- /src/lib/leaf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/leaf/index.ts -------------------------------------------------------------------------------- /src/lib/leaf/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/leaf/profile.ts -------------------------------------------------------------------------------- /src/lib/limited-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/limited-fetch.ts -------------------------------------------------------------------------------- /src/lib/link_verifier/LinkVerifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/link_verifier/LinkVerifier.ts -------------------------------------------------------------------------------- /src/lib/link_verifier/strategy/DefaultLinkVerificationStrategy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/link_verifier/strategy/DefaultLinkVerificationStrategy.test.ts -------------------------------------------------------------------------------- /src/lib/link_verifier/strategy/DefaultLinkVerificationStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/link_verifier/strategy/DefaultLinkVerificationStrategy.ts -------------------------------------------------------------------------------- /src/lib/link_verifier/strategy/LinkVerificationStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/link_verifier/strategy/LinkVerificationStrategy.ts -------------------------------------------------------------------------------- /src/lib/pages/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pages/server.ts -------------------------------------------------------------------------------- /src/lib/pages/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pages/types.ts -------------------------------------------------------------------------------- /src/lib/pow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pow/index.ts -------------------------------------------------------------------------------- /src/lib/pow/wasm/spow-server-wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pow/wasm/spow-server-wasm.d.ts -------------------------------------------------------------------------------- /src/lib/pow/wasm/spow-server-wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pow/wasm/spow-server-wasm.js -------------------------------------------------------------------------------- /src/lib/pow/wasm/spow-server-wasm_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pow/wasm/spow-server-wasm_bg.js -------------------------------------------------------------------------------- /src/lib/pow/wasm/spow-server-wasm_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pow/wasm/spow-server-wasm_bg.wasm -------------------------------------------------------------------------------- /src/lib/pow/wasm/spow-server-wasm_bg.wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/pow/wasm/spow-server-wasm_bg.wasm.d.ts -------------------------------------------------------------------------------- /src/lib/rauthy/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/rauthy/client.ts -------------------------------------------------------------------------------- /src/lib/rauthy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/rauthy/index.ts -------------------------------------------------------------------------------- /src/lib/rauthy/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/rauthy/server.ts -------------------------------------------------------------------------------- /src/lib/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/redis.ts -------------------------------------------------------------------------------- /src/lib/renderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/renderer/index.ts -------------------------------------------------------------------------------- /src/lib/server-globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/server-globals.ts -------------------------------------------------------------------------------- /src/lib/themes/minimal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/minimal.svelte -------------------------------------------------------------------------------- /src/lib/themes/reader/page.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/reader/page.jinja -------------------------------------------------------------------------------- /src/lib/themes/reader/profile.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/reader/profile.jinja -------------------------------------------------------------------------------- /src/lib/themes/retro.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/retro.svelte -------------------------------------------------------------------------------- /src/lib/themes/weird.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/weird.svelte -------------------------------------------------------------------------------- /src/lib/themes/weird/page.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/weird/page.html.j2 -------------------------------------------------------------------------------- /src/lib/themes/weird/profile.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/themes/weird/profile.html.j2 -------------------------------------------------------------------------------- /src/lib/types/embed-sdk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/types/embed-sdk.d.ts -------------------------------------------------------------------------------- /src/lib/types/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/types/git.ts -------------------------------------------------------------------------------- /src/lib/types/rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/types/rss.ts -------------------------------------------------------------------------------- /src/lib/types/zulip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/types/zulip.ts -------------------------------------------------------------------------------- /src/lib/usernames/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/usernames/client.ts -------------------------------------------------------------------------------- /src/lib/usernames/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/usernames/index.ts -------------------------------------------------------------------------------- /src/lib/utils/bsky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/bsky.ts -------------------------------------------------------------------------------- /src/lib/utils/databaseDump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/databaseDump.ts -------------------------------------------------------------------------------- /src/lib/utils/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/github.ts -------------------------------------------------------------------------------- /src/lib/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/http.ts -------------------------------------------------------------------------------- /src/lib/utils/import-opml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/import-opml.ts -------------------------------------------------------------------------------- /src/lib/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/markdown.ts -------------------------------------------------------------------------------- /src/lib/utils/social-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/social-links.ts -------------------------------------------------------------------------------- /src/lib/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/utils/time.ts -------------------------------------------------------------------------------- /src/lib/verifiedLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/verifiedLinks.ts -------------------------------------------------------------------------------- /src/lib/websocket-polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/lib/websocket-polyfill.ts -------------------------------------------------------------------------------- /src/namedrop.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/namedrop.d.ts -------------------------------------------------------------------------------- /src/routes/(app)/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/+error.svelte -------------------------------------------------------------------------------- /src/routes/(app)/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/+layout.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/+layout.svelte -------------------------------------------------------------------------------- /src/routes/(app)/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/+layout.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/+layout.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/[slug]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/[slug]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/[slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/[slug]/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/[slug]/loroSnapshot/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/[slug]/loroSnapshot/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/[slug]/revisions/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/[slug]/revisions/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/avatar/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/avatar/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/components/ChangeHandleModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/components/ChangeHandleModal.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/components/DeleteProfileModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/components/DeleteProfileModal.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/components/ManageAccountModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/components/ManageAccountModal.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/components/ManageSubscriptionModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/components/ManageSubscriptionModal.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/mastodon/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/mastodon/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/mastodon/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/mastodon/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/mastodon/mastodon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/mastodon/mastodon.d.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/new/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/new/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/new/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/new/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/post-card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/post-card.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/cancelBillingSubscription/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/cancelBillingSubscription/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/cancelDomainVerification/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/cancelDomainVerification/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/deleteProfile/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/deleteProfile/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/getBillingCheckoutLink/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/getBillingCheckoutLink/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/getBillingMethodUpdateLink/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/getBillingMethodUpdateLink/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/resumeBillingSubscription/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/resumeBillingSubscription/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/setAtprotoDid/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/setAtprotoDid/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/setHandle/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/setHandle/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/setTheme/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/setTheme/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/settings/takingnames/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/settings/takingnames/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/theme-editor/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/theme-editor/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/[username]/theme-editor/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/theme-editor/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/[username]/theme-editor/examplePage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/theme-editor/examplePage.md -------------------------------------------------------------------------------- /src/routes/(app)/[username]/theme-editor/minimalPageTheme.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/theme-editor/minimalPageTheme.html.j2 -------------------------------------------------------------------------------- /src/routes/(app)/[username]/theme-editor/minimalProfileTheme.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/theme-editor/minimalProfileTheme.html.j2 -------------------------------------------------------------------------------- /src/routes/(app)/[username]/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/[username]/utils.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/bsky/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/bsky/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/bsky/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/bsky/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/bsky/profile/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/bsky/profile/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/bsky/profile/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/bsky/profile/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/codeberg/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/codeberg/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/codeberg/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/codeberg/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/codeberg/profile/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/codeberg/profile/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/codeberg/profile/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/codeberg/profile/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/forgot-password/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/forgot-password/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/forgot-password/componenets/ForgetPasswordForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/forgot-password/componenets/ForgetPasswordForm.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/forgot-password/componenets/ForgotPasswordPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/forgot-password/componenets/ForgotPasswordPage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/github/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/github/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/github/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/github/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/github/profile/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/github/profile/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/github/profile/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/github/profile/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/github/profile/readme/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/github/profile/readme/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/github/profile/readme/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/github/profile/readme/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/link-mastodon/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/link-mastodon/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/link-mastodon/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/link-mastodon/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/linktree/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/linktree/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/linktree/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/linktree/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/linktree/profile/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/linktree/profile/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/linktree/profile/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/linktree/profile/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/pages/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/pages/+layout.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/pages/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/pages/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/pages/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/pages/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/pages/edit/[slug]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/pages/edit/[slug]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/pages/edit/[slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/pages/edit/[slug]/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/pages/new/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/pages/new/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/register/confirmation/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/register/confirmation/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/register/confirmation/components/ConfirmationPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/register/confirmation/components/ConfirmationPage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/register/confirmation/components/SuccessMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/register/confirmation/components/SuccessMessage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/zulip/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/zulip/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/zulip/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/zulip/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/account/zulip/profile/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/zulip/profile/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/account/zulip/profile/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/account/zulip/profile/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/auth/[...path]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/[...path]/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/account/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/account/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/oidc/authorize/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/oidc/authorize/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/oidc/logout/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/oidc/logout/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/providers/callback/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/providers/callback/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/providers/callback/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/providers/callback/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/[user]/reset/[token]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/[user]/reset/[token]/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/[user]/reset/[token]/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/[user]/reset/[token]/+page.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/[user]/reset/[token]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/[user]/reset/[token]/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/register/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/register/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/register/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/register/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/register/components/RegisterForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/register/components/RegisterForm.svelte -------------------------------------------------------------------------------- /src/routes/(app)/auth/v1/users/register/components/RegisterPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/v1/users/register/components/RegisterPage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/auth/weird/pow/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/auth/weird/pow/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/avatar/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/avatar/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/claim-handle/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/claim-handle/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/claim-handle/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/claim-handle/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/claim-handle/components/ClaimHandleForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/claim-handle/components/ClaimHandleForm.svelte -------------------------------------------------------------------------------- /src/routes/(app)/claim-handle/components/ClaimHandlePage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/claim-handle/components/ClaimHandlePage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/connect/discord/[linkId]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/connect/discord/[linkId]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/connect/discord/[linkId]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/connect/discord/[linkId]/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/feedback/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/feedback/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/feedback/components/FeedbackForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/components/FeedbackForm.svelte -------------------------------------------------------------------------------- /src/routes/(app)/feedback/components/FeedbackPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/components/FeedbackPage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/feedback/confirmation/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/confirmation/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/feedback/confirmation/componenets/FeedbackPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/confirmation/componenets/FeedbackPage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/feedback/pow/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/feedback/pow/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/login/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/login/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/login/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/login/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/login/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/login/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/login/components/LoginForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/login/components/LoginForm.svelte -------------------------------------------------------------------------------- /src/routes/(app)/login/components/LoginPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/login/components/LoginPage.svelte -------------------------------------------------------------------------------- /src/routes/(app)/login/components/ProviderLoginButtons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/login/components/ProviderLoginButtons.svelte -------------------------------------------------------------------------------- /src/routes/(app)/logout/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/logout/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/my-profile/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/my-profile/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/order-confirmation/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/order-confirmation/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/order-confirmation/check/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/order-confirmation/check/+server.ts -------------------------------------------------------------------------------- /src/routes/(app)/people/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/people/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(app)/people/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/people/+page.svelte -------------------------------------------------------------------------------- /src/routes/(app)/ppl/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(app)/ppl/+server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/[...path]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/[...path]/+server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/+layout.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/+layout.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/billing/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/billing/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/billing/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/billing/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/database-dump/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/database-dump/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/database-dump/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/database-dump/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/database-dump/download/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/database-dump/download/+server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/database-dump/view/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/database-dump/view/+server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/dns/resolve/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/dns/resolve/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/dns/resolve/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/dns/resolve/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/explorer/[[namespace]]/[[subspace]]/[[entityPath]]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/explorer/[[namespace]]/[[subspace]]/[[entityPath]]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/explorer/[[namespace]]/[[subspace]]/[[entityPath]]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/explorer/[[namespace]]/[[subspace]]/[[entityPath]]/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/migration-508f757/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/migration-508f757/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/migration-508f757/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/migration-508f757/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/send-emails/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/send-emails/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/send-emails/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/send-emails/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/usernames/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/usernames/+page.server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/admin/usernames/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/admin/usernames/+page.svelte -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/favicon/[url]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/favicon/[url]/+server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/polar-webhook/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/polar-webhook/+server.ts -------------------------------------------------------------------------------- /src/routes/(internal)/__internal__/traefik-config/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(internal)/__internal__/traefik-config/+server.ts -------------------------------------------------------------------------------- /src/routes/(subsites)/subsite/[username]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(subsites)/subsite/[username]/+server.ts -------------------------------------------------------------------------------- /src/routes/(subsites)/subsite/[username]/[slug]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(subsites)/subsite/[username]/[slug]/+server.ts -------------------------------------------------------------------------------- /src/routes/(subsites)/subsite/[username]/avatar/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/(subsites)/subsite/[username]/avatar/+server.ts -------------------------------------------------------------------------------- /src/routes/.well-known/microsoft-identity-association.json/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/.well-known/microsoft-identity-association.json/+server.ts -------------------------------------------------------------------------------- /src/routes/.well-known/openid-configuration/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/.well-known/openid-configuration/+server.ts -------------------------------------------------------------------------------- /src/routes/api/links/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/routes/api/links/+server.ts -------------------------------------------------------------------------------- /src/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/src/shims.d.ts -------------------------------------------------------------------------------- /static/UncutSans-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/UncutSans-Variable.woff2 -------------------------------------------------------------------------------- /static/default-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/default-avatar.svg -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/logo.webp -------------------------------------------------------------------------------- /static/nube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/nube.svg -------------------------------------------------------------------------------- /static/pico.colors.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/pico.colors.min.css -------------------------------------------------------------------------------- /static/pico.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/pico.min.css -------------------------------------------------------------------------------- /static/renderers/minijinja.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/renderers/minijinja.wasm -------------------------------------------------------------------------------- /static/star-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/star-2.svg -------------------------------------------------------------------------------- /static/star-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/star-3.svg -------------------------------------------------------------------------------- /static/stars.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/static/stars.avif -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/tsconfig.json -------------------------------------------------------------------------------- /userattributes-api-key-bootstrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/userattributes-api-key-bootstrap.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/vite.config.ts -------------------------------------------------------------------------------- /weird.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muni-town/weird/HEAD/weird.Dockerfile --------------------------------------------------------------------------------