-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path1100.xml
1010 lines (1009 loc) · 47.3 KB
/
1100.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?oxygen RNGSchema="enrich-syriaca.rnc" type="compact"?>
<?xml-stylesheet type="text/css" href="SRPEnrichCSS.css"?>
<TEI xml:lang="en" xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader xmlns="http://www.tei-c.org/ns/1.0">
<fileDesc>
<titleStmt>
<title xml:lang="en">BLL Add MS 17272</title>
<sponsor>Syriaca.org: The Syriac Reference Portal</sponsor>
<funder>The National Endowment for the Humanities</funder>
<funder>The Andrew W. Mellon Foundation</funder>
<principal>David A. Michelson</principal>
<editor role="general-editor" ref="http://syriaca.org/documentation/editors.xml#dmichelson">David A. Michelson</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#wwright">William Wright</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#dmichelson">David A. Michelson</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#pgmiller">Peter G. Miller</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#raydin">Robert Aydin</editor>
<respStmt>
<resp>Created by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#pgmiller">Peter G. Miller</name>
</respStmt>
<respStmt>
<resp>Based on the work of</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#wwright">William Wright</name>
</respStmt>
<respStmt>
<resp>Edited by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#pgmiller">Peter G. Miller</name>
</respStmt>
<respStmt>
<resp>Syriac text entered by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#raydin">Robert Aydin</name>
</respStmt>
<respStmt>
<resp>Greek and coptic text entry and proofreading by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#rstitt">Ryan Stitt</name>
</respStmt>
<respStmt>
<resp>Project management by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#ewalston">Elizabeth Walston</name>
</respStmt>
<respStmt>
<resp>English text entry and proofreading by</resp>
<name type="org" ref="http://syriaca.org/documentation/editors.xml#uasyriacaresearchgroup">Syriac Research Group, University of Alabama</name>
</respStmt>
</titleStmt>
<editionStmt>
<edition n="1.0"/>
</editionStmt>
<publicationStmt>
<pubPlace/>
<authority>Syriaca.org: The Syriac Reference Portal </authority>
<idno type="URI">http://syriaca.org/manuscript/1100/tei</idno>
<availability>
<p/>
<licence target="http://creativecommons.org/licenses/by/3.0/">
<p>Distributed under a Creative Commons Attribution 3.0 Unported License</p>
</licence>
</availability>
<date calendar="Gregorian"><!-- Our date of publication of this XML document--></date>
</publicationStmt>
<sourceDesc>
<msDesc xml:id="manuscript-1100" xml:lang="en">
<msIdentifier>
<country>United Kingdom</country>
<settlement>London</settlement>
<repository>British Library</repository>
<collection>Oriental Manuscripts</collection>
<idno type="URI">http://syriaca.org/manuscript/1100</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272</idno>
</altIdentifier>
</msIdentifier>
<msPart n="1" xml:id="Part1">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1101</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 1-29</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">388</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">CCCLXXXVIII</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p1a1" defective="true">
<locus from="1a" to="29b">foll. 1a-29b</locus>
<title type="supplied">A service for the Commemoration of Gabriel of Kartamīn, on the 23d of the 1st Kānūn</title>
<rubric xml:lang="syr">ܒܫܡܐ ܕܡܪܢ ܝܫܘܥ ܡܫܝܚܐ ܦܪܘܩܢ ܟ̇ܬܒܝܢܢ ܛܟܣ̣ܐ ܕܥܠ ܢܨܝܚܐ ܘ[ܩܕܝܫܐ] ܡܪܝ ܓܒܪܐܝܠ. ܕܥܘܡܪܐ ܩܕ ܕܡܪܝ ܫܡܥܘܢ ܕܩܪܬܡܝܢ ܕܒܛܘܪ ܥܒ̣̈ܕ[ܝܢ]
<locus from="1a" to="1a"/>
</rubric>
<note>Margain:</note>
<quote xml:lang="syr">ܒܥܣܪ̈ܝܢ ܘܬܠ̈ܬܐ ܒܟܢܘܢ ܩܕܡܝܐ
<locus/>
</quote>
<note>A few words, in a different hand, request a prayer for one Aaron, a priest, and his brother Phineas</note>
<quote xml:lang="syr">ܨܠܘ ܡܛܠ ܚܘܒܗ ܕܡܫܝܚܐ ܥܠ ܕܘܝܐ ܘܚܛܝܐ ܕܣܪܛ ܐܝܟ ܚܲܝܠܗ ܘܥܠ ܐܒܗ̈ܘܗܝ ܘܥܠ ܐܚܗܘ̈ܗܝ (sic) ܘܥܠ ܐܚܐ ܕܝܲܠ (sic) ܦܝܢܚܣ ܘܥܠ ܬܠܡܝܕܐ ܕܝܠܟܘܢ ܐܗܪܘܢ ܒܫܡ ܩܲܫܘܢܐ.
<locus/>
</quote>
<colophon>
<ref target="#p1addition1">See below.
</ref>
</colophon>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="29">29 ff.</measure>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="6.75" unit="in">6 3/4</measure>
</height>
<width>
<measure type="width" quantity="5" unit="in">5</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>The quires, signed with letters, are four in number.</p>
</collation>
<condition>
<list>
<item>
<p>29 leaves, the first of which is slightly stained and torn.</p>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="1" writtenLines="13 17">
<p>There are from 13 to 17 lines in each page. </p>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="2">
<handNote xml:id="p1handNote1" scope="major" script="syr" medium="unknown">
<desc>This manuscript is written in a good, regular hand of the xiiith cent.</desc>
</handNote>
<handNote xml:id="p1handNote2" scope="minor" script="syr" medium="unknown">
<desc>A few words, in a different hand, request a prayer for one Aaron, a priest, and his brother Phineas.</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions>
<list>
<item n="1" xml:id="p1addition1">
<locus from="29" to="29"/>
<p>The colophon states that it was written for one rabban Bar-saumā</p>
<p><quote xml:lang="syr">ܨܲܠܘ ܡܛܠ ܚܘܒܗ ܕܡܫܝܚܐ ܥܠ ܕܘܝܐ ܘܚܛܝܐ ܕܣܪܛ ܐܝܟ ܚܲܝܠܗ ܘܥܠ ܐܒܗ̈ܘܗܝ. ܘܥ̈ܠ ܪܒܢ ܒܪܨܘܡܐ ܘܥ̈ܠ ܐܒܗ̈ܘܗܝ ܕܗ̣ܘ ܝ̣ܨܦ ܕܢܬܟ̣ܬܒ ܘܫ. </quote></p>
</item>
</list>
</additions>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<origin>
<origDate notBefore="1200" notAfter="1300">xiiith cent.</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart1">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart1"><!-- Note that this <bibl> entry is identified as Wrightpart1 since Part 2 will use a different cited range. -->
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">CCCLXXXVIII</citedRange>
<citedRange unit="pp">I:311</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="2" xml:id="Part2">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1102</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 30-63</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">671</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">DCLXXI</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p2a1" defective="true">
<locus from="30a" to="63b"/>
<author ref="http://syriaca.org/person/42">Ascribed to Jacob of Batnae</author>
<title type="supplied">A metrical discourse on Gabriel of Kartamīn</title>
<finalRubric xml:lang="syr">ܫܠ̣ܡ ܡܐܡܪܐ ܕܡܪܝ ܝܥܩܘܒ ܕܥܠ ܡܪܝ ܓܒܪܐܝܠ ܨܠܘܬܗ ܥܡܢ ܐܡܝܢ ܫܢܬ ܐܠܦܐ ܘܬܬܥܘ. ܐܠܗܐ ܒܪ̈ܚܡܐ ܪܕܝ ܠܢ ܘܫ.
<locus from="63" to="63"/>
</finalRubric>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="34"/>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="6.5" unit="in">6 1/2</measure>
</height>
<width>
<measure type="width" quantity="4.5" unit="in">4 1/2</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>The quires, signed with letters, are 5 in number, but the first is imperfect at the beginning.</p>
</collation>
<condition>
<list>
<item>
<p>34 leaves, of which the first and the last two are much torn.</p>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="1" writtenLines="14 19">
<p>There are from 14 to 19 lines in each page.</p>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="1">
<handNote xml:id="p2handNote1" scope="sole" script="syr" medium="unknown">
<desc>This manuscript, which is written in an inelegant hand, with numerous Greek and Syriac vowels, and dated A. Gr. 1876, A.D. 1565</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions/>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<summary/>
<origin>
<origDate notBefore="1565" notAfter="1565">A. Gr. 1876, A.D. 1565</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart2">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart2">
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">DCLXXI</citedRange>
<citedRange unit="pp">II:517</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="3" xml:id="Part3">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1103</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 64-67</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">968</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">DCCCCLXVIII</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p3a1" defective="true">
<locus from="64" to="67">foll. 64-67</locus>
<title type="supplied">Part of a life of <persName ref="http://syriaca.org/person/376">Basil of Caesarea</persName>, perhaps that ascribed to his successor <persName>Helladius</persName></title>
<msItem n="2" xml:id="p3b1" defective="true">
<rubric xml:lang="syr">ܬܕܡܘܪܬܐ ܕܩܕܝܫܐ ܒܣܝܠܝܘܣ ܡܛܠ ܚܙܘܐ ܕܐܒܘܢ ܐܦܪܝܡ. ܠܐ ܟܬܝܒܐ ܒܕܘܟܬܗ̇
</rubric>
</msItem>
<msItem n="3" xml:id="p3b2" defective="true">
<rubric xml:lang="syr">ܬܫܥܝܬܐ ܕܐܢܬܬܐ ܕܐܫܬܒ̣ܩ ܠܗ̇ ܚ̈ܛܗܗ (sic) ܒܝܕ ܨ̈ܠܘܬܗ ܕܩܕܝܫܐ ܒܣܝܠܝܘܣ
</rubric>
</msItem>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="4">4 ff.</measure>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="6.625" unit="in">6 5/8</measure>
</height>
<width>
<measure type="width" quantity="5.125" unit="in">5 1/8</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>Four paper leaves</p>
</collation>
<condition>
<list>
<item>
<p>All leaves more or less stained and torn</p>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="1" writtenLines="22 25">
<p>The number of lines in each page varies from 22 to 25.</p>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="1">
<handNote xml:id="p3handNote1" scope="sole" script="syr" medium="unknown">
<desc>The writing is good and regular, apparently of the xiith cent.</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions/>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<origin>
<origDate notBefore="1100" notAfter="1200">xiith cent.</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/><!-- This will likely not be used as this refers only to the acquisition by the final/current owner, i.e., the British Library. -->
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart1">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart3">
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">DCCCCLXVIII</citedRange>
<citedRange unit="pp">III:1148</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="4" xml:id="Part4">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1104</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 68-74</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">879</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">DCCCLXXIX</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p4a1" defective="true">
<locus from="68" to="74">foll. 68-74</locus>
<title type="supplied">An account of a Letter that was sent down from Heaven to the church of S. Paul at Constantinople, in the year 1057 (A.D. 746)</title>
<rubric xml:lang="syr">. . . ܕܡܪܢ ܝܫܘܥ ܡܫܝܚـ[ـܐ] ܟܬ[ܒܝـ]ـܢܢ ܐܓܪܬܐ ܕܢܚܬܬ ܡܢ ܫܡܝܐ܀ ܬܫܒܘܚܬܐ ܠܐܠܗܐ ܒܡܪ̈ܘܡܐ. [ܘܥܠ] ܐܪܥܐ ܫܠܡܐ. ܘܣܒܪܐ ܛ̇ܒܐ ܠܒܢܝـ[ـܢ̈ܫܐ.] ܒܫܢܬ ܐܠܦܐ ܘܚܡ̈ܫܝܢ ܘܫ̈ܒܥ ܕܐܠܟܣܢܕܪܘܣ ܒܥܣܪ̈ܝܢ ܒܝܐܪܚܐ ܢܝـ[ـܣܢ] ܐܬܚ̣ܙܝܬ ܐܓܪܬܐ ܗܕܐ ܒܩܘܣܛܢܛܝܢܐܦܘܠܝܣ. ܟܕ ܥܡܐ ܣ̇ܓܝܐܐ ܟܢܝ̣ܫ ܗܘܐ ܒܗܝܟܠܐ ܕܡܬܩܪܐ ܕܦܘܠܘܣ ܫܠܝܚܐ. ܟܗ̈ܢܐ ܘܡܫ̈ܡܫܢܐ. ܘܫ.
<locus from="68" to="68"/>
</rubric>
<quote xml:lang="syr">ܘܟܬܝܒ ܒܐܓܪܬܐ ܗܕܐ ܗܟܢܐ. ܕܫܕܪܬ ܠܘܬܟܘܢ ܐܓܪܬܐ ܐܚܪܝܬܐ̣. ܘܠܐ ܥܒ̣ܕܬܘܢ ܗ̇ܘ ܡܐ ܕܐܝܬܘܐ (sic) ܒܗ̇. ܒܫܢܬ ܐܠܦܐ ܘܐܪ̈ܒܥܝܢ ܘܬܪ̈ܬܝܢ ܕܐܠܟܣܢܕܪܘܣ. ܘܫܕܪܬ ܐܓܪܬܐ ܕܬܪ̈ܬܝܢ ܒܫܢܬ ܐܠܦܐ ܘܚ̈ܡܫܝܢ. ܕܬܬܘܒܘܢ ܡܢ ܥ̣ܒ̈ܕܝܟܘܢ ܒܝ̈ܫ̣ܐ. ܘܫ.
</quote>
<note>In the letter itself allusion is made to previous letters of the year 1042 and 1050.</note>
<listBibl>
<bibl>Assemani, Bibl. Or., t. iii., pars i, p. 638, cod. Arab, xviii.</bibl>
<bibl>Dillmann's Catal. of the AEtbiopic MSS. in the Bodleian Library, p. 13, cod. xiv., A</bibl>
<bibl>Praetorius, Mazbafa Tomār, Leipzig, 1869</bibl>
</listBibl>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="7">7 ff.</measure>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="7.75" unit="in">7 3/4</measure>
</height>
<width>
<measure type="width" quantity="5" unit="in">5</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>Seven paper leaves</p>
</collation>
<condition>
<list>
<item>
<p>Slightly torn</p>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="1" writtenLines="13 15">
<p>There are from 13 to 15 lines in each page.</p>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="1">
<handNote xml:id="p4handNote1" scope="sole" script="syr" medium="unknown">
<desc>Written in an inelegant hand of the xiiith cent.</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions/>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<origin>
<origDate notBefore="1200" notAfter="1300">xiiith cent.</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart1">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart4">
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">DCCCLXXIX</citedRange>
<citedRange unit="pp">II:1022-1023</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="5" xml:id="Part5">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1105</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 75-99</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">361</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">CCCLXI</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p5a1" defective="true">
<locus from="75a" to="99">foll. 75a-99</locus>
<title type="supplied">Services for various festivals, comprising ܨ̈ܠܘܬܐ, ܦܪ̈ܘܡܝܘܢ , ܣܕܪ̈ܐ , ܥܛܪ̈ܐ, and ܚܘ̈ܬܡܐ</title>
<note>Made up of fragments of three manuscripts of the xiiith cent</note>
<msItem n="2" xml:id="p5b1" defective="false">
<locus from="75a" to="77b">foll. 75a-77b</locus>
<title type="supplied">The Nativity of our Lord</title>
</msItem>
<msItem n="3" xml:id="p5b2" defective="false">
<locus from="78a" to="80b">foll. 78a-80b</locus>
<title type="supplied">The Epiphany</title>
<rubric xml:lang="syr">ܛܟܣܐ ܕܥܡ̇ܕܐ ܩܕܝܫܐ
<locus from="78a" to="78a"/>
</rubric>
</msItem>
<msItem n="4" xml:id="p5b3" defective="false">
<locus from="81a" to="82b">foll. 81a-82b</locus>
<title type="supplied">The Miracles</title>
</msItem>
<msItem n="5" xml:id="p5b4" defective="false">
<locus from="83a" to="88">foll. 83a-88</locus>
<title type="supplied">Palm Sunday</title>
</msItem>
<msItem n="6" xml:id="p5b5" defective="false">
<locus from="88b" to="90b">foll. 88b-90b</locus>
<title type="supplied">Passion Week</title>
<rubric xml:lang="syr">ܕܚܫܐ ܦܪܘܩܝܐ ܕܡܪܢ
<locus from="88b" to="88b"/>
</rubric>
</msItem>
<msItem n="7" xml:id="p5b6" defective="true">
<locus from="91a" to="91b">fol. 91</locus>
<title type="supplied">The Resurrection and Ascension</title>
<note>Imperfect.</note>
</msItem>
<msItem n="8" xml:id="p5b7" defective="false">
<locus from="92a" to="93">foll. 92a-93</locus>
<title type="supplied">The holy Cross</title>
</msItem>
<msItem n="9" xml:id="p5b8" defective="false">
<locus from="93b" to="95b">foll. 93b-95b</locus>
<title type="supplied">The Resurrection</title>
</msItem>
<msItem n="10" xml:id="p5b9" defective="false">
<locus from="96a" to="96b">fol. 96</locus>
<title type="supplied">The Ascension</title>
</msItem>
<msItem n="11" xml:id="p5b10" defective="true">
<locus from="97a" to="99">foll. 97a-99</locus>
<title type="supplied">Pentecost</title>
<note>Imperfect</note>
</msItem>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="25">25 ff.</measure>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="6.875" unit="in">6 7/8</measure>
</height>
<width>
<measure type="width" quantity="5" unit="in">5</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>Made up of fragments of three manuscripts of the xiiith cent.</p>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
</objectDesc>
<handDesc hands="3">
<handNote xml:id="p5handNote1" scope="major" script="syr" medium="unknown">
<desc>Made up of fragments of three manuscripts of the xiiith cent.</desc>
</handNote>
<handNote xml:id="p5handNote2" scope="minor" script="syr" medium="unknown">
<desc>Made up of fragments of three manuscripts of the xiiith cent.</desc>
</handNote>
<handNote xml:id="p5handNote3" scope="minor" script="syr" medium="unknown">
<desc>Made up of fragments of three manuscripts of the xiiith cent.</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions/>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<origin>
<origDate notBefore="1200" notAfter="1300">xiiith cent.</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart5">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart5">
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">CCCLXI</citedRange>
<citedRange unit="pp">I:298</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="6" xml:id="Part6">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1106</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 100-105</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">356</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">CCCLVI</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p6a1" defective="false">
<locus from="100" to="105">foll. 100-105</locus>
<title type="supplied">Greek canons of the 3d, 4th, and 5th tones</title>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="6">6 ff.</measure>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="6.875" unit="in">6 7/8</measure>
</height>
<width>
<measure type="width" quantity="5" unit="in">5</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>Six paper leaves numbered with Coptic arithmetical figures from <!--Needs Coptic figure--> (183) to <!--Needs Coptic figure--> (188). </p>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="1" writtenLines="18 20">
<p>There are from 18 to 20 lines in each page.</p>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="1">
<handNote xml:id="p6handNote1" scope="sole" script="syr" medium="unknown">
<desc>Written in a good hand of the xiiith cent.</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions/>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<origin>
<origDate notBefore="1200" notAfter="1300">xiiith cent.</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart6">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart6">
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">CCCLVI</citedRange>
<citedRange unit="pp">I:296</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="7" xml:id="Part7">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1107</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17272 foll. 106-112</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">411</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">CCCCXI</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p7a1" defective="true">
<locus from="106" to="112">foll. 106-112</locus>
<title type="supplied">Part of a Greek canon</title>
</msItem>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc material="chart">
<support>
<material>Paper</material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity="7">7 ff.</measure>
<dimensions type="leaf" unit="in">
<height>
<measure type="height" quantity="6.875" unit="in">6 7/8</measure>
</height>
<width>
<measure type="width" quantity="4.875" unit="in">4 7/8</measure>
</width>
</dimensions>
</extent>
<foliation type="ancient"/>
<collation>
<p>Seven paper leaves</p>
</collation>
<condition>
<list>
<item>
<p>The last leaf is much torn</p>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="1" writtenLines="15">
<p>15 lines in each page</p>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="1">
<handNote xml:id="p7handNote1" scope="sole" script="syr" medium="unknown">
<!-- Need to verify Malkite code syr-x-syrm -->
<desc>Written in a good Malkite hand of the xiiith cent.</desc>
</handNote>
</handDesc>
<decoDesc/>
<additions/>
<bindingDesc/>
<sealDesc/>
<accMat/>
</physDesc>
<history>
<origin>
<origDate notBefore="1200" notAfter="1300">xiiith cent.</origDate>
<origPlace/>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart7">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist/>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart7">
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry">CCCCXI</citedRange>
<citedRange unit="pp">I:324</citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
</msDesc>
</sourceDesc>
</fileDesc>
<encodingDesc>
<editorialDecl>
<interpretation>
<p>Description is based on Wright's Catalogue without consultation of physical
manuscripts. Foliation is approximate. Wright often does not indicate ending folia so
those have been assumed based on beginning folia.</p>
<p>Scribal notes which could not be more clearly classified based on Wright's descriptions
have been identified as <addition>s whether they occur in the margins or the body
of the manuscript.</p>
<p>In general, we have classified as an <msItem> as much of the manuscript contents
as possible, including tables of contents and indices.</p>
</interpretation>
</editorialDecl>
<classDecl>
<taxonomy xml:id="Wright-BL-Taxonomy">
<bibl><ref target="#Wright"/><ptr target="http://syriaca.org/documentation/Wright-BL-Taxonomy.html"/></bibl>
<category xml:id="biblical-manuscripts">
<category xml:id="bible-ot"/>
<category xml:id="bible-nt"/>
<category xml:id="bible-apocrypha"/>
<category xml:id="bible-punctuation"/>
</category>
<category xml:id="service-books">
<category xml:id="psalter"/>
<category xml:id="lectionaries"/>
<category xml:id="missals"/>
<category xml:id="sacerdotals"/>
<category xml:id="choral"/>
<category xml:id="hymns"/>
<category xml:id="prayers"/>
<category xml:id="funerals"/>
</category>
<category xml:id="theology">
<category xml:id="theo-single"/>
<category xml:id="theo-collected"/>
<category xml:id="theo-catenae"/>
<category xml:id="theo-anonymous"/>
<category xml:id="theo-council"/>
</category>
<category xml:id="wright-history">
<category xml:id="history"/>
</category>
<category xml:id="lives">
<category xml:id="lives-collect"/>
<category xml:id="lives-single"/>
</category>
<category xml:id="scientific-lit">
<category xml:id="sci-logic"/>
<category xml:id="sci-grammar"/>
<category xml:id="sci-ethics"/>
<category xml:id="sci-medicine"/>
<category xml:id="sci-agriculture"/>
<category xml:id="sci-chemistry"/>
<category xml:id="sci-natural-history"/>
</category>
<category xml:id="wright-fly-leaves">
<category xml:id="fly-leaves"/>
</category>
<category xml:id="appendices">
<category xml:id="appendix-a"/>
<category xml:id="appendix-b"/>
</category>
</taxonomy>
</classDecl>
</encodingDesc>
<profileDesc>
<langUsage>
<language ident="syr">Unvocalized Syriac of any variety or period</language>
<language ident="syr-Syre">Syriac in Estrangela</language>
<language ident="syr-Syrj">Vocalized West Syriac</language>
<language ident="syr-Syrn">Vocalized East Syriac</language>
<language ident="syr-x-syrm">Melkite Syriac</language>
<language ident="syr-x-syrp">Palestinian Syriac</language>
<language ident="ar-Syrc">Unvocalized or Undetermined Arabic Garshuni</language>
<language ident="ar-Syrj">Arabic Garshuni in Vocalized West Syriac Script</language>
<language ident="ar-Syrn">Arabic Garshuni in Vocalized East Syriac Script</language>
<language ident="en">English</language>
<language ident="ar">Arabic</language>
<language ident="fr">French</language>
<language ident="de">German</language>
<language ident="la">Latin</language>
<language ident="grc">Ancient Greek</language>
<language ident="cop">Coptic</language>
</langUsage>
<textClass>
<keywords scheme="#Wright-BL-Taxonomy">
<list>
<item>
<ref target="#Part1"/>
<ref target="choral"/>
</item>
<item>
<ref target="#Part2"/>
<ref target="theo-single"/>
</item>
<item>
<ref target="#Part3"/>
<ref target="lives-single"/>
</item>
<item>
<ref target="#Part4"/>
<ref target="theo-anonymous"/>
</item>
<item>
<ref target="#Part5"/>
<ref target="choral"/>
</item>
<item>
<ref target="#Part6"/>
<ref target="choral"/>
</item>
<item>
<ref target="#Part7"/>
<ref target="choral"/>
</item>
</list>
</keywords>
</textClass>
</profileDesc>
<revisionDesc status="draft">
<change when="2016-01-05" who="http://syriaca.org/documentation/editors.xml#pgmiller">Created: file</change>
<change type="planned" subtype="arithmetical">Enter arithmetical figures.</change>
<change type="planned" subtype="missing">Missing various unspecified things.</change>
<change type="planned" subtype="uri">Needs Addition of work URIs.</change>
<change type="planned" subtype="reconstruction">One or more msParts need to be encoded into an historical reconstruction of a no longer extant manuscript..</change>
</revisionDesc>
</teiHeader>
<facsimile>
<!-- facsimile information about the manuscript -->
<graphic/>
<!-- Alternatively you could provide 'surface' elements with more than one image per surface, and optionally with 'zone'