Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
miriamaltawil committed Jun 28, 2023
2 parents c8a1d3a + ae4a35f commit 14b3c8a
Show file tree
Hide file tree
Showing 36 changed files with 1,298 additions and 33 deletions.
19 changes: 19 additions & 0 deletions 080_scripts_generic/080_02_Validation/Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
jupyterlab = "*"
sharepy = "*"
saxonpy = "==0.0.2"
nbconvert = "*"
pexpect = "*"
importlib-resources = "*"
importlib_metadata = "*"
zipp = "*"

[dev-packages]

[requires]
python_version = "3.8"
1,136 changes: 1,136 additions & 0 deletions 080_scripts_generic/080_02_Validation/Pipfile.lock

Large diffs are not rendered by default.

110 changes: 110 additions & 0 deletions 080_scripts_generic/080_02_Validation/Validate.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "10b266e6-704d-42fd-97a9-10b949d258ef",
"metadata": {},
"source": [
"# WIBARAB Data Validation workflow"
]
},
{
"cell_type": "markdown",
"id": "fe888d08-b9a0-4b34-b00f-ddf3d8578648",
"metadata": {},
"source": [
"**Author:** Daniel Schopper \n",
"**Description:** This notebook automates the validation of WIBARAB FeatureDB documents. When finished, it should be ported to a non-interactive script which is triggered by a github action. \n",
"**Last Change:** 2023-01-25"
]
},
{
"cell_type": "markdown",
"id": "134100b6-fb65-4005-b443-4ce066cfc2b1",
"metadata": {},
"source": [
"## Step 0: Setup"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "168ac7aa-17be-4d43-9948-2c1561704f76",
"metadata": {},
"outputs": [],
"source": [
"import io\n",
"import os\n",
"import requests\n",
"import pathlib\n",
"\n",
"from pathlib import Path\n",
"from urllib.parse import urlsplit\n",
"from saxonpy import PySaxonProcessor, PyXdmValue\n",
"from zipfile import ZipFile\n",
"\n",
"from datetime import datetime\n",
"# from inspect import getmembers, signature"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "4130078c-f5c9-453d-a097-daee63e62729",
"metadata": {},
"outputs": [],
"source": [
"def transform(s, xsl, o, parameters=[]):\n",
" # no change in behavior\n",
" proc.set_configuration_property(\"xi\", \"on\")\n",
" saxon = proc.new_xslt_processor()\n",
" saxon.set_source(file_name=os.path.abspath(s))\n",
" for i in parameters:\n",
" saxon.set_parameter(name=i, value=proc.make_string_value(parameters[i]))\n",
" saxon.compile_stylesheet(stylesheet_file=os.path.abspath(xsl))\n",
" saxon.set_output_file(os.path.abspath(o))\n",
" saxon.transform_to_string()\n",
" if saxon.exception_occurred():\n",
" #print(getmembers(saxon))\n",
" saxon.get_error_message(0)\n",
" for i in range(saxon.exception_count()-1):\n",
" print(saxon.get_error_message(0))\n",
" print(os.path.abspath(s)+\" - \"+os.path.abspath(xsl)+\" -> \"+os.path.abspath(o)+\" failed\")\n",
" return o # for chaining\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "755ff6ce-51e3-4758-be5e-c3a778d8bb3e",
"metadata": {},
"outputs": [],
"source": [
"## Step 1: Expand References\n",
"\n",
"The WIBARAB Feature Documents contain "
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-011_Cemetry-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:32.256Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:27.625Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-012_Lentils-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:17.645Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:15.214Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-014_Village_of_Qoran-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:42.213Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:36.511Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:45.104Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:39.103Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-027_In_the_village_in_former_times-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:33.266Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:28.629Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-033_Sheikh_Nifil-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:27.66Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:23.669Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-042_Hospitality-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:40.905Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:35.389Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-045_Gamra_Dariba-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:40.355Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:34.917Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-046_Game_Xwetime-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:28.515Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:24.524Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-047_Game_Qubbeya-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:27.146Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:23.199Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-048_Game_Cab-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:39.807Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:34.434Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-057_Story_of_Magician-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:18.435Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:15.884Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-061_Life_of_al-Harrani-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:38.998Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:33.628Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-072_Villages-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:22.646Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:19.64Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-077_Jinn-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:46.845Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:40.657Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-092_Sultan_Murad-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:24.33Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:21.043Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-094_Three_Advices-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:20.019Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:17.229Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-097_Three_Daughters-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:43.189Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:37.268Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-098_Young_Woman-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:46.302Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:40.18Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-105_Life_in_Former_Times-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:26.167Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:22.514Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-106_Visa_in_Ankara-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:35.155Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:30.501Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-107_Cotton_Business-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:30.267Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:26.214Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-110_Salim_az-Zir-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:19.187Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:16.543Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-115_Camel-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:34.509Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:29.982Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-119_Engagement-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:38.089Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:32.89Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-120_Cross_Marriage-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:44.614Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:38.523Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-122_Nimrod-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:29.37Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:25.45Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-123_Stealing_Boy_P1-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:23.815Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:20.608Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
2 changes: 1 addition & 1 deletion 103_tei_w/Urfa-124_Stealing_Boy_P2-Harran-2010.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?standoff fn="shawi_standoff.xml" path=""?>
<?attributeAssignments fn="shawi_attributes.xml" path="{filePath}/../880_conf/"?>
<?shortCuts fn="shawi_shortCuts" path="{filePath}/../880_conf/"?>
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:22:43.926Z-->
<!--THIS FILE WAS PROGRAMMATICALLY CREATED by mergeHeaderAndTranscription.xsl on/at2023-06-28T13:32:37.786Z-->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
Expand Down
Loading

0 comments on commit 14b3c8a

Please sign in to comment.