-
Notifications
You must be signed in to change notification settings - Fork 116
Harden documentation link validation to prevent false CI passes #452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
1012c4a
feat: enhance link validator to catch all internal links
bitflicker64 d2e5674
Harden link validation to fail CI on unresolved internal links
bitflicker64 cbba938
Improve link validation script with canonical path handling and line …
bitflicker64 60e2878
Fix relative links in REST API docs
bitflicker64 ac43d50
Improve link validator robustness and diagnostics
bitflicker64 868520e
Fix SUMMARY links for Hugo routing
bitflicker64 0f823fc
Remove invalid hugegraph-style.xml reference
bitflicker64 7701983
Fix validate-link.sh
bitflicker64 25a599f
Fix validate-link.sh
bitflicker64 0d9ecfc
This PR addresses all validator issues raised in the review thread.
bitflicker64 a9764df
Fix broken documentation links
bitflicker64 0523dc8
Addressed github pr review comments
bitflicker64 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,81 +1,78 @@ | ||
| # HugeGraph Docs | ||
|
|
||
| * [Download](download.md) | ||
| * [Download](download/download) | ||
|
|
||
| ## Quickstart | ||
| * [Install HugeGraph-Server](quickstart/hugegraph-server.md) | ||
| * [Load data with HugeGraph-Loader](quickstart/hugegraph-loader.md) | ||
| * [Visual with HugeGraph-Hubble](quickstart/hugegraph-hubble.md) | ||
| * [Develop with HugeGraph-Client](quickstart/hugegraph-client.md) | ||
| * [Manage with HugeGraph-Tools](quickstart/hugegraph-tools.md) | ||
| * [Analysis with HugeGraph-Computer](quickstart/hugegraph-computer.md) | ||
| * [Display with HugeGraph-Studio](quickstart/hugegraph-studio.md) | ||
| * [Install HugeGraph-Server](quickstart/hugegraph/hugegraph-server) | ||
| * [Load data with HugeGraph-Loader](quickstart/toolchain/hugegraph-loader) | ||
| * [Visual with HugeGraph-Hubble](quickstart/toolchain/hugegraph-hubble) | ||
| * [Develop with HugeGraph-Client](quickstart/client/hugegraph-client) | ||
| * [Manage with HugeGraph-Tools](quickstart/toolchain/hugegraph-tools) | ||
| * [Analysis with HugeGraph-Computer](quickstart/computing/hugegraph-computer) | ||
| * [Display with HugeGraph-Studio](quickstart/hugegraph-studio) | ||
|
|
||
| ## Config | ||
| * [Config Guide](config/config-guide.md) | ||
| * [Config Options](config/config-option.md) | ||
| * [Config Authentication](config/config-authentication.md) | ||
| * [Config HTTPS](config/config-https.md) | ||
| * [Config Computer](config/config-computer.md) | ||
| * [Config Guide](config/config-guide) | ||
| * [Config Options](config/config-option) | ||
| * [Config Authentication](config/config-authentication) | ||
| * [Config HTTPS](config/config-https) | ||
| * [Config Computer](quickstart/computing/hugegraph-computer) | ||
|
|
||
| ## API | ||
| * [RESTful API](clients/hugegraph-api.md) | ||
| * [Schema](clients/restful-api/schema.md) | ||
| * [PropertyKey](clients/restful-api/propertykey.md) | ||
| * [VertexLabel](clients/restful-api/vertexlabel.md) | ||
| * [EdgeLabel](clients/restful-api/edgelabel.md) | ||
| * [IndexLabel](clients/restful-api/indexlabel.md) | ||
| * [Rebuild](clients/restful-api/rebuild.md) | ||
| * [Vertex](clients/restful-api/vertex.md) | ||
| * [Edge](clients/restful-api/edge.md) | ||
| * [Traverser](clients/restful-api/traverser.md) | ||
| * [Rank](clients/restful-api/rank.md) | ||
| * [Variable](clients/restful-api/variable.md) | ||
| * [Graphs](clients/restful-api/graphs.md) | ||
| * [Task](clients/restful-api/task.md) | ||
| * [Gremlin](clients/restful-api/gremlin.md) | ||
| * [Cypher](clients/restful-api/cypher.md) | ||
| * [Authentication](clients/restful-api/auth.md) | ||
| * [Other](clients/restful-api/other.md) | ||
| * [Java Client](clients/hugegraph-client.md) | ||
| * [Gremlin Console](clients/gremlin-console.md) | ||
| * [RESTful API](clients/restful-api) | ||
| * [Schema](clients/restful-api/schema) | ||
| * [PropertyKey](clients/restful-api/propertykey) | ||
| * [VertexLabel](clients/restful-api/vertexlabel) | ||
| * [EdgeLabel](clients/restful-api/edgelabel) | ||
| * [IndexLabel](clients/restful-api/indexlabel) | ||
| * [Rebuild](clients/restful-api/rebuild) | ||
| * [Vertex](clients/restful-api/vertex) | ||
| * [Edge](clients/restful-api/edge) | ||
| * [Traverser](clients/restful-api/traverser) | ||
| * [Rank](clients/restful-api/rank) | ||
| * [Variable](clients/restful-api/variable) | ||
| * [Graphs](clients/restful-api/graphs) | ||
| * [Task](clients/restful-api/task) | ||
| * [Gremlin](clients/restful-api/gremlin) | ||
| * [Cypher](clients/restful-api/cypher) | ||
| * [Authentication](clients/restful-api/auth) | ||
| * [Other](clients/restful-api/other) | ||
| * [Java Client](clients/hugegraph-client) | ||
| * [Gremlin Console](clients/gremlin-console) | ||
|
|
||
| ## Guides | ||
| * [Architecture Overview](guides/architectural.md) | ||
| * [Design Concepts](guides/desgin-concept.md) | ||
| * [Custom Plugins](guides/custom-plugin.md) | ||
| * [Backup Restore](guides/backup-restore.md) | ||
| * [FAQ](guides/faq.md) | ||
| * [Architecture Overview](guides/architectural) | ||
| * [Design Concepts](guides/desgin-concept) | ||
| * [Custom Plugins](guides/custom-plugin) | ||
| * [Backup Restore](guides/backup-restore) | ||
| * [FAQ](guides/faq) | ||
|
|
||
| ## Query Language | ||
| * [Gremlin Query Language](language/hugegraph-gremlin.md) | ||
| * [HugeGraph Examples](language/hugegraph-example.md) | ||
| * [Gremlin Query Language](language/hugegraph-gremlin) | ||
| * [HugeGraph Examples](language/hugegraph-example) | ||
|
|
||
| ## Performance | ||
| * [HugeGraph Benchmark Performance](performance/hugegraph-benchmark-0.5.6.md) | ||
| * [HugeGraph API Performance-Outdated](content/cn/docs/performance/api-performance/_index.md) | ||
| * [v0.5.6 Stand-alone(RocksDB)](content/cn/docs/performance/api-performance/hugegraph-api-0.5.6-rocksdb.md) | ||
| * [v0.5.6 Cluster(Cassandra)](content/cn/docs/performance/api-performance/hugegraph-api-0.5.6-cassandra.md) | ||
| * [v0.4.4](content/cn/docs/performance/api-performance/hugegraph-api-0.4.4.md) | ||
| * [v0.2](content/cn/docs/performance/api-performance/hugegraph-api-0.2.md) | ||
| * [HugeGraph-Loader Performance](performance/hugegraph-loader-performance.md) | ||
| * [HugeGraph Benchmark Performance](performance/hugegraph-benchmark-0.5.6) | ||
| * [HugeGraph API Performance-Outdated](performance/api-performance) | ||
| * [v0.5.6 Stand-alone(RocksDB)](performance/api-performance/hugegraph-api-0.5.6-rocksdb) | ||
| * [v0.5.6 Cluster(Cassandra)](performance/api-performance/hugegraph-api-0.5.6-cassandra) | ||
| * [v0.4.4](performance/api-performance/hugegraph-api-0.4.4) | ||
| * [v0.2](performance/api-performance/hugegraph-api-0.2) | ||
| * [HugeGraph-Loader Performance](performance/hugegraph-loader-performance) | ||
|
|
||
| ## ChangeLogs | ||
| * [Release-1.3.0](changelog/hugegraph-1.3.0-release-notes.md) | ||
| * [Release-1.2.0](changelog/hugegraph-1.2.0-release-notes.md) | ||
| * [Release-1.0.0](changelog/hugegraph-1.0.0-release-notes.md) | ||
|
|
||
| --- | ||
|
|
||
| * [Release-0.12.0](changelog/hugegraph-0.12.0-release-notes.md) | ||
| * [Release-0.11.2](changelog/hugegraph-0.11.2-release-notes.md) | ||
| * [Release-0.10.4](changelog/hugegraph-0.10.4-release-notes.md) | ||
| * [Release-0.9.2](changelog/hugegraph-0.9.2-release-notes.md) | ||
| * [Release-0.8.0](changelog/hugegraph-0.8.0-release-notes.md) | ||
| * [Release-0.7.4](changelog/hugegraph-0.7.4-release-notes.md) | ||
| * [Release-0.6.1](changelog/hugegraph-0.6.1-release-notes.md) | ||
| * [Release-0.5.6](changelog/hugegraph-0.5.6-release-notes.md) | ||
| * [Release-0.4.4](changelog/hugegraph-0.4.4-release-notes.md) | ||
| * [Release-0.3.3](changelog/hugegraph-0.3.3-release-notes.md) | ||
| * [Release-0.2.4](changelog/hugegraph-0.2.4-release-notes.md) | ||
| * [Release-0.2](changelog/hugegraph-0.2-release-notes.md) | ||
| * [Release-1.3.0](changelog/hugegraph-1.3.0-release-notes) | ||
| * [Release-1.2.0](changelog/hugegraph-1.2.0-release-notes) | ||
| * [Release-1.0.0](changelog/hugegraph-1.0.0-release-notes) | ||
| * [Release-0.12.0](changelog/hugegraph-0.12.0-release-notes) | ||
| * [Release-0.11.2](changelog/hugegraph-0.11.2-release-notes) | ||
| * [Release-0.10.4](changelog/hugegraph-0.10.4-release-notes) | ||
| * [Release-0.9.2](changelog/hugegraph-0.9.2-release-notes) | ||
| * [Release-0.8.0](changelog/hugegraph-0.8.0-release-notes) | ||
| * [Release-0.7.4](changelog/hugegraph-0.7.4-release-notes) | ||
| * [Release-0.6.1](changelog/hugegraph-0.6.1-release-notes) | ||
| * [Release-0.5.6](changelog/hugegraph-0.5.6-release-notes) | ||
| * [Release-0.4.4](changelog/hugegraph-0.4.4-release-notes) | ||
| * [Release-0.3.3](changelog/hugegraph-0.3.3-release-notes) | ||
| * [Release-0.2.4](changelog/hugegraph-0.2.4-release-notes) | ||
| * [Release-0.2](changelog/hugegraph-0.2-release-notes) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,69 +1,67 @@ | ||
| # HugeGraph Docs | ||
|
|
||
| * [Download](download.md) | ||
| * [Download](download/download) | ||
|
|
||
| ## Quickstart | ||
| * [Install HugeGraph-Server](quickstart/hugegraph-server.md) | ||
| * [Load data with HugeGraph-Loader](quickstart/hugegraph-loader.md) | ||
| * [Visual with HugeGraph-Hubble](quickstart/hugegraph-hubble.md) | ||
| * [Develop with HugeGraph-Client](quickstart/hugegraph-client.md) | ||
| * [Manage with HugeGraph-Tools](quickstart/hugegraph-tools.md) | ||
| * [Analysis with HugeGraph-Computer](quickstart/hugegraph-computer.md) | ||
| * [Display with HugeGraph-Studio](quickstart/hugegraph-studio.md) | ||
| * [Install HugeGraph-Server](quickstart/hugegraph/hugegraph-server) | ||
| * [Load data with HugeGraph-Loader](quickstart/toolchain/hugegraph-loader) | ||
| * [Visual with HugeGraph-Hubble](quickstart/toolchain/hugegraph-hubble) | ||
| * [Develop with HugeGraph-Client](quickstart/client/hugegraph-client) | ||
| * [Manage with HugeGraph-Tools](quickstart/toolchain/hugegraph-tools) | ||
| * [Analysis with HugeGraph-Computer](quickstart/computing/hugegraph-computer) | ||
| * [Display with HugeGraph-Studio](quickstart/hugegraph-studio) | ||
|
|
||
| ## Config | ||
| * [Config Guide](config/config-guide.md) | ||
| * [Config Options](config/config-option.md) | ||
| * [Config Authentication](config/config-authentication.md) | ||
| * [Config HTTPS](config/config-https.md) | ||
| * [Config Computer](config/config-computer.md) | ||
|
|
||
| * [Config Guide](config/config-guide) | ||
| * [Config Options](config/config-option) | ||
| * [Config Authentication](config/config-authentication) | ||
| * [Config HTTPS](config/config-https) | ||
| * [Config Computer](quickstart/computing/hugegraph-computer) | ||
|
|
||
| ## API | ||
| * [RESTful API](clients/hugegraph-api.md) | ||
| * [Schema](clients/restful-api/schema.md) | ||
| * [PropertyKey](clients/restful-api/propertykey.md) | ||
| * [VertexLabel](clients/restful-api/vertexlabel.md) | ||
| * [EdgeLabel](clients/restful-api/edgelabel.md) | ||
| * [IndexLabel](clients/restful-api/indexlabel.md) | ||
| * [Rebuild](clients/restful-api/rebuild.md) | ||
| * [Vertex](clients/restful-api/vertex.md) | ||
| * [Edge](clients/restful-api/edge.md) | ||
| * [Traverser](clients/restful-api/traverser.md) | ||
| * [Rank](clients/restful-api/rank.md) | ||
| * [Variable](clients/restful-api/variable.md) | ||
| * [Graphs](clients/restful-api/graphs.md) | ||
| * [Task](clients/restful-api/task.md) | ||
| * [Gremlin](clients/restful-api/gremlin.md) | ||
| * [Cypher](clients/restful-api/cypher.md) | ||
| * [Authentication](clients/restful-api/auth.md) | ||
| * [Other](clients/restful-api/other.md) | ||
| * [Java Client](clients/hugegraph-client.md) | ||
| * [Gremlin Console](clients/gremlin-console.md) | ||
| * [RESTful API](clients/restful-api) | ||
| * [Schema](clients/restful-api/schema) | ||
| * [PropertyKey](clients/restful-api/propertykey) | ||
| * [VertexLabel](clients/restful-api/vertexlabel) | ||
| * [EdgeLabel](clients/restful-api/edgelabel) | ||
| * [IndexLabel](clients/restful-api/indexlabel) | ||
| * [Rebuild](clients/restful-api/rebuild) | ||
| * [Vertex](clients/restful-api/vertex) | ||
| * [Edge](clients/restful-api/edge) | ||
| * [Traverser](clients/restful-api/traverser) | ||
| * [Rank](clients/restful-api/rank) | ||
| * [Variable](clients/restful-api/variable) | ||
| * [Graphs](clients/restful-api/graphs) | ||
| * [Task](clients/restful-api/task) | ||
| * [Gremlin](clients/restful-api/gremlin) | ||
| * [Cypher](clients/restful-api/cypher) | ||
| * [Authentication](clients/restful-api/auth) | ||
| * [Other](clients/restful-api/other) | ||
| * [Java Client](clients/hugegraph-client) | ||
| * [Gremlin Console](clients/gremlin-console) | ||
|
|
||
| ## Guides | ||
| * [Architecture Overview](guides/architectural.md) | ||
| * [Design Concepts](guides/desgin-concept.md) | ||
| * [Custom Plugins](guides/custom-plugin.md) | ||
| * [Backup Restore](guides/backup-restore.md) | ||
| * [FAQ](guides/faq.md) | ||
| * [Architecture Overview](guides/architectural) | ||
| * [Design Concepts](guides/desgin-concept) | ||
| * [Custom Plugins](guides/custom-plugin) | ||
| * [Backup Restore](guides/backup-restore) | ||
| * [FAQ](guides/faq) | ||
|
|
||
| ## Query Language | ||
| * [Gremlin Query Language](language/hugegraph-gremlin.md) | ||
| * [HugeGraph Examples](language/hugegraph-example.md) | ||
| * [Gremlin Query Language](language/hugegraph-gremlin) | ||
| * [HugeGraph Examples](language/hugegraph-example) | ||
|
|
||
| ## Performance | ||
| * [HugeGraph Benchmark Performance](performance/hugegraph-benchmark-0.5.6.md) | ||
| * [HugeGraph API Performance—Outdated](content/cn/docs/performance/api-performance/_index.md) | ||
| * [v0.5.6 Stand-alone(RocksDB)](content/cn/docs/performance/api-performance/hugegraph-api-0.5.6-rocksdb.md) | ||
| * [v0.5.6 Cluster(Cassandra)](content/cn/docs/performance/api-performance/hugegraph-api-0.5.6-cassandra.md) | ||
| * [v0.4.4](content/cn/docs/performance/api-performance/hugegraph-api-0.4.4.md) | ||
| * [v0.2](content/cn/docs/performance/api-performance/hugegraph-api-0.2.md) | ||
| * [HugeGraph-Loader Performance](performance/hugegraph-loader-performance.md) | ||
| * [HugeGraph Benchmark Performance](performance/hugegraph-benchmark-0.5.6) | ||
| * [HugeGraph API Performance—Outdated](performance/api-performance) | ||
| * [v0.5.6 Stand-alone(RocksDB)](performance/api-performance/hugegraph-api-0.5.6-rocksdb) | ||
| * [v0.5.6 Cluster(Cassandra)](performance/api-performance/hugegraph-api-0.5.6-cassandra) | ||
| * [v0.4.4](performance/api-performance/hugegraph-api-0.4.4) | ||
| * [v0.2](performance/api-performance/hugegraph-api-0.2) | ||
| * [HugeGraph-Loader Performance](performance/hugegraph-loader-performance) | ||
|
|
||
| ## ChangeLogs | ||
| * [Release-1.3.0](changelog/hugegraph-1.3.0-release-notes.md) | ||
| * [Release-1.2.0](changelog/hugegraph-1.2.0-release-notes.md) | ||
| * [Release-1.0.0](changelog/hugegraph-1.0.0-release-notes.md) | ||
| * [Release-0.12.0](changelog/hugegraph-0.12.0-release-notes.md) | ||
|
|
||
| * [Release-1.3.0](changelog/hugegraph-1.3.0-release-notes) | ||
| * [Release-1.2.0](changelog/hugegraph-1.2.0-release-notes) | ||
| * [Release-1.0.0](changelog/hugegraph-1.0.0-release-notes) | ||
| * [Release-0.12.0](changelog/hugegraph-0.12.0-release-notes) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.