Skip to content

Commit

Permalink
Merge branch 'main' into feat/vault
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-rm-meyer-ISST authored Oct 9, 2023
2 parents 0e00e87 + 5d9e24f commit c9ed23d
Show file tree
Hide file tree
Showing 72 changed files with 10,145 additions and 519 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ authors:
email: [email protected]
---

import RenderImage from './RenderImage'

![eclipse tractus x logo](@site/static/img/Eclipse-TractusX-CommunityDays_Event2.png)

Dear Tractus-X-Community, dear All,
Expand All @@ -27,8 +29,7 @@ At this networking and coding event at ARENA2036, we offer you the opportunity t
### What awaits you
The agenda includes short keynote speeches with highly interesting technical insights, deep dives for a practical introduction to open-source programming topics and IT tools (our Open-Source Tractus-X KITs) and, above all, workshops in which you can become active and code yourself. You can bring your own challenges (please coordinate with us beforehand). At the evening event on the first day you can network, talk shop, code until late into the night - and of course just have fun.

![eclipse tractus x logo](@site/static/img/Eclipse_CommunityDay1.png)
![eclipse tractus x logo](@site/static/img/Eclipse_CommunityDay2.png)
<RenderImage />


### Who meets here
Expand All @@ -40,7 +41,8 @@ The agenda includes short keynote speeches with highly interesting technical ins
You belong to one of the above, then you are exactly right here. With the support of experts and in exchange with like-minded people, you can actively test the possibilities of Tractus-X and the Catena-X KITs. But of course, other technology-loving participants with an interest in sovereign data exchange are also welcomed.

