-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/input_validation
- Loading branch information
Showing
7 changed files
with
135 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[ | ||
{ | ||
"header": "Product Name", | ||
"body": "PURIS", | ||
"link": "https://github.com/eclipse-tractusx/puris" | ||
}, | ||
{ | ||
"header": "License", | ||
"body": "Apache-2.0" | ||
}, | ||
{ | ||
"header": "License Path", | ||
"body": "License URL", | ||
"link": "https://github.com/eclipse-tractusx/puris/blob/main/LICENSE" | ||
}, | ||
{ | ||
"header": "NOTICE", | ||
"body": "Notice.md URL", | ||
"link": "https://github.com/eclipse-tractusx/puris/blob/main/NOTICE.md" | ||
}, | ||
{ | ||
"header": "Source URL", | ||
"body": "Eclipse-Tractus-X", | ||
"link": "https://github.com/eclipse-tractusx" | ||
}, | ||
{ | ||
"header": "Commit ID", | ||
"body": "187698ada492dbe171e5ffcf12c9d2194e53fbfa" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!-- | ||
Copyright (c) 2022,2023 Volkswagen AG | ||
Copyright (c) 2022,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 | ||
--> | ||
<script> | ||
import aboutPage from '@/assets/aboutPage.json'; | ||
|
||
export default { | ||
data() { | ||
return { | ||
information: aboutPage, | ||
}; | ||
}, | ||
}; | ||
</script> | ||
<template> | ||
<main> | ||
<div class="text-gray-900 grid bg-white rounded-lg border border-gray-200 shadow-md hover:bg-gray-100 dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700 w-[100%] overflow-auto p-2.5"> | ||
<table> | ||
<tr v-for="item in information" :id="item.header"> | ||
<td class="font-bold">{{item.header}}</td> | ||
<td> | ||
<a v-if="item.hasOwnProperty('link')" :href="item.link" id="fakelink">{{item.body}}</a> | ||
<p v-else> {{item.body}}</p> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</main> | ||
</template> | ||
<style scoped> | ||
#fakelink{ | ||
color: #0000EE; | ||
} | ||
#fakelink:hover{ | ||
color: #0000FF; | ||
} | ||
</style> |