eadcodec 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -8,11 +8,12 @@ To import a file just do:
8
8
 
9
9
  All the file will be imported and it's whole contents loaded into memory. For
10
10
  big files this is a problem so you should look at
11
- XMLUtils::XMLStreamObjectParser instead.
11
+ XMLCodec::XMLStreamObjectParser instead from the xmlcodec framework on which
12
+ this library depends on.
12
13
 
13
- The XMLUtils module has some nice utility classes and functions to handle any
14
- kind of XML file. XMLUtils::XMLElement can be used to define an importer and
15
- exporter for any XML format. XMLUtils::XMLStreamObjectParser is designed to work
14
+ The XMLCodec module has some nice utility classes and functions to handle any
15
+ kind of XML file. XMLCodec::XMLElement can be used to define an importer and
16
+ exporter for any XML format. XMLCodec::XMLStreamObjectParser is designed to work
16
17
  with it allowing for stream parsing of XML files of arbitrary length with
17
18
  constant memory usage while still treating elements as ruby objects.
18
19
 
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  PKG_NAME = 'eadcodec'
2
- PKG_VERSION = '0.0.1'
2
+ PKG_VERSION = '0.0.2'
3
3
 
4
4
  require 'rake'
5
5
  require 'rake/testtask'
@@ -24,7 +24,7 @@ spec = Gem::Specification.new do |s|
24
24
  s.author = 'Pedro Côrte-Real'
25
25
  s.email = 'pedrocr@gmail.com'
26
26
  s.requirements << 'xmlcodec'
27
- s.add_dependency('xmlcodec', '>= 0.0.1')
27
+ s.add_dependency('xmlcodec', '>= 0.0.2')
28
28
  s.require_path = 'lib'
29
29
  s.autorequire = 'rake'
30
30
  s.files = PKG_FILES
@@ -51,7 +51,7 @@ Rake::RDocTask.new do |rd|
51
51
  rd.main = "README"
52
52
  rd.name = :docs
53
53
  rd.rdoc_files.include("README", "lib/**/*.rb")
54
- rd.rdoc_dir = 'doc'
55
- rd.title = PKG_NAME+' API"'
56
- rd.options = ['-S', '-w 2', '-N']
54
+ rd.rdoc_dir = 'web/doc'
55
+ rd.title = PKG_NAME+' API'
56
+ rd.options = ['-S', '-w 2', '-N', '-Axmlsubel_mult=XML Subelement Collection', '-Axmlsubel=XML Subelement', '-Axmlattr=XML Attribute']
57
57
  end
data/lib/EAD.rb CHANGED
@@ -8,7 +8,7 @@ include REXML
8
8
  # attributes and elements have been added. Adding an element is pretty easy
9
9
  # though.
10
10
  module EAD
11
- class EADElement < XMLCodec::XMLElement
11
+ class EADElement < XMLCodec::XMLElement #:nodoc:
12
12
  end
13
13
 
14
14
  class EADSimpleElement < EADElement
@@ -37,34 +37,15 @@ module EAD
37
37
  def remove_level(level)
38
38
  self.c.delete(level)
39
39
  end
40
-
41
- # Import the child levels into the element.
42
- def import_xml_levels(xmlel)
43
- xmlel.each_element() do |el|
44
- if EAD::c_levels.index(el.name)
45
- level = EAD::EADLevel.import_xml(el)
46
- add_level(level)
47
- end
48
- end
49
- end
50
-
51
- # Add any children that are levels to the element
52
- def add_levels(children)
53
- children.keys.each do |name|
54
- if EAD::c_levels.index(name)
55
- levels = children[name]
56
- levels.each do |level|
57
- add_level(level)
58
- end
59
- end
60
- end
61
- end
62
40
  end
63
41
 
64
42
  def self.sclass(name, string)
65
43
  const_set(name, Class.new(EADSimpleElement)).send(:elname, string)
66
44
  end
67
45
 
46
+ # Create a bunch of classes for simple elements with just values
47
+ # Most of these actually can have children so they should be promoted to
48
+ # actual classes.
68
49
  sclass "EADOrigination", "origination"
69
50
  sclass "EADUnitTitle", "unittitle"
70
51
  sclass "EADUnitId", "unitid"
@@ -88,6 +69,8 @@ module EAD
88
69
  sclass "EADLinkGrp", "linkgrp"
89
70
  sclass "EADTitle", "title"
90
71
 
72
+ # The class for the 'head' element. For convenience it can be initialized
73
+ # with a string value that is used as the first subelement.
91
74
  class EADHead < EADElement
92
75
  elname "head"
93
76
 
