Replace the static 61-logo HTML block in the overview page with a
DatabaseLogoWall component that reads from databases.json — the same
data source used by the homepage and README generator. Logos stay in
sync automatically without manual updates.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Fix 61 broken database logo images by updating paths from
docs/static/img/ to /img/ (Docusaurus serves static/ at root)
- Update all old superset.apache.org/docs/ links to new bifurcated
paths (user-docs, admin-docs, developer-docs)
- Rename "Developer Portal" to "Developer Docs" in user-facing pages
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Switch dropdown items from type:'doc' to explicit 'to:' links with
activeBaseRegex so only the current section's link highlights, not all
- Add AntD Tabs-style underline on active top-level navbar sections
using CSS :has() selector and inset box-shadow
- Community Resources link now highlights when on /community page
- Desktop-only layout (respects mobile responsive hide)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Rename user-docs/intro to user-docs/ for consistent section landing
pages (matching admin-docs/ and developer-docs/)
- Add redirect from /user-docs/intro for existing bookmarks
- Revamp README with Documentation header and three section links,
condense quick-links row
- Remove emojis from homepage cards and developer-docs overview
- Widen subtitle container to prevent line wrap on homepage
- Fix Contributor Guide link to developer-docs/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds 4 cards (User Guide, Administrator Guide, Developer Guide, Community)
with colored accent borders, hover lift effects, and responsive grid layout
to help visitors quickly find the right documentation section.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Move API reference from user-docs to developer-docs section:
- Change OpenAPI plugin docsPluginId from 'classic' to 'developer_docs'
- Move api.mdx and update outputDir to developer_docs/api
- Update all three API generation scripts to use new paths
- Update sidebars, navbar items, and redirect targets
- Add redirect from /user-docs/api to /developer-docs/api
- Update .gitignore for new generated API path
- Add activeBaseRegex to navbar dropdowns so the active section
highlights when browsing sub-pages (Users, Admins, Developers,
Community)
- Fix dropdown active link styling to use primary color instead
of being invisible (transparent)
- Remove accidental empty package-lock.json from repo root
(added in SIP-32, 2019)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The databases index page generates at /user-docs/databases/ (with
trailing slash) since it's a directory index page. Update all redirect
targets and links to use the trailing-slash form so Docusaurus's
redirect validator accepts them.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The sed "s|docs/||g" flag removed ALL occurrences of "docs/" from
file paths, mangling "developer_docs/sidebars.js" into
"developer_sidebars.js". Use line-by-line processing with "^docs/"
to only strip the leading prefix.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
These auto-generated component docs had default imports from
'@superset/components' which only exposes named exports. Fixed
Slider, Tree, ProgressBar, TableCollection, and Tabs.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Replace all /developer_portal/ links with /developer-docs/ in index.md
- Fix non-existent extension-project-structure references
- Fix sidebar links using old /docs/ paths (/user-docs/ instead)
- Add missing extension-points/editors and pkg-resources-migration to sidebar
- Restore Kubernetes debugging section lost during howtos migration
- Restore pkg-resources-migration.md deleted during bifurcation
- Fix versioned docs quickstart.mdx missing version prefix
- Update stale developer_portal references in README, DOCS_CLAUDE, intro.md
- Fix broken creating-viz-plugins link in intro.md
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Rename the user documentation URL path from /docs to /user-docs to match
the naming convention of /admin-docs and /developer-docs.
Changes:
- Add routeBasePath: 'user-docs' to preset-classic docs config
- Add createRedirects for /docs/* → /user-docs/* pattern-based redirects
- Update all redirect destinations from /docs/* to /user-docs/*
- Update navbar links to use /user-docs/
- Update sitemap priorities to use /user-docs/
- Update internal links in user docs, admin docs, and developer docs
- Update footer security link to /admin-docs/security/
All old /docs/* URLs will automatically redirect to /user-docs/* via
the createRedirects function. Versioned docs at /docs/6.0.0/* remain
unchanged.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Major restructuring of documentation to separate concerns:
**New Structure:**
- `/docs/` - User-facing docs (intro, quickstart, databases, using-superset, faq)
- `/admin-docs/` - Administrator docs (installation, configuration, security)
- `/developer-docs/` - Developer docs (contributing, extensions, guidelines, testing)
**Changes:**
- Move installation, configuration, and security docs to admin_docs/
- Move contributing, extensions, guidelines, and testing to developer_docs/
- Rename developer_portal to developer_docs (with underscore to hyphen in URL)
- Add sidebarAdminDocs.js for admin documentation navigation
- Update versions-config.json with new doc sections
- Update docusaurus.config.ts with new plugins and redirects
- Update internal links in versioned docs (6.0.0) to use new paths
- Keep user-facing content (databases, using-superset, faq) in main docs
This separation makes it clearer which documentation is relevant for:
- End users exploring and visualizing data
- Administrators deploying and configuring Superset
- Developers contributing to or extending Superset
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix broken links in quickstart.mdx pointing to old /docs/installation
and /docs/configuration paths, now redirecting to /admin-docs/
- Fix broken links in faq.mdx for installation, configuration, and
contributing paths
- Fix link in generate-database-docs.mjs for auto-generated database
index page
- Add new user-facing SQL templating guide in using-superset/ that
covers practical usage of Jinja templates in SQL Lab
- Add cross-link tip in admin SQL templating config guide pointing
users to the new user guide
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add redirects for old /docs/ paths that were moved to /admin-docs/ or
/developer-docs/:
Configuration:
- /docs/configuration/country-map-tools
- /docs/configuration/importing-exporting-datasources
- /docs/configuration/map-tiles
- /docs/configuration/networking-settings
- /docs/configuration/timezones
Security:
- /docs/security/cves
- /docs/security/securing_superset
Contributing:
- /docs/contributing/resources
- /docs/contributing/misc
- /docs/contributing/pkg-resources-migration
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>