Update sidebar app name and images size and alignment (#2973)
This commit is contained in:
committed by
GitHub
parent
4375cd0887
commit
fc443b2fbb
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
Eclipse hawkBit™ is a domain independent back-end framework for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP based networking infrastructure.
|
Eclipse hawkBit™ is a domain independent back-end framework for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP based networking infrastructure.
|
||||||
|
|
||||||
<p align="center">
|
<p>
|
||||||
<img src="images/hawkBit_overview.png" alt="Eclipse hawkBit Overview" width="1200">
|
<img src="images/hawkBit_overview.png" alt="Eclipse hawkBit Overview" width="800">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -51,7 +51,6 @@
|
|||||||
- [Legal](http://www.eclipse.org/legal)
|
- [Legal](http://www.eclipse.org/legal)
|
||||||
- [License](https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt)
|
- [License](https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt)
|
||||||
- **© 2025 The Eclipse hawkBit Project**
|
- **© 2025 The Eclipse hawkBit Project**
|
||||||
|
<p>
|
||||||
<p align="center">
|
|
||||||
<img src="images/eclipse_foundation_logo.png" alt="eclipse foundation logo" width="180">
|
<img src="images/eclipse_foundation_logo.png" alt="eclipse foundation logo" width="180">
|
||||||
</p>
|
</p>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
### Overview of hawkBit modules and used 3rd party technology:
|
### Overview of hawkBit modules and used 3rd party technology:
|
||||||
<p align="center">
|
<p>
|
||||||
<img src="images/architecture.png" alt="Clustering Diagram" width="1100"/>
|
<img src="images/architecture.png" alt="Clustering Diagram" width="1100"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ of simplification we assume that there are not intermediate certificates and the
|
|||||||
- client has the client.crt, client.key and server_ca.crt
|
- client has the client.crt, client.key and server_ca.crt
|
||||||
- server (in this case reverse proxy) has the server.crt, server.key and client_ca.crt
|
- server (in this case reverse proxy) has the server.crt, server.key and client_ca.crt
|
||||||
|
|
||||||
<p align="center">
|
<p>
|
||||||
<img src="images/exampleReverseProxyArchitecture.png" alt="eclipse foundation logo" width="1400">
|
<img src="images/exampleReverseProxyArchitecture.png" alt="eclipse foundation logo" width="1400">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ concepts and how to setup your own cluster. You can find additional information
|
|||||||
---
|
---
|
||||||
|
|
||||||
### Big picture
|
### Big picture
|
||||||
<p align="center">
|
<p>
|
||||||
<img src="images/clustering_overview.png" alt="Clustering Diagram" width="1100"/>
|
<img src="images/clustering_overview.png" alt="Clustering Diagram" width="1100"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ There are different [binder implementations](https://docs.spring.io/spring-cloud
|
|||||||
Every node gets its own queue to receive cluster events, the default payload is JSON.
|
Every node gets its own queue to receive cluster events, the default payload is JSON.
|
||||||
|
|
||||||
|
|
||||||
<p align="center">
|
<p>
|
||||||
<img src="images/eventing-within-cluster.png" alt="Clustering Diagram" width="1100"/>
|
<img src="images/eventing-within-cluster.png" alt="Clustering Diagram" width="1100"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 206 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
@@ -30,8 +30,7 @@ SPDX-License-Identifier: EPL-2.0
|
|||||||
errorText: 'Error',
|
errorText: 'Error',
|
||||||
successText: 'Copied',
|
successText: 'Copied',
|
||||||
},
|
},
|
||||||
name: '<span>hawkBit</span>',
|
name: ' ',
|
||||||
// repo: 'eclipse-hawkbit/hawkbit',
|
|
||||||
themeColor: '#0ea5ea',
|
themeColor: '#0ea5ea',
|
||||||
coverpage: true,
|
coverpage: true,
|
||||||
auto2top: true,
|
auto2top: true,
|
||||||
@@ -48,6 +47,29 @@ SPDX-License-Identifier: EPL-2.0
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<script>
|
||||||
|
(function () {
|
||||||
|
function logoPlugin(hook) {
|
||||||
|
hook.ready(function () {
|
||||||
|
fetch('images/hawkbit_logo.svg')
|
||||||
|
.then(function (r) { return r.text(); })
|
||||||
|
.then(function (svg) {
|
||||||
|
var el = document.querySelector('.app-name');
|
||||||
|
if (!el) return;
|
||||||
|
var div = document.createElement('div');
|
||||||
|
div.innerHTML = svg;
|
||||||
|
var svgEl = div.querySelector('svg');
|
||||||
|
svgEl.setAttribute('width', '200');
|
||||||
|
svgEl.removeAttribute('height');
|
||||||
|
svgEl.style.setProperty('--logo-color', '#F0EEEA');
|
||||||
|
el.innerHTML = '';
|
||||||
|
el.appendChild(svgEl);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
window.$docsify.plugins = [].concat(logoPlugin, window.$docsify.plugins || []);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
<!-- Docsify v4 -->
|
<!-- Docsify v4 -->
|
||||||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
||||||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
||||||
@@ -92,10 +114,6 @@ SPDX-License-Identifier: EPL-2.0
|
|||||||
color: #027abe;
|
color: #027abe;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar h1 {
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
thead tr {
|
thead tr {
|
||||||
background-color: #015585;
|
background-color: #015585;
|
||||||
color: #f0eeea;
|
color: #f0eeea;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Eclipse **hawkBit™** is a domain-independent back-end framework for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP-based networking infrastructure.
|
Eclipse **hawkBit™** is a domain-independent back-end framework for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP-based networking infrastructure.
|
||||||
|
|
||||||
<p align="center">
|
<p>
|
||||||
<img src="images/hawkbit_logo.svg" alt="eclipse foundation logo" width="800">
|
<img src="images/hawkbit_logo.svg" alt="eclipse foundation logo" width="800">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user