@@ -98,8 +81,10 @@ module EAD
98
81
 
99
82
  xmlsubelements
100
83
 
101
- def initialize(string)
102
- self.subelements << string
84
+ def initialize(string=nil)
85
+ if string
86
+ self.subelements << string
87
+ end
103
88
  end
104
89
 
105
90
  def value
@@ -107,6 +92,8 @@ module EAD
107
92
  end
108
93
  end
109
94
 
95
+ # The class for the 'p' element. For convenience it can be initialized
96
+ # with a string value that is used as the first subelement.
110
97
  class EADP < EADElement
111
98
  elname "p"
112
99
 
@@ -116,8 +103,10 @@ module EAD
116
103
 
117
104
  xmlsubelements
118
105
 
119
- def initialize(string)
120
- self.subelements << string
106
+ def initialize(string=nil)
107
+ if string
108
+ self.subelements << string
109
+ end
121
110
  end
122
111
 
123
112
  def value
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: eadcodec
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
7
- date: 2006-05-12 00:00:00 +01:00
6
+ version: 0.0.2
7
+ date: 2006-05-18 00:00:00 +01:00
8
8
  summary: Importer/Exporter for the EAD XML format
9
9
  require_paths:
10
10
  - lib
@@ -58,7 +58,6 @@ files:
58
58
  - test/TestEADSubordinates.rb
59
59
  - test/examples/example1.xml
60
60
  - test/examples/example2.xml
61
- - test/examples/example2_exported.xml
62
61
  - README
63
62
  - LICENSE
64
63
  - Rakefile
@@ -82,5 +81,5 @@ dependencies:
82
81
  requirements:
83
82
  - - ">="
84
83
  - !ruby/object:Gem::Version
85
- version: 0.0.1
84
+ version: 0.0.2
86
85
  version:
