Skip to content

Commit 31d1aff

Browse files
authored
Merge pull request #32 from jeffglaum/fix-doc-links
fix documentation links
2 parents 68a8ccf + a38a4e6 commit 31d1aff

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

src/components/projects_component.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pub fn ProjectsComponent() -> impl IntoView {
123123
</span>
124124
<div class="flex flex-col gap-[8px]">
125125
<a
126-
href="https://opendevicepartnership.github.io/documentation/intro/concepts/patina.html"
126+
href="https://opendevicepartnership.github.io/documentation/tracks/patina/track_overview.html"
127127
class="link"
128128
style="text-decoration: none;"
129129
target="_blank"
@@ -179,7 +179,7 @@ pub fn ProjectsComponent() -> impl IntoView {
179179
</span>
180180
<div class="flex flex-col gap-[8px]">
181181
<a
182-
href="https://opendevicepartnership.github.io/documentation/intro/concepts/Embedded_controller.html"
182+
href="https://opendevicepartnership.github.io/documentation/tracks/embedded_controller/track_overview.html"
183183
class="link"
184184
style="text-decoration: none;"
185185
target="_blank"
@@ -233,7 +233,7 @@ pub fn ProjectsComponent() -> impl IntoView {
233233
</span>
234234
<div class="flex flex-col gap-[8px]">
235235
<a
236-
href="https://opendevicepartnership.github.io/documentation/intro/concepts/EC_Services.html"
236+
href="https://opendevicepartnership.github.io/documentation/guide/intro/concepts/EC_Services.html"
237237
class="link"
238238
style="text-decoration: none;"
239239
target="_blank"

src/pages/boot_firmware.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ use leptos::prelude::*;
1111
pub fn BootFirmware() -> impl IntoView {
1212
let links = vec![
1313
DocLink {
14-
href: "https://opendevicepartnership.github.io/documentation/why/why.html",
14+
href: "https://opendevicepartnership.github.io/documentation/guide/why/why.html",
1515
title: "Why ODP?",
1616
external: true,
1717
},
1818
DocLink {
19-
href: "https://opendevicepartnership.github.io/documentation/intro/welcome.html",
19+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/getting_started.html",
2020
title: "Getting Started with ODP",
2121
external: true,
2222
},
2323
DocLink {
24-
href: "https://opendevicepartnership.github.io/documentation/intro/tutorial/tutorial.html",
24+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/welcome.html",
2525
title: "Tutorials",
2626
external: true,
2727
},
2828
DocLink {
29-
href: "https://opendevicepartnership.github.io/documentation/specs/specifications.html",
29+
href: "https://opendevicepartnership.github.io/documentation/guide/specs/specifications.html",
3030
title: "Specifications",
3131
external: true,
3232
},

src/pages/embedded_controller.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ use leptos::prelude::*;
1111
pub fn EmbeddedController() -> impl IntoView {
1212
let links = vec![
1313
DocLink {
14-
href: "https://opendevicepartnership.github.io/documentation/why/why.html",
14+
href: "https://opendevicepartnership.github.io/documentation/guide/why/why.html",
1515
title: "Why ODP?",
1616
external: true,
1717
},
1818
DocLink {
19-
href: "https://opendevicepartnership.github.io/documentation/intro/welcome.html",
19+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/getting_started.html",
2020
title: "Getting Started with ODP",
2121
external: true,
2222
},
2323
DocLink {
24-
href: "https://opendevicepartnership.github.io/documentation/intro/tutorial/tutorial.html",
24+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/welcome.html",
2525
title: "Tutorials",
2626
external: true,
2727
},
2828
DocLink {
29-
href: "https://opendevicepartnership.github.io/documentation/specs/specifications.html",
29+
href: "https://opendevicepartnership.github.io/documentation/guide/specs/specifications.html",
3030
title: "Specifications",
3131
external: true,
3232
},

src/pages/home.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ pub fn Home() -> impl IntoView {
1111
// Documentation links for the DocumentationTraining section
1212
let links = vec![
1313
DocLink {
14-
href: "https://opendevicepartnership.github.io/documentation/why/why.html",
14+
href: "https://opendevicepartnership.github.io/documentation/guide/why/why.html",
1515
title: "Why ODP?",
1616
external: true,
1717
},
1818
DocLink {
19-
href: "https://opendevicepartnership.github.io/documentation/intro/welcome.html",
19+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/getting_started.html",
2020
title: "Getting Started with ODP",
2121
external: true,
2222
},
2323
DocLink {
24-
href: "https://opendevicepartnership.github.io/documentation/intro/tutorial/tutorial.html",
24+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/welcome.html",
2525
title: "Tutorials",
2626
external: true,
2727
},
2828
DocLink {
29-
href: "https://opendevicepartnership.github.io/documentation/specs/specifications.html",
29+
href: "https://opendevicepartnership.github.io/documentation/guide/specs/specifications.html",
3030
title: "Specifications",
3131
external: true,
3232
},

src/pages/projects.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ use leptos::prelude::*;
1010
pub fn Projects() -> impl IntoView {
1111
let links = vec![
1212
DocLink {
13-
href: "https://opendevicepartnership.github.io/documentation/why/why.html",
13+
href: "https://opendevicepartnership.github.io/documentation/guide/why/why.html",
1414
title: "Why ODP?",
1515
external: true,
1616
},
1717
DocLink {
18-
href: "https://opendevicepartnership.github.io/documentation/intro/welcome.html",
18+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/getting_started.html",
1919
title: "Getting Started with ODP",
2020
external: true,
2121
},
2222
DocLink {
23-
href: "https://opendevicepartnership.github.io/documentation/intro/tutorial/tutorial.html",
23+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/welcome.html",
2424
title: "Tutorials",
2525
external: true,
2626
},
2727
DocLink {
28-
href: "https://opendevicepartnership.github.io/documentation/specs/specifications.html",
28+
href: "https://opendevicepartnership.github.io/documentation/guide/specs/specifications.html",
2929
title: "Specifications",
3030
external: true,
3131
},

src/pages/unified_ec_services.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ use leptos::prelude::*;
1111
pub fn WindowsEcServices() -> impl IntoView {
1212
let links = vec![
1313
DocLink {
14-
href: "https://opendevicepartnership.github.io/documentation/why/why.html",
14+
href: "https://opendevicepartnership.github.io/documentation/guide/why/why.html",
1515
title: "Why ODP?",
1616
external: true,
1717
},
1818
DocLink {
19-
href: "https://opendevicepartnership.github.io/documentation/intro/welcome.html",
19+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/getting_started.html",
2020
title: "Getting Started with ODP",
2121
external: true,
2222
},
2323
DocLink {
24-
href: "https://opendevicepartnership.github.io/documentation/intro/tutorial/tutorial.html",
24+
href: "https://opendevicepartnership.github.io/documentation/guide/intro/welcome.html",
2525
title: "Tutorials",
2626
external: true,
2727
},
2828
DocLink {
29-
href: "https://opendevicepartnership.github.io/documentation/specs/specifications.html",
29+
href: "https://opendevicepartnership.github.io/documentation/guide/specs/specifications.html",
3030
title: "Specifications",
3131
external: true,
3232
},

0 commit comments

Comments
 (0)