mods 2.4.1 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +24 -0
  3. data/.gitignore +1 -0
  4. data/README.md +0 -1
  5. data/lib/mods/date.rb +54 -17
  6. data/lib/mods/marc_country_codes.rb +12 -10
  7. data/lib/mods/nom_terminology.rb +109 -845
  8. data/lib/mods/reader.rb +9 -39
  9. data/lib/mods/record.rb +13 -28
  10. data/lib/mods/version.rb +1 -1
  11. data/mods.gemspec +2 -2
  12. data/spec/fixture_data/hp566jq8781.xml +334 -0
  13. data/spec/integration/parker_spec.rb +217 -0
  14. data/spec/{date_spec.rb → lib/date_spec.rb} +9 -1
  15. data/spec/lib/language_spec.rb +123 -0
  16. data/spec/lib/location_spec.rb +175 -0
  17. data/spec/lib/name_spec.rb +368 -0
  18. data/spec/lib/origin_info_spec.rb +134 -0
  19. data/spec/lib/part_spec.rb +162 -0
  20. data/spec/lib/physical_description_spec.rb +72 -0
  21. data/spec/{reader_spec.rb → lib/reader_spec.rb} +1 -41
  22. data/spec/lib/record_info_spec.rb +114 -0
  23. data/spec/lib/record_spec.rb +287 -0
  24. data/spec/lib/related_item_spec.rb +124 -0
  25. data/spec/lib/subject_spec.rb +427 -0
  26. data/spec/lib/title_spec.rb +108 -0
  27. data/spec/lib/top_level_elmnts_simple_spec.rb +169 -0
  28. data/spec/spec_helper.rb +86 -5
  29. data/spec/support/fixtures.rb +9 -0
  30. metadata +49 -44
  31. data/.travis.yml +0 -16
  32. data/spec/language_spec.rb +0 -118
  33. data/spec/location_spec.rb +0 -295
  34. data/spec/name_spec.rb +0 -759
  35. data/spec/origin_info_spec.rb +0 -447
  36. data/spec/part_spec.rb +0 -471
  37. data/spec/physical_description_spec.rb +0 -144
  38. data/spec/record_info_spec.rb +0 -493
  39. data/spec/record_spec.rb +0 -356
  40. data/spec/related_item_spec.rb +0 -305
  41. data/spec/subject_spec.rb +0 -809
  42. data/spec/title_spec.rb +0 -226
  43. data/spec/top_level_elmnts_simple_spec.rb +0 -369
data/lib/mods/reader.rb CHANGED
@@ -2,23 +2,14 @@
2
2
 
3
3
  module Mods
4
4
  class Reader
5
-
6
- DEFAULT_NS_AWARE = true
7
-
8
- # true if the XML parsing should be strict about using namespaces.
9
- attr_accessor :namespace_aware
10
- attr_reader :mods_ng_xml
11
-
12
5
  # @param ns_aware true if the XML parsing should be strict about using namespaces. Default is true
13
- def initialize(ns_aware = DEFAULT_NS_AWARE)
14
- @namespace_aware = ns_aware
6
+ def initialize
15
7
  end
16
8
 
17
9
  # @param str - a string containing mods xml
18
10
  # @return Nokogiri::XML::Document
19
11
  def from_str(str)
20
- @mods_ng_xml = Nokogiri::XML(str, nil, str.encoding.to_s)
21
- normalize_mods
12
+ Nokogiri::XML(str, nil, str.encoding.to_s)
22
13
  end
23
14
 
24
15
  # Read in the contents of a Mods file from a url.
@@ -28,8 +19,7 @@ module Mods
28
19
  # foo = Mods::Reader.new.from_url('http://purl.stanford.edu/bb340tm8592.mods')
29
20
  def from_url(url, encoding = nil, options = Nokogiri::XML::ParseOptions::DEFAULT_XML)
30
21
  require 'open-uri'
31
- @mods_ng_xml = Nokogiri::XML(open(url).read)
32
- normalize_mods
22
+ Nokogiri::XML(URI.open(url).read)
33
23
  end
34
24
 
35
25
  # Read in the contents of a Mods record from a file.
@@ -38,35 +28,15 @@ module Mods
38
28
  # @example
39
29
  # foo = Mods::Reader.new.from_file('/path/to/mods/file.xml')
40
30
  def from_file(filename, encoding = nil, options = Nokogiri::XML::ParseOptions::DEFAULT_XML)
41
- file = File.open(filename)
42
- @mods_ng_xml = Nokogiri::XML(file)
43
- file.close
44
- normalize_mods
31
+ File.open(filename) do |file|
32
+ Nokogiri::XML(file)
33
+ end
45
34
  end
46
35
 
47
36
  # @param node (Nokogiri::XML::Node) - Nokogiri::XML::Node that is the top level element of a mods record
48
37
  # @return Nokogiri::XML::Document
49
38
  def from_nk_node(node)
50
- @mods_ng_xml = Nokogiri::XML(node.to_s, nil, node.document.encoding)
51
- normalize_mods
39
+ Nokogiri::XML(node.to_s, nil, node.document.encoding)
52
40
  end