@@ -1,512 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <!DOCTYPE ead SYSTEM "file:///home/pedrocr/ead.dtd">
3
- <ead>
4
- <eadheader repositoryencoding='iso15511' relatedencoding='marc'>
5
- <eadid countrycode='us'>terr06</eadid>
6
- <filedesc>
7
- <titlestmt>
8
- <author>Finding aid prepared by Lydia Lucas.</author>
9
- <subtitle> An Inventory of Territorial Governor Willis A. Gorman</subtitle>
10
- <titleproper>MINNESOTA TERRITORIAL ARCHIVES. Territorial Governor:</titleproper>
11
- </titlestmt>
12
- </filedesc>
13
- <profiledesc>
14
- <creation>Finding aid encoded by Lyda Morehouse,
15
- <date>July 17, 2002.</date>
16
- </creation>
17
- </profiledesc>
18
- </eadheader>
19
- <archdesc level='series'>
20
- <did id='a1'>
21
- <head>OVERVIEW OF THE RECORDS</head>
22
- <origination>Agency:Minnesota. Governor (1853-1857 : Gorman).</origination>
23
- <unittitle>Series Records of territorial governor Willis A. Gorman,</unittitle>
24
- <abstract>Subject files, correspondence, appointments, pardon records, reports from territorial officers, requests for return of fugitives, and miscellany.</abstract>
25
- <physdesc>0.75 cu. ft. (23 folders in 2 partial boxes).</physdesc>
26
- <physloc>See Detailed Description section for box locations.</physloc>
27
- <unitdate label='Date:'>1852-1857.</unitdate>
28
- </did>
29
- <bioghist>
30
- <head id='a2'>BIOGRAPHICAL SKETCH OF GOVERNOR WILLIS A. GORMAN</head>
31
- <p>Willis Arnold Gorman was born in Kentucky on January 12, 1816. His early career was as a lawyer and state legislator (Democrat) in Indiana. During the Mexican War he raised and commanded an Indiana rifle battalion and an infantry regiment, and subsequently was elected to two terms in the U.S. Congress. President Franklin Pierce appointed him Governor of Minnesota in May 13, 1853, and he served in that office until 1857. He was subsequently a delegate to the state constitutional convention (1857) and was elected to the first state legislature (1858).</p>
32
- <p>At the outset of the Civil War he commanded the First Minnesota Infantry Volunteers (April-October, 1861) until his promotion to brigadier general. Following his discharge from military service in 1864, he practiced law in St. Paul in partnership with Cushman K. Davis. In 1869 he was appointed St. Paul city attorney, and held that office until his death on May 20, 1876.</p>
33
- <p>Sources: <emph>Minnesota Biographies</emph>, pp. 267-268; <emph>Minnesota in the Civil and Indian Wars</emph>, Vol. I, p. 14; William Watts Folwell, <emph>A History of Minnesota</emph> (St. Paul, rev. 1956), Vol. I, pp. 377-383; Theodore C. Blegen, <emph>Minnesota, A History of the State</emph> (1963), pp. 171, 240-242, 293.</p>
34
- <p>Willis Arnold Gorman was born in Kentucky on January 12, 1816. His early career was as a lawyer and state legislator (Democrat) in Indiana. During the Mexican War he raised and commanded an Indiana rifle battalion and an infantry regiment, and subsequently was elected to two terms in the U.S. Congress. President Franklin Pierce appointed him Governor of Minnesota in May 13, 1853, and he served in that office until 1857. He was subsequently a delegate to the state constitutional convention (1857) and was elected to the first state legislature (1858).</p>
35
- <p>At the outset of the Civil War he commanded the First Minnesota Infantry Volunteers (April-October, 1861) until his promotion to brigadier general. Following his discharge from military service in 1864, he practiced law in St. Paul in partnership with Cushman K. Davis. In 1869 he was appointed St. Paul city attorney, and held that office until his death on May 20, 1876.</p>
36
- <p>Sources: <emph>Minnesota Biographies</emph>, pp. 267-268; <emph>Minnesota in the Civil and Indian Wars</emph>, Vol. I, p. 14; William Watts Folwell, <emph>A History of Minnesota</emph> (St. Paul, rev. 1956), Vol. I, pp. 377-383; Theodore C. Blegen, <emph>Minnesota, A History of the State</emph> (1963), pp. 171, 240-242, 293.</p>
37
- </bioghist>
38
- <scopecontent>
39
- <head id='a3'>SCOPE AND CONTENTS OF THE RECORDS</head>
40
- <p>Subject files and correspondence of territorial governor Gorman. A large proportion relate to territorial officers&apos; appointments and commissions. Letters received and sent address the following topics: concerns of federal civilian agencies, military and Indian affairs in general, the 1855 treaty with the Winnebago Indians, land sales, the Minnesota and Northwestern Railroad Company, and other territorial affairs. Also present are a legislative diary (Jan. 27-March 6, 1857), pardon records, petitions regarding local government organization, reports from territorial officers, and requests from other states for return of fugitives.</p>
41
- <p>Gorman&apos;s governorship spanned a period of both tangible and speculative growth in the state&apos;s infrastructure and economy, with numerous railroads, educational institutions, and corporations being chartered, new counties established, new towns incorporated, and several Indian treaties ratified. The surviving records contain only sketchy information on these developments, and do not appear to contain any significant documentation on an abortive 1857 scheme to remove the state capital from St. Paul to St. Peter.</p>
42
- <p>Subject files and correspondence of territorial governor Gorman. A large proportion relate to territorial officers&apos; appointments and commissions. Letters received and sent address the following topics: concerns of federal civilian agencies, military and Indian affairs in general, the 1855 treaty with the Winnebago Indians, land sales, the Minnesota and Northwestern Railroad Company, and other territorial affairs. Also present are a legislative diary (Jan. 27-March 6, 1857), pardon records, petitions regarding local government organization, reports from territorial officers, and requests from other states for return of fugitives.</p>
43
- <p>Gorman&apos;s governorship spanned a period of both tangible and speculative growth in the state&apos;s infrastructure and economy, with numerous railroads, educational institutions, and corporations being chartered, new counties established, new towns incorporated, and several Indian treaties ratified. The surviving records contain only sketchy information on these developments, and do not appear to contain any significant documentation on an abortive 1857 scheme to remove the state capital from St. Paul to St. Peter.</p>
44
- </scopecontent>
45
- <dsc type='combined' id='fruin' audience='external'>
46
- <head id='a9'>DETAILED DESCRIPTION OF THE RECORDS</head>
47
- <p id='MHSLoc'> <emph>Note to Researchers: To request materials, please note both the location and box numbers shown below.</emph>
48
- </p>
49
- <p id='MHSLoc'> <emph>Note to Researchers: To request materials, please note both the location and box numbers shown below.</emph>
50
- </p>
51
- <c01>
52
- <did>
53
- <unittitle>Appointments: Commission of Deeds, </unittitle>
54
- <physdesc>1 folder.</physdesc>
55
- <physloc>115.I.19.8F</physloc>
56
- <unitdate>1853-1857. </unitdate>
57
- </did>
58
- <scopecontent>
59
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
60
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
61
- </scopecontent>
62
- </c01>
63
- <c01>
64
- <did>
65
- <unittitle>Appointments: Counties, </unittitle>
66
- <physdesc>1 folder.</physdesc>
67
- <unitdate>1853-1857. </unitdate>
68
- </did>
69
- <scopecontent>
70
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation. Arranged alphabetically by county.</p>
71
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation. Arranged alphabetically by county.</p>
72
- </scopecontent>
73
- </c01>
74
- <c01>
75
- <did>
76
- <unittitle>Appointments: Notary Public, </unittitle>
77
- <physdesc>4 folders. </physdesc>
78
- <unitdate>undated and 1853-1857. </unitdate>
79
- </did>
80
- <scopecontent>
81
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
82
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
83
- </scopecontent>
84
- </c01>
85
- <c01>
86
- <did>
87
- <unittitle>Appointments: Territorial Offices, </unittitle>
88
- <unitdate>1853-1857. </unitdate>
89
- </did>
90
- <scopecontent>
91
- <p>May include any of the following: application, petition, recommendations, letter of resignation, for commissioner of emigration, librarian, superintendent of common schools, auditor, treasurer, building commissioner, supreme court reporter, militia, and land office.</p>
92
- <p>May include any of the following: application, petition, recommendations, letter of resignation, for commissioner of emigration, librarian, superintendent of common schools, auditor, treasurer, building commissioner, supreme court reporter, militia, and land office.</p>
93
- </scopecontent>
94
- </c01>
95
- <c01>
96
- <did>
97
- <unittitle>Commissions, </unittitle>
98
- <physdesc>5 items.</physdesc>
99
- <unitdate>1855-1857. </unitdate>
100
- </did>
101
- <scopecontent>
102
- <p>For notary public, justice of the peace, and building commissioner.</p>
103
- <p>For notary public, justice of the peace, and building commissioner.</p>
104
- </scopecontent>
105
- </c01>
106
- <c01>
107
- <did>
108
- <unittitle>Document Transmittals, Receipts, and Requests, </unittitle>
109
- <physdesc>1 folder. </physdesc>
110
- <unitdate>1853-1857. </unitdate>
111
- </did>
112
- </c01>
113
- <c01>
114
- <did>
115
- <unittitle>Legislative Diary, 1</unittitle>
116
- <physdesc>1 volume </physdesc>
117
- <unitdate>1857. </unitdate>
118
- </did>
119
- <scopecontent>
120
- <p>Fragmentary entries, January 27 - March 6, showing numbers and titles of bills.</p>
121
- <p>Fragmentary entries, January 27 - March 6, showing numbers and titles of bills.</p>
122
- </scopecontent>
123
- </c01>
124
- <c01>
125
- <did>
126
- <unittitle>Letters Received: Federal Civilian Agencies, 18</unittitle>
127
- <physdesc>1 folder. </physdesc>
128
- <unitdate>1853-1857. </unitdate>
129
- </did>
130
- <scopecontent>
131
- <p>Letters and circulars from federal civilian agencies, including the General Land Office, the Post Office Department, and the Treasury Department.</p>
132
- <p>Letters and circulars from federal civilian agencies, including the General Land Office, the Post Office Department, and the Treasury Department.</p>
133
- </scopecontent>
134
- </c01>
135
- <c01>
136
- <did>
137
- <unittitle>Letters Received: Indian and Military Affairs, </unittitle>
138
- <physdesc>1 folder. </physdesc>
139
- <physloc>115.I.19.8F</physloc>
140
- <unitdate>1853-1857. </unitdate>
141
- </did>
142
- <scopecontent>
143
- <p>Letters, reports, and orders relating to Indian and military affairs, from the commanding officers at Fort Snelling and Fort Ridgely; from legislative district representatives about the Winnebago treaty, with a copy of Governor Gorman&apos;s reply (January 1854); and petitions and requests for defense against the Indians.</p>
144
- <p>Includes a letter written by Henry B. Smythe on behalf of the Winnebago Indians (8 Jan. 1856) requesting the transfer of $806 from tribal funds to the superintendent of the Winnebago School. It may refer to funds available to the tribe under the 1855 U.S. Treaty with the Winnebago; it is signed by many of the Winnebago signatories to that treaty.</p>
145
- <p>Letters, reports, and orders relating to Indian and military affairs, from the commanding officers at Fort Snelling and Fort Ridgely; from legislative district representatives about the Winnebago treaty, with a copy of Governor Gorman&apos;s reply (January 1854); and petitions and requests for defense against the Indians.</p>
146
- <p>Includes a letter written by Henry B. Smythe on behalf of the Winnebago Indians (8 Jan. 1856) requesting the transfer of $806 from tribal funds to the superintendent of the Winnebago School. It may refer to funds available to the tribe under the 1855 U.S. Treaty with the Winnebago; it is signed by many of the Winnebago signatories to that treaty.</p>
147
- </scopecontent>
148
- </c01>
149
- <c01>
150
- <did>
151
- <unittitle>Letters Received: Land Sales, </unittitle>
152
- <physdesc>9 items.</physdesc>
153
- <unitdate>1853-1857. </unitdate>
154
- </did>
155
- <scopecontent>
156
- <p>Letters about land sales and occupancy.</p>
157
- <p>Letters about land sales and occupancy.</p>
158
- </scopecontent>
159
- </c01>
160
- <c01>
161
- <did>
162
- <unittitle>Letters Received: Other Territorial Affairs, </unittitle>
163
- <physdesc>16 items.</physdesc>
164
- <unitdate>1853-1857. </unitdate>
165
- </did>
166
- <scopecontent>
167
- <p>Letters from Senator Henry M. Rice and others about a variety of territorial affairs.</p>
168
- <p>Letters from Senator Henry M. Rice and others about a variety of territorial affairs.</p>
169
- </scopecontent>
170
- </c01>
171
- <c01>
172
- <did>
173
- <unittitle>Pardon Records, </unittitle>
174
- <physdesc>21 items.</physdesc>
175
- <physloc>115.I.19.9B</physloc>
176
- <unitdate>1852-1857. </unitdate>
177
- </did>
178
- <scopecontent>
179
- <p>Requests and petitions for pardons and commutations; governor&apos;s pardon; orders for release and related court records; letters for persons convicted and sentenced for various offenses, including murder, assault with intent to kill, assault and battery, simple assault, and resisting an officer; and letters asking for the release of an Indian hostage.</p>
180
- <p>Requests and petitions for pardons and commutations; governor&apos;s pardon; orders for release and related court records; letters for persons convicted and sentenced for various offenses, including murder, assault with intent to kill, assault and battery, simple assault, and resisting an officer; and letters asking for the release of an Indian hostage.</p>
181
- </scopecontent>
182
- </c01>
183
- <c01>
184
- <did>
185
- <unittitle>Petitions, </unittitle>
186
- <physdesc>10 items.</physdesc>
187
- <unitdate>1853-1855. </unitdate>
188
- </did>
189
- <scopecontent>
190
- <p>Various requests and petitions for the establishment of election precincts in Portsmouth and the Sioux Agency, for the organization of local governments in Rice County and Steele County, for a town organization in Bangor, for a vigilance committee to suppress liquor traffic at Traverse des Sioux, and for a certification of election districts in Carver County.</p>
191
- <p>Various requests and petitions for the establishment of election precincts in Portsmouth and the Sioux Agency, for the organization of local governments in Rice County and Steele County, for a town organization in Bangor, for a vigilance committee to suppress liquor traffic at Traverse des Sioux, and for a certification of election districts in Carver County.</p>
192
- </scopecontent>
193
- </c01>
194
- <c01>
195
- <did>
196
- <unittitle>Proclamations, </unittitle>
197
- <physdesc>2 items.</physdesc>
198
- <unitdate>1854-1855. </unitdate>
199
- </did>
200
- <scopecontent>
201
- <p>Designating November 21, 1854, and November 20, 1855 as days of Thanksgiving.</p>
202
- <p>Designating November 21, 1854, and November 20, 1855 as days of Thanksgiving.</p>
203
- </scopecontent>
204
- </c01>
205
- <c01>
206
- <did>
207
- <unittitle>Records Relating to the Minnesota and Northwestern Railroad Company, </unittitle>
208
- <physdesc>31 items.</physdesc>
209
- <unitdate>1854-1856. </unitdate>
210
- </did>
211
- <scopecontent>
212
- <p>Bills, correspondence, and reports dealing with its incorporation and with the political maneuverings surrounding its proposed land grant.</p>
213
- <p>Bills, correspondence, and reports dealing with its incorporation and with the political maneuverings surrounding its proposed land grant.</p>
214
- </scopecontent>
215
- </c01>
216
- <c01>
217
- <did>
218
- <unittitle>Reports: Board of Inspectors of the Territorial Prison, </unittitle>
219
- <physdesc>1 folder. </physdesc>
220
- <physloc>115.I.19.9B</physloc>
221
- <unitdate>1853-1856. </unitdate>
222
- </did>
223
- <scopecontent>
224
- <p>Reports that include activities of the board and minutes of board meetings.</p>
225
- <p>Reports that include activities of the board and minutes of board meetings.</p>
226
- </scopecontent>
227
- </c01>
228
- <c01>
229
- <did>
230
- <unittitle>Reports: Commissioner of Emigration, </unittitle>
231
- <physdesc>1 folder. </physdesc>
232
- <unitdate>1854-1857. </unitdate>
233
- </did>
234
- <scopecontent>
235
- <p>Reports of activities, and financial reports including lists of expenditures and various receipts.</p>
236
- <p>Reports of activities, and financial reports including lists of expenditures and various receipts.</p>
237
- </scopecontent>
238
- </c01>
239
- <c01>
240
- <did>
241
- <unittitle>Reports: Other Territorial Officers, </unittitle>
242
- <physdesc>7 items.</physdesc>
243
- <unitdate>1853-1855. </unitdate>
244
- </did>
245
- <c02>
246
- <did>
247
- <unittitle>- Agent to select university lands (December 12, 1855).</unittitle>
248
- </did>
249
- </c02>
250
- <c02>
251
- <did>
252
- <unittitle>- Commissioner for the Crystal Palace Exhibition (1853, 1854).</unittitle>
253
- </did>
254
- </c02>
255
- <c02>
256
- <did>
257
- <unittitle>- Superintendent of common schools (December 25, 1854).</unittitle>
258
- </did>
259
- </c02>
260
- <c02>
261
- <did>
262
- <unittitle>- Territorial auditor (December 30, 1854; December 26, 1855).</unittitle>
263
- </did>
264
- </c02>
265
- </c01>
266
- <c01>
267
- <did>
268
- <unittitle>Requests for Return of Fugitives, </unittitle>
269
- <physdesc>2 folders. </physdesc>
270
- <unitdate>1854-1857. </unitdate>
271
- </did>
272
- <scopecontent>
273
- <p>Both to and from various states.</p>
274
- <p>Both to and from various states.</p>
275
- </scopecontent>
276
- </c01>
277
- </dsc>
278
- <dsc type='combined' id='fruin' audience='external'>
279
- <head id='a9'>DETAILED DESCRIPTION OF THE RECORDS</head>
280
- <p id='MHSLoc'> <emph>Note to Researchers: To request materials, please note both the location and box numbers shown below.</emph>
281
- </p>
282
- <p id='MHSLoc'> <emph>Note to Researchers: To request materials, please note both the location and box numbers shown below.</emph>
283
- </p>
284
- <c01>
285
- <did>
286
- <unittitle>Appointments: Commission of Deeds, </unittitle>
287
- <physdesc>1 folder.</physdesc>
288
- <physloc>115.I.19.8F</physloc>
289
- <unitdate>1853-1857. </unitdate>
290
- </did>
291
- <scopecontent>
292
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
293
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
294
- </scopecontent>
295
- </c01>
296
- <c01>
297
- <did>
298
- <unittitle>Appointments: Counties, </unittitle>
299
- <physdesc>1 folder.</physdesc>
300
- <unitdate>1853-1857. </unitdate>
301
- </did>
302
- <scopecontent>
303
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation. Arranged alphabetically by county.</p>
304
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation. Arranged alphabetically by county.</p>
305
- </scopecontent>
306
- </c01>
307
- <c01>
308
- <did>
309
- <unittitle>Appointments: Notary Public, </unittitle>
310
- <physdesc>4 folders. </physdesc>
311
- <unitdate>undated and 1853-1857. </unitdate>
312
- </did>
313
- <scopecontent>
314
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
315
- <p>For each individual, may include any of the following: application, petition, recommendations, letter of resignation.</p>
316
- </scopecontent>
317
- </c01>
318
- <c01>
319
- <did>
320
- <unittitle>Appointments: Territorial Offices, </unittitle>
321
- <unitdate>1853-1857. </unitdate>
322
- </did>
323
- <scopecontent>
324
- <p>May include any of the following: application, petition, recommendations, letter of resignation, for commissioner of emigration, librarian, superintendent of common schools, auditor, treasurer, building commissioner, supreme court reporter, militia, and land office.</p>
325
- <p>May include any of the following: application, petition, recommendations, letter of resignation, for commissioner of emigration, librarian, superintendent of common schools, auditor, treasurer, building commissioner, supreme court reporter, militia, and land office.</p>
326
- </scopecontent>
327
- </c01>
328
- <c01>
329
- <did>
330
- <unittitle>Commissions, </unittitle>
331
- <physdesc>5 items.</physdesc>
332
- <unitdate>1855-1857. </unitdate>
333
- </did>
334
- <scopecontent>
335
- <p>For notary public, justice of the peace, and building commissioner.</p>
336
- <p>For notary public, justice of the peace, and building commissioner.</p>
337
- </scopecontent>
338
- </c01>
339
- <c01>
340
- <did>
341
- <unittitle>Document Transmittals, Receipts, and Requests, </unittitle>
342
- <physdesc>1 folder. </physdesc>
343
- <unitdate>1853-1857. </unitdate>
344
- </did>
345
- </c01>
346
- <c01>
347
- <did>
348
- <unittitle>Legislative Diary, 1</unittitle>
349
- <physdesc>1 volume </physdesc>
350
- <unitdate>1857. </unitdate>
351
- </did>
352
- <scopecontent>
353
- <p>Fragmentary entries, January 27 - March 6, showing numbers and titles of bills.</p>
354
- <p>Fragmentary entries, January 27 - March 6, showing numbers and titles of bills.</p>
355
- </scopecontent>
356
- </c01>
357
- <c01>
358
- <did>
359
- <unittitle>Letters Received: Federal Civilian Agencies, 18</unittitle>
360
- <physdesc>1 folder. </physdesc>
361
- <unitdate>1853-1857. </unitdate>
362
- </did>
363
- <scopecontent>
364
- <p>Letters and circulars from federal civilian agencies, including the General Land Office, the Post Office Department, and the Treasury Department.</p>
365
- <p>Letters and circulars from federal civilian agencies, including the General Land Office, the Post Office Department, and the Treasury Department.</p>
366
- </scopecontent>
367
- </c01>
368
- <c01>
369
- <did>
370
- <unittitle>Letters Received: Indian and Military Affairs, </unittitle>
371
- <physdesc>1 folder. </physdesc>
372
- <physloc>115.I.19.8F</physloc>
373
- <unitdate>1853-1857. </unitdate>
374
- </did>
375
- <scopecontent>
376
- <p>Letters, reports, and orders relating to Indian and military affairs, from the commanding officers at Fort Snelling and Fort Ridgely; from legislative district representatives about the Winnebago treaty, with a copy of Governor Gorman&apos;s reply (January 1854); and petitions and requests for defense against the Indians.</p>
377
- <p>Includes a letter written by Henry B. Smythe on behalf of the Winnebago Indians (8 Jan. 1856) requesting the transfer of $806 from tribal funds to the superintendent of the Winnebago School. It may refer to funds available to the tribe under the 1855 U.S. Treaty with the Winnebago; it is signed by many of the Winnebago signatories to that treaty.</p>
378
- <p>Letters, reports, and orders relating to Indian and military affairs, from the commanding officers at Fort Snelling and Fort Ridgely; from legislative district representatives about the Winnebago treaty, with a copy of Governor Gorman&apos;s reply (January 1854); and petitions and requests for defense against the Indians.</p>
379
- <p>Includes a letter written by Henry B. Smythe on behalf of the Winnebago Indians (8 Jan. 1856) requesting the transfer of $806 from tribal funds to the superintendent of the Winnebago School. It may refer to funds available to the tribe under the 1855 U.S. Treaty with the Winnebago; it is signed by many of the Winnebago signatories to that treaty.</p>
380
- </scopecontent>
381
- </c01>
382
- <c01>
383
- <did>
384
- <unittitle>Letters Received: Land Sales, </unittitle>
385
- <physdesc>9 items.</physdesc>
386
- <unitdate>1853-1857. </unitdate>
387
- </did>
388
- <scopecontent>
389
- <p>Letters about land sales and occupancy.</p>
390
- <p>Letters about land sales and occupancy.</p>
391
- </scopecontent>
392
- </c01>
393
- <c01>
394
- <did>
395
- <unittitle>Letters Received: Other Territorial Affairs, </unittitle>
396
- <physdesc>16 items.</physdesc>
397
- <unitdate>1853-1857. </unitdate>
398
- </did>
399
- <scopecontent>
400
- <p>Letters from Senator Henry M. Rice and others about a variety of territorial affairs.</p>
401
- <p>Letters from Senator Henry M. Rice and others about a variety of territorial affairs.</p>
402
- </scopecontent>
403
- </c01>
404
- <c01>
405
- <did>
406
- <unittitle>Pardon Records, </unittitle>
407
- <physdesc>21 items.</physdesc>
408
- <physloc>115.I.19.9B</physloc>
409
- <unitdate>1852-1857. </unitdate>
410
- </did>
411
- <scopecontent>
412
- <p>Requests and petitions for pardons and commutations; governor&apos;s pardon; orders for release and related court records; letters for persons convicted and sentenced for various offenses, including murder, assault with intent to kill, assault and battery, simple assault, and resisting an officer; and letters asking for the release of an Indian hostage.</p>
413
- <p>Requests and petitions for pardons and commutations; governor&apos;s pardon; orders for release and related court records; letters for persons convicted and sentenced for various offenses, including murder, assault with intent to kill, assault and battery, simple assault, and resisting an officer; and letters asking for the release of an Indian hostage.</p>
414
- </scopecontent>
415
- </c01>
416
- <c01>
417
- <did>
418
- <unittitle>Petitions, </unittitle>
419
- <physdesc>10 items.</physdesc>
420
- <unitdate>1853-1855. </unitdate>
421
- </did>
422
- <scopecontent>
423
- <p>Various requests and petitions for the establishment of election precincts in Portsmouth and the Sioux Agency, for the organization of local governments in Rice County and Steele County, for a town organization in Bangor, for a vigilance committee to suppress liquor traffic at Traverse des Sioux, and for a certification of election districts in Carver County.</p>
424
- <p>Various requests and petitions for the establishment of election precincts in Portsmouth and the Sioux Agency, for the organization of local governments in Rice County and Steele County, for a town organization in Bangor, for a vigilance committee to suppress liquor traffic at Traverse des Sioux, and for a certification of election districts in Carver County.</p>
425
- </scopecontent>
426
- </c01>
427
- <c01>
428
- <did>
429
- <unittitle>Proclamations, </unittitle>
430
- <physdesc>2 items.</physdesc>
431
- <unitdate>1854-1855. </unitdate>
432
- </did>
433
- <scopecontent>
434
- <p>Designating November 21, 1854, and November 20, 1855 as days of Thanksgiving.</p>
435
- <p>Designating November 21, 1854, and November 20, 1855 as days of Thanksgiving.</p>
436
- </scopecontent>
437
- </c01>
438
- <c01>
439
- <did>
440
- <unittitle>Records Relating to the Minnesota and Northwestern Railroad Company, </unittitle>
441
- <physdesc>31 items.</physdesc>
442
- <unitdate>1854-1856. </unitdate>
443
- </did>
444
- <scopecontent>
445
- <p>Bills, correspondence, and reports dealing with its incorporation and with the political maneuverings surrounding its proposed land grant.</p>
446
- <p>Bills, correspondence, and reports dealing with its incorporation and with the political maneuverings surrounding its proposed land grant.</p>
447
- </scopecontent>
448
- </c01>
449
- <c01>
450
- <did>
451
- <unittitle>Reports: Board of Inspectors of the Territorial Prison, </unittitle>
452
- <physdesc>1 folder. </physdesc>
453
- <physloc>115.I.19.9B</physloc>
454
- <unitdate>1853-1856. </unitdate>
455
- </did>
456
- <scopecontent>
457
- <p>Reports that include activities of the board and minutes of board meetings.</p>
458
- <p>Reports that include activities of the board and minutes of board meetings.</p>
459
- </scopecontent>
460
- </c01>
461
- <c01>
462
- <did>
463
- <unittitle>Reports: Commissioner of Emigration, </unittitle>
464
- <physdesc>1 folder. </physdesc>
465
- <unitdate>1854-1857. </unitdate>
466
- </did>
467
- <scopecontent>
468
- <p>Reports of activities, and financial reports including lists of expenditures and various receipts.</p>
469
- <p>Reports of activities, and financial reports including lists of expenditures and various receipts.</p>
470
- </scopecontent>
471
- </c01>
472
- <c01>
473
- <did>
474
- <unittitle>Reports: Other Territorial Officers, </unittitle>
475
- <physdesc>7 items.</physdesc>
476
- <unitdate>1853-1855. </unitdate>
477
- </did>
478
- <c02>
479
- <did>
480
- <unittitle>- Agent to select university lands (December 12, 1855).</unittitle>
481
- </did>
482
- </c02>
483
- <c02>
484
- <did>
485
- <unittitle>- Commissioner for the Crystal Palace Exhibition (1853, 1854).</unittitle>
486
- </did>
487
- </c02>
488
- <c02>
489
- <did>
490
- <unittitle>- Superintendent of common schools (December 25, 1854).</unittitle>
491
- </did>
492
- </c02>
493
- <c02>
494
- <did>
495
- <unittitle>- Territorial auditor (December 30, 1854; December 26, 1855).</unittitle>
496
- </did>
497
- </c02>
498
- </c01>
499
- <c01>
500
- <did>
501
- <unittitle>Requests for Return of Fugitives, </unittitle>
502
- <physdesc>2 folders. </physdesc>
503
- <unitdate>1854-1857. </unitdate>
504
- </did>
505
- <scopecontent>
506
- <p>Both to and from various states.</p>
507
- <p>Both to and from various states.</p>
508
- </scopecontent>
509
- </c01>
510
- </dsc>
511
- </archdesc>
512
- </ead>