Skip to content

Commit 8bc043e

Browse files
authored
[FSTORE-1346][CLEAN APPEND] Revert emergency fix and make a clean upgrade of the doc (#370)
* Reverting messy fixes * Minimal changes * Minor cosmetic improvement * Add support for latest redirect
1 parent 575036d commit 8bc043e

10 files changed

+51
-91
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
This is the source of the landing page for https://docs.hopsworks.ai
44

5-
65
## Build instructions
76

87
### Step 1: Setup python environment
@@ -64,4 +63,4 @@ linkchecker http://127.0.0.1:8000/
6463

6564
# If ok just kill the server
6665
kill -9 $SERVER_PID
67-
```
66+
```

docs/stylesheets/custom-bis.css docs/css/custom.css

+4-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
.md-footer__inner:not([hidden]) {
1010
display: none;
1111
}
12-
1312
/* Lex did stuff here */
1413
.svg_topnav {
1514
width: 12px;
@@ -24,15 +23,15 @@
2423
box-shadow: 0 0 0 0;
2524
}
2625

26+
.md-tabs__item {
27+
min-width: 2.5rem;
28+
}
29+
2730
.md-tabs__item:hover {
2831
background-color: var(--md-tertiary-fg-color);
2932
transition: background-color 450ms;
3033
}
3134

32-
.md-tabs__item {
33-
min-width: 2.5rem;
34-
}
35-
3635
.md-sidebar__scrollwrap {
3736
background-color: var(--md-quaternary-fg-color);
3837
padding: 15px 5px 5px 5px;

docs/stylesheets/dropdown-bis.css docs/css/dropdown.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ overflow: inherit;
1818
/* The container <div> - needed to position the dropdown content */
1919
.dropdown {
2020
position: absolute;
21-
display: flex;
21+
display: inline-block;
2222
}
2323

2424
/* Dropdown Content (Hidden by Default) */
@@ -31,7 +31,6 @@ overflow: inherit;
3131
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
3232
z-index: 1000;
3333
border-radius: 2px;
34-
top:32px;
3534
left:-15px;
3635
}
3736

File renamed without changes.

docs/javascripts/inject-api-links.js

-68
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
document.getElementsByClassName("md-tabs__link")[7].style.display = "none";
22
document.getElementsByClassName("md-tabs__link")[9].style.display = "none";
3+

docs/js/inject-api-links.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
window.addEventListener("DOMContentLoaded", function () {
2+
var windowPathNameSplits = window.location.pathname.split("/");
3+
var majorVersionRegex = new RegExp("(\\d+[.]\\d+)")
4+
var latestRegex = new RegExp("latest")
5+
if (majorVersionRegex.test(windowPathNameSplits[1])) { // On landing page docs.hopsworks.api/3.0 - URL contains major version
6+
// Version API dropdown
7+
document.getElementById("hopsworks_api_link").href = "https://docs.hopsworks.ai/hopsworks-api/" + windowPathNameSplits[1] + "/generated/api/login/";
8+
document.getElementById("hsfs_api_link").href = "https://docs.hopsworks.ai/feature-store-api/" + windowPathNameSplits[1] + "/generated/api/connection_api/";
9+
document.getElementById("hsfs_javadoc_link").href = "https://docs.hopsworks.ai/feature-store-api/" + windowPathNameSplits[1] + "/javadoc";
10+
document.getElementById("hsml_api_link").href = "https://docs.hopsworks.ai/machine-learning-api/" + windowPathNameSplits[1] + "/generated/connection_api/";
11+
} else { // on docs.hopsworks.api/feature-store-api/3.0 / docs.hopsworks.api/hopsworks-api/3.0 / docs.hopsworks.api/machine-learning-api/3.0
12+
13+
if (latestRegex.test(windowPathNameSplits[2]) || latestRegex.test(windowPathNameSplits[1])) {
14+
var majorVersion = "latest";
15+
} else {
16+
var apiVersion = windowPathNameSplits[2];
17+
var majorVersion = apiVersion.match(majorVersionRegex)[0];
18+
}
19+
// Version main navigation
20+
document.getElementsByClassName("md-tabs__link")[0].href = "https://docs.hopsworks.ai/" + majorVersion;
21+
document.getElementsByClassName("md-tabs__link")[1].href = "https://colab.research.google.com/github/logicalclocks/hopsworks-tutorials/blob/master/quickstart.ipynb";
22+
document.getElementsByClassName("md-tabs__link")[2].href = "https://docs.hopsworks.ai/" + majorVersion + "/tutorials/";
23+
document.getElementsByClassName("md-tabs__link")[3].href = "https://docs.hopsworks.ai/" + majorVersion + "/concepts/hopsworks/";
24+
document.getElementsByClassName("md-tabs__link")[4].href = "https://docs.hopsworks.ai/" + majorVersion + "/user_guides/";
25+
document.getElementsByClassName("md-tabs__link")[5].href = "https://docs.hopsworks.ai/" + majorVersion + "/setup_installation/aws/getting_started/";
26+
document.getElementsByClassName("md-tabs__link")[6].href = "https://docs.hopsworks.ai/" + majorVersion + "/admin/";
27+
// Version API dropdown
28+
document.getElementById("hopsworks_api_link").href = "https://docs.hopsworks.ai/hopsworks-api/" + majorVersion + "/generated/api/login/";
29+
document.getElementById("hsfs_api_link").href = "https://docs.hopsworks.ai/feature-store-api/" + majorVersion + "/generated/api/connection_api/";
30+
document.getElementById("hsfs_javadoc_link").href = "https://docs.hopsworks.ai/feature-store-api/" + majorVersion + "/javadoc";
31+
document.getElementById("hsml_api_link").href = "https://docs.hopsworks.ai/machine-learning-api/" + majorVersion + "/generated/connection_api/";
32+
}
33+
});

docs/javascripts/quickstart-fullscreen.js docs/js/quickstart-fullscreen.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
*/
44

55
//https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent for recommended approach to test if device is mobile
6-
if (
7-
window.location.pathname.endsWith("hopsworks-tutorials/quickstart/") &&
8-
!/Mobi|Android/i.test(navigator.userAgent)
9-
) {
10-
document.getElementsByClassName("md-sidebar--primary")[0].remove();
11-
}
6+
if(window.location.pathname.endsWith('hopsworks-tutorials/quickstart/') && !/Mobi|Android/i.test(navigator.userAgent)) {
7+
document.getElementsByClassName("md-sidebar--primary")[0].remove()
8+
}
File renamed without changes.

mkdocs.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -276,12 +276,12 @@ nav:
276276
- Audit:
277277
- Access Audit Logs: admin/audit/audit-logs.md
278278
- Export Audit Logs: admin/audit/export-audit-logs.md
279-
- API<div class="dropdown"><button class="dropbtn">API</button><div id="myDropdown" class="dropdown-content"> <a id="hopsworks_api_link" href="https://docs.hopsworks.ai/hopsworks-api/dev">Hopsworks API</a> <a id="hsfs_api_link" href="https://docs.hopsworks.ai/feature-store-api/dev">Feature Store API</a> <a id="hsfs_javadoc_link" href="https://docs.hopsworks.ai/feature-store-api/dev/javadoc">Feature Store JavaDoc</a> <a id="hsml_api_link" href="https://docs.hopsworks.ai/machine-learning-api/dev">MLOps API</a> </div></div>: https://docs.hopsworks.ai
279+
- <div class="dropdown"><button class="dropbtn"> API </button> <div id="myDropdown" class="dropdown-content"> <a id="hopsworks_api_link" href="https://docs.hopsworks.ai/hopsworks-api/dev">Hopsworks API</a> <a id="hsfs_api_link" href="https://docs.hopsworks.ai/feature-store-api/dev">Feature Store API</a> <a id="hsfs_javadoc_link" href="https://docs.hopsworks.ai/feature-store-api/dev/javadoc">Feature Store JavaDoc</a> <a id="hsml_api_link" href="https://docs.hopsworks.ai/machine-learning-api/dev">MLOps API</a> </div></div>: https://docs.hopsworks.ai
280280
- Community ↗: https://community.hopsworks.ai/
281281

282282
theme:
283283
name: material
284-
custom_dir: overrides
284+
custom_dir: docs/overrides
285285
favicon: assets/images/favicon.ico
286286
logo: assets/images/hops-logo.png
287287
icon:
@@ -320,14 +320,14 @@ extra:
320320
property: G-64FEEXPSDN
321321

322322
extra_css:
323-
- stylesheets/custom-bis.css
324-
- stylesheets/marctech.css
325-
- stylesheets/dropdown-bis.css
323+
- css/custom.css
324+
- css/marctech.css
325+
- css/dropdown.css
326326

327327
extra_javascript:
328-
- javascripts/inject-api-links.js
329-
- javascripts/hide-dropdown.js
330-
- javascripts/quickstart-fullscreen.js
328+
- js/inject-api-links.js
329+
- js/dropdown.js
330+
- js/quickstart-fullscreen.js
331331

332332
plugins:
333333
- search

0 commit comments

Comments
 (0)