Skip to content

Commit 9085900

Browse files
authored
Merge pull request #28 from openSVM/copilot/fix-27
Fix navbar routing: convert all uppercase URLs to lowercase throughout codebase
2 parents 0dad760 + c6c39b0 commit 9085900

File tree

13 files changed

+43
-43
lines changed

13 files changed

+43
-43
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -367,12 +367,12 @@ For comprehensive documentation including architecture, deployment guides, and c
367367

368368
📚 **[Complete Documentation](./docs/README.md)**
369369

370-
🚀 **[Developer Onboarding Guide](./docs/ONBOARDING.md)** - **Start here if you're new to the project!**
370+
🚀 **[Developer Onboarding Guide](./docs/onboarding.md)** - **Start here if you're new to the project!**
371371

372-
- [🏗️ Architecture Overview](./docs/ARCHITECTURE.md) - Server internals and design
373-
- [🚀 Deployment Guide](./docs/DEPLOYMENT.md) - Local, serverless, and endpoint deployment
374-
- [📖 API Reference](./docs/API_REFERENCE.md) - Complete method documentation
375-
- [⚙️ Configuration Guide](./docs/CONFIGURATION.md) - Configuration options and management
372+
- [🏗️ Architecture Overview](./docs/architecture.md) - Server internals and design
373+
- [🚀 Deployment Guide](./docs/deployment.md) - Local, serverless, and endpoint deployment
374+
- [📖 API Reference](./docs/api-reference.md) - Complete method documentation
375+
- [⚙️ Configuration Guide](./docs/configuration.md) - Configuration options and management
376376

377377
## Environment Variables
378378

SITE_README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ JEKYLL_ENV=production bundle exec jekyll build
7676
│ ├── home.html # Homepage layout
7777
│ └── docs.html # Documentation layout
7878
├── _docs/ # Documentation collection
79-
│ ├── ONBOARDING.md # Quick start guide
80-
│ ├── API_REFERENCE.md # Complete API docs
81-
│ ├── ARCHITECTURE.md # System architecture
82-
│ ├── DEPLOYMENT.md # Deployment guides
79+
│ ├── onboarding.md # Quick start guide
80+
│ ├── api-reference.md # Complete API docs
81+
│ ├── architecture.md # System architecture
82+
│ ├── deployment.md # Deployment guides
8383
│ └── ...
8484
├── assets/
8585
│ ├── css/main.css # E-ink themed styles
@@ -155,7 +155,7 @@ nav_links:
155155
- title: "Documentation"
156156
url: "/docs/"
157157
- title: "API Reference"
158-
url: "/docs/API_REFERENCE/"
158+
url: "/docs/api-reference/"
159159
```
160160
161161
### Search Configuration

_config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,17 @@ nav_links:
6464
- title: "Home"
6565
url: "/"
6666
- title: "Quick Start"
67-
url: "/docs/ONBOARDING/"
67+
url: "/docs/onboarding/"
6868
- title: "Architecture"
69-
url: "/docs/ARCHITECTURE/"
69+
url: "/docs/architecture/"
7070
- title: "API Reference"
71-
url: "/docs/API_REFERENCE/"
71+
url: "/docs/api-reference/"
7272
- title: "Deployment"
73-
url: "/docs/DEPLOYMENT/"
73+
url: "/docs/deployment/"
7474
- title: "Configuration"
75-
url: "/docs/CONFIGURATION/"
75+
url: "/docs/configuration/"
7676
- title: "Examples"
77-
url: "/docs/EXAMPLES/"
77+
url: "/docs/examples/"
7878

7979
# Site categories for organization
8080
categories:

_docs/ONBOARDING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The Solana MCP Server is a **Model Context Protocol (MCP) implementation** that
6060
AI Assistant (Claude) → MCP Protocol → Solana MCP Server → Solana RPC → Blockchain
6161
```
6262

63-
For detailed architecture information, see [docs/ARCHITECTURE.md](./ARCHITECTURE.md).
63+
For detailed architecture information, see [docs/ARCHITECTURE.md](./architecture.md).
6464

6565
## 📚 Prerequisites
6666

@@ -550,9 +550,9 @@ rustup update
550550

551551
### Documentation
552552

553-
- [Architecture Overview](./ARCHITECTURE.md) - System design and components
554-
- [API Reference](./API_REFERENCE.md) - Complete RPC method documentation
555-
- [Configuration Guide](./CONFIGURATION.md) - Configuration options and management
553+
- [Architecture Overview](./architecture.md) - System design and components
554+
- [API Reference](./api-reference.md) - Complete RPC method documentation
555+
- [Configuration Guide](./configuration.md) - Configuration options and management
556556
- [Deployment Guide](./DEPLOYMENT.md) - Production deployment instructions
557557
- [Examples](./EXAMPLES.md) - Practical usage examples
558558

@@ -581,7 +581,7 @@ Congratulations! You now have a solid foundation for contributing to the Solana
581581

582582
1. **Explore the codebase**: Start with `src/main.rs` and `src/lib.rs`
583583
2. **Try making small changes**: Add a log message or modify a test
584-
3. **Read the detailed docs**: Dive deeper into [ARCHITECTURE.md](./ARCHITECTURE.md)
584+
3. **Read the detailed docs**: Dive deeper into [ARCHITECTURE.md](./architecture.md)
585585
4. **Pick up an issue**: Look for "good first issue" labels
586586
5. **Join the community**: Participate in discussions and help others
587587

docs/API_REFERENCE.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /docs/API_REFERENCE
3-
redirect_to: /docs/API_REFERENCE/
2+
permalink: /docs/api-reference
3+
redirect_to: /docs/api-reference/
44
layout: redirect
55
---

docs/ARCHITECTURE.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /docs/ARCHITECTURE
3-
redirect_to: /docs/ARCHITECTURE/
2+
permalink: /docs/architecture
3+
redirect_to: /docs/architecture/
44
layout: redirect
55
---

docs/CONFIGURATION.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /docs/CONFIGURATION
3-
redirect_to: /docs/CONFIGURATION/
2+
permalink: /docs/configuration
3+
redirect_to: /docs/configuration/
44
layout: redirect
55
---

docs/DEPLOYMENT.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /docs/DEPLOYMENT
3-
redirect_to: /docs/DEPLOYMENT/
2+
permalink: /docs/deployment
3+
redirect_to: /docs/deployment/
44
layout: redirect
55
---

docs/EXAMPLES.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /docs/EXAMPLES
3-
redirect_to: /docs/EXAMPLES/
2+
permalink: /docs/examples
3+
redirect_to: /docs/examples/
44
layout: redirect
55
---

docs/ONBOARDING.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /docs/ONBOARDING
3-
redirect_to: /docs/ONBOARDING/
2+
permalink: /docs/onboarding
3+
redirect_to: /docs/onboarding/
44
layout: redirect
55
---

0 commit comments

Comments
 (0)