From a482430603c5dedbcd2e7a4ff67ecc01f31f94d9 Mon Sep 17 00:00:00 2001 From: Menzo Windhouwer Date: Fri, 8 Nov 2024 15:40:55 +0100 Subject: [PATCH] cleanup --- .github/workflows/docker.yml | 60 ++ Dockerfile.backup | 8 - README.md | 2 +- data/apps/adoptie/config.toml | 22 - data/apps/adoptie/config.xml | 28 - .../clarin.eu:cr1:p_1721373443933.xml | 432 -------- .../tweaks/tweak-1.xml | 139 --- data/apps/adoptie/records/.gitkeep | 0 data/apps/data-envelopes/config.toml | 23 - data/apps/data-envelopes/config.xml | 26 - .../clarin.eu:cr1:p_1708423613607.xml | 585 ----------- .../tweaks/tweak-1.xml | 975 ------------------ data/apps/data-envelopes/records/.gitkeep | 0 data/apps/nde/config.toml | 23 - data/apps/nde/config.xml | 26 - .../clarin.eu:cr1:p_1708423613599.xml | 94 -- .../tweaks/tweak-1.xml | 54 - data/apps/nde/records/.gitkeep | 0 data/apps/vocabs/config.toml | 28 - data/apps/vocabs/config.xml | 31 - .../clarin.eu:cr1:p_1653377925723.xml | 237 ----- .../tweaks/tweak-1.xml | 34 - data/apps/vocabs/records/.gitkeep | 0 data/apps/yugo/config.toml | 39 - data/apps/yugo/config.xml | 49 - data/apps/yugo/output.xml | 46 - .../clarin.eu:cr1:p_1721373443934.xml | 600 ----------- .../tweaks/tweak-1.xml | 517 ---------- data/apps/yugo/records/.gitkeep | 0 .../apps/yugo/records/record-1.2024-09-16.xml | 101 -- data/apps/yugo/records/record-1.xml | 11 - data/apps/yugo/records/record-2.xml | 2 - docker-compose.yml | 44 - editor_backup.sh | 7 - resources/static/css/yugo.css | 2 +- 35 files changed, 62 insertions(+), 4183 deletions(-) create mode 100644 .github/workflows/docker.yml delete mode 100644 Dockerfile.backup delete mode 100644 data/apps/adoptie/config.toml delete mode 100644 data/apps/adoptie/config.xml delete mode 100644 data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/clarin.eu:cr1:p_1721373443933.xml delete mode 100644 data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/tweaks/tweak-1.xml delete mode 100644 data/apps/adoptie/records/.gitkeep delete mode 100644 data/apps/data-envelopes/config.toml delete mode 100644 data/apps/data-envelopes/config.xml delete mode 100644 data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/clarin.eu:cr1:p_1708423613607.xml delete mode 100644 data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/tweaks/tweak-1.xml delete mode 100644 data/apps/data-envelopes/records/.gitkeep delete mode 100644 data/apps/nde/config.toml delete mode 100644 data/apps/nde/config.xml delete mode 100644 data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/clarin.eu:cr1:p_1708423613599.xml delete mode 100644 data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/tweaks/tweak-1.xml delete mode 100644 data/apps/nde/records/.gitkeep delete mode 100644 data/apps/vocabs/config.toml delete mode 100644 data/apps/vocabs/config.xml delete mode 100644 data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/clarin.eu:cr1:p_1653377925723.xml delete mode 100644 data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/tweaks/tweak-1.xml delete mode 100644 data/apps/vocabs/records/.gitkeep delete mode 100644 data/apps/yugo/config.toml delete mode 100644 data/apps/yugo/config.xml delete mode 100644 data/apps/yugo/output.xml delete mode 100644 data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/clarin.eu:cr1:p_1721373443934.xml delete mode 100644 data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/tweaks/tweak-1.xml delete mode 100644 data/apps/yugo/records/.gitkeep delete mode 100644 data/apps/yugo/records/record-1.2024-09-16.xml delete mode 100644 data/apps/yugo/records/record-1.xml delete mode 100644 data/apps/yugo/records/record-2.xml delete mode 100644 docker-compose.yml delete mode 100644 editor_backup.sh diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..a25661d --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,60 @@ +# +name: Create and publish Skosmos image + +# Configures this workflow to run every time a change is pushed to the branch called `release`. +on: + release: + types: ['published'] + +# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. +jobs: + build-and-push-image: + runs-on: ubuntu-latest + # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job. + permissions: + contents: read + packages: write + attestations: write + id-token: write + # + steps: + - name: Checkout repository + uses: actions/checkout@v4 + # Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here. + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels. + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages. + # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository. + # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step. + - name: Build and push Docker image + id: push + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + # This step generates an artifact attestation for the image, which is an unforgeable statement about where and how it was built. It increases supply chain security for people who consume the image. For more information, see "[AUTOTITLE](/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds)." + - name: Generate artifact attestation + uses: actions/attest-build-provenance@v1 + with: + subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} + subject-digest: ${{ steps.push.outputs.digest }} + push-to-registry: true + diff --git a/Dockerfile.backup b/Dockerfile.backup deleted file mode 100644 index fa84f6d..0000000 --- a/Dockerfile.backup +++ /dev/null @@ -1,8 +0,0 @@ -FROM registry.diginfra.net/tsd/backup:latest - -RUN apk update && \ - apk add mysql-client - -COPY editor_backup.sh . -RUN chmod +x *.sh -ENV BACKUP_SCRIPT "/opt/editor_backup.sh" \ No newline at end of file diff --git a/README.md b/README.md index ab96e85..04c6da4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ docker run -p 1210:1210 --name=ccf --rm -it ccf 2. Initialize the HelloWorld app: ```sh -curl -v -X PUT -H 'Authorization: Bearer foobar' http://0.0.0.0:1210/app/HelloWorld +curl -v -X PUT -H 'Authorization: Bearer foobar' http://localhost:1210/app/HelloWorld ``` 3. Visit the HelloWorld app: diff --git a/data/apps/adoptie/config.toml b/data/apps/adoptie/config.toml deleted file mode 100644 index d2a25ef..0000000 --- a/data/apps/adoptie/config.toml +++ /dev/null @@ -1,22 +0,0 @@ -[app] -name="adoptie" -title="IISG Adoptie Editor" -prof="clarin.eu:cr1:p_1721373443933" - -[app.html] -title="string(/cmd:CMD/cmd:Components/cmd:Adoptie/cmd:IDnummer)" - -[app.list] -ns.cmd="http://www.clarin.eu/cmd/" - -[app.list.adoptie] -xpath="string(/cmd:CMD/cmd:Components/cmd:Adoptie/cmd:IDnummer)" -label="Adoptie" -sort="true" -filter="true" - -[app.list.status] -xpath="string(/cmd:CMD/cmd:Components/cmd:Adoptie/cmd:status)" -label="Status" -sort="true" -filter="'select'" \ No newline at end of file diff --git a/data/apps/adoptie/config.xml b/data/apps/adoptie/config.xml deleted file mode 100644 index 7e00113..0000000 --- a/data/apps/adoptie/config.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - adoptie - IISG Adoptie Editor - clarin.eu:cr1:p_1721373443933 - - string(/cmd:CMD/cmd:Components/cmd:Adoptie/cmd:IDnummer) - - - - http://www.clarin.eu/cmd/ - - - string(/cmd:CMD/cmd:Components/cmd:Adoptie/cmd:IDnummer) - - true - true - - - string(/cmd:CMD/cmd:Components/cmd:Adoptie/cmd:status) - - true - 'select' - - - - diff --git a/data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/clarin.eu:cr1:p_1721373443933.xml b/data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/clarin.eu:cr1:p_1721373443933.xml deleted file mode 100644 index b67d7b3..0000000 --- a/data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/clarin.eu:cr1:p_1721373443933.xml +++ /dev/null @@ -1,432 +0,0 @@ - - -
- clarin.eu:cr1:p_1721373443933 - Adoptie - Profiel voor het adoptie project - development -
- - - - - - - - mannelijk - vrouwelijk - anders - - - - - - - - - 1900-1904 - 1905-1909 - 1910-1914 - 1915-1919 - 1920-1924 - 1925-1929 - 1930-1934 - 1935-1939 - 1940-1944 - 1945-1949 - 1950-1954 - 1955-1959 - 1960-1964 - 1965-1969 - 1970-1974 - 1975-1979 - 1980-1984 - 1985-1989 - 1990-1994 - 1995-1999 - - - - - - - - - Groningen - Friesland - Drenthe - Overijssel - Gelderland - Limburg - Noord-Brabant - Zeeland - Zuid-Holland - Noord-Holland - Utrecht - Flevoland - Elders - - - - - - - - - - - 1860-1864 - 1865-1869 - 1870-1874 - 1875-1879 - 1880-1884 - 1865-1889 - 1890-1894 - 1895-1899 - 1900-1904 - 1905-1909 - 1910-1914 - 1915-1919 - 1920-1924 - 1925-1929 - 1930-1934 - 1935-1939 - 1940-1944 - 1945-1949 - 1950-1954 - 1955-1959 - 1960-1964 - 1965-1969 - 1970-1974 - 1975-1979 - - - - - - - - - Groningen - Friesland - Drenthe - Overijssel - Gelderland - Limburg - Noord-Brabant - Zeeland - Zuid-Holland - Noord-Holland - Utrecht - Flevoland - Elders - - - - - - - - - - ongehuwd - gehuwd - gescheiden - verweduwd - onbekend, niet gegeven - - - - - - - - - ongehuwd - gehuwd - gescheiden - verweduwd - onbekend, niet gegeven - - - - - - - - - - - - - - - - - - - - - - concensueel (bv. 'vriendje', 'vakantieliefde') - niet-concensueel (incest) - niet-concensueel (verkrachting) - onduidelijk - - - - - - - - - - - - - - - - - - Groningen - Friesland - Drenthe - Overijssel - Gelderland - Limburg - Noord-Brabant - Zeeland - Zuid-Holland - Noord-Holland - Utrecht - Flevoland - Elders - - - - - - - - - protestants - katholiek - neutraal - - - - - - - - - - - - Groningen - Friesland - Drenthe - Overijssel - Gelderland - Limburg - Noord-Brabant - Zeeland - Zuid-Holland - Noord-Holland - Utrecht - Flevoland - Elders - - - - - - - - - - - - - - - Groningen - Friesland - Drenthe - Overijssel - Gelderland - Limburg - Noord-Brabant - Zeeland - Zuid-Holland - Noord-Holland - Utrecht - Flevoland - Elders - - - - - - - - - - - - - - - - - - - - - - - - 1900-1904 - 1905-1909 - 1910-1914 - 1915-1919 - 1920-1924 - 1925-1929 - 1930-1934 - 1935-1939 - 1940-1944 - 1945-1949 - 1950-1954 - 1955-1959 - 1960-1964 - 1965-1969 - 1970-1974 - 1975-1979 - 1980-1984 - 1985-1989 - 1990-1994 - 1995-1999 - - - - - - - - - 1900-1904 - 1905-1909 - 1910-1914 - 1915-1919 - 1920-1924 - 1925-1929 - 1930-1934 - 1935-1939 - 1940-1944 - 1945-1949 - 1950-1954 - 1955-1959 - 1960-1964 - 1965-1969 - 1970-1974 - 1975-1979 - 1980-1984 - 1985-1989 - 1990-1994 - 1995-1999 - - - - - - - - - 1900-1904 - 1905-1909 - 1910-1914 - 1915-1919 - 1920-1924 - 1925-1929 - 1930-1934 - 1935-1939 - 1940-1944 - 1945-1949 - 1950-1954 - 1955-1959 - 1960-1964 - 1965-1969 - 1970-1974 - 1975-1979 - 1980-1984 - 1985-1989 - 1990-1994 - 1995-1999 - - - - - - - - - <1 jaar - ca. 1 jaar - ca. 2 jaar - ca. 3 jaar - >3 jaar - - - - - - - - - Groningen - Friesland - Drenthe - Overijssel - Gelderland - Limburg - Noord-Brabant - Zeeland - Zuid-Holland - Noord-Holland - Utrecht - Flevoland - Elders - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/tweaks/tweak-1.xml b/data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/tweaks/tweak-1.xml deleted file mode 100644 index d2b2348..0000000 --- a/data/apps/adoptie/profiles/clarin.eu:cr1:p_1721373443933/tweaks/tweak-1.xml +++ /dev/null @@ -1,139 +0,0 @@ - -
- clarin.eu:cr1:p_1721373443933 - Adoptie - Profiel voor het adoptie project - development -
- - 1. ID-nummerincl. initialen invoerder - Adoptiekindgegevens adoptiekind - 2. Geslacht kind - - - 3. Geboorteperiode kind - - - 4. Geboorteprovincie kind - - - - Biologische moedergegevens biologische moeder c.q. ‘afstandsmoeder’ - 5. Geboorteperiode biologische moeder - - - 6. Provincie waarin biologische moeder woonachtig is voor eventueel vertrek naar doorgangshuis/gastgezin - - - 7. Is biologische moeder bij geboorte van kind meerderjarig (21 jaar en ouder) - 8. Huwelijkse staat biologische moeder op moment van bevalling - - - 9. Huwelijkse staat biologische moeder op moment van adoptie - - - 11. Godsdienst biologische moeder - 12. Beroep biologische moeder - 13. Genoten onderwijs biologische moeder - 14. Beroep vader van biologische moeder - 15. Beroep moeder van biologische moeder - 16. Beschrijf de gezinssituatie biologische moeder voor dan wel tijdens de zwangerschap - 17. Beschrijf de gezinssituatie biologische moeder na de bevalling - 10. Wordt er in de verslaglegging met betrekking tot biologische moeder verwezen naar een licht verstandelijke beperking of psychologische aandoening? - Indien ja, welke termen worden hiervoor gebruikt? - - - Biologische vadergegevens biologische vader c.q. verwekker - 18. Is de verwekker bekend? - 19. Wat is de aard van de seksuele relatie tussen biologische moeder en verwekker? - - - 20. Is er sprake van een familierelatie tussen biologische moeder en verwekker? - 21. Beschrijf de relatie tussen biologische moeder en verwekker? - 22. Welke aanvullende informatie vinden we over de verwekker? - 23. Welke informatie vinden we over de ouders van de verwekker? - 24. Is er sprake van poging tot vaderschapsactie? - - - 25. Welke informatie wordt gedeeld over de periode van de zwangerschap? - 26. Verblijven moeder en/of kind op enig moment in een doorgangshuis? - 27. In welke provincie is dit doorgangshuis gevestigd? - - - 28. Signatuur doorgangshuis - - - 29. Welke informatie wordt gedeeld over de periode in het doorgangshuis? - - 30. Verblijven moeder en/of kind op enig moment in een gastgezin? - 31. In welke provincie is dit gastgezin woonachtig? - - - 32. Welke informatie wordt gedeeld over het verblijf bij het gastgezin? - 33. Welke informatie wordt gedeeld over de bevalling? - - - - 34. Verblijft het kind na de bevalling in een kindertehuis? - 35. In welke provincie is dit kindertehuis gevestigd? - - - 36. Welke informatie wordt gedeeld over het verblijf in het kindertehuis? - 37. Wordt er in de verslaglegging met betrekking tot het kind verwezen naar een licht verstandelijke beperking of andere stoornis in de ontwikkeling? - - - 38. Wat en hoe wordt er geschreven over reden van afstand en adoptie, vanuit de biologische moeder? - 39. Wat wordt er geschreven over reden van afstand en adoptie, vanuit de ouders van de biologische moeder? - 40. Wat wordt er geschreven over reden van afstand en adoptie, vanuit actoren anders dan (de ouders van) de biologische moeder? - 43. Welke informatie vinden we over het al dan niet (blijvend) contact tussen biologische moeder en kind na de adoptie? - 44. Worden er wensen uitgesproken door biologische moeder m.b.t. plaatsing adoptiegezin? - 45. Welke begeleidende instanties of individuen worden genoemd? - 41. Bevat het dossier een ‘afstandsverklaring’ van de biologisch moeder? - 42. Noteer de tekst die op de ‘afstandsverklaring’ staat: - - - - 46. Periode plaatsing in het pleeggezin: - - - 47. Periode adoptieverzoek: - - - 48. Periode adoptietoewijzing (vonnis): - - - 49. Hoeveel jaar zit er tussen verzoek en toewijzing adoptie? - - - 50. Woonprovincie pleeg- c.q. adoptiefouders: - - - 51. Leeftijd kind bij plaatsing in pleeggezin (in hele jaren): - 52. Leeftijd kind bij adoptieverzoek (in hele jaren): - 53. Beroep pleegvader - 54. Beroep pleegmoeder - 55. Religie pleegouders - 56. Wat wordt gerapporteerd over de (toekomstige) plaatsing in het pleeggezin - 58. Heeft het pleeggezin eigen kinderen of andere pleeg- dan wel adoptiekinderen (voor dan wel na desbetreffende adoptie)? - 59. Welke informatie vinden we over de motivatie van de pleegouders om te adopteren? - 60. Wat wordt er gerapporteerd over de toewijzing adoptie? - 62. Welke begeleidende instanties of individuen worden genoemd? - 57. Wordt er informatie over het adoptief-echtpaar ingewonnen bij derden? - Zo ja, wie zijn dit en welke informatie delen zij over het echtpaar? - - 61. Is er sprake van Advies van de Centrale Adoptieraad (aan de rechter)? - - - 63. Wordt er enige financiële informatie gedeeld? - Noteer relevante informatie - - - - 64. Welke (typen) documenten bevinden zich in het dossier (juridische documenten, rapportages, telefoonbriefjes, foto’s) - 66. Wat viel je verder inhoudelijk op in dit dossier? - 65. Bevat het dossier een later verzoek tot informatie over of door de betrokkenen? - Noteer relevante informatie - - - -
\ No newline at end of file diff --git a/data/apps/adoptie/records/.gitkeep b/data/apps/adoptie/records/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/apps/data-envelopes/config.toml b/data/apps/data-envelopes/config.toml deleted file mode 100644 index 0feef2d..0000000 --- a/data/apps/data-envelopes/config.toml +++ /dev/null @@ -1,23 +0,0 @@ -[app] -name="data-envelopes" -title="HI Data Envelopes Editor" -prof="clarin.eu:cr1:p_1708423613607" - -[app.html] -title="string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:BasicInformation/(cmd:title[@xml:lang='en'],cmd:title)[1])" -style="data-envelopes.css" - -[app.list] -ns.cmd="http://www.clarin.eu/cmd/" - -[app.list.title] -xpath="string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:BasicInformation/(cmd:title[@xml:lang='en'],cmd:title)[1])" -label="Dataset" -sort="true" -filter="true" - -[app.list.status] -xpath="string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:status)" -label="Status" -sort="true" -filter="'select'" \ No newline at end of file diff --git a/data/apps/data-envelopes/config.xml b/data/apps/data-envelopes/config.xml deleted file mode 100644 index a309008..0000000 --- a/data/apps/data-envelopes/config.xml +++ /dev/null @@ -1,26 +0,0 @@ - - data-envelopes - HI Data Envelopes Editor - clarin.eu:cr1:p_1708423613607 - - string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:BasicInformation/(cmd:title[@xml:lang='en'],cmd:title)[1]) - - - - - http://www.clarin.eu/cmd/ - - - <xpath>string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:BasicInformation/(cmd:title[@xml:lang='en'],cmd:title)[1])</xpath> - <label>Dataset</label> - <sort>true</sort> - <filter>true</filter> - - - string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:status) - - true - 'select' - - - \ No newline at end of file diff --git a/data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/clarin.eu:cr1:p_1708423613607.xml b/data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/clarin.eu:cr1:p_1708423613607.xml deleted file mode 100644 index 8902fae..0000000 --- a/data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/clarin.eu:cr1:p_1708423613607.xml +++ /dev/null @@ -1,585 +0,0 @@ - - -
- clarin.eu:cr1:p_1708423613607 - DataEnvelope - Profile for Data Envelopes Editor - development -
- - - - - - - - - - - Conceptualization - Data Curation - Formal Analysis - Funding Acquisition - Investigation - Methodology - Project Administration - Resources - Software - Supervision - Validation - Visualisation - Writing - original draft - Writing - review & editing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Academic/Research Insitution - Government - Non-Profit Organisation - Business/Industry - Independent Researcher/Individual - Intergovernmental Organisation - Other - - - - - - - - - - - - - - - - Conceptualisation - Data Curation - Formal Analysis - Funding Acquisition - Investigation - Methodology - Project Administration - Resources - Software Development - Supervision - Validation - Writing - original draft - Writing - review and editing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Open Access - Registered Access - Restricted Access - Internal Access - - - - - - - - - - - - - - - - - - - - - - - - Regularly maintained - Limited Maintenance - Deprecated - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Sensitive data about people - Non-sensitive data about people - Data about natural phenomena - Data about places and object - Synthetically generated data - Data about systems or products and their behavior - Unknown - Others - - - - - - - - - - - - Image Data - Text Data - Tabular Data - Audio Data - Video Data - Time Series - Graph Data - Geospatial Data - Multimodal - Unknown - Other - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Yes - No - - - - - - - - - - - - - Human Annotations (Expert, Employees) - Human Annotations (Expert, Contractors) - Human Annotations (Expert, Crowdsourced) - Human Annotations (Non-expert, Employees) - Human Annotations (Non-expert, Contractors) - Human Annotations (Non-expert, Crowdsourcing) - Machine generated - Unlabeled (no annotations) - - - - - - - - - - - - - - - - - - - Yes - No - Not sure - - - - - - - - - - - - Yes - No - - - - - - - - - - - - - - - Gender - Sexuality - Marital Status - Socio-economic Status - Address/location - Religious Belief - Political Opinions - Race or Ethnic Origins - Criminal History - Age - Others (please specify) - None - - - - - - - - - - - - - - Yes - No - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Monitoring - Research - Production - Others (please specify) - - - - - - - - - - - - - Safe for production use - Safe for research use - Conditional use-some unsafe applications (Please specify below) - Only approved use (Please specify below) - Others (Please specify below - - - - - - - - - - - - - - - - - - - - - - - - - Safe to use with other data - Conditionally safe to use with other data - Should not be used with other data - Unknown - then skip the rest of this subsection - Other (please specify) - - - - - - - - - - - - - - Training - Testing - Validation - Development or Production Use - Fine Tuning - Unknown - then skip the rest of this section - Others (please specify) - - - - - - - - - - - - - - - - Safe to sample - Conditionally safe to sample - Should not be sampled - then skip the rest of this section - Unknown - then skip the rest of this section - Others (please specify) - - - - - - - - - - Cluster Sampling - Haphazard Sampling - Multi-stage Sampling - Random Sampling - Retrospective Sampling - Stratified Sampling - Systematic Sampling - Weighted Sampling - Unknown - Unsampled - Others (Please specify) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/tweaks/tweak-1.xml b/data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/tweaks/tweak-1.xml deleted file mode 100644 index 993f8e4..0000000 --- a/data/apps/data-envelopes/profiles/clarin.eu:cr1:p_1708423613607/tweaks/tweak-1.xml +++ /dev/null @@ -1,975 +0,0 @@ - - -
- clarin.eu:cr1:p_1708423613607 - DataEnvelope - Profile for Data Envelopes Editor - development -
- - - Level 1: Basic Information - Basic Information on Data-Envelope - - 1.1. Title of Data-Envelope - Follow the format: Dataset Name Version-X Data-Envelope Version-Y - - - - 1.2. Contact Details - Provide contact information for the project. - - Name - Provide the full name. - - - - ORCID ID - - - - - Email - - - - - 1.3. Data Envelope Dates - - Data-Envelope Creation Date - - - - Data-Envelope Completion Date - - - - Data-Envelope Publication Date - - - - - 1.4 Author of Data-Envelope - Provide information on the author of the data-envelope. - - Name - Provide their full name. - - - - - - - 1.5 Feedback and Elaboration - - Feedback - Please use this space to provide any feedback on this section and to share any other insights or information you think would be useful for this level. - - - - - - Level 2: Basic Metadata - - 2.1 Snapshot - - Dataset Title - - - - Version - - - - Description - Provide a free text account of the dataset or resource (limit 200 words). Include information about the content and topic of the data, sources and motivations for dataset creation. - - - - Genre - Choose one or more of the following genres that apply to the dataset/resources: - /proxy/skosmos/sd/ineo-informationtypes - - - - Other Genre - Specify the particular genre of the dataset if not included in the dropdown list above. - - - - Topic Classification - Choose one or more of the following topics (from NWO research list) that apply to the dataset/resource: - /proxy/skosmos/sd/nwo-researchfields - - - - Other Topic - Specify topic(s) of the dataset if not included in the dropdown list above. - - - - Languages - This refers to the natural language used for textual metadata (i.e., titles, descriptions, etc.) of a cataloged resource (i.e., dataset or service) or the textual values of a dataset distribution. Choose one or more of the following languages (from ISO 639-2) of the dataset/resource: - /proxy/skosmos/clavas/ISO639-3 - - - - - Geographical Coverage - This refers to the geographical area pertaining to the datasets. Choose one or more of the following geographies that apply to the dataset/resource: - - - - Other Geographical Coverage - - - - - Temporal Coverage Start Date - Provide start year of temporal scope of the dataset - - - - Temporal Coverage End Date - Provide end date of temporal scope of the dataset - - - - Year - In case temporal scope cannot be captured in a range, add relevant years - - - - Additional Notes - Use this box to specify any additional information about temporal scope of the dataset. - - - - - - 2.2 Dates - - - - Dataset Publication Date - Provide the dataset publication date. - - - - - 2.3 Creators and Contributors - Specify the individuals or organizations that created, contributed to, and are sharing the dataset. This information is essential in identifying the dataset's provenance. - - Publishing Organisation - Provide information for each publishing organisation - - Name - Provide the name of the publishing organisation - - - - ROR ID - Provide the Research Organisation Registry (ROR) ID for the publishing organisation - - - - Type - Choose the type of publishing organisation - - - - Other - If type of publishing organisation chosen as "Other", please specify here - - - - - Creators - Provide the following information for each creator of the dataset. - - - ORCID ID - - - - - ROR ID - Provide the Research Organisation Registry (ROR) ID for the affiliated organisation - - - - Role - Specify the role in the project - - - - Email - Provide the insitutional email of contributor - - - - - - - - - - Funding Source - Provide information on each funding organisation - - Name - Name of organisation - - - - ROR ID - - - - Funding or Grant Summary - Provide a short summary of organisation and grant that may have funded the creation, collection, or curation of the dataset. - - - - - - - 2.4 Distribution - - Dataset Link - For instance its DOI, Handle, or ARK - - - - Repository - If the dataset has its own dedicated website(s) or is hosted on sites such as github, zenodo, dataverse, marketplace, provide the url(s) here: - - - - Download - - Link - Provide link where dataset can be downloaded - - - - File/Folder Type - - - - File Size - Provide file size in MB - - - - - Citation - - Citation Information - Provide dataset citation reference - - - - - - 2.5 Licenses and Accesses - Specify the license(s) and access levels under which the dataset is shared. This information is crucial in determining the appropriate re-use of datasets and access information. - - Lincensing Information - For every relevant license, provide the following information: - - Identifier - Provide the identifier of the license(s) used. - - - - URL - - - - - Access - This section details access rights for the dataset, indicating if it is open to all users or restricted to authorized individuals. It also specifies whether access is available anonymously or requires registration. - - Access Level - Choose one of the following access levels - - - - Access Restricted - If access is restricted, please fill in this section. - - Description - Provide a description of the access restriction. Include an explanation of why access controls are in place. Also highlight any restrictions or limitations such as geographic restrictions, time-limited access, or requirements of fees, national regulation, etc. Also provide any prerequisites for acceptable use, such as reading data usage policy. - - - - URL - Provide the link to insructions and/or page to request access. - - - - Contact Email - Provide email for users to reach out with any questions or concerns regarding data access. - - - - - - - - 2.6 Dataset Version and Maintenance - - Version - Provide details about this version of the dataset. - - Current Version - - - - Last Updated - - - - Release Date - Provide the publication date of this version of the dataset. - - - - - Maintenance - - Maintenance Status - Select one of the following: - - - - - Maintenance Plan - Summarize the maintenance plan for the dataset: - - Updates - Provide information about criteria for updating the dataset. Include information on how errors are triaged or handled, and criteria for updating the dataset. - - - - Feedback - Provide email/contact information for users to communicate errors in data and technical issues: - - - - - Next Planned Update - Provide details about the next planned update if known: - - Version Affected - - - - Date of next planned update - - - - Next Version - - - - - - 2.7 Feedback and Elaboration - - Feedback and Elaboration - Please use this space to provide any feedback on this section and to share any other insights or information you think would be useful for this level. - - - - - - Level 3: Data - For each data resource/file in the dataset, fill in the following: - - 3.1 Data Resource Description - - Name of Resource - - - - Description - Provide a description of the particular resource/file: - - - - Path - Provide resource url - - - - Format - Provide file extension for resource (such as csv, json, xls): - - - - Size - Provide file size: - - - - Date - Provide date of creation: - - - - Language(s) - provide language used in the dataset: - - - - Encoding - Specify character encoding of the resource's data file: - /proxy/skosmos/sd/encodings - - - - Data Subject(s) - - Subject(s) - Choose one or more of the following subjects of the dataset resource: - - - - Other Data Subject(s) - If "Other" was chosen, please speciify: - - - - - Data Modality - - Modality - Choose one or more of the following modalities - - - - Other Modalities - If "Other" or "Multimodal" was chosen, please specify: - - - - - - - - - 3.2 Data Fields - Describe every data field in the resource. - - Describe every data field in the resource: - - Data Field Name - Provide label or identifier for the data field. - - - - Data Field Type - Specify the type of data in the filed. For instance, common data types are: string, integer, boolean, date, etc. - /proxy/skosmos/sd/xsd-datatypes - - - - Description of the Data Field - Provide a description of what the field represents, including any specific details about the data format or structure. If the field involves complex data like span indices, explain whether these indices are based on characters or words, and whether they are contiguous (continuous without breaks) or not. - - - - Sensitivity - Indicate whether the data stored in this field is sensitive. Sensitive data might include personal information that could be harmful if exposed, such as social security numbers, personal addresses, or health information. - - - - Notable Features - List any important or unique attributes of the field that might be relevant for users or systems interacting with the data. - - - - Provide information on linked open data schemes, controlled vocabularies, ontologies and taxonomies used during the establishment of the dataset. - - Vocabulary - Summarise linked open data scheme, controlled vocabulary, ontology or taxonomy used during the establishment of the dataset. - - - - Vocabulary Link - Provide link to the taxonomy or relevant documentation that describes it. - - - - - - - 3.3 Data Point Examples - - Typical Example - - Description - Provide a description of a typical example of a data point. - - - - Link - Provide a link to this data point if possible. - - - - - Atypical Example - - Description - Provide a description of an atypical example of a data point. - - - - Link - Provide a link to this data point if possible. - - - - - - 3.4 Errors, Noise, and Redundancies - Are there any errors, sources of noise, or redundancies in this resource? - - Description - Provide a description of the errors, noise, and/or redundancies in this resource. - - - - - 3.5 External Resources - - Resources - Is the dataset self-contained, or does it link to or otherwise rely on external resources (e.g., websites, other datasets)? - - - - External Resources Description and Links - If not, please specify what external resources (such as website, other datasets) it relies on and provide links to these resources. - - - - - 3.6 Annotation and Labeling - Fill in this section to specify if any human or algorithmic annotation tasks were performed in the creation of your dataset resource. Repeat this section for every "annotation workforce type". - - Annotation Characteristics - Describe relevant characteristics of each annotation type as indicated. - - - - - - - - - - - 3.7 Social Impact, Sensitivity, and Biases - - Safety Consideration - - Does the resource contain data that, if viewed directly, might be offensive, insulting, threatening, or might otherwise cause anxiety? - - - - If yes or you are not sure, please specify: - - - - - Confidentiality - - - Specify Measures - If yes, specify what measures were taken to avoid disclosure of personal information. - - - - - - Known Biases in the Resource - Identify any known biases present in this dataset, such as stereotyping, underrepresentation, overrepresentation, or misrepresentation of certain social groups. Briefly describe the nature and, if possible, the extent of these biases to help users make informed decisions and mitigate potential harms. - - - - Steps taken to Mitigate/Reduce Biases - Describe the steps taken to reduce or mitigate biases in the dataset. - - - - Sensitive Attributes - - Sensitive Human Attributes - Specify if the dataset contain data that might be considered sensitive in any way (e.g., data that reveals race, sexual orientation, age, ethnicity, disability status, political orientation, religious beliefs, union memberships; location; financial or health data; biometric or genetic data; criminal history).Select all attributes that are represented (directly or indirectly) in the dataset resource: - - - - Specify - Specify the kind of sensitive attribute in the resource or elaborate further. - - - - Unintentionally Collected Attributes - Specify whether there are any human attributes were not explicitly collected as a part of the dataset creation process but can be inferred using additional methods. - - - - - - Ethical Review - - Review - Was an ethical review conducted in order to create this dataset? - - - - - Outcomes - Describe the outcomes of the ethical review, and how they influenced the dataset creation. - - - - - Ethical Review Contact - - Name - Provide name of person who may be contacted in relation to questions on ethical review. - - - - - Email - Provide their email address. - - - - - - - 3.8 Data Provenance - For every source used to create this resource, provide the following information: - - - URL - Provide a URL of the source if available: - - - - Description - Provide a brief description of the source and why it was used? - - - - Creator Name(s) - Provide name of individual creators of the source (if known) - - - - Creator Organisation(s) - Provide name of affiliated organisations or creating organisation - - - - Year of Publication - - - - Language(s) - Provide the languages of the source. - - - - Temporal Scope - Provide the temporal scope of the resource (if known). - - - - Geographical Scope - Provide the geographical scope of the resource (if known). - - - - Notable Features - Provide any notable features and known biases and issues with the source. - - - - Datasheet/Data-Envelope - Provide a link to a datasheet/data-envelope on the source if available. - - - - - - 3.9 Digitisation - - Digitalisation Pipeline - If applicable, describe in what way digitisation presents another layer of selection of the whole of a collection available in a cultural heritage institution; state if this is not the case. If applicable, provide selection criteria and metrics that demonstrate how this additional layer of selection has influenced the transformation of the original collection or dataset into the current dataset. - - - - - 3.10 Feedback and Elaboration - - Feedback and Elaboration - Please use this space to provide any feedback on this section and to share any other insights or information you think would be useful for this level. - - - - - - Level 4: Uses - - - Other - If "Other" was chosen above, please speciify - - - - Domain(s) of Application - Provide list of key domains of application that dataset has been designed for. - /proxy/skosmos/sd/tadirah - - - - Motivating Factor(s) and Problem Space(s) - What motivated the creation of this dataset? What were some of the reasons underlying the major choices involved in putting it together? Provide a description of the specific problem space that this dataset intends to to address - - - - 4.1. Uses - - - Explain for special cases chosen above - - - - - Publications - If the dataset was introduced by a paper or there was a paper written describing the dataset, add URL here - - - - - - - Suitable Use Case(s) - Summarize known suitable and intended use cases of this dataset. - - Suitable Use Case - Summarize here. Include links where necessary. - - - - Additional Notes - - - - - Unsuitable Use Case(s) - Summarize known unsuitable and unintended use cases of this dataset. - - - - - - 4.2. Use with Other Data - - Safety Level - - - - Other - If "Other" was chosen above, please speciify - - - - Known safe dataset(s) or data type(s) - List the known datasets (provide link) or data types and corresponding transformations that are safe to join or aggregate this dataset with. - - - - Known unsafe dataset(s) or Data Type(s) - List the known datasets or data types and corresponding transformations that are unsafe to join or aggregate this dataset with. - - - - - 4.3 Use in ML or AI Systems - - Dataset Uses - - - - Other dataset use - If dataset use chosen as "Other", please specify here - - - - Notable Feature(s) - Describe any notable feature distributions or relationships between individual instances made explicit. - - - - Known Correlation(s) - Summarize any known correlations with the indicated features in this dataset. - - - - Usage Guideline(s) - Summarize or link to usage guidelines or policies that consumers should be aware of in using this dataset for ML purposes. - - - - Data splits - Are there recommended data splits (e.g., training, development/validation, testing)? If so, please provide a description of these splits, explaining the rationale behind them. - - - - - 4.4. Sampling - - - Other - If Safety Level chosen as "Other", please specify here - - - - Acceptable Sampling Method(s) - Select all applicable acceptable methods to sample this dataset - - - - Other - If Acceptable Sampling Method(s) chosen as "Other", please specify here - - - - Best Practice(s) - - - - Risk(s) and Mitigation(s) - Summarize known or residual risks associated with sampling methods when applied to the dataset. - - - - - 4.5. Feedback Elaboration - - Feedback - Please use this space to provide any feedback on this section and to share any other insights or information you think would be useful for this level. - - - - - - Level 5: Human Perspective - - 5.1. Human Annotators - Fill this section if human annotators were used to create dataset/resource - - Annotator description - Provide a brief description for each annotator group performing the human annotation task - - - - - Task Type - Summarize here. Include links if available. Ideally connect to some existing taxonomy: survey, video annotation, text annotation, image annotation, etc - - - - Number of unique annotators - - - - Average number of Annotations per Annotator - - - - Expertise of annotators - For example, archival and historical knowledge and reading and understanding historical Dutch. - - - - Description of annotators - - - - Compensation - Indicate here whether they were crowdsourced or not, and if not, what compensation they received. For example, 'compensated as per the Dutch CAO'. - - - - Language distribution of annotators - - - - - Age distribution of annotators - - - - Number of each age group - - - - Geographic distribution of annotators - For example, 100% reside in the Netherlands. - - - - Gender distribution of annotators - For example, 60% identify as women, 40% as men. - - - - Socio-economic distribution of annotators - For example, 40% identify as lower middle class, 60% as middle class. - - - - Summary of annotation instructions - Summarize here. Include links if available, say to to the annotation instructions, readme. - - - - Annotation platform(s) - Include link(s) if available - - - - Additional Notes - For example: During the annotation process all annotators were trained to read and understand the original texts by the archival expert and were invited to compare the HTR texts with the scans of the original. This way of working proved instrumental in overcoming limitations of HTR quality. Or any other comments. - - - - - - 5.2. Creators and Contributors - - Description of potential positionality impact factors - Think of aspects that could have impact on the work in terms of positionality, e.g. particular domain of expertise, gender, age, etc. - - - - - 5.3. Feedback Elaboration - - Feedback - Please use this space to provide any feedback on this section and to share any other insights or information you think would be useful for this level. - - - - - -
diff --git a/data/apps/data-envelopes/records/.gitkeep b/data/apps/data-envelopes/records/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/apps/nde/config.toml b/data/apps/nde/config.toml deleted file mode 100644 index 4633fe7..0000000 --- a/data/apps/nde/config.toml +++ /dev/null @@ -1,23 +0,0 @@ -[app] -name="nde" -title="HI DCat Editor" -prof="clarin.eu:cr1:p_1708423613599" - -[app.html] -title="string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:BasicInformation/(cmd:title[@xml:lang='en'],cmd:title)[1])" -style="data-envelopes.css" - -[app.list] -ns.cmd="http://www.clarin.eu/cmd/" - -[app.list.title] -xpath="string(/cmd:CMD/cmd:Components/cmd:HI/cmd:ID)" -label="Dataset" -sort="true" -filter="true" - -[app.list.status] -xpath="string(/cmd:CMD/cmd:Components/cmd:HI/cmd:status)" -label="Status" -sort="true" -filter="'select'" \ No newline at end of file diff --git a/data/apps/nde/config.xml b/data/apps/nde/config.xml deleted file mode 100644 index dadff49..0000000 --- a/data/apps/nde/config.xml +++ /dev/null @@ -1,26 +0,0 @@ - - nde - HI DCat Editor - clarin.eu:cr1:p_1708423613599 - - string(/cmd:CMD/cmd:Components/cmd:DataEnvelope/cmd:BasicInformation/(cmd:title[@xml:lang='en'],cmd:title)[1]) - - - - - http://www.clarin.eu/cmd/ - - - <xpath>string(/cmd:CMD/cmd:Components/cmd:HI/cmd:ID)</xpath> - <label>Dataset</label> - <sort>true</sort> - <filter>true</filter> - - - string(/cmd:CMD/cmd:Components/cmd:HI/cmd:status) - - true - 'select' - - - \ No newline at end of file diff --git a/data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/clarin.eu:cr1:p_1708423613599.xml b/data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/clarin.eu:cr1:p_1708423613599.xml deleted file mode 100644 index 4ee419c..0000000 --- a/data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/clarin.eu:cr1:p_1708423613599.xml +++ /dev/null @@ -1,94 +0,0 @@ - - -
- clarin.eu:cr1:p_1708423613599 - HI - Huygens Dataset - development - clarin.eu:cr1:p_1650879720846 -
- - - - - - - under construction - publish - - - - - - - - - ccf_default - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - data - tools - - - - - - - - - - - - active - inactive - concept - moved - suspended - unsupported - work in progress - - - - - - - - - - - - - - - - - -
diff --git a/data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/tweaks/tweak-1.xml b/data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/tweaks/tweak-1.xml deleted file mode 100644 index d145eed..0000000 --- a/data/apps/nde/profiles/clarin.eu:cr1:p_1708423613599/tweaks/tweak-1.xml +++ /dev/null @@ -1,54 +0,0 @@ - - -
- clarin.eu:cr1:p_1708423613599 -
- - - - - default:creativecommons.org/licenses/by-nc-sa/4.0/ - - - default:www.huygens.knaw.nl - - - - now - - - now - - - now - - - - - now - - - now - - - default:creativecommons.org/licenses/by-nc-sa/4.0/ - - - - - - - skos_proxy.php?vocabulary=tadirah - - - skos_proxy.php?vocabulary=nwo-researchfields - - - skos_proxy.php?vocabulary=ineo-informationtypes - - - skos_proxy.php?vocabulary=ineo-mediatypes - - - -
diff --git a/data/apps/nde/records/.gitkeep b/data/apps/nde/records/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/apps/vocabs/config.toml b/data/apps/vocabs/config.toml deleted file mode 100644 index 3981fcb..0000000 --- a/data/apps/vocabs/config.toml +++ /dev/null @@ -1,28 +0,0 @@ -[app] -name="vocabs" -title="CLARIAH Vocabulary Editor" -prof="clarin.eu:cr1:p_1653377925723" - -[app.html] -title="string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:title)" - -[app.list] -ns.cmd="http://www.clarin.eu/cmd/" - -[app.list.identifier] -xpath="string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:identifier)" -label="Identifier" -sort="true" -filter="true" - -[app.list.name] -xpath="string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:title)" -label="Name" -sort="true" -filter="true" - -[app.list.status] -xpath="string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:status)" -label="Status" -sort="true" -filter="'select'" \ No newline at end of file diff --git a/data/apps/vocabs/config.xml b/data/apps/vocabs/config.xml deleted file mode 100644 index b6a43d5..0000000 --- a/data/apps/vocabs/config.xml +++ /dev/null @@ -1,31 +0,0 @@ - - vocabs - CLARIAH Vocabulary Editor - clarin.eu:cr1:p_1653377925723 - - string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:title) - - - - http://www.clarin.eu/cmd/ - - - string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:identifier) - - true - true - - - string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:title) - - true - true - - - string(/cmd:CMD/cmd:Components/cmd:Vocabulary/cmd:status) - - true - 'select' - - - \ No newline at end of file diff --git a/data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/clarin.eu:cr1:p_1653377925723.xml b/data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/clarin.eu:cr1:p_1653377925723.xml deleted file mode 100644 index c0f0ac3..0000000 --- a/data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/clarin.eu:cr1:p_1653377925723.xml +++ /dev/null @@ -1,237 +0,0 @@ - - -
- clarin.eu:cr1:p_1653377925723 - Vocabulary - Describe a vocabulary - development -
- - - - - - - new - review-in-progress - published - discarded - - - - - - - - - - - - csvw - linkml - owl - rdfs - relaxng - shacl - skos - sql ddl - xsd - - - - - - - (Use if applicable) if the vocabulary values are individual entities, choose the main type of entity being described. - - - - Concept - Organisation - Person - Place - - - - - - - - - - - - - - - - homepage - endpoint - dump - - - - - - - - - sparql - skosmos - elastic - solr - rdf - - - - - - - - - - - https://schema.org/about - - - - - - - - - - - - - - - new - review-in-progress - published - discarded - - - - - - - - - - - - - - - - - - - - - - - - - - homepage - endpoint - dump - - - - - - - - - sparql - skosmos - elastic - solr - rdf - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/tweaks/tweak-1.xml b/data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/tweaks/tweak-1.xml deleted file mode 100644 index 43dbaba..0000000 --- a/data/apps/vocabs/profiles/clarin.eu:cr1:p_1653377925723/tweaks/tweak-1.xml +++ /dev/null @@ -1,34 +0,0 @@ - - -
- clarin.eu:cr1:p_1653377925723 -
- - - - /proxy/skosmos/sd/nkostype - - - - - /proxy/skosmos/odissei/unesco - - - /proxy/skosmos/sd/nwo-researchfields - - - - - - - - - - - - - - - - -
diff --git a/data/apps/vocabs/records/.gitkeep b/data/apps/vocabs/records/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/apps/yugo/config.toml b/data/apps/yugo/config.toml deleted file mode 100644 index 3e2ff8b..0000000 --- a/data/apps/yugo/config.toml +++ /dev/null @@ -1,39 +0,0 @@ -[app] -name="yugo" -title="NIOD Yugoslavia Editor" -prof="clarin.eu:cr1:p_1721373443934" -lang.def="en" -lang.all.i1="en" -lang.all.i2="fr" -lang.all.i3="bos" - -[app.html] -title="string(//cmd:authorisedForm)" -style="yugo.css" - -[app.list] -ns.cmd="http://www.clarin.eu/cmd/" - -[app.list.identifier] -xpath="string(//cmd:identifier)" -label="identifier" -sort="true" -filter="true" - -[app.list.name] -xpath="string(//cmd:authorisedForm)" -label="authorised form" -sort="true" -filter="true" - -[app.list.type] -xpath="string(//cmd:typeOfInstitution)" -label="type" -sort="true" -filter="'select'" - -[app.list.status] -xpath="string(//cmd:status)" -label="status" -sort="true" -filter="'select'" \ No newline at end of file diff --git a/data/apps/yugo/config.xml b/data/apps/yugo/config.xml deleted file mode 100644 index 685ddfb..0000000 --- a/data/apps/yugo/config.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - yugo - NIOD Yugoslavia Editor - clarin.eu:cr1:p_1721373443934 - - en - - en - fr - bos - - - - string(//cmd:authorisedForm) - - - - - http://www.clarin.eu/cmd/ - - - string(//cmd:identifier) - - true - true - - - string(//cmd:authorisedForm) - - true - true - - - string(//cmd:typeOfInstitution) - - true - 'select' - - - string(//cmd:status) - - true - 'select' - - - - diff --git a/data/apps/yugo/output.xml b/data/apps/yugo/output.xml deleted file mode 100644 index 95c9215..0000000 --- a/data/apps/yugo/output.xml +++ /dev/null @@ -1,46 +0,0 @@ - - yugo - NIOD Yugoslavia Editor - clarin.eu:cr1:p_1721373443934 - - en - - en - fr - bos - - - - string(//cmd:authorisedForm) - - - - - http://www.clarin.eu/cmd/ - - - string(//cmd:identifier) - - true - true - - - string(//cmd:authorisedForm) - - true - true - - - string(//cmd:typeOfInstitution) - - true - 'select' - - - string(//cmd:status) - - true - 'select' - - - \ No newline at end of file diff --git a/data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/clarin.eu:cr1:p_1721373443934.xml b/data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/clarin.eu:cr1:p_1721373443934.xml deleted file mode 100644 index d5d7492..0000000 --- a/data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/clarin.eu:cr1:p_1721373443934.xml +++ /dev/null @@ -1,600 +0,0 @@ - - -
- clarin.eu:cr1:p_1721373443934 - CollectionHoldingInstitutions - Collection holdings Institutions and its collections - development -
- - - - - - under construction - publish - - - - - - - - - - - archival institution - international organisation - military organisation - private - research institution - media institution - - - - - - - - - - - - - - Region or province where CHI is located - - - Country where CHI is located - - - Telephone number of CHI - - - - - - - Addresses of CHI - - adress of CHI - - - - - - - - - - - - - - - - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - - Eng - BCS - - - - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - - Further accruals are expected - No further accruals are expected - Unknown - - - - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - - Eng - BCS - - - - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - - Further accruals are expected - No further accruals are expected - Unknown - - - - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - - Eng - BCS - - - - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - - Further accruals are expected - No further accruals are expected - Unknown - - - - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - - Eng - BCS - - - - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - - Further accruals are expected - No further accruals are expected - Unknown - - - - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - - - - -
diff --git a/data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/tweaks/tweak-1.xml b/data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/tweaks/tweak-1.xml deleted file mode 100644 index 9835cf1..0000000 --- a/data/apps/yugo/profiles/clarin.eu:cr1:p_1721373443934/tweaks/tweak-1.xml +++ /dev/null @@ -1,517 +0,0 @@ - -
- clarin.eu:cr1:p_1721373443934 - CollectionHoldingInstitutions - Collection holdings Institutions and its collections - development -
- - - - - - - - - - - - - - - - - level 1 - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - level 2 - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - level 3 - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - level 4 - - - Information about collection/fonds/archive - - - date of accumulation or creation - - - Level of Description - - - Extent And Medium - - - titles - - title - - - parallel forms of titles - - - - - archival history - - archival history - - - - - information about the content and structure of collection/archive - - scope and content of collection/archive - - - info - - - info - - - info - - - - conditions of access and use area - - Conditions governing access - - - Conditions Governing Reproduction - - - Language or scripts of material - - - Phyical Characteristics - - - Finding Aids - - - - Allied Materials Area - - Existence And Location Of Originals - - - Existence And Location Of Copies - - - Related Unit of Description - - - Pulication Note - - - - Notes - - Note - - - - Description Control Area - - Description Identifier DRE - - - Institution Identifier - - - Language Of description - - - Script of description - - - Sources - - - Archivists Note - - - Rules Or Conventions DRE Guidelines - - - Date or dates of description - - - - - - - - - - - Region or province where CHI is located - - - Country where CHI is located - - - Telephone number of CHI - - - - - - - Addresses of CHI - - adress of CHI - - - - - - - - - - - - - - - -
diff --git a/data/apps/yugo/records/.gitkeep b/data/apps/yugo/records/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/apps/yugo/records/record-1.2024-09-16.xml b/data/apps/yugo/records/record-1.2024-09-16.xml deleted file mode 100644 index 8969b8f..0000000 --- a/data/apps/yugo/records/record-1.2024-09-16.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - test - 2024-09-16 - unl://1 - clarin.eu:cr1:p_1721373443934 - - - - - - - - - - under construction - - test001 - internation organisation - - United Nations International Residual Mechanism for Criminal Tribunals - Nations Unies Mécanisme international appelé à exercer les fonctions résiduelles des Tribunaux pénaux - UN IRMCT - - - - - - ICTY - 1993-01-01 - 2017-12-31 - Fonds - 2,500 linear metres of physical records; 2 PB of digital records - - International Criminal Tribunal for the Former Yugoslavia (ICTY) - Tribunal pénal international pour l’ex-Yougoslavie - Međunarodni krivični sud za bivšu Jugoslaviju - - - - The fonds consists of documents, photographs,transctripts, video-recordings, electronic records and physical artefacts created, obtained and used in the course of the operation of the International Criminal Tribunal for the former Yugoslaiva (ICTY), between its inception in 1993 and its closure in 2017. The fonds include the records of three ICTY organs: the Chambers, the Office of the Prosecutor and the Registry, and document various - aspects of the ICTY's operations. The fonds is divided into two broad categories, judicial records and non-judicial records. - No further accruals are expected. - The records of the ICTY fonds are divided into two broad categories: judicial case records and non-judicial records. Judicial case records (ICTY/JCR) are arranged in the catalogue by case, and then by the four main series of records generated during a case: filings, exhibits, transcripts, and audiovisual recordings of proceedings. Non-judicial records are arranged by function, following the ICTY retention schedule. The non-judicial - records are divided into (1) records related to the judicial process, but which are not part of the case records, including functions carried out by the Office of the Prosecutor (OTP), and (2) administrative records. Records related to the judicial process but not part of the case records consist of: ICTY/JPM: Judicial proceedings management ICTY/PTP: Pre-trial proceedings management ICTY/TPM: Trial proceedings management ICTY/RPM: Review proceedings management - ICTY/APM: Appeal proceedings management ICTY/PFJ: Post-final-judgement proceedings management ICTY/CAS: Court administration and support ICTY/DEM: Detention management ICTY/EAC: Expert and amicus curiae administration ICTY/JRM: Judicial records management ICTY/LSM: Language services management ICTY/SEE: Sentence enforcement ICTY/WAS: Witness assistance, support and protection ICTY/DTA: Defence Team administration ICTY/DET: Defence Team assistance ICTY/FAM: Financial - aid management ICTY/INV: Investigation management ICTY/IND: ICTY indictment management ICTY/ART: Arrest and transfer ICTY/PPD: Prosecution policy and procedure development ICTY/PPT: Prosecution – pre-trial proceedings ICTY/PTR: Prosecution – trail proceedings ICTY/PRP: Prosecution – review proceedings ICTY/PAP: Prosecution – appeal proceedings +I1 ICTY/CRS: Case referral and support ICTY/FUT: Fugitive tracking ICTY/INM: Information management ICTY/INS: Information - support ICTY/REA: Research and analysis ICTY/FRM: Request for Assistance (RFA) management Administrative records consist of: ICTY/AUM: Audit management ICTY/BUD: Budget management ICTY/FIM: Finance management ICTY/HRM: Human resources management ICTY/ICT: Information and Communications Technology (ICT) management ICTY/IMA: Insurance management ICTY/MSM: Mail services management ICTY/PRM: Premises management ICTY/PCM: Procurement management ICTY/PMA: Property - management ICTY/SSM: Security management ICTY/TRM: Travel management ICTY/ERM: External relations management ICTY/OPM: Outreach Programme management ICTY/PIC: Public information management ICTY/GOV: Governance ICTY/EOR: ICTY Executive Offices records ICTY/RMA: Records management ICTY/AMA: Archives management In addition, there are five series of Special Collections which consists of: ICTY/COL/1: ICTY Official Photograph Collection ICTY/COL/2: ICTY Oral history project - ICTY/COL/3: ICTY Staff Union ephemera ICTY/COL/4: ICTY Ephemera Collection ICTY/COL/5: ICTY Legacy Dialogues records - - - Access to records is subject to the Access Policy for the Records held by the International Residual Mechanism for Criminal Tribunals (MICT/17/Rev.1). (https://www.irmct.org/sites/default/files/documents/190104-acces-policy-records-irmct.pdf) - English; French; Bosnian; Croatian; Serbian; Macedonian; Albanian; Latin; Serbian Cyrilic; Macedonian Cyrilic; - Catalogue (https://irm-apw.adlibhosting.com/results); United Court Records Databaase User Guide (https://www.irmct.org/sites/default/files/documents/2020-09-Unified-Court-Records-User-Guide.pdf) - - - DRE author - Eng; - Latin; - www.icty.org; - ISAD(G); DRE Guidelines - 2024-07-16 - - - - - - ICTY/ JCR - 1993-01-01 - 2017-12-31 - Sub-fonds - - ICTY judicial case records - - - - The sub-fonds contains judicial case records for ICTY cases. The ICTY's Office of the Prosecutor (OTP) issued its first indictment in November 1994. Between then and 2004, when the Security Council mandated the end of investigations as part of the ICTY's completion strategy, the OTP issued indictments against 161 individuals for crimes allegedly committed during the wars in Croatia (1991-1995), Bosnia and Herzegovina (1992-1995), - Kosovo (1999) and North Macedonia (2001). In addition to the individuals from these countries, a number of people from Federal Republic of Yugoslavia (which comprised Serbia and Montenegro) were indicted for crimes allegedly committed in Croatia, BiH and Kosovo. - Permanent retention - No further accruals are expected. - he records are arranged by case and usually consist of: 1. filings – records related to the case which were submitted by a Chamber, Judge, Party or Non-Party (“Submitting Party”) and entered in the Case File by the Court Records Office 2. exhibits – records formally admitted into evidence by a Chamber 3. transcripts – verbatim, written records of court hearings or other proceedings before the Tribunal 4. audiovisual - recordings of court hearings or other proceedings There is a catalogue entry for each of these types of records for each case. However, not all of these types of records were created for every case. Where no such records were created for the case in question, the relevant catalogue entry will note this. In addition to the Case File, a separate file was kept for correspondence related to the case (addressed to/from the Chamber, a Judge, a Party or a Non-Party) - that was not submitted for filing or annexed to a filing as supporting material ("Correspondence File"). This correspondence was not part of the case record, but was maintained separately by the Court Management and Support Services Section. - - - Access to records is subject to the Access Policy for the Records held by the International Residual Mechanism for Criminal Tribunals (MICT/17/Rev.1) (https://www.irmct.org/sites/default/files/documents/190104-acces-policy-records-irmct.pdf) - English; French; Bosnian; Croatian; Serbian; Macedonian; Albanian; Dutch; Spanish; Norwegian; English Latin; French Latin; Bosnian/ Croatian Latin; Serbian Cyrilic; Macedonian Cyrilic; Albanian Latin; - Catalogue (https://irm-apw.adlibhosting.com/results); United Court Records Databaase User Guide (https://www.irmct.org/sites/default/files/documents/2020-09-Unified-Court-Records-User-Guide.pdf) - - - For judicial case correspondence files, see ICTY/CAS/8 - - - - - - - - diff --git a/data/apps/yugo/records/record-1.xml b/data/apps/yugo/records/record-1.xml deleted file mode 100644 index ac0867e..0000000 --- a/data/apps/yugo/records/record-1.xml +++ /dev/null @@ -1,11 +0,0 @@ -service2024-10-06unl://1clarin.eu:cr1:p_1721373443934under constructiontest001United Nations International Residual Mechanism for Criminal TribunalsNations Unies Mécanisme international appelé à exercer les fonctions résiduelles des Tribunaux pénauxUN IRMCTICTY1993 2017Fonds2,500 linear metres of physical records; 2 PB of digital recordsInternational Criminal Tribunal for the Former Yugoslavia (ICTY)Tribunal pénal international pour l’ex-Yougoslavie Međunarodni krivični sud za bivšu JugoslavijuThe fonds consists of documents, photographs,transctripts, video-recordings, electronic records and physical artefacts created, obtained and used in the course of the operation of the International Criminal Tribunal for the former Yugoslaiva (ICTY), between its inception in 1993 and its closure in 2017. The fonds include the records of three ICTY organs: the Chambers, the Office of the Prosecutor and the Registry, and document various - aspects of the ICTY's operations. The fonds is divided into two broad categories, judicial records and non-judicial records. No further accruals are expected. The records of the ICTY fonds are divided into two broad categories: judicial case records and non-judicial records. Judicial case records (ICTY/JCR) are arranged in the catalogue by case, and then by the four main series of records generated during a case: filings, exhibits, transcripts, and audiovisual recordings of proceedings. Non-judicial records are arranged by function, following the ICTY retention schedule. The non-judicial - records are divided into (1) records related to the judicial process, but which are not part of the case records, including functions carried out by the Office of the Prosecutor (OTP), and (2) administrative records. Records related to the judicial process but not part of the case records consist of: ICTY/JPM: Judicial proceedings management ICTY/PTP: Pre-trial proceedings management ICTY/TPM: Trial proceedings management ICTY/RPM: Review proceedings management - ICTY/APM: Appeal proceedings management ICTY/PFJ: Post-final-judgement proceedings management ICTY/CAS: Court administration and support ICTY/DEM: Detention management ICTY/EAC: Expert and amicus curiae administration ICTY/JRM: Judicial records management ICTY/LSM: Language services management ICTY/SEE: Sentence enforcement ICTY/WAS: Witness assistance, support and protection ICTY/DTA: Defence Team administration ICTY/DET: Defence Team assistance ICTY/FAM: Financial - aid management ICTY/INV: Investigation management ICTY/IND: ICTY indictment management ICTY/ART: Arrest and transfer ICTY/PPD: Prosecution policy and procedure development ICTY/PPT: Prosecution – pre-trial proceedings ICTY/PTR: Prosecution – trail proceedings ICTY/PRP: Prosecution – review proceedings ICTY/PAP: Prosecution – appeal proceedings +I1 ICTY/CRS: Case referral and support ICTY/FUT: Fugitive tracking ICTY/INM: Information management ICTY/INS: Information - support ICTY/REA: Research and analysis ICTY/FRM: Request for Assistance (RFA) management Administrative records consist of: ICTY/AUM: Audit management ICTY/BUD: Budget management ICTY/FIM: Finance management ICTY/HRM: Human resources management ICTY/ICT: Information and Communications Technology (ICT) management ICTY/IMA: Insurance management ICTY/MSM: Mail services management ICTY/PRM: Premises management ICTY/PCM: Procurement management ICTY/PMA: Property - management ICTY/SSM: Security management ICTY/TRM: Travel management ICTY/ERM: External relations management ICTY/OPM: Outreach Programme management ICTY/PIC: Public information management ICTY/GOV: Governance ICTY/EOR: ICTY Executive Offices records ICTY/RMA: Records management ICTY/AMA: Archives management In addition, there are five series of Special Collections which consists of: ICTY/COL/1: ICTY Official Photograph Collection ICTY/COL/2: ICTY Oral history project - ICTY/COL/3: ICTY Staff Union ephemera ICTY/COL/4: ICTY Ephemera Collection ICTY/COL/5: ICTY Legacy Dialogues recordsAccess to records is subject to the Access Policy for the Records held by the International Residual Mechanism for Criminal Tribunals (MICT/17/Rev.1). (https://www.irmct.org/sites/default/files/documents/190104-acces-policy-records-irmct.pdf)English; French; Bosnian; Croatian; Serbian; Macedonian; Albanian; Latin; Serbian Cyrilic; Macedonian Cyrilic; Catalogue (https://irm-apw.adlibhosting.com/results); United Court Records Databaase User Guide (https://www.irmct.org/sites/default/files/documents/2020-09-Unified-Court-Records-User-Guide.pdf)DRE authorEng; Latin; www.icty.org; ISAD(G); DRE Guidelines2024-07-16ICTY/ JCR1993-01-01 2017-12-31Sub-fondsICTY judicial case recordsThe sub-fonds contains judicial case records for ICTY cases. The ICTY's Office of the Prosecutor (OTP) issued its first indictment in November 1994. Between then and 2004, when the Security Council mandated the end of investigations as part of the ICTY's completion strategy, the OTP issued indictments against 161 individuals for crimes allegedly committed during the wars in Croatia (1991-1995), Bosnia and Herzegovina (1992-1995), - Kosovo (1999) and North Macedonia (2001). In addition to the individuals from these countries, a number of people from Federal Republic of Yugoslavia (which comprised Serbia and Montenegro) were indicted for crimes allegedly committed in Croatia, BiH and Kosovo. Permanent retention No further accruals are expected. he records are arranged by case and usually consist of: 1. filings – records related to the case which were submitted by a Chamber, Judge, Party or Non-Party (“Submitting Party”) and entered in the Case File by the Court Records Office 2. exhibits – records formally admitted into evidence by a Chamber 3. transcripts – verbatim, written records of court hearings or other proceedings before the Tribunal 4. audiovisual - recordings of court hearings or other proceedings There is a catalogue entry for each of these types of records for each case. However, not all of these types of records were created for every case. Where no such records were created for the case in question, the relevant catalogue entry will note this. In addition to the Case File, a separate file was kept for correspondence related to the case (addressed to/from the Chamber, a Judge, a Party or a Non-Party) - that was not submitted for filing or annexed to a filing as supporting material ("Correspondence File"). This correspondence was not part of the case record, but was maintained separately by the Court Management and Support Services Section.Access to records is subject to the Access Policy for the Records held by the International Residual Mechanism for Criminal Tribunals (MICT/17/Rev.1) (https://www.irmct.org/sites/default/files/documents/190104-acces-policy-records-irmct.pdf)English; French; Bosnian; Croatian; Serbian; Macedonian; Albanian; Dutch; Spanish; Norwegian; English Latin; French Latin; Bosnian/ Croatian Latin; Serbian Cyrilic; Macedonian Cyrilic; Albanian Latin; Catalogue (https://irm-apw.adlibhosting.com/results); United Court Records Databaase User Guide (https://www.irmct.org/sites/default/files/documents/2020-09-Unified-Court-Records-User-Guide.pdf)For judicial case correspondence files, see ICTY/CAS/8 \ No newline at end of file diff --git a/data/apps/yugo/records/record-2.xml b/data/apps/yugo/records/record-2.xml deleted file mode 100644 index 9232283..0000000 --- a/data/apps/yugo/records/record-2.xml +++ /dev/null @@ -1,2 +0,0 @@ - -test2024-09-16unl://2clarin.eu:cr1:p_1721373443934under constructionDRE_CHI_002archiveSrebrenica Genocide Blog2006-01-01Webpage, containing articles and video materials.Srebrenica Genocide BlogThis webpage is dedicated to the massacre in Srebrenica on the 11th of July in 1995, as well as several events that predated it. The websource contains written articles, as well as video footage that is linked to the Youtube-page Bosnian Genocide. This material comes from several sources, and contains primary footage from journalists. The last addition to this webpage was in 2013.The webpage is divided in several articles, that can be accessed through the homepage.Open AccessThe descriptions of the Youtube videos indicate the copyright status for the individual video.English, BCSEngLathttps://srebrenica-genocide.blogspot.com/ISAD(G); DRE guidelines; 2024-09-11unknownunknownunknownunknownunknownhttps://srebrenica-genocide.blogspot.com/unknown diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 7831505..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,44 +0,0 @@ -version: '2' - -services: - sd-editor: - image: registry.diginfra.net/tsd/huc-editor-services:2.0-RC1 - environment: - - BASE_URL=https://editor.sd.di.huc.knaw.nl - labels: - - "traefik.enable=true" - - "traefik.http.services.sd-editor.loadbalancer.server.port=1210" - - "traefik.http.routers.sd-editor.entrypoints=http" - - "traefik.http.routers.sd-editor.rule=Host(`editor.sd.di.huc.knaw.nl`)" - volumes: - - ./conf:/home/huc/huc-editor-service/conf - - ./data:/home/huc/huc-editor-service/data - networks: - - sd-editor - ports: - - '1210:1210' - niod-yugo-backup: - build: - context: . - dockerfile: ./Dockerfile.backup - restart: unless-stopped - environment: - BACKUP_HOUR: "01" - BACKUP_MINUTE: "35" - BACKUP_NAME: "sd-editor" - BACKUP_LOCATION: "/backup/data" - BACKUP_FILE: "$BACKUP_LOCATION/$BACKUP_NAME.tgz" - volumes: - - ./data/backup:/backup/data # in prod change to /backup/data:/backup/data - - ./conf:/data/conf - - ./data:/data/data - networks: - - sd-editor - depends_on: - - sd-editor - -networks: - sd-editor: - #external: false - external: - name: traefik-public diff --git a/editor_backup.sh b/editor_backup.sh deleted file mode 100644 index e362e03..0000000 --- a/editor_backup.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -B="$BACKUP_NAME-`date +%y%m%d%H%M`" -mkdir -p /opt/local-backup/$B -cd /opt/local-backup/$B -cp -rp /data/* . -tar cvfz $BACKUP_FILE . \ No newline at end of file diff --git a/resources/static/css/yugo.css b/resources/static/css/yugo.css index ed123ad..b1af50c 100644 --- a/resources/static/css/yugo.css +++ b/resources/static/css/yugo.css @@ -1,5 +1,5 @@ .compLevel2 { - opacity: 0.89 !important; + background-color: red !important; } .compLevel3 {