bitflicker64 opened a new pull request, #449: URL: https://github.com/apache/incubator-hugegraph-doc/pull/449
## Purpose of the PR - Related to apache/incubator-hugegraph#2944 This PR updates the documentation to reflect the new URL normalization feature introduced in apache/incubator-hugegraph#2944. Since the server now automatically adds the `http://` scheme when missing from URL configurations, this PR removes the `http://` prefix from configuration file examples to demonstrate the simplified configuration format. ## Main Changes Updated URL configuration examples in both **Chinese (CN)** and **English (EN)** documentation: ### Configuration Files Updated: - ✅ `content/cn/docs/config/config-guide.md` - ✅ `content/en/docs/config/config-guide.md` - ✅ `content/cn/docs/config/config-option.md` - ✅ `content/en/docs/config/config-option.md` - ✅ `content/cn/docs/quickstart/hugegraph/hugegraph-server.md` - ✅ `content/en/docs/quickstart/hugegraph/hugegraph-server.md` ### Examples Changed: **Before:** ```properties restserver.url=http://127.0.0.1:8080 gremlinserver.url=http://127.0.0.1:8182 ``` **After:** ```properties restserver.url=127.0.0.1:8080 gremlinserver.url=127.0.0.1:8182 ``` ### What was NOT changed (intentionally): - ❌ RESTful API endpoint URLs (e.g., `GET http://127.0.0.1:8080/graphs`) - ❌ curl command examples (require full URL) - ❌ Java client code (requires full URL with scheme) - ❌ CLI tool `--url` parameters (require full URL) - ❌ HTTPS configuration examples in `config-https.md` (demonstrates HTTPS feature) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
