diff --git a/README.md b/README.md index 67b0170..28d5dfb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Paliad — all-in-one patent practice platform for HLC (formerly Hogan Lovells). - **Knowledge tools**: Prozesskostenrechner (DE / UPC / EPA), Fristenrechner, Gebührentabellen, Patentglossar, Gerichtsverzeichnis, Checklisten, Link Hub, Downloads. Domain: `paliad.de` (legacy: `patholo.de`, `patholo.msbls.de`). -Repo: `mAi/paliad` on `mgit.msbls.de`. +Repo: `m/paliad` on `mgit.msbls.de`. ## Stack diff --git a/cmd/server/main.go b/cmd/server/main.go index 7c5acc7..70908c2 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -15,11 +15,11 @@ import ( // user's chosen tz (t-paliad-064 root cause). Adds ~450KB to the binary. _ "time/tzdata" - "mgit.msbls.de/m/patholo/internal/auth" - "mgit.msbls.de/m/patholo/internal/branding" - "mgit.msbls.de/m/patholo/internal/db" - "mgit.msbls.de/m/patholo/internal/handlers" - "mgit.msbls.de/m/patholo/internal/services" + "mgit.msbls.de/m/paliad/internal/auth" + "mgit.msbls.de/m/paliad/internal/branding" + "mgit.msbls.de/m/paliad/internal/db" + "mgit.msbls.de/m/paliad/internal/handlers" + "mgit.msbls.de/m/paliad/internal/services" ) func main() { diff --git a/docs/design-kanzlai-integration.md b/docs/design-kanzlai-integration.md index e7fc81c..8226c0d 100644 --- a/docs/design-kanzlai-integration.md +++ b/docs/design-kanzlai-integration.md @@ -429,7 +429,7 @@ No react-query, no Tailwind v4. Use existing `global.css` patterns. ### Build and deploy -- Existing flow stays: push to `main` on `mAi/paliad` → Gitea webhook → Dokploy auto-deploy. +- Existing flow stays: push to `main` on `m/paliad` → Gitea webhook → Dokploy auto-deploy. - Dockerfile changes: add migration step to entrypoint (run `migrate up` against `DATABASE_URL` before starting the HTTP server). - New env vars in Dokploy: - `DATABASE_URL` (youpc Supabase Postgres conn string) diff --git a/frontend/src/client/app.ts b/frontend/src/client/app.ts index 8503995..b62029c 100644 --- a/frontend/src/client/app.ts +++ b/frontend/src/client/app.ts @@ -4,7 +4,7 @@ // 2. Register the service worker so the site qualifies for PWA install. // 3. Surface the install prompt (Chromium banner / iOS share-sheet hint). // 4. Init the theme listener so the OS-level prefers-color-scheme change -// flips the page when the user's pref is "auto" (mAi/paliad#2). +// flips the page when the user's pref is "auto" (m/paliad#2). // // Per-page bundles still register their own behaviour; this script is // orthogonal and only touches DOM nodes it owns. diff --git a/frontend/src/client/i18n.ts b/frontend/src/client/i18n.ts index 01fcf23..fd37b89 100644 --- a/frontend/src/client/i18n.ts +++ b/frontend/src/client/i18n.ts @@ -43,7 +43,7 @@ const translations: Record> = { "nav.neuigkeiten": "Neuigkeiten", "nav.soon.tooltip": "Bald verf\u00fcgbar", - // Theme toggle (mAi/paliad#2). The button cycles auto \u2192 light \u2192 dark + // Theme toggle (m/paliad#2). The button cycles auto \u2192 light \u2192 dark // \u2192 auto. The "toggle." keys show the *current* pref next to // the icon; the "cycle." keys describe WHAT the next click will // do (read by aria-label / tooltip). @@ -1497,7 +1497,7 @@ const translations: Record> = { "nav.neuigkeiten": "What's New", "nav.soon.tooltip": "Coming soon", - // Theme toggle (mAi/paliad#2) + // Theme toggle (m/paliad#2) "theme.toggle.auto": "Auto", "theme.toggle.light": "Light", "theme.toggle.dark": "Dark", diff --git a/frontend/src/client/sidebar.ts b/frontend/src/client/sidebar.ts index 379bc47..eb27d9c 100644 --- a/frontend/src/client/sidebar.ts +++ b/frontend/src/client/sidebar.ts @@ -315,7 +315,7 @@ function initChangelogBadge(): void { } // initThemeToggle wires the sun/moon button at the bottom of the sidebar -// (mAi/paliad#2). The pre-paint inline script in PWAHead.tsx already set +// (m/paliad#2). The pre-paint inline script in PWAHead.tsx already set // the data-theme attribute on ; this function only owns the post- // hydration UI: cycling on click, swapping the icon/label to match the // current preference, and re-rendering when the OS-level scheme flips diff --git a/frontend/src/client/theme.ts b/frontend/src/client/theme.ts index 1a44e85..d175b8d 100644 --- a/frontend/src/client/theme.ts +++ b/frontend/src/client/theme.ts @@ -2,7 +2,7 @@ // // The pre-paint inline