Skip to content

Commit 2aa65cf

Browse files
committed
[docs] Fix various dead links
1 parent a25b04f commit 2aa65cf

34 files changed

+50
-64
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Here is some inspiration on which areas we would love to have some contributions
1414
1. Updating a small piece of [documentation](https://docs.gethue.com)
1515
2. High level [Roadmap](/docs/ROADMAP.md)
1616
3. Check [Github issues](https://github.com/cloudera/hue/issues).
17-
4. Improving [SQL Components](https://docs.gethue.com/developer/components/), [SQL autocompletes](https://docs.gethue.com/developer/parsers/) or [SQL connectors](https://docs.gethue.com/developer/sdk/) are great projects
17+
4. Improving [SQL Components](https://docs.gethue.com/developer/components/), [SQL autocompletes](https://docs.gethue.com/developer/development/#sql-parsers) or [SQL connectors](https://docs.gethue.com/developer/sdk/) are great projects
1818

1919
# Submitting an improvement
2020

NPM-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GetHue is a collection of various Hue building blocks providing a smart SQL Clou
99

1010
The parsers are the flagship part of Hue and power extremely advanced autocompletes and other [SQL functionalities](https://docs.gethue.com/user/querying/#autocomplete). They are running on the client side and comes with just a few megabytes of JavaScript that are cached by the browser. This provides a very reactive experience to the end user and allows to [import them](https://docs.gethue.com/developer/parsers#using-hue-parsers-in-your-project) as classic JavaScript modules for your own development needs.
1111

12-
Please refer the [SQL Parser Documentation](https://docs.gethue.com/developer/parsers/), or this [demo app](https://github.com/cloudera/hue/tree/master/tools/examples/api/hue_dep) for more information.
12+
Please refer the [SQL Parser Documentation](https://docs.gethue.com/developer/development/#sql-parsers), or this [demo app](https://github.com/cloudera/hue/tree/master/tools/examples/api/hue_dep) for more information.
1313

1414
!["Parser Component"](https://cdn.gethue.com/uploads/2020/07/parser_component.png)
1515

docs/designs/apache_phoenix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ The most crucial is to stabilize the querying API, improve the Editor assistant
2727
* Phoenix connector
2828
* to ship
2929
* to "battle test" ([pyPhoenix](https://github.com/Pirionfr/pyPhoenix#known-issues), reuse [DB 2.0 API](https://phoenix.apache.org/python.html) [PhoenixDB](https://github.com/apache/phoenix/tree/master/python)?)
30-
* with Hue Editor API to polish ([dev reference](https://docs.gethue.com/developer/connectors/#sqlalchemy))
30+
* with Hue Editor API to polish ([dev reference](https://docs.gethue.com/developer/development/#connectors))
3131
* all SQL supported?
3232
* Security support?
3333
* Install samples?
3434

3535
### UI
3636

37-
* Calcite SQL Autocomplete subset ([grammar](https://phoenix.apache.org/language/index.html) + [builtins](https://phoenix.apache.org/language/functions.html)) ([dev reference](https://docs.gethue.com/developer/parsers/))
37+
* Calcite SQL Autocomplete subset ([grammar](https://phoenix.apache.org/language/index.html) + [builtins](https://phoenix.apache.org/language/functions.html)) ([dev reference](https://docs.gethue.com/developer/development/#sql-parsers))
3838
* Left SQL assist panel
3939
* Trim the semicolon `;`
4040
* Right panel UDF/Language references

docs/designs/spark_sql_livy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ One advantage of using Hue is its [File Browser](https://docs.gethue.com/user/br
3535
### Future improvements
3636

3737
* Database/table/column autocomplete is currently empty
38-
* SQL grammar autocomplete can [be extended](https://docs.gethue.com/developer/parsers/)
38+
* SQL grammar autocomplete can [be extended](https://docs.gethue.com/developer/development/#sql-parsers)
3939
* [SQL Scratchpad](https://docs.gethue.com/developer/api/#scratchpad) module to allow a mini SQL Editor popup is in progress

docs/docs-site/content/administrator/configuration/apps/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Then make sure the `hive` interpreter is present in the `[[interpreters]]` list.
233233

234234
### Custom
235235

236-
A series of native connectors (e.g. Livy, ksql...) interacting with the editor have been developed and are listed in the [developer section](/developer/connectors/#databases).
236+
A series of native connectors (e.g. Livy, ksql...) interacting with the editor have been developed and are listed in the [developer section](/developer/development/#connectors).
237237

238238
### JDBC
239239

docs/docs-site/content/administrator/configuration/connectors/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ draft: false
55
weight: 2
66
---
77

8-
Looking at improving or adding a new one? Go check the **[connector API section](/developer/connectors/)**!
8+
Looking at improving or adding a new one? Go check the **[connector API section](/developer/development/#connectors)**!
99

1010
## Databases
1111

@@ -28,7 +28,7 @@ Note that USER and PASSWORD can be prompted to the user by using variables like
2828

2929
Most of the interpreters require to install their SqlAlchemy dialect (e.g. `./build/env/bin/pip install pyhive`) either in the global Python environment or in the Hue virtual environment.
3030

31-
Read about [how to build your own parser](/developer/parsers/) if you are looking at better autocompletes for your the SQL dialects you use.
31+
Read about [how to build your own parser](/developer/development/#sql-parsers) if you are looking at better autocompletes for your the SQL dialects you use.
3232

3333
**Beta**
3434

@@ -318,7 +318,7 @@ With impersonation:
318318
0: jdbc:phoenix:> select * from "analytics_demo" where pk = "domain.0" limit 5;
319319
```
320320
321-
3. Phoenix follows Apache Calcite. Feel free to help improve the [SQL autocomplete](https://docs.gethue.com/developer/parsers/) support for it.
321+
3. Phoenix follows Apache Calcite. Feel free to help improve the [SQL autocomplete](https://docs.gethue.com/developer/development/#sql-parsers) support for it.
322322
323323
4. The UI (and the underlying SQLAlchemy API) cannot distinguish between 'ANY namespace' and 'empty/Default' namespace
324324

docs/docs-site/content/administrator/installation/dependencies/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ for more details, refer to this link: [https://docs.oracle.com/cd/E37670_01/E590
328328
329329
Optional.
330330
331-
Java is only for the [JDBC proxy](/developer/connectors/#jdbc) connector which is not built automatically anymore.
331+
Java is only for the [JDBC proxy](/developer/development/#connectors) connector which is not built automatically anymore.
332332
333333
**Install Oracle JDK**
334334

docs/docs-site/content/developer/components/scratchpad/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For quick testing, it is possible to skip the `npm install` and directly grab th
4949

5050
<script type="text/javascript" src="https://cdn.gethue.com/components/SqlScratchpadWebComponent.js"></script>
5151

52-
Then make sure `api-url` points to a running Hue or [Compose](https://github.com/gethue/compose) APIs on [http://locahost:8005](http://locahost:8005). The API is the middleware between your Data Warehouse and Web Browser client and will provide the dynamic content like the list of tables and columns and enrich the static autocomplete powered by the [parser](/developer/components/parsers/) selected by the `dialect`.
52+
Then make sure `api-url` points to a running Hue or [Compose](https://github.com/gethue/compose) APIs on [http://localhost:8005](http://localhost:8005). The API is the middleware between your Data Warehouse and Web Browser client and will provide the dynamic content like the list of tables and columns and enrich the static autocomplete powered by the [parser](/developer/components/parsers/) selected by the `dialect`.
5353

5454
If using Hue as the API, this [ini settings](/administrator/configuration/) is currently required:
5555

docs/docs-site/content/releases/release-notes-4.3.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ List of 900+ Commits
725725
* 88a7c05 HUE-3287 [core] Django 1.11 upgrade - To upgrade Django 1.7, following changes are needed:
726726
* 9abf255 HUE-3287 [core] Django 1.11 upgrade - Removing South-1.0.2 module from desktop/core/ext-py
727727
* 86742eb HUE-3287 [core] Django 1.11 upgrade - Upgrading to Django 1.7
728-
* 1131337 HUE-8139 [desktop] Get a mode to allow easy profiling of requests * add django-debug-toolbar-1.3.2 and django-debug-panel-0.8.3 (AJAX debug) * to use debug panel, user need to install https://chrome.google.com/webstore/detail/django-debug-panel/nbiajhhibgfgkjegbnflpdccejocmbbn * copy static files to desktop/core/src/desktop/static/debug_toolbar/ and desktop/core/src/desktop/templates/debug_toolbar/ * fix django-debug-toolbar v1.3 conflict with sqlparse-0.2.0 https://github.com/jazzband/django-debug-toolbar/issues/856 * add configurations to desktop/core/src/desktop/settings.py and desktop/core/src/desktop/urls.py * fix 401 for non-superuser at desktop/core/src/desktop/middleware.py * add enable_django_debug_tool and django_debug_tool_users to hue.ini for configuration control
728+
* 1131337 HUE-8139 [desktop] Get a mode to allow easy profiling of requests
729729
* c219e31 HUE-8306 [editor] Add a refresh action for missing entries in the right assist
730730
* 4a286bf HUE-8301 [editor] Identify column types for variables when a column alias is used
731731
* 1c75ae4 HUE-8300 [editor] Silence all AuthorizationExceptions in the editor

docs/docs-site/content/releases/release-notes-4.6.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The focus of this release was to keep building on top of 4.5 and modularize the
1818
* Python 3 support can be tested
1919
* There is a new version of [gethue.com](https://gethue.com) and the content of [docs.gethue.com](https://docs.gethue.com) was revamped
2020
* The new version of the Editor with multi execution contexts and more robustness is 66% done
21-
* Build your own or improve [SQL parsers with highlighter](/developer/parsers/)
21+
* Build your own or improve [SQL parsers with highlighter](/developer/development/#sql-parsers)
2222

2323

2424
Read the complete list of improvements on [Hue 4.6 is out!](https://gethue.com/hue-4-6-and-its-improvements-are-out/).
@@ -32,7 +32,7 @@ Download the [tarball](https://cdn.gethue.com/downloads/hue-4.6.0.tgz) or [sour
3232
* Apache Hive Tez improvements
3333
* Apache Hive LLAP improvements
3434
* Autocompletes
35-
* Tutorial on how to [improve/create a new SQL parser](/developer/parsers/) with [Highlighter](https://gethue.com/how-to-improve-or-add-your-own-sql-syntax-highlighter/)
35+
* Tutorial on how to [improve/create a new SQL parser](/developer/development/#sql-parsers) with [Highlighter](https://gethue.com/how-to-improve-or-add-your-own-sql-syntax-highlighter/)
3636
* Skeletons of dedicated parsers for Apache Druid, Phoenix, Elastic Serch, Presto, KSQL, Calcite are present
3737
* [Primary Keys, Partition Keys icons showing in the assists](https://gethue.com/2019-11-13-sql-column-assist-icons/)
3838
* Collaboration

0 commit comments

Comments
 (0)