Skip to content

Commit c29d27b

Browse files
committed
feat: add news section
1 parent 2322e6d commit c29d27b

File tree

7 files changed

+91
-1
lines changed

7 files changed

+91
-1
lines changed

config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ highlight_code = true
1717
# Put all your custom variables here
1818
juice_logo_name = ""
1919
juice_logo_path = "logo.png"
20+
# maybe find a proper way for news subsection
2021
juice_extra_menu = [
22+
{ title = "News", link = "/news/"},
2123
{ title = "Docs", link = "/docs/3.2.x/index.html"}
2224
]

content/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ menu = true
99
## Running OrientDB the First Time
1010

1111

12-
- First, [Download](downloads.md) and extract OrientDB by selecting the appropriate package provided in our download page(click here for additional installation methods).
12+
- First, [Download](/downloads/) and extract OrientDB by selecting the appropriate package provided in our download page(click here for additional installation methods).
1313
- Start the server by running the `server.sh` or `server.bat` scripts located in the bin folder.
1414
- Once OrientDB is running, enter the following URL in a browser window: http://localhost:2480. This is Studio, the most advanced Web tool for Databases.
1515

content/news/_index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title = "News"
3+
description = "OrientDB News"
4+
weight = 2
5+
insert_anchor_links = "none"
6+
paginate_by = 10
7+
[extra]
8+
menu = true
9+
+++
10+
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
+++
2+
title = "A New Chapter: SAP Enterprise OrientDB joining the Open-Source Community!"
3+
description = "A New Chapter: SAP Enterprise OrientDB joining the Open-Source Community! "
4+
insert_anchor_links = "none"
5+
weight = 3
6+
[extra]
7+
menu = false
8+
+++
9+
10+
Adhering to our set purpose as globally operating cloud company to help the world run better and improve people’s lives, SAP decided to <strong>conclude the commercialization </strong>of its on-premise database product <strong>SAP Enterprise OrientDB. </strong>
11+
12+
Acknowledging the importance of the functional scope provided by this solution and its relevance to our installed base customers it became apparent that a continued availability of bespoke capabilities would be the desired goal. Accordingly, SAP agreed to transition SAP Enterprise OrientDB into an <strong>Open-Source</strong> Solution, <strong>effective immediately</strong>.
13+
14+
Existing capabilities will be provisioned through the <strong>OrientDB enterprise agent</strong> available as Add-on to the established open-source Community Edition of OrientDB.
15+
16+
# What do you need to know ?
17+
18+
The <strong>open-source solution OrientDB enterprise agent</strong> will be available as of today and run under Apache 2.0 license, same as the Community Edition of OrientDB already does today.
19+
20+
There will be no need for installed base customers to adjust their licenses or trigger any migration of their SAP Enterprise OrientDB installations in place. Furthermore, no changes apply to the release cycle and packaging except that the future roadmap will be determined and driven by the OrientDB open-source community in future. SAP will remain being part of this community as a member.
21+
22+
The provision of <strong>maintenance</strong> for SAP Enterprise OrientDB by SAP <strong>will end on 31.12.2023</strong>. Accordingly, existing support agreements cannot be extended beyond that date and <strong>auto-renewal clauses</strong> for existing subscription contracts <strong>will be ceased</strong> as of now. Please reach out to your appointed Account Executive in case of any concerns.
23+
24+
# What is the expected impact on me ?
25+
26+
SAP purposely opted for a <strong>transition path</strong> that is most smooth and <strong>non-disruptive</strong> for our installed base customers, and as such there is <strong>no technical preparation or migration activities</strong> incurred on your side. In case you are already running productively on a local installation of SAP Enterprise OrientDB, <strong>you can just proceed</strong> to do so.
27+
28+
Installed base customers can continue to refer to the technical <a href="/docs/3.2.x/admin/installation/">installation</a> and <a href="https://orientdb.dev/docs/3.2.x/release/Upgrade.html">upgrade</a> guides for updates, <strong>release-cycles and packaging</strong>.
29+
30+
With SAP <strong>maintenance ending on 31.12.2023</strong> existing subscription contracts will not be renewed. Exceptional cases may be considered until maximum this date if required – please reach out to your Account Executive in case.
31+
32+
<strong>Perpetual licenses</strong> need to be converted into respective <strong>term-licenses until maximum this date</strong> – please reach out to your <strong>Account Executive</strong> for more details and to trigger the next steps.
33+
34+
<strong>As of 01.01.2024</strong> support will only be available through the open-source <a href="https://github.com/orientechnologies/orientdb/issues">OrientDB community</a> (see also related links below). You will no longer be able to open <strong>support tickets via the SAP Support Portal </strong>and the respective <strong>component will no longer be available</strong> within the SAP Support System.
35+
36+
37+
Further References:
38+
39+
- [docs/3.2.x/misc/Contribute-to-OrientDB.html](docs/3.2.x/misc/Contribute-to-OrientDB.html)
40+
- [https://github.com/orientechnologies/orientdb/discussions"](https://github.com/orientechnologies/orientdb/discussions)
41+
42+
43+

content/news/status_and_backlog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
+++
2+
title = "Current status and backlog of future releases"
3+
description = "Current status and backlog of future releases"
4+
insert_anchor_links = "none"
5+
weight = 3
6+
[extra]
7+
menu = false
8+
+++
9+
10+
11+
12+
content

sass/_markdown.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
display: flex;
44
flex-direction: column;
55
overflow-x: auto;
6+
width:100%;
67
}
78

89
.content pre {

templates/section.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% import "_macros.html" as macros %}
2+
{% extends "index.html" %}
3+
4+
{% block title %}{{ section.title }} | {{ super() }} {% endblock title %}
5+
6+
{% block header %}
7+
<header class="box-shadow">
8+
{{ macros::render_header() }}
9+
</header>
10+
{% endblock header %}
11+
12+
{%block content%}
13+
<h1 class="heading-text" >{{ section.title }}</h1>
14+
15+
<ul>
16+
{% for page in paginator.pages %}
17+
<li><a href="{{ page.permalink }}">{{page.title}}</a></li>
18+
{% endfor %}
19+
</ul>
20+
</div>
21+
{% endblock content%}
22+

0 commit comments

Comments
 (0)