Add license, readme

This commit is contained in:
Joshua Ramon Enslin 2025-01-22 15:20:46 +01:00
parent 97f5e69740
commit 95b25f9b85
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
9 changed files with 47 additions and 10 deletions

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2025 museum-digital
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

16
README.md Normal file
View File

@ -0,0 +1,16 @@
Concordance checker web interface for imports to museum-digital
===============================================================
This repository contains a very small web app enabling users
to upload a list of terms (separated by a newline) and compare
them to the concordance lists used during imports to md.
Entries that are not yet matched to any value of md's controlled
lists can henceforth be matched using the web UI. The tool will
finally generate the necessary lines of code to register the
relevant terms in the concordance lists.
See also
--------
- [Repository for concordance lists](https://gitea.armuli.eu/museum-digital/MDImporterConcordanceLists)
- [Repository for museum-digital's controlled lists](https://gitea.armuli.eu/museum-digital/MDAllowedValueSets)

@ -1 +1 @@
Subproject commit dbd15ea26baa4bc37bf31e99c6a17ec8ffa876e9 Subproject commit 61edc14240dc73e446a34fd1f511c62657011326

@ -1 +1 @@
Subproject commit b1d25b494175e79d5f33f7a65a45767195c997f9 Subproject commit 4ec6bc49ea7aa8a1a035445a68492c23e8155d9e

@ -1 +1 @@
Subproject commit 0adcbd2d5d7df896a99aedbf2f569050d23f69b3 Subproject commit 2cb782cef47dbd400a22034c6cea8a3dd6ac89e3

2
dependencies/MD_STD vendored

@ -1 +1 @@
Subproject commit 9948ee5d3da9fc072a9ea62341630700794dcd92 Subproject commit b9d82d672ad36940c04e7a219a27ca6d419e7cb7

View File

@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="static/css/qa.css?6790fbc27e93e" /> <link rel="stylesheet" type="text/css" href="static/css/qa.css?6790fe2a4ca2c" />
<link rel="manifest" href="/manifest.webmanifest" /> <link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#aa4400" /> <meta name="theme-color" content="#aa4400" />
@ -32,8 +32,8 @@
</head> </head>
<body class="loading"> <body class="loading">
<!-- <script src="/static/js/qa.js?6790fbc27e93f" type="text/javascript" async></script> --> <!-- <script src="/static/js/qa.js?6790fe2a4ca2d" type="text/javascript" async></script> -->
<script src="/static/js/qa.min.js?6790fbc27e940" type="text/javascript" async></script> <script src="/static/js/qa.min.js?6790fe2a4ca2e" type="text/javascript" async></script>
</body> </body>
</html> </html>

View File

@ -477,8 +477,8 @@ class ConcPage {
const licenseLine = document.createElement("p"); const licenseLine = document.createElement("p");
const license = document.createElement("a"); const license = document.createElement("a");
license.textContent = "CC BY 4.0"; license.textContent = "MIT-Licensed";
license.href = "https://creativecommons.org/licenses/by/4.0/"; license.href = "https://opensource.org/license/mit";
licenseLine.appendChild(license); licenseLine.appendChild(license);
licenseLine.appendChild(this.createPlainTextElem("span", " @ ")); licenseLine.appendChild(this.createPlainTextElem("span", " @ "));

File diff suppressed because one or more lines are too long