Skip to content

Commit ef8ff42

Browse files
author
Roshan Jossy
committed
update refer links to other docs with utm_source
1 parent 9e2f70e commit ef8ff42

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docs/_templates/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
<div class="social-btns">
192192
<a class='social-btn' href="https://github.com/jina-ai/docarray/" aria-label="GitHub"
193193
target="_blank" rel="noreferrer"> <i class="fab fa-github"></i></a>
194-
<a class='social-btn' href="https://slack.jina.ai" aria-label="Slack" target="_blank"
194+
<a class='social-btn' href="https://slack.jina.ai?utm_source=docarray" aria-label="Slack" target="_blank"
195195
rel="noreferrer"> <i class="fab fa-slack"></i></a>
196196
<a class='social-btn' href="https://youtube.com/c/jina-ai" aria-label="YouTube"
197197
target="_blank" rel="noreferrer"> <i class="fab fa-youtube"></i></a>

docs/_templates/sidebar/navigation.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
<p class="caption" role="heading"><span class="caption-text">Ecosystem</span></p>
44
<ul>
55
<li class="toctree-l1">
6-
<a class="reference external" href="https://docs.jina.ai">
6+
<a class="reference external" href="https://docs.jina.ai?utm_source=docarray">
77
<img class="sidebar-ecosys-logo only-light-line" src="{{ pathto('_static/search-light.svg', 1) }}">
88
<img class="sidebar-ecosys-logo only-dark-line" src="{{ pathto('_static/search-dark.svg', 1) }}">
99
Jina</a></li>
10-
<li class="toctree-l1"><a class="reference external" href="https://hub.jina.ai">
10+
<li class="toctree-l1"><a class="reference external" href="https://hub.jina.ai?utm_source=docarray">
1111
<img class="sidebar-ecosys-logo only-light-line" src="{{ pathto('_static/hub-light.svg', 1) }}">
1212
<img class="sidebar-ecosys-logo only-dark-line" src="{{ pathto('_static/hub-dark.svg', 1) }}">
1313
Jina Hub</a></li>
14-
<li class="toctree-l1"><a class="reference external" href="https://finetuner.jina.ai">
14+
<li class="toctree-l1"><a class="reference external" href="https://finetuner.jina.ai?utm_source=docarray">
1515
<img class="sidebar-ecosys-logo only-light-line" src="{{ pathto('_static/finetuner-light.svg', 1) }}">
1616
<img class="sidebar-ecosys-logo only-dark-line" src="{{ pathto('_static/finetuner-dark.svg', 1) }}">
1717
Finetuner</a></li>
1818
<li class="toctree-l1"><a class="reference internal" href="#">
1919
<img class="sidebar-ecosys-logo only-light-line" src="{{ pathto('_static/docarray-light.svg', 1) }}">
2020
<img class="sidebar-ecosys-logo only-dark-line" src="{{ pathto('_static/docarray-dark.svg', 1) }}">
2121
DocArray</a></li>
22-
<li class="toctree-l1"><a class="reference external" href="https://clip-as-service.jina.ai">
22+
<li class="toctree-l1"><a class="reference external" href="https://clip-as-service.jina.ai?utm_source=docarray">
2323
<img class="sidebar-ecosys-logo only-light-line" src="{{ pathto('_static/cas-light.svg', 1) }}">
2424
<img class="sidebar-ecosys-logo only-dark-line" src="{{ pathto('_static/cas-dark.svg', 1) }}">
2525
CLIP-as-service</a></li>

docs/fundamentals/documentarray/post-external.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ r = da.post('grpc://192.168.2.3:12345')
1818
r.summary()
1919
```
2020

21-
One can also use any [Executor from Jina Hub](https://hub.jina.ai), e.g.
21+
One can also use any [Executor from Jina Hub](https://hub.jina.ai?utm_source=docarray), e.g.
2222
```python
2323
from docarray import DocumentArray, Document
2424

@@ -67,7 +67,7 @@ scheme://netloc[:port][/path]
6767
| `scheme` | 1. One of `grpc`, `websocket`, `http` | `protocol` of the connected Flow |
6868
| | 2. One of `jinahub`, `jinahub+docker`, `jinhub+sandbox` | Jina hub executor in source code, Docker container, sandbox |
6969
| `netloc` | 1. Host address | `host` of the connected Flow |
70-
| | 2. Hub Executor name | Any Executor [listed here](https://hub.jina.ai) |
70+
| | 2. Hub Executor name | Any Executor [listed here](https://hub.jina.ai?utm_source=docarray) |
7171
| `:port` | e.g. `:55566` | `port` of the connected Flow. This is required when using `scheme` type (1) ; it is ignored when using hub-related `scheme` type (2) |
7272
| `/path` | e.g. `/foo` | The endpoint of the Executor you want to call. |
7373

@@ -80,4 +80,4 @@ Some examples:
8080

8181
## Read more
8282

83-
For more explanation of Flow, Hub Executor and Sandbox, please refer to [Jina docs](https://docs.jina.ai).
83+
For more explanation of Flow, Hub Executor and Sandbox, please refer to [Jina docs](https://docs.jina.ai?utm_source=docarray).

docs/fundamentals/jina-support/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ c.post('/', DocumentArray.from_files('**/*.png'), show_progressbar=True)
148148
```
149149
````
150150

151-
You can also use `websockets`, `http`, GraphQL API to query it. More details can be found in [Jina Documentation](https://docs.jina.ai/).
151+
You can also use `websockets`, `http`, GraphQL API to query it. More details can be found in [Jina Documentation](https://docs.jina.ai/?utm_source=docarray).
152152

153153
### Scale it out
154154

@@ -163,11 +163,11 @@ with f:
163163
f.block()
164164
```
165165

166-
This will start three parallels can improve the overall throughput. [More details can be found here.](https://docs.jina.ai/fundamentals/flow/create-flow/#replicate-executors)
166+
This will start three parallels can improve the overall throughput. [More details can be found here.](https://docs.jina.ai/fundamentals/flow/create-flow/#replicate-executors?utm_source=docarray)
167167

168168
### Share and reuse it
169169

170-
One can share and reuse it via [Hub](https://hub.jina.ai). Save your Executor in a folder say `foo` and then:
170+
One can share and reuse it via [Hub](https://hub.jina.ai?utm_source=docarray). Save your Executor in a folder say `foo` and then:
171171

172172
```bash
173173
jina hub push foo

0 commit comments

Comments
 (0)