53
-
54
- # Whatever we get, normalize it into a Nokogiri::XML::Document,
55
- # @return mods_ng_xml (Nokogiri::XML::Document) normalized doc
56
- def normalize_mods
57
- if !@namespace_aware
58
- @mods_ng_xml.remove_namespaces!
59
- # xsi:schemaLocation attribute will cause problems in JRuby
60
- if @mods_ng_xml.root && @mods_ng_xml.root.attributes.keys.include?('schemaLocation')
61
- @mods_ng_xml.root.attributes['schemaLocation'].remove
62
- end
63
- # doing weird re-reading of xml for jruby, which gets confused by its own cache
64
- # using pedantic is helpful for debugging
65
- # @mods_ng_xml = Nokogiri::XML(@mods_ng_xml.to_s, nil, @mods_ng_xml.encoding, Nokogiri::XML::ParseOptions::PEDANTIC)
66
- @mods_ng_xml = Nokogiri::XML(@mods_ng_xml.to_s, nil, @mods_ng_xml.encoding)
67
- end
68
- @mods_ng_xml
69
- end
70
-
71
- end # class
72
- end # module
41
+ end
42
+ end
data/lib/mods/record.rb CHANGED
@@ -25,13 +25,10 @@ module Mods
25
25
  # @param ns_aware true if the XML parsing should be strict about using namespaces. Default is true
26
26
  # @param str - a string containing mods xml
27
27
  # @return Mods::Record
28
- def from_str(str, ns_aware = true)
29
- @mods_ng_xml = Mods::Reader.new(ns_aware).from_str(str)
30
- if ns_aware
31
- set_terminology_ns(@mods_ng_xml)
32
- else
33
- set_terminology_no_ns(@mods_ng_xml)
34
- end
28
+ def from_str(str)
29
+ @mods_ng_xml = Mods::Reader.new.from_str(str)
30
+ set_terminology_ns(@mods_ng_xml)
31
+
35
32
  return self
36
33
  end
37
34
 
@@ -42,13 +39,9 @@ module Mods
42
39
  # @return Mods::Record
43
40
  # @example
44
41
  # foo = Mods::Record.new.from_url('http://purl.stanford.edu/bb340tm8592.mods')
45
- def from_url(url, ns_aware = true)
46
- @mods_ng_xml = Mods::Reader.new(ns_aware).from_url(url)
47
- if ns_aware
48
- set_terminology_ns(@mods_ng_xml)
49
- else
50
- set_terminology_no_ns(@mods_ng_xml)
51
- end
42
+ def from_url(url)
43
+ @mods_ng_xml = Mods::Reader.new.from_url(url)
44
+ set_terminology_ns(@mods_ng_xml)
52
45
  return self
53
46
  end
54
47
 
@@ -59,13 +52,9 @@ module Mods
59
52
  # @return Mods::Record
60
53
  # @example
61
54
  # foo = Mods::Record.new.from_file('/path/to/file/bb340tm8592.mods')
62
- def from_file(url, ns_aware = true)
63
- @mods_ng_xml = Mods::Reader.new(ns_aware).from_file(url)
64
- if ns_aware
65
- set_terminology_ns(@mods_ng_xml)
66
- else
67
- set_terminology_no_ns(@mods_ng_xml)
68
- end
55
+ def from_file(url)
56
+ @mods_ng_xml = Mods::Reader.new.from_file(url)
57
+ set_terminology_ns(@mods_ng_xml)
69
58
  return self
70
59
  end
71
60
 
@@ -73,13 +62,9 @@ module Mods
73
62
  # @param node (Nokogiri::XML::Node) - Nokogiri::XML::Node that is the top level element of a mods record
74
63
  # @param ns_aware true if the XML parsing should be strict about using namespaces. Default is true
75
64
  # @return Mods::Record
76
- def from_nk_node(node, ns_aware = true)
77
- @mods_ng_xml = Mods::Reader.new(ns_aware).from_nk_node(node)
78
- if ns_aware
79
- set_terminology_ns(@mods_ng_xml)
80
- else
81
- set_terminology_no_ns(@mods_ng_xml)
82
- end
65
+ def from_nk_node(node)
66
+ @mods_ng_xml = Mods::Reader.new.from_nk_node(node)
67
+ set_terminology_ns(@mods_ng_xml)
83
68
  return self
84
69
  end
85
70
 
data/lib/mods/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Mods
2
2
  # this is the Ruby Gem version
3
- VERSION = '2.4.1'.freeze
3
+ VERSION = '3.0.1'.freeze
4
4
  end
data/mods.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |gem|
19
19
  gem.add_dependency 'nokogiri', '>= 1.6.6'
20
20
  gem.add_dependency 'nom-xml', '~> 1.0'
21
21
  gem.add_dependency 'iso-639'
22
- gem.add_dependency 'edtf'
22
+ gem.add_dependency 'edtf', '~> 3.0'
23
23
 
24
24
  # Runtime dependencies
25
25
  # gem.add_runtime_dependency 'nokogiri'
@@ -33,7 +33,7 @@ Gem::Specification.new do |gem|
33
33
  gem.add_development_dependency "yard"
34
34
  # tests
35
35
  gem.add_development_dependency 'rspec', '~> 3.0'
36
- gem.add_development_dependency 'simplecov'
36
+ gem.add_development_dependency 'simplecov', '~> 0.17.0' # CodeClimate cannot use SimpleCov >= 0.18.0 for generating test coverage
37
37
  # gem.add_development_dependency 'ruby-debug19'
38
38
  gem.add_development_dependency 'equivalent-xml'
39
39
  end
