Skip to content

Commit fa7ae26

Browse files
Copilothotlong
andcommitted
Fix all 40 broken documentation links
Fixed broken links across 14 documentation files: - reference/protocol/overview.md (10 links) - concepts/component-registry.md (3 links) - concepts/expressions.md (4 links) - concepts/schema-rendering.md (4 links) - concepts/plugins.md (1 link) - guide/studio.md (4 links) - README.md (1 link) - plugins/plugin-object.mdx (2 links) - plugins/plugin-markdown.mdx (2 links) - reference/protocol/crud.md (1 link) - reference/protocol/page.md (2 links) - migration/from-objectstack.md (1 link) - architecture/base-components.md (1 link) - versioning.md (2 links) All links now use correct paths with /docs/ prefix: - /protocol/* → /docs/reference/protocol/* - /api/* → /docs/reference/api/* - /spec/* → /docs/architecture/* - External file links → GitHub URLs Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 2a950fc commit fa7ae26

14 files changed

Lines changed: 40 additions & 40 deletions

File tree

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Use relative links for internal documentation:
213213

214214
```markdown
215215
See [Schema Rendering](./schema-rendering.md) for details.
216-
See [Protocol Overview](/protocol/overview) for specs.
216+
See [Protocol Overview](/docs/reference/protocol/overview) for specs.
217217
```
218218

219219
### Front Matter

docs/architecture/base-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This specification defines the metadata structure for ObjectQL's built-in platfo
1414
- Enable marketplace distribution
1515

1616
**Scope:** This document covers the complete metadata specification for all platform base components, including data display, data entry, layout, navigation, and visualization components.
17-
For the low-level UI component library (Button, Input, Dialog, etc.), please refer to the [Component Library Reference](component-library.md).
17+
For the low-level UI component library (Button, Input, Dialog, etc.), please refer to the [Component Library Reference](/docs/architecture/component-library).
1818

1919
## 2. Base Component Categories
2020

docs/concepts/component-registry.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,10 @@ export { RatingComponent }
459459

460460
- [Expression System](./expressions.md) - Learn about dynamic expressions
461461
- [Schema Rendering](./schema-rendering.md) - Understand the rendering engine
462-
- [Creating Custom Components](/spec/component-package.md) - Deep dive into component creation
462+
- [Creating Custom Components](/docs/architecture/component-package) - Deep dive into component creation
463463

464464
## Related Documentation
465465

466-
- [Core API](/api/core) - Component registry API
467-
- [React API](/api/react) - React integration
468-
- [Component Specification](/spec/component.md) - Component metadata spec
466+
- [Core API](/docs/reference/api/core) - Component registry API
467+
- [React API](/docs/reference/api/react) - React integration
468+
- [Component Specification](/docs/architecture/component) - Component metadata spec

docs/concepts/expressions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -636,10 +636,10 @@ const data: UserData = { /* ... */ }
636636

637637
- [Schema Rendering](./schema-rendering.md) - Learn the rendering engine
638638
- [Component Registry](./component-registry.md) - Understand components
639-
- [Protocol Overview](/protocol/overview) - Explore schema specifications
639+
- [Protocol Overview](/docs/reference/protocol/overview) - Explore schema specifications
640640

641641
## Related Documentation
642642

643-
- [Core API](/api/core) - Expression evaluator API
644-
- [Form Protocol](/protocol/form) - Form-specific expressions
645-
- [View Protocol](/protocol/view) - Data view expressions
643+
- [Core API](/docs/reference/api/core) - Expression evaluator API
644+
- [Form Protocol](/docs/reference/protocol/form) - Form-specific expressions
645+
- [View Protocol](/docs/reference/protocol/view) - Data view expressions

docs/concepts/plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ export function registerComponents() {
373373
- [Component Registry](./component-registry.md) - Understanding the registry
374374
- [Schema Rendering](./schema-rendering.md) - How schemas become UI
375375
- [Lazy-Loaded Plugins Architecture](./lazy-loading.md) - Deep dive
376-
- [Creating Components](/spec/component-package.md) - Component development
376+
- [Creating Components](/docs/architecture/component-package) - Component development
377377
378378
## Next Steps
379379

docs/concepts/schema-rendering.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -411,11 +411,11 @@ Always type your schemas for better IDE support and fewer runtime errors.
411411

412412
- [Component Registry](./component-registry.md) - Learn about component registration
413413
- [Expression System](./expressions.md) - Master expressions
414-
- [Protocol Overview](/protocol/overview) - Explore all available schemas
414+
- [Protocol Overview](/docs/reference/protocol/overview) - Explore all available schemas
415415

416416
## Related Documentation
417417

418-
- [Schema Specification](/spec/schema-rendering) - Technical specification
419-
- [Architecture](/spec/architecture) - System architecture
420-
- [Core API](/api/core) - Core package API reference
421-
- [React API](/api/react) - React package API reference
418+
- [Rendering Specification](/docs/architecture/rendering-specification) - Technical specification
419+
- [Architecture](/docs/architecture) - System architecture
420+
- [Core API](/docs/reference/api/core) - Core package API reference
421+
- [React API](/docs/reference/api/react) - React package API reference

docs/guide/studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,10 @@ It is **not** designed for:
189189

190190
## What's Next?
191191

192-
- [Read the full guide](/docs/guide/introduction)
193-
- [Explore the API reference](/docs/api/react)
194-
- [Check out component specifications](/docs/protocol/overview)
195-
- [View the project roadmap](/ROADMAP)
192+
- [Read the full guide](/docs/guide)
193+
- [Explore the API reference](/docs/reference/api/react)
194+
- [Check out component specifications](/docs/reference/protocol/overview)
195+
- [View the project roadmap](https://github.com/objectstack-ai/objectui)
196196

197197
## Feedback
198198

docs/migration/from-objectstack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The integration follows this hierarchy:
148148

149149
If you encounter any issues:
150150

151-
1. Check the [adapter README](packages/core/src/adapters/README.md)
151+
1. Check the [adapter README](https://github.com/objectstack-ai/objectui/tree/main/packages/core/src/adapters)
152152
2. Review the [ObjectStack spec](https://github.com/objectstack-ai/spec)
153153
3. Open an issue on GitHub
154154

docs/plugins/plugin-markdown.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ npm install our-package
189189
2. Configure your settings
190190
3. Start building!
191191
192-
For more information, see the [API Reference](/api).
192+
For more information, see the [API Reference](/docs/reference/api).
193193
`,
194194
className: 'prose prose-lg max-w-none'
195195
}
@@ -230,7 +230,7 @@ app.run()
230230
231231
## Contributing
232232
233-
Contributions are welcome! Please read our [contributing guidelines](CONTRIBUTING.md).
233+
Contributions are welcome! Please read our [contributing guidelines](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md).
234234
235235
## License
236236

docs/plugins/plugin-object.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ const dataSource = new ObjectQLDataSource({
539539

540540
## Related Documentation
541541

542-
- [ObjectQL Integration](/docs/ecosystem/objectql.md)
543-
- [Data Sources](/docs/concepts/data-source.md)
542+
- [ObjectQL Integration](/docs/ecosystem/objectql)
543+
- [Data Sources](/docs/concepts/data-source)
544544
- [Plugin System Overview](/docs/concepts/plugins)
545545
- [Package README](https://github.com/objectstack-ai/objectui/tree/main/packages/plugin-object)

0 commit comments

Comments
 (0)