### How you can participate
If you would like to join, please register for free via Eventbrite [LINK]. The number of places is limited, so it is worth being quick!
If you would like to join, please register for free via Eventbrite:
[Tractus-X Community Days registration](https://www.eventbrite.com/e/first-eclipse-tractus-x-community-days-tickets-721974885317?aff=oddtdtcreator). The number of places is limited, so it is worth being quick!

### Contact
If you have any questions about the event, please contact [email protected].
Expand All @@ -52,6 +54,3 @@ Your Tractus-X Team**
This is an Eclipse Tractus-X event, which takes place within the framework of the Catena-X Automotive Network consortium project (funding code: 13IK004*) and the Catena-X Automotive Network e.V.. ARENA2036 will host the event on its premises and contribute its data space activities (ARENA-X).





63 changes: 63 additions & 0 deletions blog/RenderImage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*********************************************************************************
* Copyright (c) 2023 BMW Group AG
* Copyright (c) 2023 Mercedes Benz AG
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

import React, { useState } from "react";
import Image1 from "@site/static/img/Eclipse_CommunityDay1.png";
import Image2 from "@site/static/img/Eclipse_CommunityDay2.png";
import styles from "./styles.module.css";
import Dialog from '@mui/material/Dialog';
import CloseIcon from '@mui/icons-material/Close';

export default function RenderImage() {
const [image, setImage] = useState(null)
const [open, setOpen] = useState(false)
const handleClose = () => setOpen(false)
return (
<div>
<div onClick={() => {
setImage(Image1)
setOpen(true)
}}>
<img className={styles.img} src={Image1}/>
</div>
<div onClick={() => {
setOpen(true)
setImage(Image2)
}}>
<img className={styles.img} src={Image2}/>
</div>
{image && (
<Dialog sx={{
'.MuiDialog-paper': {
background: 'rgba(1,1,1,0.5)'
}
}} fullScreen onClose={handleClose} open={open}>
<div className={styles.closeIcon}
onClick={handleClose}
>
<CloseIcon />
</div>
<img className={styles.fullwidthImage} src={image}/>
</Dialog>
)}
</div>
)
}
28 changes: 28 additions & 0 deletions blog/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.img {
width: auto;
height: auto;
}

.fullwidthImage {
width: 75%;
height: auto;
margin: auto;
margin-top: 50px;
}

.closeIcon {
position: fixed;
right: 20px;
color: white;
top: 50px;
cursor: pointer;
}

@media screen and (max-width: 996px) {
.fullwidthImage {
width: 100%;
height: auto;
margin: auto;
margin-top: 0px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ In the following, example data for the standardized data models are provided as

Github Link to semantic data model: [CX-00036 Quality Task](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.quality_task)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230704-io.catenax.quality_task.zip").default } download>20230704-io.catenax.quality_task.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230704-io.catenax.quality_task.zip" download>20230704-io.catenax.quality_task.zip</a>

As **data provider** please add the **JSON file** from folder tesdata_CX32
as EDC asset id to **EDC REST data plane**:
Expand All @@ -54,7 +54,7 @@ CX_release32_qualitytask_100_testdata_100_parquet

Github Link to semantic data model: [CX-00092 Quality Task Attachment](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.quality_task_attachment)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230718-io.catenax.quality_task_attachment.zip").default } download>20230718-io.catenax.quality_task_attachment.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230718-io.catenax.quality_task_attachment.zip" download>20230718-io.catenax.quality_task_attachment.zip</a>

As **data provider** please add the **PARQUET file** from folder tesdata_CX32
as EDC asset id to **EDC S3 data plane**:
Expand All @@ -70,7 +70,7 @@ Github Link to semantic data models:

[CX-00091 Fleet Vehicles](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.fleet.vehicles)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230707-io.catenax.fleet.vehicles.zip").default } download>20230707-io.catenax.fleet.vehicles.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230707-io.catenax.fleet.vehicles.zip" download>20230707-io.catenax.fleet.vehicles.zip</a>

As **data provider** please add the **JSON file** from folder tesdata_CX32
as EDC asset id to **EDC REST data plane**:
Expand All @@ -86,7 +86,7 @@ CX_release32_fleetvehicles_100_testdata_100_parquet

Github Link to semantic data model: [CX-00038 Fleet Diagnostic Data](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.fleet.diagnostic_data)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230707-io.catenax.fleet.diagnostic_data.zip").default } download>20230707-io.catenax.fleet.diagnostic_data.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230707-io.catenax.fleet.diagnostic_data.zip" download>20230707-io.catenax.fleet.diagnostic_data.zip</a>

As **data provider** please add the **JSON file** from folder tesdata_CX32
as EDC asset id to **EDC REST data plane**:
Expand All @@ -102,7 +102,7 @@ CX_release32_fleetdiagnostic_100_testdata_100_parquet

Github Link to semantic data model: [CX-00039 Fleet Claim Data](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.fleet.claim_data)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230707-io.catenax.fleet.claim_data.zip").default } download>20230707-io.catenax.fleet.claim_data.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230707-io.catenax.fleet.claim_data.zip" download>20230707-io.catenax.fleet.claim_data.zip</a>

As **data provider** please add the **JSON file** from folder tesdata_CX32
as EDC asset id to **EDC REST data plane**:
Expand All @@ -118,7 +118,7 @@ CX_release32_fleetclaim_100_testdata_100_parquet

Github Link to semantic data model: [CX-00041 Manufactured Parts Quality Information](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.manufactured_parts_quality_information)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230707-io.catenax.manufactured_parts_quality_information.zip").default } download>20230707-io.catenax.manufactured_parts_quality_information.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230707-io.catenax.manufactured_parts_quality_information.zip" download>20230707-io.catenax.manufactured_parts_quality_information.zip</a>

As **data provider** please add the **JSON file** from folder tesdata_CX32
as EDC asset id to **EDC REST data plane**:
Expand All @@ -134,7 +134,7 @@ CX_release32_manufacturingqualityinformation_100_testdata_100_parquet

Github Link to semantic data model: [CX-00040 Parts Analyses](https://github.com/eclipse-tractusx/sldt-semantic-models/tree/main/io.catenax.parts_analyses)

<!-- Filedownload: <a target="_blank" href={ require("/office/20230704-io.catenax.parts_analyses.zip").default } download>20230704-io.catenax.parts_analyses.zip</a> -->
Filedownload: <a target="_blank" href="https://github.com/eclipse-tractusx/eclipse-tractusx.github.io.largefiles/raw/main/quality-kit/20230704-io.catenax.parts_analyses.zip" download>20230704-io.catenax.parts_analyses.zip</a>

As **data provider** please add the **JSON file** from folder tesdata_CX32
as EDC asset id to **EDC REST data plane**:
Expand Down
Loading

0 comments on commit c9ed23d

Please sign in to comment.