@@ -0,0 +1,334 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <mods xmlns="http://www.loc.gov/mods/v3">
3
+ <titleInfo authority="Corpus Christi College">
4
+ <title>Cambridge, Corpus Christi College, MS 367: Miscellaneous Compilation including Old English Material and Historical and Philosophical Works</title>
5
+ </titleInfo>
6
+ <titleInfo authority="James Catalog" type="alternative">
7
+ <title>Chronica. Anglo-Saxon fragments, etc.</title>
8
+ </titleInfo>
9
+ <typeOfResource manuscript="yes">mixed material</typeOfResource>
10
+ <originInfo>
11
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="start" qualifier="approximate">1400</dateCreated>
12
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="end" qualifier="approximate">1499</dateCreated>
13
+ </originInfo>
14
+ <originInfo>
15
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="start" qualifier="approximate">1300</dateCreated>
16
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="end" qualifier="approximate">1399</dateCreated>
17
+ </originInfo>
18
+ <originInfo>
19
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="start" qualifier="approximate">1000</dateCreated>
20
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="end" qualifier="approximate">1099</dateCreated>
21
+ </originInfo>
22
+ <originInfo>
23
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="start" qualifier="approximate">1000</dateCreated>
24
+ <dateCreated encoding="w3cdtf" keyDate="yes" point="end" qualifier="approximate">1099</dateCreated>
25
+ </originInfo>
26
+ <abstract displayLabel="Summary" type="summary">CCCC MS 367 consists of five small volumes bound together, probably because Parker wished to protect a number of small items by placing them between covers. The first contains two chronicles, copied in the fifteenth century, an epitome of the Polychronicon by Ranulf Higden OSB (d. 1364), and a chronicle attributed to Thomas Harpsfield. The second consists of a number of fragments of Old English material, copied in the second half of the eleventh or the early twelfth century, and probably to be associated with Worcester: they contain the De temporibus anni by Ælfric of Eynsham OSB (d. 1010), and some homiletic fragments, now out of order. The third volume is a thirteenth- or fourteenth-century copy of Robert Kilwardby OP (d. 1279), De natura relationis. The fourth is a thirteenth-century copy of the Apocalypsis Goliae, a satirical Latin poem sometimes associated with Walter Map (c. 1140-1210), but best considered anonymous. The fifth contains an eleventh-century copy of the Vita breuior of St Kenelm, with a short booklist which has been associated with Worcester, and an Old English account of a vision had by Earl Leofric.</abstract>
27
+ <tableOfContents displayLabel="Contents">Polychronicon (epitome and continuation to 1429) -- Gesta regum ad Henricum VI -- De temporibus anni (incomplete) -- Fragments of Old English homilies -- De natura relationis -- Apocalypsis Goliae -- Vita breuior Sancti Kenelmi (incomplete) -- Old English Visio Leofrici</tableOfContents>
28
+ <note displayLabel="M.R. James Date" type="date">xv, xi-xii, xiv, xi</note>
29
+ <language>
30
+ <languageTerm authority="iso639-2b" type="code">lat</languageTerm>
31
+ </language>
32
+ <language>
33
+ <languageTerm authority="iso639-2b" type="code">ang</languageTerm>
34
+ </language>
35
+ <physicalDescription>
36
+ <note displayLabel="Material" type="material">Paper and vellum</note>
37
+ <extent>ff. 53 + 52</extent>
38
+ <note displayLabel="Layout" type="layout">five volumes</note>
39
+ <note displayLabel="Height (mm)" type="dimensions">220</note>
40
+ <note displayLabel="Width (mm)" type="dimensions">145</note>
41
+ <note displayLabel="Collation" type="collation">Paper: 1(10) 2(10) 3(12) (wants 10-12) 4(14) 5(10). Vellum: a(2) b(2) c(2) d(4) e(2) (2 canc.) f(6) (6 canc.) 8(14) (10 canc.)? A(12). B (three). I(8) (wants 1, 7, 8) II(2) (+1).</note>
42
+ <note displayLabel="Writing" type="handNote">in a smallish hand of cent. xi-xii</note>
43
+ <note displayLabel="Foliation" type="foliation">ff. i-ii + 1-105 + iii-iv</note>
44
+ <note displayLabel="Provenance" type="provenance">Part of the volume seems to be certainly from Worcester.</note>
45
+ <note displayLabel="Research" type="research">The Anglo-Saxon portions were not described by Wanley and have escaped the notice of subsequent students.</note>
46
+ </physicalDescription>
47
+ <identifier displayLabel="TJames">342</identifier>
48
+ <identifier displayLabel="Stanley">19. 9</identifier>
49
+ <location>
50
+ <physicalLocation type="repository">UK, Cambridge, Corpus Christi College, Parker Library</physicalLocation>
51
+ <shelfLocator>MS 367</shelfLocator>
52
+ </location>
53
+ <relatedItem displayLabel="Downloadable James Catalogue Record" type="isReferencedBy">
54
+ <titleInfo>
55
+ <title>https://stacks.stanford.edu/file/druid:vz744tc9861/MS_367.pdf</title>
56
+ </titleInfo>
57
+ </relatedItem>
58
+ <relatedItem displayLabel="Superseded Interim Catalogue Record" type="isReferencedBy">
59
+ <titleInfo>
60
+ <title>https://stacks.stanford.edu/file/druid:pw577ky6421/367.pdf</title>
61
+ </titleInfo>
62
+ </relatedItem>
63
+ <relatedItem type="constituent">
64
+ <name type="personal">
65
+ <namePart>Ranulf Higden OSB</namePart>
66
+ <role>
67
+ <roleTerm authority="marcrelator" type="text" valueURI="http://id.loc.gov/vocabulary/relators/aut">author</roleTerm>
68
+ </role>
69
+ </name>
70
+ <titleInfo>
71
+ <title>Ranulf Higden OSB, Polychronicon (epitome and continuation to 1429)</title>
72
+ <partNumber>1r-29v</partNumber>
73
+ </titleInfo>
74
+ <titleInfo displayLabel="Nasmith" type="alternative">
75
+ <title>Epitome chronicae Cicestrensis, sed extractum e Polychronico, usque ad annum Christi 1429</title>
76
+ <partNumber>1r-29v</partNumber>
77
+ </titleInfo>
78
+ <note displayLabel="Incipit" type="incipit">(1r) Ieronimus ad eugenium in epistola 43a dicit quod decime leguntur primum date ab abraham</note>
79
+ <note>Dates are marked in the margin</note>
80
+ <note>Ends with the coronation of Henry VI at St Denis</note>
81
+ <note displayLabel="Explicit" type="explicit">(29v) videlicet nono die mensis decembris ano etatis sue 10o</note>
82
+ </relatedItem>
83
+ <relatedItem type="constituent">
84
+ <name type="personal">
85
+ <namePart>Thomas Harsfield</namePart>
86
+ <role>
87
+ <roleTerm authority="marcrelator" type="text" valueURI="http://id.loc.gov/vocabulary/relators/aut">author</roleTerm>
88
+ </role>
89
+ </name>
90
+ <titleInfo>
91
+ <title>Thomas Harsfield, Gesta regum ad Henricum VI</title>
92
+ <partNumber>30r-53r</partNumber>
93
+ </titleInfo>
94
+ <titleInfo displayLabel="Nasmith" type="alternative">
95
+ <title>Breviarium historiae Angliae ad annum quartum Henrici IV. viz. 1402</title>
96
+ <partNumber>30r-53r</partNumber>
97
+ </titleInfo>
98
+ <titleInfo displayLabel="James" type="alternative">
99
+ <title>Breuiarium</title>
100
+ <partNumber>30r-53r</partNumber>
101
+ </titleInfo>
102
+ <note>Another hand</note>
103
+ <note>begins with 19 lines</note>
104
+ <note displayLabel="Incipit" type="incipit">(30r) IAlbion est terra constans in finibus orbisQuam dedit albina grecorum filia regis...</note>
105
+ <note>(30r) IISuccedunt Reges ab eodem pace fruentesUsque dies nostres ut pandunt scripta legentesNomina scriptorum (tu) [iam] suscipe care RoberteEx libris quorum labor hic monstratur aperteGalifridus gesta Britonum scripsit sapienterAnglorum facta conscripsit Beda patenterWillelmus quondam monachus MalmisberiensisTryuet Martinushenricus huntidonensisPetrus pictauis dat cistrensis monachusque</note>
106
+ <note displayLabel="Incipit" type="incipit">(30r) Et quia confrater carissime non solum audiendo sacre scripture verbis aurem sedulus auditor accomodatur (!) tenetur</note>
107
+ <note>(See P. de Yckham)</note>
108
+ <note>Ends with verses (14) on the Battle of Shrewsbury</note>
109
+ <note>(52v) de isto bello quidam versificator sic infert versus</note>
110
+ <note>(52v) In magdalene saturni vespere pleneHenrico IIIIto sunt hec anno sibi iiijto... Nomina cunctorum nescio monstrare virorumNescio plus quorum Christus miseretur eorum</note>
111
+ <note displayLabel="Explicit" type="explicit">(53r) Tempore huius regis Owynus quidam Wallensis erigens se in principem Wallie toto vite sue tempore cum Wallensibus rebellauit</note>
112
+ <note displayLabel="Rubric" type="rubric">(53r) Explicit</note>
113
+ <note>(53r) Lower part of leaf cut off. f. 53v blank</note>
114
+ </relatedItem>
115
+ <relatedItem type="constituent">
116
+ <name type="personal">
117
+ <namePart>Ælfric OSB</namePart>
118
+ <role>
119
+ <roleTerm authority="marcrelator" type="text" valueURI="http://id.loc.gov/vocabulary/relators/aut">author</roleTerm>
120
+ </role>
121
+ </name>
122
+ <titleInfo>
123
+ <title>Ælfric OSB, De temporibus anni (incomplete)</title>
124
+ <partNumber>54r-55v</partNumber>
125
+ </titleInfo>
126
+ <titleInfo displayLabel="Nasmith" type="alternative">
127
+ <title>De die, mense, de XII signis, &amp;c. (Saxonice)</title>
128
+ <partNumber>54r-55v</partNumber>
129
+ </titleInfo>
130
+ <note displayLabel="Incipit" type="incipit">(54r) Þone forman dæg þyssere ƿorulde ƿe magon afindan þurh þes lenctenlices emnihtes dæg. Forþan ðe se emnihtes dæg is se feorða dæg þyssere ƿorulde gesceapennysse</note>
131
+ <note>Treats de luna, de ebdomada, de anno solis, de xii signis, de anno, de diuersis mensibus, de luna, communis annus, embolismus, IIIIor tempora</note>
132
+ <note>On f. 2v the writing is crowded towards the end. Ends</note>
133
+ <note displayLabel="Explicit" type="explicit">(55v) Eft on langiendum dagum he ofer geð þone suðran sunsted · 7 forþi he byð norþur geseƿen þonne seo sunne on ƿintra · sƿa þeah ne gæð heora</note>
134
+ <note>It continues on ff. 7r-10r</note>
135
+ <note displayLabel="Incipit" type="incipit">(60r) naðor ænne pricon ofer þam þe him geset is. ne dagas ne synd nu naþor lengran ne scyrtran þonne hi æt fruman ƿæron. en Egyptaland ne cymð næfre nan ƿinter</note>
136
+ <note>Ends f. 10r (on hail, snow, thunder, etc.)</note>
137
+ <note displayLabel="Explicit" type="explicit">(63r) se bið hlud for þære lyfte bradnysse. frecen ful for þæs fyres sceotugum. beo þeos gesetnyss þus her ge endod</note>
138
+ <note>f. 10v blank</note>
139
+ <note>This is Ælfric's extract from Beda de temporibus. Cockayne, Leechdoms III 238</note>
140
+ </relatedItem>
141
+ <relatedItem type="constituent">
142
+ <titleInfo>
143
+ <title>Fragments of Old English homilies</title>
144
+ <partNumber>56r-82v</partNumber>
145
+ </titleInfo>
146
+ <titleInfo displayLabel="Nasmith" type="alternative">
147
+ <title>Homeliae quaedam Saxonica, imperfectae</title>
148
+ <partNumber>56r-82v</partNumber>
149
+ </titleInfo>
150
+ <titleInfo displayLabel="James" type="alternative">
151
+ <title>Fragments of Homilies</title>
152
+ <partNumber>56r-82v</partNumber>
153
+ </titleInfo>
154
+ <note>a.</note>
155
+ <note>A good hand of cent. xii, 30 lines to a page</note>
156
+ <note>(56r) Homily on the Assumption</note>
157
+ <note>ff. 6r-6v should precede ff. 3r-3v (Thorpe II 436)</note>
158
+ <note displayLabel="Incipit" type="incipit">(59r) be þisse heofenlican cƿene upstige</note>
159
+ <note>f. 6v ends</note>
160
+ <note>(59v) þæt heo un asecgendlice mid criste up</note>
161
+ <note>(56r) ahafen on ecnysse rixige</note>
162
+ <note>Ends f. 5r. f. 23r has the beginning</note>
163
+ <note>b.</note>
164
+ <note displayLabel="Rubric" type="rubric">(58r) viii kalends Septembris. Passio Sancti Bartholomei apostoli</note>
165
+ <note displayLabel="Incipit" type="incipit">(58v) Ƿyrd ƿryteras secgað þæt þre leod scipas</note>
166
+ <note>(Thorpe II 454)</note>
167
+ <note>One page only</note>
168
+ <note displayLabel="Explicit" type="explicit">(58v) oþer deofol ƿæs geƿurðod þæs</note>
169
+ <note>(Thorpe II 454)</note>
170
+ <note>Continued after break on f. 24r</note>
171
+ <note>On the margin of f. 30r is a copy of a document (xiii)</note>
172
+ <note>(56r) Omnibus ... Walt. de La Fort (?) ... Noueritis me dedisse ... Philipp. filio meo quatuor croppos ... in camp de Henton ... ao v. v. H. Liiio ... Test. Joh. Jokyn. Le FraunkeJoh. Wace ...Wace ...Le fraunke ...</note>
173
+ <note>c.</note>
174
+ <note displayLabel="Rubric" type="rubric">(64r) Sexta Idus Septembris. Nativitas Sancte Marie Virginis</note>
175
+ <note displayLabel="Incipit" type="incipit">(64r) Men þa leofestan ƿeorðiat ƿe nu on andƿeardnysse þa gebyr tide</note>
176
+ <note>(Wanley, p. 17, Bodl. NEF. 4. 12)</note>
177
+ <note>Ends imperfectly</note>
178
+ <note displayLabel="Explicit" type="explicit">(69v) He þa ioseph aros of þam slæpe. sƿy þe ge</note>
179
+ <note>Assmann, A.-S. Homilien etc. p. 117</note>
180
+ <note>d.</note>
181
+ <note>In a less good hand, 27 lines to a page</note>
182
+ <note>(70r) On the Lord's Prayer, continued on f. 29r</note>
183
+ <note displayLabel="Incipit" type="incipit">(70r) ure rice gif ƿe hit geearnian ƿyllan</note>
184
+ <note>(Thorpe I 264)</note>
185
+ <note>17v ends</note>
186
+ <note>(70v) Ðæt fifte gebed is. Et dimitte nobis debita nostra sicut et nos dimittimus (29r) debitoribus nostris</note>
187
+ <note>ends</note>
188
+ <note displayLabel="Explicit" type="explicit">(82v) Sƿa he oftor on þære fandunge</note>
189
+ <note>e.</note>
190
+ <note>f. 18r follows f. 27v. Homily on Dedication of St Michael's Church. Thorpe II 502 (fragments)</note>
191
+ <note>f.</note>
192
+ <note>f. 19r follows f. 28r. Homily on St Matthew. Thorpe II 468</note>
193
+ <note>g.</note>
194
+ <note>f. 20r-20v, the end of a Homily and beginning of another</note>
195
+ <note displayLabel="Rubric" type="rubric">(73r) Feria Secunda</note>
196
+ <note displayLabel="Incipit" type="incipit">(73r) Hit is sƿyðe ged(a)fenlic</note>
197
+ <note>Thorpe I 282. f. 26r continues this</note>
198
+ <note>h.</note>
199
+ <note>f. 21r-21v single leaf</note>
200
+ <note displayLabel="Incipit" type="incipit">(74r) fram þroƿunge to æriste. fra deðe to life</note>
201
+ <note>Ends</note>
202
+ <note displayLabel="Explicit" type="explicit">(74v) þa þa heo ƿearð a þys troð on cristes þroƿunge fram middæge oð non. stanas on</note>
203
+ <note>(Morris, Legends of the Holy Rood, p. 167)</note>
204
+ <note>i.</note>
205
+ <note displayLabel="Incipit" type="incipit">(75r) gafol oððe tol. æt heora gesiblingum oððe æt fræmdum. Petrus cƿæð æt fræmdum. Se hælend cƿæð, etc.</note>
206
+ <note>Ends</note>
207
+ <note displayLabel="Explicit" type="explicit">(75v) him for godes lufan big ƿiste fore sceaƿað. Ðon hæfð he sƿa miccle</note>
208
+ <note>(On Matt. xvii 24, the fish and tribute-money)</note>
209
+ <note>Apparently not found elsewhere: not known to Professor Napier</note>
210
+ <note>k.</note>
211
+ <note>(76r) see a. Homily on the Assumption</note>
212
+ <note>l.</note>
213
+ <note>(77r) see b. On St Bartholomew</note>
214
+ <note>m.</note>
215
+ <note>(78r) I append a copy of the fragment m.</note>
216
+ <note>(78r) fram gode · to þe cumen · ; Ic ƿes þine ƿlite · 7 þineƿynsumnesse · 7 þine spæc 7 þin haƿung · 7 þine gehyrnys · 7 þine glednesse; Ic ƿæs þin geþanc · 7þine fægernes · 7 þine lufu · 7 þin gestæþþignes7 þin ge treoƿnes · gif þu ænige treoƿa hæfdest; 7 icƿæs þin gamon · 7 þin gladung · 7 þin hleahtor · 7 þinemyrhþ. Eall þæt þu ƿære. eall ic ƿæs þis on þe 7siþ þan ic ana ƿæs of þe · eall þe lofode · þæt ic nusæde; 7 naht þu ƿære butan me · 7 þu me mid enigumgode ne ge þohtest. ne þinne drihten. þe me þesealde. Ladlice eardunge hæfde ic on þe · æghƿætþæs þe þu hogedest mid þinum flæsce æghƿæt meƿæs þæs earfodlic · on to ge þroƿianne Eall þæt þulufodest. eall þæt ic hatode nære ƿit næfre gletane tid on anum ƿillan. For þan þe þu hyrƿdestgodes bebodu · 7 his haligra lare; Eala eala hreoƿlice · 7 dreorlice. stent þonne þæt deade flesc asmórodne mæg þonne nan andƿyrde syllan. þam his gaste.7 sƿæst sƿiþe ladlicum sƿate · 7 him feallað of. | unfægere dropan · 7 bret on menige fealdumhiƿe. Hƿilum he bið sƿiðe ladlicum men gelice · þonneƿannaþ he 7 doxað · oþre hƿile he bið blac · 7 æm /heoƿe · 7 hƿilum coll sƿeart · 7 gelic þam seo saƿul. heoƿað on yfelan bleon sƿa same · sƿa se lichama ·7 bið gyt ƿyrsan heoƿes; 7 standað butu · sƿiþeforhte · 7 afærede · 7 bifiende on bidat domes; Ðonne clypað se deofol to þam déman · 7 cƿiþ to himþes ƿes min agen · fram hire geogoðe oð hireylde · heo hyrdon me georne 7 ælce dæg icheo lærde unriht to donne · 7 hi me simblelustlice hyrdon. And þonne þin lareoƿ com to hym 7hym ƿolde hyra saƿla hælo · tetan · þonne ƿæs icf. 25vsimle ær æt heom · 7 æft leng · 7 sƿette heom heora / unriht · la hƿi ne mot ic habban · þæt ic ær me sylfbegeat mid minum lyðrum ƿrencum · oft ic gedyde ·þæt he geƿorhte þussende synna ƿið ðe · 7 nanege betan nolde · Ðonne cƿæð þæs reðan ciningesstef · gang þu saƿel in þæt forlorene hus. þa gitæt somne syngodon. git eac æt somne sƿelton; Donne cƿið æft se dema to þam saƿlum. Disceditea me maledicti in ignem eternum qui preparatusest (a) diabolo. Geƿitaþ ge aƿirgydan on þæt ecefyr · þæt gegearƿode min fæder deofle 7 hisenglum. Ðonne hæfð se deofol geƿorht bogan7 stræla. 7 se boga biþ geƿoht of ofer mettum ·7 þa strela beoð sƿa manigra cynna sƿa sƿa mannes synna beoð. Sum stræl biþ geƿorht ofniþe sum of æfeste. sum of eþ belige · sumof hat heortnæsse · sum of stale · sum ofdrucennesse · sum of dyrnum geligere · sumof æƿ bryce · sum of sib legere sum of dƿolcræfte · sum of lyblacc · sum of gitsunge · sumof gifernesse · sum of reaflac · sum of scincræftesum of mord cƿale · sum of strudunge. Andsƿa manega stræla hæfd se deofol sƿa nis nanman þæt hy ealle atellan magon. And ælce dægþæs deofoles ƿilla bið þæt his strelena nan ·ne sy unafæstnod · gif he findan mæg hƿærhe hy on afæstnian mæge. 7 on hælle þadeofla scotigað mid þam strælum · 7 sƿa sa hehæfð ælce dæg his bogan to us gebendne7 ƿile us scotian mid þam strælum · þe ic ær / nemde; Ðonne is us micel þearf leofan menþæt ƿe habban þa scyldas þær ongean · þe /</note>
217
+ <note>n.</note>
218
+ <note>f. 26r follows 20v: see g.</note>
219
+ <note>o.</note>
220
+ <note>f. 27r-27v precedes 18r (on St Matthew and St Michael): see e., f.</note>
221
+ <note>p.</note>
222
+ <note>(81r) Exaltation of the Cross (fragments). Morris, Legends of the Holy Rood, E. E. T. S., pp. 105, 107. Also on 28v the beginning of the Homily on St Matthew. p. thus precedes f. 18r</note>
223
+ <note>q.</note>
224
+ <note>(82r) On the Lord's Prayer: see d.</note>
225
+ </relatedItem>
226
+ <relatedItem type="constituent">
227
+ <name type="personal">
228
+ <namePart>Robert Kilwardby OP</namePart>
229
+ <role>
230
+ <roleTerm authority="marcrelator" type="text" valueURI="http://id.loc.gov/vocabulary/relators/aut">author</roleTerm>
231
+ </role>
232
+ </name>
233
+ <titleInfo>
234
+ <title>Robert Kilwardby OP, De natura relationis</title>
235
+ <partNumber>83r-94v</partNumber>
236
+ </titleInfo>
237
+ <titleInfo displayLabel="Nasmith" type="alternative">
238
+ <title>Logica quaedam</title>
239
+ <partNumber>83r-94v</partNumber>
240
+ </titleInfo>
241
+ <note displayLabel="Rubric" type="rubric">(83r) Que sit res predicamenti relationis per se</note>
242
+ <note displayLabel="Incipit" type="incipit">(83r) De predicamento relationis querunt aliqui que sit res huius generis</note>
243
+ <note>Ends imperfectly in chapter 31</note>
244
+ </relatedItem>
245
+ <relatedItem type="constituent">
246
+ <titleInfo>
247
+ <title>Apocalypsis Goliae</title>
248
+ <partNumber>95r-97v</partNumber>
249
+ </titleInfo>
250
+ <titleInfo displayLabel="Nasmith" type="alternative">
251
+ <title>Versus quidam</title>
252
+ <partNumber>95r-97v</partNumber>
253
+ </titleInfo>
254
+ <titleInfo displayLabel="James" type="alternative">
255
+ <title>Apocalypsis Goliae</title>
256
+ <partNumber>95r-97v</partNumber>
257
+ </titleInfo>
258
+ <note>(Wright, Poems of W. Mapes, p. 1)</note>
259
+ <note displayLabel="Incipit" type="incipit">(95r) A tauro torrida lampade cinthii</note>
260
+ <note>Ending</note>
261
+ <note displayLabel="Explicit" type="explicit">(97v) Dux meus manibus me capit insitis</note>
262
+ <note>(l. 410)</note>
263
+ </relatedItem>
264
+ <relatedItem type="constituent">
265
+ <titleInfo>
266
+ <title>Vita breuior Sancti Kenelmi (incomplete)</title>
267
+ <partNumber>98r-101v</partNumber>
268
+ </titleInfo>
269
+ <titleInfo displayLabel="Nasmith" type="alternative">
270
+ <title>Historia (imperfecta) Kenelmi principis Merciorum</title>
271
+ <partNumber>98r-101v</partNumber>
272
+ </titleInfo>
273
+ <titleInfo displayLabel="James" type="alternative">
274
+ <title>Life of St Kenelm</title>
275
+ <partNumber>98r-101v</partNumber>
276
+ </titleInfo>
277
+ <note>(98r) beginning imperfectly in c. ii</note>
278
+ <note displayLabel="Incipit" type="incipit">(98r) forma. perfusus diuina dilectione et gratia deo et hominibus amabilis erat aetatula</note>
279
+ <note>(101r) The original hand ends in c. viii: diuinorum miracula beneficiorum commendant. A hand of cent. xii continues and, writing very close, ends on the same page. It begins: martirem suum quem et ab humana noticia abscidere nitebatur: and ends: occubuerit. ad laudem et gloriam dei patris omnipotentis qui uiuit et regnat per omnia secula seculorum. Amen</note>
280
+ <note>(101r) Under this is a scribble of a maze in pencil</note>
281
+ <note>The same Life (abridged in Acta Sanctorum July IV 380, and in Horstmann, Nova Legenda Angliae II 110) is in MS. Douce 368 and Bodley 285</note>
282
+ <note>(101v) On the verso a line and a half in a small hand giving a list of books. .i. Ðeo englissce passionale · 7 .ii. ·ii· englissce dialogas · 7 .iii. oddan boc · 7 .iiii. þe englisca martirlogium · / 7 .vi. · ii · englisce · salteras 7 · ii · pastorales · englisce · 7 þe englisca regol. / 7 barontus. (Printed in my Sources of Archbishop Parker's Collection and in Floyer and Hamilton's Catalogue of the MSS. at Worcester Cathedral, p. 166, note 3.) Barontus is the Vision of Barontus of Pistoia Acta Sanctorum Mart. 24</note>
283
+ </relatedItem>
284
+ <relatedItem type="constituent">
285
+ <titleInfo>
286
+ <title>Old English Visio Leofrici</title>
287
+ <partNumber>101v-105v</partNumber>
288
+ </titleInfo>
289
+ <titleInfo displayLabel="Nasmith" type="alternative">
290
+ <title>Homelia Saxonica sive passionale</title>
291
+ <partNumber>101v-105v</partNumber>
292
+ </titleInfo>
293
+ <note>In a hand similar to that of the booklist in item 7 but larger</note>
294
+ <note>(101v) Title in faint pencil</note>
295
+ <note displayLabel="Rubric" type="rubric">(101v) Uisio Leofrici</note>
296
+ <note displayLabel="Incipit" type="incipit">(101v) Her gesutelað ða gesihðe ðe Leofric eorl gesæh. him þuhte to soðan on healf slapendon lichaman na eallinga sƿylce on sƿefne ac gyt geƿisslicor þæt he sceolde nede ofer ane sƿiðe smale bricge · 7 seo ƿær sƿiþe lang</note>
297
+ <note>Ends</note>
298
+ <note displayLabel="Explicit" type="explicit">(103v) hit þa gesƿac þæra bletsunga þæt ƿæs neh þam þes godspel ƿæs gerædd. Feoƿertyne nihton ær his forð siðe he foresæde þonne dæg þe he sceolde cuman to cofantreo to his langan hame þær he on restet · 7 hit à eode eall sƿa he sæde. Requiescat in pace</note>
299
+ <note>This document, which had remained unnoticed, has been printed by Professor Napier in the Philological Journal, 1908</note>
300
+ <note>A note (xiii)</note>
301
+ <note displayLabel="Incipit" type="incipit">(103v) Vesperus est grandis interpolatio nubium inter nos et solem</note>
302
+ <note>(104r) In a hand like that of no. 8 with neumes. Sequence for Epiphany</note>
303
+ <note displayLabel="Incipit" type="incipit">(104r) Letabundus exultet fidelis chorus alleluiaRegem regum intacte profudit thorus res miranda</note>
304
+ <note displayLabel="Explicit" type="explicit">(104v) Sanctus namque spiritus ipsa nobis prebuit bene mentis naribus odoranda</note>
305
+ <note>Smaller hand</note>
306
+ <note>(104v) Ad ultimum laus est uincta. Psalat chorus alia. Amen dicant omnia</note>
307
+ <note>Another hand, xii</note>
308
+ <note displayLabel="Incipit" type="incipit">(105r) Hubertus (l. Herbertus) Abbas Westmon. 7 Edwius prior eiusdem loci. uenerabili priori Wigornie / Warino et domino Vhtredo cantori ceterisque fratribus ecclesie eiusdem. salutem in christo et perpet(uam) / pacem. Sciatis istum fratrem nostrum et monachum Benedictum ad nos uenisse et causa(s) / recessurus (!) sui de Maluernia sicut nobis uidetur rationabiliter ostendisse</note>
309
+ <note>Asks that he be well treated till the writer's coming</note>
310
+ <note>(105r) dixit nobis quoddam opus scilicet missale apud uos / incepisse et antequam ad Maluerniam rediret sua uoluntate perficeret</note>
311
+ <note>The monk in question has left Malvern and gone to Westminster</note>
312
+ <note>Ends</note>
313
+ <note displayLabel="Explicit" type="explicit">(105r) laudando creatorem qui ouem suam reduxit ad gregem. Vale</note>
314
+ <note>Herbertus was Abbot of Westminster from 1121 till shortly before 1140. Warinus prior of Worcester cir. 1130-40</note>
315
+ <note>Charm (xii?)</note>
316
+ <note displayLabel="Incipit" type="incipit">(105r) + In nomine p. et f. et s. sci amen + Ire + arex + Christe + rauex + filiax + / arafax + N. Medicina contra febres</note>
317
+ <note>On f. 52v in a neat small hand, beginning and margin cut: Constitutions affecting monks, etc.</note>
318
+ <note>The last begins</note>
319
+ <note displayLabel="Incipit" type="incipit">(105v) Monachis et canonicis regularibus tam uestimenta quam coopertoria interdicimus colorata</note>
320
+ <note displayLabel="Incipit" type="incipit">(105v) Viri religiosi quibus non est cura animarum commissa nullos ad penitentiam recipere audeant</note>
321
+ <note displayLabel="Incipit" type="incipit">(105v) Decimas uel in canonicas sanctiones ecclesiis ad quas pertinent precipimus cum integritate persolui</note>
322
+ </relatedItem>
323
+ <relatedItem type="host">
324
+ <titleInfo>
325
+ <title>Parker Manuscripts</title>
326
+ </titleInfo>
327
+ <location>
328
+ <url>https://purl.stanford.edu/dx969tv9730</url>
329
+ </location>
330
+ <typeOfResource collection="yes"/>
331
+ </relatedItem>
332
+ <accessCondition type="useAndReproduction">Images courtesy of The Parker Library, Corpus Christi College, Cambridge. Licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. For higher resolution images suitable for scholarly or commercial publication, either in print or in an electronic format, please contact the Parker Library directly at parker-library@corpus.cam.ac.uk</accessCondition>
333
+ <accessCondition type="license">CC by-nc: Attribution Non-Commercial 3.0 Unported</accessCondition>
334
+ </mods>