diff --git a/bin/extractor.py b/bin/extractor.py
index 0f47026..99267ba 100644
--- a/bin/extractor.py
+++ b/bin/extractor.py
@@ -10,9 +10,7 @@
from xml.etree.ElementTree import tostring
from xml.dom import minidom
-
-import mamlukimport.parser.Parser
-import mamlukimport.mapper.Mapper
+from mamlukimport.mapper import Mapper
def read_directory(a_directory):
items = scandir(a_directory)
@@ -26,7 +24,13 @@ def read_directory(a_directory):
def expand_list_of_terms(value_string):
item_count = 0
output = {}
- for n_term in value_string.split(';'):
+ if ';' in value_string:
+ a_list = value_string.split(';')
+ elif isinstance(value_string, list):
+ a_list = value_string
+ else:
+ a_list = [value_string]
+ for n_term in a_list:
n_term = n_term.lstrip().strip()
val = None
if n_term != "":
@@ -36,6 +40,60 @@ def expand_list_of_terms(value_string):
output[item_count] = n_term
return output
+def _return_generic_string(a_string):
+ return expand_list_of_terms("University of Chicago")
+
+def _force_convert_to_list(a_string):
+ return expand_list_of_terms([a_string])
+
+def _extract_list_of_terms(some_original_input):
+ return some_original_input
+
+def _extract_copyright(rights_statement):
+ test = rights_statement.split(' ')[0].encode('utf-8')
+ test = test.split(b'\xc2\xa9')
+ if len(test) == 2:
+ return expand_list_of_terms(test[1].decode('utf-8'))
+ else:
+ return _return_generic_string("no copyright")
+
+def _extract_volume_information(some_original_input):
+ msr_pattern = re.compile('MSR').search(some_original_input)
+ vol_pattern = re.compile('Vol.').search(some_original_input)
+ print(some_original_input)
+
+ # if msr_pattern:
+ # volume = data["Title"][data["Title"][0:]
+ # .index('MSR') + 3:].lstrip().strip()
+ # title = data["Title"][0:data["Title"].index('MSR')]
+ # elif vol_pattern:
+ # volume = data["Title"][1][data["Title"].index('Vol.') + 4:].lstrip().strip()
+ # title = data["Title"][0:data["Title"].index('Vol.')]
+ # else:
+ # volume = "none"
+ # title = title.lstrip().strip()
+ # first_check = title[-1]
+ # if first_check == '(':
+ # title = title[0:-1].strip().lstrip()
+ # second_check = title[-1]
+ # if second_check == ":":
+ # title = title[0:-1].strip().lstrip()
+ # if volume:
+ # volume = re.sub(r'\)', '', re.sub(r'\(', '', volume))
+ # if 'MamlukStudiesReview' in data["FileName"]:
+ # output["formatof"] = expand_list_of_terms(volume)
+ # output["source"] = expand_list_of_terms("printed " + volume)
+ # else:
+ # output["part"] = expand_list_of_terms(volume)
+ # output["source"] = expand_list_of_terms(volume)
+
+def _check_for_webstatement(some_dict):
+ if some_dict.get("WebStatement", None):
+ output = some_dict.get("WebStatement")
+ else:
+ output = "http://mamluk.uchicago.edu/msr.html"
+ return _return_generic_string(output)
+
def create_input(iterable, total_files, outputs):
for n_file in iterable:
try:
@@ -44,69 +102,23 @@ def create_input(iterable, total_files, outputs):
except JSONDecodeError:
continue
output = {}
- output["publisher"] = expand_list_of_terms("University of Chicago")
- output["creator"] = expand_list_of_terms(data["Creator"])
- output["rights"] = expand_list_of_terms(data["Rights"])
- if not isinstance(data["Keywords"], list):
- output["keywords"] = expand_list_of_terms(data["Keywords"])
- else:
- output["keywords"] = expand_list_of_terms(data["Keywords"][0])
- if not isinstance(data["Subject"], list):
- output["subject"] = expand_list_of_terms(data["Subjects"])
- else:
- output["subject"] = expand_list_of_terms(data["Subjects"][0])
- output["createdate"] = expand_list_of_terms(data["CreateDate"])
- output["filename"] = expand_list_of_terms(data["FileName"])
- volume = data["FileName"].split('_')[2]
- temp = volume.split('-')
- if len(temp) >= 2:
- head = [temp[0]]
- tail = temp[1:]
- tail = [x for x in tail if re.compile(r'\d{1,}$').match(x)]
- output["copyrightdate"] = expand_list_of_terms(
- '-'.join(head + tail))
- else:
- output["copyrightdate"] = expand_list_of_terms('-'.join([re.sub(r'[a-z]', '',
- re.sub(r'\.', '', x))
- for x in temp]))
- msr_pattern = re.compile('MSR').search(data["Title"])
- vol_pattern = re.compile('Vol.').search(data["Title"])
- if msr_pattern:
- volume = data["Title"][data["Title"][
- 1].index('MSR') + 3:].lstrip().strip()
- title = {1: data["Title"][0:data["Title"].index('MSR')]}
- elif vol_pattern:
- volume = data["Title"][1][
- data["Title"].index('Vol.') + 4:].lstrip().strip()
- title = data["Title"][0:data["Title"].index('Vol.')]
- else:
- volume = "none"
- title = expand_list_of_terms(title[1].lstrip().strip())
- first_check = title[1][-1]
- if first_check == '(':
- title = title[0:-1].strip().lstrip()
- second_check = title[-1]
- if second_check == ":":
- title = title[0:-1].strip().lstrip()
- if volume:
- volume = re.sub(r'\)', '', re.sub(r'\(', '', volume))
- if 'MamlukStudiesReview' in data["FileName"]:
- output["formatof"] = expand_list_of_terms(volume)
- else:
- output["part"] = expand_list_of_terms(volume)
- output["title"] = expand_list_of_terms(title)
- try:
- output["webstatement"] = expand_list_of_terms(
- data["WebStatement"])
- except KeyError:
- pass
+ output["publisher"] = _return_generic_string("University of Chicago")
+ output["creator"] = _return_generic_string(data["Creator"])
+ output["rights"] = _force_convert_to_list(data["Rights"])
+ output["copyright"] = _extract_copyright(data["Rights"])
+ output["keywords"] = _extract_list_of_terms(data["Keywords"])
+ output["subjects"] = _extract_list_of_terms(data["Subject"])
+ output["filename"] = _return_generic_string(data["FileName"])
+ output["volumme"] = _extract_volume_information(data["Title"])
+ output["title"] = _return_generic_string(data["Title"])
+ output["webstatement"] = _check_for_webstatement(data)
outputs.append(output)
return outputs, total_files
def create_output(inputs):
for n_record in inputs:
filename = n_record["filename"]
- new_mapper = mamlukimport.mapper.Mapper(n_record)
+ new_mapper = Mapper(n_record)
new_filename = re.sub(r'.pdf', '.xml', filename[1])
xml_string = tostring(new_mapper.out)
xml_string = minidom.parseString(xml_string).toprettyxml()
@@ -122,6 +134,7 @@ def main():
parser.add_argument(
"output_directory",
help="A directory to write the results of the metadata extraction")
+
args = parser.parse_args()
a_generator = read_directory(args.pdf_directory)
total_files = 0
diff --git a/mamlukimport/mapper.py b/mamlukimport/mapper.py
index 640d5ea..c23992e 100644
--- a/mamlukimport/mapper.py
+++ b/mamlukimport/mapper.py
@@ -6,7 +6,7 @@ class Mapper(object):
def __init__(self, input):
self._in = input
self._lookup = {'title': {'element':'title', 'qualifier':'none'},
- 'createdate': {'element': 'date', 'qualifier':'copyright'},
+ 'copyright': {'element': 'date', 'qualifier':'copyright'},
'creator': {'element':'contributor', 'qualifier':'author'},
'rights': {'element': 'rights', 'qualifier': 'statement'},
'webstatement': {'element': 'rights', 'qualifier': 'url'},
@@ -32,6 +32,8 @@ def _transform(self):
new_element = SubElement(root, "dc_value")
new_element.set("element", instructions["element"])
new_element.set("qualifier", instructions["qualifier"])
+ if n_value == 'subject':
+ print(new_element)
if isinstance(self._in[n_key], str):
new_element.text = self._in[n_key]
else:
diff --git a/out/M b/out/M
new file mode 100644
index 0000000..963afd0
--- /dev/null
+++ b/out/M
@@ -0,0 +1,356 @@
+
+
+ ©
+ 2
+ 0
+ 1
+ 1
+ b
+ y
+ J
+ o
+ V
+ a
+ n
+ S
+ t
+ e
+ e
+ n
+ b
+ e
+ r
+ g
+ e
+ n
+ .
+ T
+ h
+ i
+ s
+ w
+ o
+ r
+ k
+ i
+ s
+ m
+ a
+ d
+ e
+ a
+ v
+ a
+ i
+ l
+ a
+ b
+ l
+ e
+ u
+ n
+ d
+ e
+ r
+ a
+ C
+ r
+ e
+ a
+ t
+ i
+ v
+ e
+ C
+ o
+ m
+ m
+ o
+ n
+ s
+ A
+ t
+ t
+ r
+ i
+ b
+ u
+ t
+ i
+ o
+ n
+ 4
+ .
+ 0
+ I
+ n
+ t
+ e
+ r
+ n
+ a
+ t
+ i
+ o
+ n
+ a
+ l
+ l
+ i
+ c
+ e
+ n
+ s
+ e
+ (
+ C
+ C
+ -
+ B
+ Y
+ )
+ .
+ M
+ a
+ m
+ l
+ ū
+ k
+ S
+ t
+ u
+ d
+ i
+ e
+ s
+ R
+ e
+ v
+ i
+ e
+ w
+ i
+ s
+ a
+ n
+ O
+ p
+ e
+ n
+ A
+ c
+ c
+ e
+ s
+ s
+ j
+ o
+ u
+ r
+ n
+ a
+ l
+ .
+ S
+ e
+ e
+ h
+ t
+ t
+ p
+ :
+ /
+ /
+ m
+ a
+ m
+ l
+ u
+ k
+ .
+ u
+ c
+ h
+ i
+ c
+ a
+ g
+ o
+ .
+ e
+ d
+ u
+ /
+ m
+ s
+ r
+ .
+ h
+ t
+ m
+ l
+ f
+ o
+ r
+ m
+ o
+ r
+ e
+ i
+ n
+ f
+ o
+ r
+ m
+ a
+ t
+ i
+ o
+ n
+ .
+ 2
+ 0
+ 1
+ 2
+ :
+ 0
+ 1
+ :
+ 1
+ 1
+ 1
+ 6
+ :
+ 5
+ 9
+ :
+ 1
+ 1
+ -
+ 0
+ 6
+ :
+ 0
+ 0
+ X
+ V
+ ,
+ 2
+ 0
+ 1
+ 1
+ h
+ t
+ t
+ p
+ :
+ /
+ /
+ m
+ a
+ m
+ l
+ u
+ k
+ .
+ u
+ c
+ h
+ i
+ c
+ a
+ g
+ o
+ .
+ e
+ d
+ u
+ /
+ m
+ s
+ r
+ .
+ h
+ t
+ m
+ l
+ m
+ a
+ m
+ l
+ u
+ k
+ U
+ n
+ i
+ v
+ e
+ r
+ s
+ i
+ t
+ y
+ o
+ f
+ C
+ h
+ i
+ c
+ a
+ g
+ o
+ J
+ o
+ V
+ a
+ n
+ S
+ t
+ e
+ e
+ n
+ b
+ e
+ r
+ g
+ e
+ n
+ Y
+ a
+ l
+ b
+ u
+ g
+ h
+ a
+ a
+ l
+ -
+ K
+ h
+ a
+ s
+ s
+ a
+ k
+ i
+ a
+ n
+ d
+ t
+ h
+ e
+ Y
+ a
+ l
+ b
+ u
+ g
+ h
+ a
+ w
+ i
+ y
+ a
+ h
+
diff --git a/out/MSR_III_1999-Amitai.xml b/out/MSR_III_1999-Amitai.xml
index f60d6b6..d9678c3 100644
--- a/out/MSR_III_1999-Amitai.xml
+++ b/out/MSR_III_1999-Amitai.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Reuven Amitai
©1999 by Reuven Amitai. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
David Ayalon, 1914-1998
- mamluk
- Reuven Amitai
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Behrens-Abouseif.xml b/out/MSR_III_1999-Behrens-Abouseif.xml
index e949974..55fb319 100644
--- a/out/MSR_III_1999-Behrens-Abouseif.xml
+++ b/out/MSR_III_1999-Behrens-Abouseif.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Doris Behrens-Abouseif
©1999 by Doris Behrens-Abouseif. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Qaytbay's Madrasahs in the Holy Cities and the Evolution of Haram Architecture
- mamluk
- Doris Behrens-Abouseif
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Bloom.xml b/out/MSR_III_1999-Bloom.xml
index e2ebe36..b112897 100644
--- a/out/MSR_III_1999-Bloom.xml
+++ b/out/MSR_III_1999-Bloom.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Jonathan M. Bloom
©1999 by Jonathan M. Bloom. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Mamluk Art and Architectural History: A Review Article
- mamluk
- Jonathan M. Bloom
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-BookReviews.xml b/out/MSR_III_1999-BookReviews.xml
index ce11689..6255e17 100644
--- a/out/MSR_III_1999-BookReviews.xml
+++ b/out/MSR_III_1999-BookReviews.xml
@@ -1,13 +1,5 @@
- III, 1999
- University of Chicago
- ©1999 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 1999
- Book Reviews
- mamluk
Amalia Levanoni
David C. Reisman
Michael Chamberlain
@@ -19,5 +11,14 @@ mamluk.uchicago.edu/msr.html for more information.
Th. Emil Homerin
Stefan H. Winter
Marlis Saleh
+ ©1999 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ III, 1999
+ Book Reviews
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Broadbridge.xml b/out/MSR_III_1999-Broadbridge.xml
index 96e6d02..5476a94 100644
--- a/out/MSR_III_1999-Broadbridge.xml
+++ b/out/MSR_III_1999-Broadbridge.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Anne F. Broadbridge
©1999 by Anne F. Broadbridge. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Academic Rivalry and the Patronage System in Fifteenth-Century Egypt
- mamluk
- Anne F. Broadbridge
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Homerin.xml b/out/MSR_III_1999-Homerin.xml
index 7b327f7..fe8c595 100644
--- a/out/MSR_III_1999-Homerin.xml
+++ b/out/MSR_III_1999-Homerin.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Th. Emil Homerin
©1999 by Th. Emil Homerin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Saving Muslim Souls: The Kanqah and the Sufi Duty in Mamluk Lands
- mamluk
- Th. Emil Homerin
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Petry.xml b/out/MSR_III_1999-Petry.xml
index a594177..3917694 100644
--- a/out/MSR_III_1999-Petry.xml
+++ b/out/MSR_III_1999-Petry.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Carl F. Petry
©1999 by Carl F. Petry. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
"Quis Custodiet Custodes?" Revisited: The Prosecution of Crime in the Late Mamluk Sultanate
- mamluk
- Carl F. Petry
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Schultz.xml b/out/MSR_III_1999-Schultz.xml
index 36e8a00..e42a7ad 100644
--- a/out/MSR_III_1999-Schultz.xml
+++ b/out/MSR_III_1999-Schultz.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Warren C. Schultz
©1999 by Warren C. Schultz. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Mamluk Monetary History: A Review Essay
- mamluk
- Warren C. Schultz
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Tucker.xml b/out/MSR_III_1999-Tucker.xml
index f362931..f3226c0 100644
--- a/out/MSR_III_1999-Tucker.xml
+++ b/out/MSR_III_1999-Tucker.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ William Tucker
©1999 by William Tucker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Environmental Hazards, Natural Disasters, Economic Loss, and Mortality in Mamluk Syria
- mamluk
- William Tucker
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_III_1999-Winter.xml b/out/MSR_III_1999-Winter.xml
index a5ed2fe..7e30ebd 100644
--- a/out/MSR_III_1999-Winter.xml
+++ b/out/MSR_III_1999-Winter.xml
@@ -1,13 +1,14 @@
- III, 1999
- University of Chicago
+ Stefan H. Winter
©1999 by Stefan H. Winter. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1999
+ mamluk
+ III, 1999
Shams al-Din Muhammad ibn Makki "al-Shahid al-Awwal" and the Shi'ah of Syria
- mamluk
- Stefan H. Winter
+ III, 1999
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1999
diff --git a/out/MSR_II_1998-Behrens-Abouseif.xml b/out/MSR_II_1998-Behrens-Abouseif.xml
index 0dba734..3384971 100644
--- a/out/MSR_II_1998-Behrens-Abouseif.xml
+++ b/out/MSR_II_1998-Behrens-Abouseif.xml
@@ -1,13 +1,14 @@
- II, 1998
- University of Chicago
+ Doris Behrens-Abouseif
©1998 by Doris Behrens-Abouseif. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
+ mamluk
+ II, 1998
Qaytbay's Foundation in Medina, the Madrasah, the Ribat and the Dashishah
- mamluk
- Doris Behrens-Abouseif
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_II_1998-BookReviews.xml b/out/MSR_II_1998-BookReviews.xml
index e8ef5be..24b4abc 100644
--- a/out/MSR_II_1998-BookReviews.xml
+++ b/out/MSR_II_1998-BookReviews.xml
@@ -1,11 +1,5 @@
- II, 1998
- University of Chicago
- ©1998 by review authors. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 1998
- Book Reviews
- mamluk
Paul M. Cobb
Warren C. Schultz
Anne F. Broadbridge
@@ -19,5 +13,12 @@
Stephan Conermann
Michael Chamberlain
R. Sthephen Humphreys
+ ©1998 by review authors. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ II, 1998
+ Book Reviews
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_II_1998-Humphreys.xml b/out/MSR_II_1998-Humphreys.xml
index 964c291..7c1dce0 100644
--- a/out/MSR_II_1998-Humphreys.xml
+++ b/out/MSR_II_1998-Humphreys.xml
@@ -1,13 +1,14 @@
- II, 1998
- University of Chicago
+ R. Stephen Humphreys
©1998 by R. Stephen Humphreys. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
+ mamluk
+ II, 1998
Ayyubids, Mamluks, and the Latin East in the Thirteenth Century
- mamluk
- R. Stephen Humphreys
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_II_1998-Little.xml b/out/MSR_II_1998-Little.xml
index 4eecd07..ab57105 100644
--- a/out/MSR_II_1998-Little.xml
+++ b/out/MSR_II_1998-Little.xml
@@ -1,13 +1,14 @@
- II, 1998
- University of Chicago
+ Donald P. Little
©1998 by Donald P. Little. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
+ mamluk
+ II, 1998
Documents Related to the Estates of a Merchant and His Wife in Late 14th Century Jerusalem
- mamluk
- Donald P. Little
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_II_1998-Petry.xml b/out/MSR_II_1998-Petry.xml
index 837deb9..3dd8b8c 100644
--- a/out/MSR_II_1998-Petry.xml
+++ b/out/MSR_II_1998-Petry.xml
@@ -1,13 +1,14 @@
- II, 1998
- University of Chicago
+ Carl F. Petry
©1998 by Carl F. Petry. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
+ mamluk
+ II, 1998
A Geniza for Mamluk Studies? Charitable Trust (Waqf) Documents as a Source
- mamluk
- Carl F. Petry
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_II_1998-Reisman.xml b/out/MSR_II_1998-Reisman.xml
index bd4b6c8..3f600c4 100644
--- a/out/MSR_II_1998-Reisman.xml
+++ b/out/MSR_II_1998-Reisman.xml
@@ -1,13 +1,14 @@
- II, 1998
- University of Chicago
+ David C. Reisman
©1998 by David C. Reisman. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
+ mamluk
+ II, 1998
A Holograph MS of Ibn Qadi Shuhbah's "Dhayl"
- mamluk
- David C. Reisman
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_II_1998-Tsugitaka.xml b/out/MSR_II_1998-Tsugitaka.xml
index 60bcaac..77a856b 100644
--- a/out/MSR_II_1998-Tsugitaka.xml
+++ b/out/MSR_II_1998-Tsugitaka.xml
@@ -1,13 +1,14 @@
- II, 1998
- University of Chicago
+ Sato Tsugitaka
©1998 by Sato Tsugitaka. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
+ mamluk
+ II, 1998
The Proposers and Supervisors of al-Rawk al-Nasiri in Mamluk Egypt
- mamluk
- Sato Tsugitaka
+ II, 1998
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
diff --git a/out/MSR_IV_2000-Berkey.xml b/out/MSR_IV_2000-Berkey.xml
index 3a26fe0..3e3bce9 100644
--- a/out/MSR_IV_2000-Berkey.xml
+++ b/out/MSR_IV_2000-Berkey.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Jonathan P. Berkey
©2000 by Jonathan P. Berkey. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
Storytelling, Preaching and Power in Mamluk Cairo
- mamluk
- Jonathan P. Berkey
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-BookReviews.xml b/out/MSR_IV_2000-BookReviews.xml
index cd2fe2c..f23a9e0 100644
--- a/out/MSR_IV_2000-BookReviews.xml
+++ b/out/MSR_IV_2000-BookReviews.xml
@@ -1,13 +1,5 @@
- IV, 2000
- University of Chicago
- ©2000 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2000
- Book Reviews
- mamluk
Robert Irwin
Donald P. Little
Kenneth J. Garden
@@ -17,5 +9,14 @@ mamluk.uchicago.edu/msr.html for more information.
Bernadette Martel-Thoumian
Thomas Bauer
Paul E. Walker
+ ©2000 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ IV, 2000
+ Book Reviews
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-Borsch.xml b/out/MSR_IV_2000-Borsch.xml
index 398af5b..d3d8549 100644
--- a/out/MSR_IV_2000-Borsch.xml
+++ b/out/MSR_IV_2000-Borsch.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Stuart J. Borsch
©2000 by Stuart J. Borsch. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
Nile Floods and the Irrigation System in Fifteenth-Century Egypt
- mamluk
- Stuart J. Borsch
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-Conermann.xml b/out/MSR_IV_2000-Conermann.xml
index 81a1c1b..1d0e51b 100644
--- a/out/MSR_IV_2000-Conermann.xml
+++ b/out/MSR_IV_2000-Conermann.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Stephan Conermann
©2000 by Stephan Conermann. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
Ulrich Haarmann, 1942-1999
- mamluk
- Stephan Conermann
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-Hallenberg.xml b/out/MSR_IV_2000-Hallenberg.xml
index ba62a5c..944617d 100644
--- a/out/MSR_IV_2000-Hallenberg.xml
+++ b/out/MSR_IV_2000-Hallenberg.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Helena Hallenberg
©2000 by Helena Hallenberg. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
The Sultan Who Loved Sufis: How Qaytbay Endowed a Shrine Complex in Dasuq
- mamluk
- Helena Hallenberg
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-Irwin.xml b/out/MSR_IV_2000-Irwin.xml
index ca2e657..6df6873 100644
--- a/out/MSR_IV_2000-Irwin.xml
+++ b/out/MSR_IV_2000-Irwin.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Robert Irwin
©2000 by Robert Irwin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
Under Western Eyes: A History of Mamluk Studies
- mamluk
- Robert Irwin
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-Puin.xml b/out/MSR_IV_2000-Puin.xml
index 86e5e79..2bfce73 100644
--- a/out/MSR_IV_2000-Puin.xml
+++ b/out/MSR_IV_2000-Puin.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Elisabeth Puin
©2000 by Elisabeth Puin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
Silver Coins of the Mamluk Sultan Qalawun from the Mints of Cairo, Damascus, Hamah and al-Marqab
- mamluk
- Elisabeth Puin
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-Walker_18MB.xml b/out/MSR_IV_2000-Walker_18MB.xml
index 682444e..8d6b06c 100644
--- a/out/MSR_IV_2000-Walker_18MB.xml
+++ b/out/MSR_IV_2000-Walker_18MB.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Bethany J. Walker
©2000 by Bethany J. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
Rethinking Mamluk Textiles
- mamluk
- Bethany J. Walker
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IV_2000-alHarithy.xml b/out/MSR_IV_2000-alHarithy.xml
index 1b1b4f7..708acbd 100644
--- a/out/MSR_IV_2000-alHarithy.xml
+++ b/out/MSR_IV_2000-alHarithy.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Howayda al-Harithy
©2000 by Howayda al-Harithy. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
+ mamluk
+ IV, 2000
The Patronage of al-Nasir Muhammad ibn Qalawun, 1310-1341
- mamluk
- Howayda al-Harithy
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
diff --git a/out/MSR_IX-1_2005-Amitai_13MB.xml b/out/MSR_IX-1_2005-Amitai_13MB.xml
index 2ab6311..fd0ea17 100644
--- a/out/MSR_IX-1_2005-Amitai_13MB.xml
+++ b/out/MSR_IX-1_2005-Amitai_13MB.xml
@@ -1,13 +1,14 @@
- IX.1, 2005
- University of Chicago
+ Reuven Amitai
©2005 by Reuven Amitai. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.1, 2005
The Conquest of Arsuf by Baybars: Political and Military Aspects
- mamluk
- Reuven Amitai
+ IX.1, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Bauden.xml b/out/MSR_IX-1_2005-Bauden.xml
index 01c2a07..8faf13b 100644
--- a/out/MSR_IX-1_2005-Bauden.xml
+++ b/out/MSR_IX-1_2005-Bauden.xml
@@ -1,13 +1,14 @@
- IX.1, 2005
- University of Chicago
+ Frederic Bauden
©2005 by Frederic Bauden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.1, 2005
Mamluk Era Documentary Studies: The State of the Art
- mamluk
- Frederic Bauden
+ IX.1, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-BookReviews.xml b/out/MSR_IX-1_2005-BookReviews.xml
index ce5a7fb..b0697a6 100644
--- a/out/MSR_IX-1_2005-BookReviews.xml
+++ b/out/MSR_IX-1_2005-BookReviews.xml
@@ -1,17 +1,18 @@
- IX, 2005
- University of Chicago
- ©2005 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2005
- Book Reviews
- mamluk
Li Guo
Howayda Al-Harithy
Li Guo
Warren C. Schultz
Konrad Hirschler
+ ©2005 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ IX, 2005
+ Book Reviews
+ IX, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Guo.xml b/out/MSR_IX-1_2005-Guo.xml
index 9ce2f19..21ccef2 100644
--- a/out/MSR_IX-1_2005-Guo.xml
+++ b/out/MSR_IX-1_2005-Guo.xml
@@ -1,13 +1,14 @@
- IX.1, 2005
- University of Chicago
+ Li Guo
©2005 by Li Guo. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.1, 2005
Tales of a Medieval Cairene Harem: Domestic Life in al-Biqa'i's Autobiographical Chronicle
- mamluk
- Li Guo
+ IX.1, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Humphreys.xml b/out/MSR_IX-1_2005-Humphreys.xml
index cf1c163..a3d409f 100644
--- a/out/MSR_IX-1_2005-Humphreys.xml
+++ b/out/MSR_IX-1_2005-Humphreys.xml
@@ -1,13 +1,14 @@
- IX.1, 2005
- University of Chicago
+ R. Stephen Humphreys
©2005 by R. Stephen Humphreys. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.1, 2005
The Politics of the Mamluk Sultanate: A Review Essay
- mamluk
- R. Stephen Humphreys
+ IX.1, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Levanoni.xml b/out/MSR_IX-1_2005-Levanoni.xml
index c690f57..49b264b 100644
--- a/out/MSR_IX-1_2005-Levanoni.xml
+++ b/out/MSR_IX-1_2005-Levanoni.xml
@@ -1,13 +1,14 @@
- none
- University of Chicago
+ Amalia Levanoni
©2005 by Amalia Levanoni. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
- The al-Nashw Episode: A Case Study of "Moral Economy"
- mamluk
- Amalia Levanoni
+ mamluk
+ none
+ The Politics of the Mamluk Sultanate: A Review Essay
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Lutfi.xml b/out/MSR_IX-1_2005-Lutfi.xml
index b6dfb81..2aa92f5 100644
--- a/out/MSR_IX-1_2005-Lutfi.xml
+++ b/out/MSR_IX-1_2005-Lutfi.xml
@@ -1,13 +1,14 @@
- IX.1, 2005
- University of Chicago
+ Huda Lutfi
©2005 by Huda Lutfi. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.1, 2005
The Construction of Gender Symbolism in Ibn Sirin's and Ibn Shahin's Medieval Arabic Dream Texts
- mamluk
- Huda Lutfi
+ IX.1, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Massoud.xml b/out/MSR_IX-1_2005-Massoud.xml
index 1677595..cb85d6d 100644
--- a/out/MSR_IX-1_2005-Massoud.xml
+++ b/out/MSR_IX-1_2005-Massoud.xml
@@ -1,13 +1,14 @@
- none
- University of Chicago
+ Sami G. Massoud
©2005 by Sami G. Massoud. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
- Notes on the Contemporary Sources of the Year 793
- mamluk
- Sami G. Massoud
+ mamluk
+ none
+ The Construction of Gender Symbolism in Ibn Sirin's and Ibn Shahin's Medieval Arabic Dream Texts
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-1_2005-Publications-Donald-Little.xml b/out/MSR_IX-1_2005-Publications-Donald-Little.xml
index ffd5b04..fc8e038 100644
--- a/out/MSR_IX-1_2005-Publications-Donald-Little.xml
+++ b/out/MSR_IX-1_2005-Publications-Donald-Little.xml
@@ -1,13 +1,14 @@
- none
- University of Chicago
+ The Middle East Documentation Center
©2005. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
- The Publications of Donald P. Little
- mamluk
- The Middle East Documentation Center
+ mamluk
+ none
+ The Construction of Gender Symbolism in Ibn Sirin's and Ibn Shahin's Medieval Arabic Dream Texts
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005.
diff --git a/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml b/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml
index 3cf5861..e381325 100644
--- a/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml
+++ b/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml
@@ -1,14 +1,15 @@
- IX.1, 2005
- University of Chicago
+ Kate Raphael
+ Yotam Tepper
©2005 by Kate Raphael and Yotam Tepper. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.1, 2005
The Archaeological Evidence from the Mamluk Siege of Arsuf
- mamluk
- Kate Raphael
- Yotam Tepper
+ IX.1, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Bauer.xml b/out/MSR_IX-2_2005-Bauer.xml
index 7b58a1b..16d4316 100644
--- a/out/MSR_IX-2_2005-Bauer.xml
+++ b/out/MSR_IX-2_2005-Bauer.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Thomas Bauer
©2005 by Thomas Bauer. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Mamluk Literature: Misunderstandings and New Approaches
- mamluk
- Thomas Bauer
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Behrens-Abouseif.xml b/out/MSR_IX-2_2005-Behrens-Abouseif.xml
index 62b4626..80eb32b 100644
--- a/out/MSR_IX-2_2005-Behrens-Abouseif.xml
+++ b/out/MSR_IX-2_2005-Behrens-Abouseif.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Doris Behrens-Abouseif
©2005 by Doris Behrens-Abouseif. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Veneto-Saracenic Metalware, a Mamluk Art
- mamluk
- Doris Behrens-Abouseif
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Berkey.xml b/out/MSR_IX-2_2005-Berkey.xml
index 1783ca6..093b8ce 100644
--- a/out/MSR_IX-2_2005-Berkey.xml
+++ b/out/MSR_IX-2_2005-Berkey.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Jonathan P. Berkey
©2005 by Jonathan P. Berkey. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Popular Culture under the Mamluks: A Historiographical Survey
- mamluk
- Jonathan P. Berkey
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-BookReviews.xml b/out/MSR_IX-2_2005-BookReviews.xml
index 554b333..016c246 100644
--- a/out/MSR_IX-2_2005-BookReviews.xml
+++ b/out/MSR_IX-2_2005-BookReviews.xml
@@ -1,13 +1,5 @@
- IX.2, 2005
- University of Chicago
- ©2005 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2005
- Book Reviews
- mamluk
Donald P. Little
Li Guo
Konrad Hirschler
@@ -15,5 +7,14 @@ mamluk.uchicago.edu/msr.html for more information.
Bethany J. Walker
Stuart Borsch
Th. Emil Homerin
+ ©2005 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ IX.2, 2005
+ Book Reviews
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Homerin.xml b/out/MSR_IX-2_2005-Homerin.xml
index ad3e2df..482d3db 100644
--- a/out/MSR_IX-2_2005-Homerin.xml
+++ b/out/MSR_IX-2_2005-Homerin.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Th. Emil Homerin
©2005 by Th. Emil Homerin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
The Study of Islam within Mamluk Domains
- mamluk
- Th. Emil Homerin
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Levanoni.xml b/out/MSR_IX-2_2005-Levanoni.xml
index 2c49ac1..76a4004 100644
--- a/out/MSR_IX-2_2005-Levanoni.xml
+++ b/out/MSR_IX-2_2005-Levanoni.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Amalia Levanoni
©2005 by Amalia Levanoni. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Food and Cooking during the Mamluk Era: Social and Political Implications
- mamluk
- Amalia Levanoni
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Martel-Thoumian.xml b/out/MSR_IX-2_2005-Martel-Thoumian.xml
index e7cd537..1e26dba 100644
--- a/out/MSR_IX-2_2005-Martel-Thoumian.xml
+++ b/out/MSR_IX-2_2005-Martel-Thoumian.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Bernadette Martel-Thoumian
©2005 by Bernadette Martel-Thoumian. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
The Sale of Office and Its Economic Consequences during the Rule of the Last Circassians
- mamluk
- Bernadette Martel-Thoumian
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Meloy.xml b/out/MSR_IX-2_2005-Meloy.xml
index ce1492a..87a60bd 100644
--- a/out/MSR_IX-2_2005-Meloy.xml
+++ b/out/MSR_IX-2_2005-Meloy.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ John L. Meloy
©2005 by John L. Meloy. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Economic Intervention and the Political Economy of the Mamluk State under al-Ashraf Barsbay
- mamluk
- John L. Meloy
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-Pahlitzsch.xml b/out/MSR_IX-2_2005-Pahlitzsch.xml
index 7a1f4b9..873d17e 100644
--- a/out/MSR_IX-2_2005-Pahlitzsch.xml
+++ b/out/MSR_IX-2_2005-Pahlitzsch.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Johannes Pahlitzsch
©2005 by Johannes Pahlitzsch. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Mediators Between East and West: Christians Under Mamluk Rule
- mamluk
- Johannes Pahlitzsch
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_IX-2_2005-VanSteenbergen.xml b/out/MSR_IX-2_2005-VanSteenbergen.xml
index 5ae1ec2..a7506e2 100644
--- a/out/MSR_IX-2_2005-VanSteenbergen.xml
+++ b/out/MSR_IX-2_2005-VanSteenbergen.xml
@@ -1,13 +1,14 @@
- IX.2, 2005
- University of Chicago
+ Jo Van Steenbergen
©2005 by Jo Van Steenbergen. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
+ mamluk
+ IX.2, 2005
Mamluk Elite on the Eve of al-Nasir Muhammad's Death
- mamluk
- Jo Van Steenbergen
+ IX.2, 2005
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
diff --git a/out/MSR_I_1997-Behrens-Abouseif.xml b/out/MSR_I_1997-Behrens-Abouseif.xml
index 8ad9ce6..c520065 100644
--- a/out/MSR_I_1997-Behrens-Abouseif.xml
+++ b/out/MSR_I_1997-Behrens-Abouseif.xml
@@ -1,11 +1,12 @@
- I, 1997
- University of Chicago
+ Doris Behrens-Abouseif
©1997 by Doris Behrens-Abouseif. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
The Mahmal Legend and the Pilgrimage of the Ladies of the Mamluk Court
- mamluk
- Doris Behrens-Abouseif
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_I_1997-BookReviews.xml b/out/MSR_I_1997-BookReviews.xml
index 9908735..2f63837 100644
--- a/out/MSR_I_1997-BookReviews.xml
+++ b/out/MSR_I_1997-BookReviews.xml
@@ -1,11 +1,6 @@
- I, 1997
- University of Chicago
©1997 by review authors. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 1997
- Book Reviews
- mamluk
Amy W. Newhall
Doris Behrens-Abouseif
Carl F. Petry
@@ -25,5 +20,10 @@
Michael Winter
W. W. Clifford
Jonathan M. Bloom
-
+ I, 1997
+ University of Chicago
+ 1997
+ mamluk
+ Book Reviews
+ I, 1997
diff --git a/out/MSR_I_1997-Clifford.xml b/out/MSR_I_1997-Clifford.xml
index d134e8a..18dd056 100644
--- a/out/MSR_I_1997-Clifford.xml
+++ b/out/MSR_I_1997-Clifford.xml
@@ -1,13 +1,14 @@
- I, 1997
- University of Chicago
+ W. W. Clifford
©1997 by W. W. Clifford. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
Ubi Sumus? Mamluk History and Social Theory
- mamluk
- W. W. Clifford
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_I_1997-Fernandes.xml b/out/MSR_I_1997-Fernandes.xml
index 4291fe5..73ee771 100644
--- a/out/MSR_I_1997-Fernandes.xml
+++ b/out/MSR_I_1997-Fernandes.xml
@@ -1,13 +1,14 @@
- I, 1997
- University of Chicago
+ Leonor Fernandes
©1997 by Leonor Fernandes. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
Mamluk Architecture and the Question of Patronage
- mamluk
- Leonor Fernandes
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_I_1997-Guo.xml b/out/MSR_I_1997-Guo.xml
index 307e93e..242d442 100644
--- a/out/MSR_I_1997-Guo.xml
+++ b/out/MSR_I_1997-Guo.xml
@@ -1,13 +1,14 @@
- I, 1997
- University of Chicago
+ Li Guo
©1997 by Li Guo. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
Mamluk Historiographic Studies: The State of the Art
- mamluk
- Li Guo
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_I_1997-Homerin.xml b/out/MSR_I_1997-Homerin.xml
index fe02c6d..50359bf 100644
--- a/out/MSR_I_1997-Homerin.xml
+++ b/out/MSR_I_1997-Homerin.xml
@@ -1,13 +1,14 @@
- I, 1997
- University of Chicago
+ Th. Emil Homerin
©1997 by Th. Emil Homerin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
Reflections on Arabic Poetry in the Mamluk Age
- mamluk
- Th. Emil Homerin
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_I_1997-Little.xml b/out/MSR_I_1997-Little.xml
index 2352bcc..bc895e9 100644
--- a/out/MSR_I_1997-Little.xml
+++ b/out/MSR_I_1997-Little.xml
@@ -1,13 +1,14 @@
- I, 1997
- University of Chicago
+ Donald P. Little
©1997 by Donald P. Little. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
The Use of Documents for the Study of Mamluk History
- mamluk
- Donald P. Little
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_I_1997-Whitcomb.xml b/out/MSR_I_1997-Whitcomb.xml
index fbdcd08..1977270 100644
--- a/out/MSR_I_1997-Whitcomb.xml
+++ b/out/MSR_I_1997-Whitcomb.xml
@@ -1,13 +1,14 @@
- I, 1997
- University of Chicago
+ Donald Whitcomb
©1997 by Donald Whitcomb. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
+ mamluk
+ I, 1997
Mamluk Archaeological Studies: A Review
- mamluk
- Donald Whitcomb
+ I, 1997
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
diff --git a/out/MSR_VII-1_2003-Bauer_pp49-95.xml b/out/MSR_VII-1_2003-Bauer_pp49-95.xml
index f0f55d5..f44c9a0 100644
--- a/out/MSR_VII-1_2003-Bauer_pp49-95.xml
+++ b/out/MSR_VII-1_2003-Bauer_pp49-95.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Thomas Bauer
©2003 by Thomas Bauer. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Communication and Emotion: The Case of Ibn Nubatah's Kindertotenlieder
- mamluk
- Thomas Bauer
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-BookReview_pp237-272.xml b/out/MSR_VII-1_2003-BookReview_pp237-272.xml
index 329139c..213d1ea 100644
--- a/out/MSR_VII-1_2003-BookReview_pp237-272.xml
+++ b/out/MSR_VII-1_2003-BookReview_pp237-272.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Middle East Documentation Center
©2003 by review authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Book Reviews
- mamluk
- Middle East Documentation Center
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Buturovic_pp149-176.xml b/out/MSR_VII-1_2003-Buturovic_pp149-176.xml
index 284d999..75d90e5 100644
--- a/out/MSR_VII-1_2003-Buturovic_pp149-176.xml
+++ b/out/MSR_VII-1_2003-Buturovic_pp149-176.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Amila Buturovic
©2003 by Amila Buturovic. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
The Shadow Play in Mamluk Egypt: The Genre and Its Cultural Implications
- mamluk
- Amila Buturovic
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Guo_pp177-209.xml b/out/MSR_VII-1_2003-Guo_pp177-209.xml
index ff3778b..8ae8391 100644
--- a/out/MSR_VII-1_2003-Guo_pp177-209.xml
+++ b/out/MSR_VII-1_2003-Guo_pp177-209.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Li Guo
©2003 by Li Guo. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
The Devil's Advocate: Ibn Daniyal's Art of Parody in His Qasidah No. 71
- mamluk
- Li Guo
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Herzog_pp137-148.xml b/out/MSR_VII-1_2003-Herzog_pp137-148.xml
index a229416..64c92e3 100644
--- a/out/MSR_VII-1_2003-Herzog_pp137-148.xml
+++ b/out/MSR_VII-1_2003-Herzog_pp137-148.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Thomas Herzog
©2003 by Thomas Herzog. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
The First Layer of the Sirat Baybars: Popular Romance and Political Propaganda
- mamluk
- Thomas Herzog
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Homerin_pp211-234.xml b/out/MSR_VII-1_2003-Homerin_pp211-234.xml
index 4730689..1480770 100644
--- a/out/MSR_VII-1_2003-Homerin_pp211-234.xml
+++ b/out/MSR_VII-1_2003-Homerin_pp211-234.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Th. Emil Homerin
©2003 by Th. Emil Homerin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Living Love: The Mystical Writings of 'A'ishah al-Ba'uniyah
- mamluk
- Th. Emil Homerin
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Irwin_pp1-29.xml b/out/MSR_VII-1_2003-Irwin_pp1-29.xml
index 930a0e7..3c08bba 100644
--- a/out/MSR_VII-1_2003-Irwin_pp1-29.xml
+++ b/out/MSR_VII-1_2003-Irwin_pp1-29.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Robert Irwin
©2003 by Robert Irwin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Mamluk Literature
- mamluk
- Robert Irwin
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Obituary_pp235.xml b/out/MSR_VII-1_2003-Obituary_pp235.xml
index 8dba6f3..37ba4a7 100644
--- a/out/MSR_VII-1_2003-Obituary_pp235.xml
+++ b/out/MSR_VII-1_2003-Obituary_pp235.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Nasser Rabbat
©2003 by Nasser Rabbat. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Laila 'Ali Ibrahim, 1917-2002
- mamluk
- Nasser Rabbat
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-Rowson_pp97-110.xml b/out/MSR_VII-1_2003-Rowson_pp97-110.xml
index ec0f90d..cb6ed47 100644
--- a/out/MSR_VII-1_2003-Rowson_pp97-110.xml
+++ b/out/MSR_VII-1_2003-Rowson_pp97-110.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Everett K. Rowson
©2003 by Everett K. Rowson. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
An Alexandrian Age in Fourteenth-Century Damascus
- mamluk
- Everett K. Rowson
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml b/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml
index ecac962..294a2d8 100644
--- a/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml
+++ b/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml
@@ -1,12 +1,13 @@
- VII.1, 2003
- University of Chicago
+ Muhsin Jassim al-Musawi
©2003 by Muhsin Jassim al-Musawi. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Vindicating a Profession or a Personal Career? Al-Qalqashandi's Maqamah in Context
- mamluk
- Muhsin Jassim al-Musawi
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-1_2003-vanGelder_pp31-48.xml b/out/MSR_VII-1_2003-vanGelder_pp31-48.xml
index 65c7a6f..8f86d22 100644
--- a/out/MSR_VII-1_2003-vanGelder_pp31-48.xml
+++ b/out/MSR_VII-1_2003-vanGelder_pp31-48.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Geert Jan van Gelder
©2003 by Geert Jan van Gelder. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Poetry for Easy Listening: Insijam and Related Concepts in Ibn Hijjah's Khizanat al-Adab
- mamluk
- Geert Jan van Gelder
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Amitai_pp99-118.xml b/out/MSR_VII-2_2003-Amitai_pp99-118.xml
index bf1f58e..81a2796 100644
--- a/out/MSR_VII-2_2003-Amitai_pp99-118.xml
+++ b/out/MSR_VII-2_2003-Amitai_pp99-118.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Reuven Amitai
©2003 by Reuven Amitai. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Al-Maqrizi as a Historian of the Early Mamluk Sultanate
- mamluk
- Reuven Amitai
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml b/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml
index 943ce74..92b9182 100644
--- a/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml
+++ b/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Frederic Bauden
©2003 by Frederic Bauden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Maqriziana I: Discovery of an Autograph Manuscript of al-Maqrizi
- mamluk
- Frederic Bauden
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-BookReviews_pp247-264.xml b/out/MSR_VII-2_2003-BookReviews_pp247-264.xml
index d4c54cd..2167326 100644
--- a/out/MSR_VII-2_2003-BookReviews_pp247-264.xml
+++ b/out/MSR_VII-2_2003-BookReviews_pp247-264.xml
@@ -1,18 +1,19 @@
- VII.2, 2003
- University of Chicago
- ©2003 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2003
- Book Reviews
- mamluk
Vanessa De Gifis
Nasser Rabbat
Niall Christie
Adam Sabra
Bernard O'Kane
Boaz Shoshan
+ ©2003 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ VII.2, 2003
+ Book Reviews
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml b/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml
index 568b6fe..50954dd 100644
--- a/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml
+++ b/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Anne F. Broadbridge
©2003 by Anne F. Broadbridge. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Royal Authority, Justice, and Order in Society: The Influence of Ibn Khaldun
- mamluk
- Anne F. Broadbridge
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Cobb_pp69-81.xml b/out/MSR_VII-2_2003-Cobb_pp69-81.xml
index d836749..596ff61 100644
--- a/out/MSR_VII-2_2003-Cobb_pp69-81.xml
+++ b/out/MSR_VII-2_2003-Cobb_pp69-81.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Paul M. Cobb
©2003 by Paul M. Cobb. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Al-Maqrizi, Hashimism, and the Early Caliphates
- mamluk
- Paul M. Cobb
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Irwin_pp217-230.xml b/out/MSR_VII-2_2003-Irwin_pp217-230.xml
index dff5006..56579b1 100644
--- a/out/MSR_VII-2_2003-Irwin_pp217-230.xml
+++ b/out/MSR_VII-2_2003-Irwin_pp217-230.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Robert Irwin
©2003 by Robert Irwin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Al-Maqrizi and Ibn Khaldun, Historians of the Unseen
- mamluk
- Robert Irwin
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Little_pp205-215.xml b/out/MSR_VII-2_2003-Little_pp205-215.xml
index f6d256e..a061bc3 100644
--- a/out/MSR_VII-2_2003-Little_pp205-215.xml
+++ b/out/MSR_VII-2_2003-Little_pp205-215.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Donald P. Little
©2003 by Donald P. Little. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
A Comparison of al-Maqrizi and al-'Ayni as Historians of Contemporary Events
- mamluk
- Donald P. Little
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Massoud_pp119-136.xml b/out/MSR_VII-2_2003-Massoud_pp119-136.xml
index 932ea18..a27175a 100644
--- a/out/MSR_VII-2_2003-Massoud_pp119-136.xml
+++ b/out/MSR_VII-2_2003-Massoud_pp119-136.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Sami G. Massoud
©2003 by Sami G. Massoud. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Al-Maqrizi as a Historian of the Reign of Barquq
- mamluk
- Sami G. Massoud
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Meloy_pp183-203.xml b/out/MSR_VII-2_2003-Meloy_pp183-203.xml
index 92c2239..356c575 100644
--- a/out/MSR_VII-2_2003-Meloy_pp183-203.xml
+++ b/out/MSR_VII-2_2003-Meloy_pp183-203.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ John L. Meloy
©2003 by John L. Meloy. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
The Merits of Economic History: Re-Reading al-Maqrizi's Ighathah and Shudhur
- mamluk
- John L. Meloy
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Petry_pp137-143.xml b/out/MSR_VII-2_2003-Petry_pp137-143.xml
index f7e8ac2..65820c1 100644
--- a/out/MSR_VII-2_2003-Petry_pp137-143.xml
+++ b/out/MSR_VII-2_2003-Petry_pp137-143.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Carl F. Petry
©2003 by Carl F. Petry. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Al-Maqrizi's Discussion of Imprisonment and Description of Jails in the Khitat
- mamluk
- Carl F. Petry
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Rabbat_pp1-19.xml b/out/MSR_VII-2_2003-Rabbat_pp1-19.xml
index e2025f8..b565a1e 100644
--- a/out/MSR_VII-2_2003-Rabbat_pp1-19.xml
+++ b/out/MSR_VII-2_2003-Rabbat_pp1-19.xml
@@ -1,13 +1,14 @@
- VII.2, 2003
- University of Chicago
+ Nasser Rabbat
©2003 by Nasser Rabbat. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.2, 2003
Who Was al-Maqrizi? A Biographical Sketch
- mamluk
- Nasser Rabbat
+ VII.2, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Raymond_pp145-167.xml b/out/MSR_VII-2_2003-Raymond_pp145-167.xml
index 85741e3..fe9d94d 100644
--- a/out/MSR_VII-2_2003-Raymond_pp145-167.xml
+++ b/out/MSR_VII-2_2003-Raymond_pp145-167.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Andre Raymond
©2003 by Andre Raymond. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Al-Maqrizi's Khitat and the Urban Structure of Mamluk Cairo
- mamluk
- Andre Raymond
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Schultz_pp169-181.xml b/out/MSR_VII-2_2003-Schultz_pp169-181.xml
index 0751138..c411173 100644
--- a/out/MSR_VII-2_2003-Schultz_pp169-181.xml
+++ b/out/MSR_VII-2_2003-Schultz_pp169-181.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Warren C. Schultz
©2003 by Warren C. Schultz. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Placing al-Maqrizi's Comments on Money in a Wider Context
- mamluk
- Warren C. Schultz
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VII-2_2003-Walker_pp83-97.xml b/out/MSR_VII-2_2003-Walker_pp83-97.xml
index b8aa13f..316e548 100644
--- a/out/MSR_VII-2_2003-Walker_pp83-97.xml
+++ b/out/MSR_VII-2_2003-Walker_pp83-97.xml
@@ -1,13 +1,14 @@
- VII.1, 2003
- University of Chicago
+ Paul E. Walker
©2003 by Paul E. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
+ mamluk
+ VII.1, 2003
Al-Maqrizi and the Fatimids
- mamluk
- Paul E. Walker
+ VII.1, 2003
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
diff --git a/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml b/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml
index 7d8da27..7efad29 100644
--- a/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml
+++ b/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml
@@ -1,21 +1,14 @@
- VIII.1, 2004
- University of Chicago
+ Daniel Beaumont
©2004 by Daniel Beaumont. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- politics
+ mamluk
+ VIII.1, 2004
Political Violence and Ideology in Mamluk Society
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- politics
- Daniel Beaumont
+ VIII.1, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml b/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml
index c6e441b..7a4e776 100644
--- a/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml
+++ b/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml
@@ -1,22 +1,14 @@
- VIII.1, 2004
- University of Chicago
+ Doris Behrens-Abouseif
©2004 by Doris Behrens-Abouseif. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- Damascus
+ mamluk
+ VIII.1, 2004
The Fire of 884/1479 at the Umayyad Mosque in Damascus and an Account of Its Restoration
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- architecture
- Damascus
- Doris Behrens-Abouseif
+ VIII.1, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml b/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml
index a8b5d26..40f1b45 100644
--- a/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml
+++ b/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml
@@ -1,13 +1,5 @@
- VIII.1, 2004
- University of Chicago
- ©2004 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2004
- Book Reviews
- mamluk
Frédéric Bauden
Dina Ghaly
Robert Dankoff
@@ -16,5 +8,14 @@ mamluk.uchicago.edu/msr.html for more information.
Irina Lyuter
Everett K. Rowson
Anne F. Broadbridge
+ ©2004 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ VIII.1, 2004
+ Book Reviews
+ VIII.1, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml b/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml
index 4d26acc..0d07e41 100644
--- a/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml
+++ b/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml
@@ -1,22 +1,14 @@
- VIII.1, 2004
- University of Chicago
+ Paul E. Chevedden
©2004 by Paul E. Chevedden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- weapons
+ mamluk
+ VIII.1, 2004
Black Camels and Blazing Bolts: The Bolt-Projecting Trebuchet in the Mamluk Army
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- military
- weapons
- Paul E. Chevedden
+ VIII.1, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-1_2004-Conermann_pp115-139.xml b/out/MSR_VIII-1_2004-Conermann_pp115-139.xml
index e621bdf..885d2a3 100644
--- a/out/MSR_VIII-1_2004-Conermann_pp115-139.xml
+++ b/out/MSR_VIII-1_2004-Conermann_pp115-139.xml
@@ -1,20 +1,14 @@
- none
- University of Chicago
+ Stephan Conermann
©2004 by Stephan Conermann. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- history
- Ibn Tulun (d. 955/1548): Life and Works
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Stephan Conermann
+ mamluk
+ none
+ Black Camels and Blazing Bolts: The Bolt-Projecting Trebuchet in the Mamluk Army
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml b/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml
index 902e32a..1cc3ac7 100644
--- a/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml
+++ b/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml
@@ -1,20 +1,14 @@
- VIII.1, 2004
- University of Chicago
+ Shihab al-Sarraf
©2004 by Shihab al-Sarraf. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.1, 2004
Mamluk Furusiyah Literature and Its Antecedents
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- literature
- Shihab al-Sarraf
+ VIII.1, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-1_2004-Walker_pp1-114.xml b/out/MSR_VIII-1_2004-Walker_pp1-114.xml
index 52ca2fb..460f7dd 100644
--- a/out/MSR_VIII-1_2004-Walker_pp1-114.xml
+++ b/out/MSR_VIII-1_2004-Walker_pp1-114.xml
@@ -1,22 +1,14 @@
- none
- University of Chicago
+ Bethany J. Walker
©2004 by Bethany J. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- ceramics
- Ceramic Evidence for Political Transformations in Early Mamluk Egypt
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- archaeology
- ceramics
- Bethany J. Walker
+ mamluk
+ none
+ Mamluk Furusiyah Literature and Its Antecedents
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Arbel.xml b/out/MSR_VIII-2_2004-Arbel.xml
index bab545f..c3881ec 100644
--- a/out/MSR_VIII-2_2004-Arbel.xml
+++ b/out/MSR_VIII-2_2004-Arbel.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Benjamin Arbel
©2004 by Benjamin Arbel. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
The Last Decades of Venice's Trade with the Mamluks: Importations into Egypt and Syria
- mamluk
- Benjamin Arbel
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-BookReviews.xml b/out/MSR_VIII-2_2004-BookReviews.xml
index 05a3f58..4003665 100644
--- a/out/MSR_VIII-2_2004-BookReviews.xml
+++ b/out/MSR_VIII-2_2004-BookReviews.xml
@@ -1,13 +1,5 @@
- VIII.2, 2004
- University of Chicago
- ©2004 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2004
- Book Reviews
- mamluk
Josef Meri
Konrad Hirschler
Arnoud Vroluk
@@ -16,5 +8,14 @@ mamluk.uchicago.edu/msr.html for more information.
Carl F. Petry
Michael Winter
William Tucker
+ ©2004 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ VIII.2, 2004
+ Book Reviews
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Borsch.xml b/out/MSR_VIII-2_2004-Borsch.xml
index fa89263..b2b775a 100644
--- a/out/MSR_VIII-2_2004-Borsch.xml
+++ b/out/MSR_VIII-2_2004-Borsch.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Stuart J. Borsch
©2004 by Stuart J. Borsch. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
Thirty Years after Lopez, Miskimin, and Udovitch
- mamluk
- Stuart J. Borsch
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Burke.xml b/out/MSR_VIII-2_2004-Burke.xml
index 9ba456a..4a12027 100644
--- a/out/MSR_VIII-2_2004-Burke.xml
+++ b/out/MSR_VIII-2_2004-Burke.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Katherine Strange Burke
©2004 by Katherine Strange Burke. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
A Note on Archaeological Evidence for Sugar Production in the Middle Islamic Periods in Bilad al-Sham
- mamluk
- Katherine Strange Burke
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Christie_11MB.xml b/out/MSR_VIII-2_2004-Christie_11MB.xml
index ed65f53..f3d5709 100644
--- a/out/MSR_VIII-2_2004-Christie_11MB.xml
+++ b/out/MSR_VIII-2_2004-Christie_11MB.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Niall Christie
©2004 by Niall Christie. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
Reconstructing Life in Medieval Alexandria from an Eighth/Fourteenth Century Waqf Document
- mamluk
- Niall Christie
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Hattox.xml b/out/MSR_VIII-2_2004-Hattox.xml
index 4fe5d63..58e08f6 100644
--- a/out/MSR_VIII-2_2004-Hattox.xml
+++ b/out/MSR_VIII-2_2004-Hattox.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Ralph S. Hattox
©2004 by Ralph S. Hattox. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
Sharp Practice in Levantine Trade in the Late Middle Ages: The Brizi-Corner Affair of 1376-77
- mamluk
- Ralph S. Hattox
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Lev.xml b/out/MSR_VIII-2_2004-Lev.xml
index 1f1e6b0..0fb50b5 100644
--- a/out/MSR_VIII-2_2004-Lev.xml
+++ b/out/MSR_VIII-2_2004-Lev.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Yaacov Lev
©2004 by Yaacov Lev. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
The Regime and the Urban Wheat Market: The Famine of 662/1263-64 in Cairo
- mamluk
- Yaacov Lev
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Rapoport.xml b/out/MSR_VIII-2_2004-Rapoport.xml
index a7014d4..dddc552 100644
--- a/out/MSR_VIII-2_2004-Rapoport.xml
+++ b/out/MSR_VIII-2_2004-Rapoport.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Yossef Rapoport
©2004 by Yossef Rapoport. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
Invisible Peasants, Marauding Nomads: Taxation, Tribalism and Rebellion in Mamluk Egypt
- mamluk
- Yossef Rapoport
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Sabra.xml b/out/MSR_VIII-2_2004-Sabra.xml
index f0ddfa3..e3eb653 100644
--- a/out/MSR_VIII-2_2004-Sabra.xml
+++ b/out/MSR_VIII-2_2004-Sabra.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Adam Sabra
©2004 by Adam Sabra. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
The Rise of a New Class? Land Tenure in Fifteenth-Century Egypt
- mamluk
- Adam Sabra
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Tsugitaka.xml b/out/MSR_VIII-2_2004-Tsugitaka.xml
index 3d15e54..c35f8da 100644
--- a/out/MSR_VIII-2_2004-Tsugitaka.xml
+++ b/out/MSR_VIII-2_2004-Tsugitaka.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Sato Tsugitaka
©2004 by Sato Tsugitaka. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
Sugar in the Economic Life of Mamluk Egypt
- mamluk
- Sato Tsugitaka
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VIII-2_2004-Walker_12MB.xml b/out/MSR_VIII-2_2004-Walker_12MB.xml
index b76eb6c..c97d66b 100644
--- a/out/MSR_VIII-2_2004-Walker_12MB.xml
+++ b/out/MSR_VIII-2_2004-Walker_12MB.xml
@@ -1,13 +1,14 @@
- VIII.2, 2004
- University of Chicago
+ Bethany J. Walker
©2004 by Bethany J. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
+ mamluk
+ VIII.2, 2004
Mamluk Investment in Transjordan: a "Boom and Bust" Economy
- mamluk
- Bethany J. Walker
+ VIII.2, 2004
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
diff --git a/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml b/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml
index 7507970..dde4aa5 100644
--- a/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml
+++ b/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Doris Behrens-Abouseif
©2002 by Doris Behrens-Abouseif. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Sultan al-Ghawri and the Arts
- mamluk
- Doris Behrens-Abouseif
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-BookReviews_pp191-239.xml b/out/MSR_VI_2002-BookReviews_pp191-239.xml
index d888fb5..7f74ef5 100644
--- a/out/MSR_VI_2002-BookReviews_pp191-239.xml
+++ b/out/MSR_VI_2002-BookReviews_pp191-239.xml
@@ -1,13 +1,5 @@
- VI, 2002
- University of Chicago
- ©2002 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2002
- Book Reviews
- mamluk
Th. Emil Homerin
Paul E. Walker
W. W. Clifford
@@ -23,5 +15,14 @@ mamluk.uchicago.edu/msr.html for more information.
Bethany J. Walker
Amalia Levanoni
Amina Elbendary
+ ©2002 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ VI, 2002
+ Book Reviews
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Clifford_pp1-8.xml b/out/MSR_VI_2002-Clifford_pp1-8.xml
index 4696ad2..20de16f 100644
--- a/out/MSR_VI_2002-Clifford_pp1-8.xml
+++ b/out/MSR_VI_2002-Clifford_pp1-8.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ W. W. Clifford
©2002 by W. W. Clifford. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
"Mediators and Wanderers": Ulrich Haarmann and Mamluk Studies
- mamluk
- W. W. Clifford
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml b/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml
index 7980acd..9b5d408 100644
--- a/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml
+++ b/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml
@@ -1,14 +1,15 @@
- VI, 2002
- University of Chicago
+ Stephan Conermann
+ Suad Saghbini
©2002 by Stephan Conermann and Suad Saghbini. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Awlad al-Nas as Founders of Pious Endowments
- mamluk
- Stephan Conermann
- Suad Saghbini
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Fernandes_pp95-108.xml b/out/MSR_VI_2002-Fernandes_pp95-108.xml
index 0c2fd07..e9f6452 100644
--- a/out/MSR_VI_2002-Fernandes_pp95-108.xml
+++ b/out/MSR_VI_2002-Fernandes_pp95-108.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Leonor Fernandes
©2002 by Leonor Fernandes. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Between Qadis and Muftis: To Whom Does the Mamluk Sultan Listen?
- mamluk
- Leonor Fernandes
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Hattox_pp177-190.xml b/out/MSR_VI_2002-Hattox_pp177-190.xml
index 08ce1fa..62e3bda 100644
--- a/out/MSR_VI_2002-Hattox_pp177-190.xml
+++ b/out/MSR_VI_2002-Hattox_pp177-190.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Ralph S. Hattox
©2002 by Ralph S. Hattox. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Qaytbay's Diplomatic Dilemma: Concerning the Flight of Cem Sultan (1481-82)
- mamluk
- Ralph S. Hattox
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Irwin_pp63-70.xml b/out/MSR_VI_2002-Irwin_pp63-70.xml
index 86821f3..5e04be0 100644
--- a/out/MSR_VI_2002-Irwin_pp63-70.xml
+++ b/out/MSR_VI_2002-Irwin_pp63-70.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Robert Irwin
©2002 by Robert Irwin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
The Privatization of "Justice" under the Circassian Mamluks
- mamluk
- Robert Irwin
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Little_pp9-20.xml b/out/MSR_VI_2002-Little_pp9-20.xml
index 144f8c3..76b16d7 100644
--- a/out/MSR_VI_2002-Little_pp9-20.xml
+++ b/out/MSR_VI_2002-Little_pp9-20.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Donald P. Little
©2002 by Donald P. Little. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Notes on Mamluk Madrasahs
- mamluk
- Donald P. Little
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Luz_pp133-154.xml b/out/MSR_VI_2002-Luz_pp133-154.xml
index dd998d2..88e117b 100644
--- a/out/MSR_VI_2002-Luz_pp133-154.xml
+++ b/out/MSR_VI_2002-Luz_pp133-154.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Nimrod Luz
©2002 by Nimrod Luz. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Aspects of Islamization of Space and Society in Mamluk Jerusalem and its Hinterland
- mamluk
- Nimrod Luz
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Morimoto_pp109-131.xml b/out/MSR_VI_2002-Morimoto_pp109-131.xml
index a93393b..3710765 100644
--- a/out/MSR_VI_2002-Morimoto_pp109-131.xml
+++ b/out/MSR_VI_2002-Morimoto_pp109-131.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Morimoto Kosei
©2002 by Morimoto Kosei. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
What Ibn Khaldun Saw: The Judiciary of Mamluk Egypt
- mamluk
- Morimoto Kosei
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Rabbat_pp155-176.xml b/out/MSR_VI_2002-Rabbat_pp155-176.xml
index 9beb1f0..1382e66 100644
--- a/out/MSR_VI_2002-Rabbat_pp155-176.xml
+++ b/out/MSR_VI_2002-Rabbat_pp155-176.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Nasser Rabbat
©2002 by Nasser Rabbat. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Perception of Architecture in Mamluk Sources
- mamluk
- Nasser Rabbat
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_VI_2002-Reinfandt_pp51-70.xml b/out/MSR_VI_2002-Reinfandt_pp51-70.xml
index 4f3302d..f47de40 100644
--- a/out/MSR_VI_2002-Reinfandt_pp51-70.xml
+++ b/out/MSR_VI_2002-Reinfandt_pp51-70.xml
@@ -1,13 +1,14 @@
- VI, 2002
- University of Chicago
+ Lucian Reinfandt
©2002 by Lucian Reinfandt. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
+ mamluk
+ VI, 2002
Religious Endowments and Succession to Rule: The Career of a Sultan's Son
- mamluk
- Lucian Reinfandt
+ VI, 2002
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
diff --git a/out/MSR_V_2001-Book Reviews.xml b/out/MSR_V_2001-Book Reviews.xml
index 638f3d5..7997d61 100644
--- a/out/MSR_V_2001-Book Reviews.xml
+++ b/out/MSR_V_2001-Book Reviews.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Middle East Documentation Center
©2001 by review authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Book Reviews
- mamluk
- Middle East Documentation Center
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Broadbridge.xml b/out/MSR_V_2001-Broadbridge.xml
index 1a619d0..3d107e9 100644
--- a/out/MSR_V_2001-Broadbridge.xml
+++ b/out/MSR_V_2001-Broadbridge.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Anne F. Broadbridge
©2001 by Anne F. Broadbridge. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Mamluk Legitimacy and the Mongols: The Reign of Baybars and Qalawun
- mamluk
- Anne F. Broadbridge
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Elbendary.xml b/out/MSR_V_2001-Elbendary.xml
index f7cda4a..287d376 100644
--- a/out/MSR_V_2001-Elbendary.xml
+++ b/out/MSR_V_2001-Elbendary.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Amina A. Elbendary
©2001 by Amina A. Elbendary. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
The Sultan, The Tyrant, and the Hero: Changing Medieval Perceptions of al-Zahir Baybars
- mamluk
- Amina A. Elbendary
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Fuess.xml b/out/MSR_V_2001-Fuess.xml
index 134a899..ea6f092 100644
--- a/out/MSR_V_2001-Fuess.xml
+++ b/out/MSR_V_2001-Fuess.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Albrecht Fuess
©2001 by Albrecht Fuess. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Rotting Ships and Razed Harbors: The Naval Policy of the Mamluks
- mamluk
- Albrecht Fuess
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Haarmann.xml b/out/MSR_V_2001-Haarmann.xml
index d333bc7..d221423 100644
--- a/out/MSR_V_2001-Haarmann.xml
+++ b/out/MSR_V_2001-Haarmann.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Ulrich Haarmann
©2001 by Ulrich Haarmann. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
The Mamluk System of Rule in the Eyes of Western Travelers
- mamluk
- Ulrich Haarmann
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Northrup.xml b/out/MSR_V_2001-Northrup.xml
index 61795b2..56e663f 100644
--- a/out/MSR_V_2001-Northrup.xml
+++ b/out/MSR_V_2001-Northrup.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Linda S. Northrup
©2001 by Linda S. Northrup. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Qalawun's Patronage of the Medical Sciences in Thirteenth-Century Egypt
- mamluk
- Linda S. Northrup
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Saleh.xml b/out/MSR_V_2001-Saleh.xml
index 47aec93..2212ae5 100644
--- a/out/MSR_V_2001-Saleh.xml
+++ b/out/MSR_V_2001-Saleh.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Marlis J. Saleh
©2001 by Marlis J. Saleh. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Al-Suyuti and His Works: Their Place in Islamic Scholarship from Mamluk Times
- mamluk
- Marlis J. Saleh
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Schick.xml b/out/MSR_V_2001-Schick.xml
index 4602b29..ddc27bc 100644
--- a/out/MSR_V_2001-Schick.xml
+++ b/out/MSR_V_2001-Schick.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Robert Schick
©2001 by Robert Schick. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Arabic Studies of Mamluk Jerusalem: A Review Article
- mamluk
- Robert Schick
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_V_2001-Schulz.xml b/out/MSR_V_2001-Schulz.xml
index 962cb36..f85580c 100644
--- a/out/MSR_V_2001-Schulz.xml
+++ b/out/MSR_V_2001-Schulz.xml
@@ -1,13 +1,14 @@
- IV, 2000
- University of Chicago
+ Warren C. Schulz
©2001 by Warren C. Schulz. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
+ mamluk
+ IV, 2000
Mamluk Egyptian Copper Coinage Before 759/1357-1358: A Preliminary Inquiry
- mamluk
- Warren C. Schulz
+ IV, 2000
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
diff --git a/out/MSR_X-1_2006-BookReviews.xml b/out/MSR_X-1_2006-BookReviews.xml
index 614cee1..907160c 100644
--- a/out/MSR_X-1_2006-BookReviews.xml
+++ b/out/MSR_X-1_2006-BookReviews.xml
@@ -1,13 +1,5 @@
- X.1, 2006
- University of Chicago
- ©2006 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2006
- Book Reviews
- mamluk
J. A. McGregor
Roger Allen
Niall Christie
@@ -16,5 +8,14 @@ mamluk.uchicago.edu/msr.html for more information.
Thomas Bauer
Th. Emil Homerin
Everett K. Rowson
+ ©2006 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ X.1, 2006
+ Book Reviews
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Igarashi-Daisuke.xml b/out/MSR_X-1_2006-Igarashi-Daisuke.xml
index 941bbae..2d5d19c 100644
--- a/out/MSR_X-1_2006-Igarashi-Daisuke.xml
+++ b/out/MSR_X-1_2006-Igarashi-Daisuke.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Igarashi Daisuke
©2006 by Igarashi Daisuke. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
The Establishment and Development of al-Diwan al-Mufrad
- mamluk
- Igarashi Daisuke
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml b/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml
index dfedb6d..5503f68 100644
--- a/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml
+++ b/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Kikuchi Tadayoshi
©2006 by Kikuchi Tadayoshi. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
An Analysis of 'Abd al-Basit al-Hanafi al-Malati's Description of the Year 848
- mamluk
- Kikuchi Tadayoshi
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Miura-Toru.xml b/out/MSR_X-1_2006-Miura-Toru.xml
index d448455..ec01903 100644
--- a/out/MSR_X-1_2006-Miura-Toru.xml
+++ b/out/MSR_X-1_2006-Miura-Toru.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Miura Toru
©2006 by Miura Toru. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
Urban Society in Damascus as the Mamluk Era Was Ending
- mamluk
- Miura Toru
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml b/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml
index 644cfd1..5d99a11 100644
--- a/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml
+++ b/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Nakamachi Nobutaka
©2006 by Nakamachi Nobutaka. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
The Rank and Status of Military Refugees in the Mamluk Army: A Reconsideration of the Wafidiyah
- mamluk
- Nakamachi Nobutaka
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml b/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml
index 5859a64..f444d66 100644
--- a/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml
+++ b/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Ohtoshi Tetsuya
©2006 by Ohtoshi Tetsuya. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
Cairene Cemeteries as Public Loci in Mamluk Egypt
- mamluk
- Ohtoshi Tetsuya
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml b/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml
index ff5ee72..f31f0f3 100644
--- a/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml
+++ b/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Sato Tsugitaka
©2006 by Sato Tsugitaka. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
Mamluk Studies in Japan: Retrospect and Prospect
- mamluk
- Sato Tsugitaka
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml b/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml
index 3bd624b..1394a39 100644
--- a/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml
+++ b/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml
@@ -1,13 +1,14 @@
- X.1, 2006
- University of Chicago
+ Sato Tsugitaka
©2006 by Sato Tsugitaka. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.1, 2006
Slave Traders and Karimi Merchants during the Mamluk Period
- mamluk
- Sato Tsugitaka
+ X.1, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-Armstrong.xml b/out/MSR_X-2_2006-Armstrong.xml
index 66f7797..aa4f898 100644
--- a/out/MSR_X-2_2006-Armstrong.xml
+++ b/out/MSR_X-2_2006-Armstrong.xml
@@ -1,23 +1,14 @@
- X.2, 2006
- University of Chicago
+ Lyall Armstrong
©2006 by Lyall Armstrong. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- Genghis Khan
+ mamluk
+ X.2, 2006
The Making of a Sufi: al-Nuwayri's Account of the Origin of Genghis Khan
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Sufism
- Mongols
- Genghis Khan
- Lyall Armstrong
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-Bauden.xml b/out/MSR_X-2_2006-Bauden.xml
index f65e41b..42f244a 100644
--- a/out/MSR_X-2_2006-Bauden.xml
+++ b/out/MSR_X-2_2006-Bauden.xml
@@ -1,23 +1,14 @@
- X.2, 2006
- University of Chicago
+ Frederic Bauden
©2006 by Frederic Bauden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- manuscripts
+ mamluk
+ X.2, 2006
Maqriziana I: Discovery of an Autograph Manuscript of al-Maqrizi: Towards a Better Understanding of His Working Method
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- al-Maqrizi
- historiography
- manuscripts
- Frederic Bauden
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-BookReviews.xml b/out/MSR_X-2_2006-BookReviews.xml
index 7131c97..dbd5e47 100644
--- a/out/MSR_X-2_2006-BookReviews.xml
+++ b/out/MSR_X-2_2006-BookReviews.xml
@@ -1,13 +1,5 @@
- X.2, 2006
- University of Chicago
- ©2006 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2006
- Book Reviews
- mamluk
Boaz Shoshan
Patrick Wing
Carl F. Petry
@@ -17,5 +9,14 @@ mamluk.uchicago.edu/msr.html for more information.
Vanessa De Gifis
Peter Heath
Nasser Rabbat
+ ©2006 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ X.2, 2006
+ Book Reviews
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-Darling.xml b/out/MSR_X-2_2006-Darling.xml
index 98600ef..09df2e2 100644
--- a/out/MSR_X-2_2006-Darling.xml
+++ b/out/MSR_X-2_2006-Darling.xml
@@ -1,21 +1,14 @@
- X.2, 2006
- University of Chicago
+ Linda T. Darling
©2006 by Linda T. Darling. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
+ mamluk
+ X.2, 2006
Medieval Egyptian Society and the Concept of the Circle of Justice
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- justice
- law
- Linda T. Darling
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-Hamza_13MB.xml b/out/MSR_X-2_2006-Hamza_13MB.xml
index 2606918..4d41787 100644
--- a/out/MSR_X-2_2006-Hamza_13MB.xml
+++ b/out/MSR_X-2_2006-Hamza_13MB.xml
@@ -1,20 +1,14 @@
- X.2, 2006
- University of Chicago
+ Hani Hamza
©2006 by Hani Hamza. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- history
+ mamluk
+ X.2, 2006
The Turbah of Tankizbugha
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Hani Hamza
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-Krawietz.xml b/out/MSR_X-2_2006-Krawietz.xml
index e0b3504..3185426 100644
--- a/out/MSR_X-2_2006-Krawietz.xml
+++ b/out/MSR_X-2_2006-Krawietz.xml
@@ -1,20 +1,14 @@
- X.2, 2006
- University of Chicago
+ Birgit Krawietz
©2006 by Birgit Krawietz. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- history
+ mamluk
+ X.2, 2006
Ibn Qayyim al-Jawziyah: His Life and Works
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Birgit Krawietz
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-OSullivan.xml b/out/MSR_X-2_2006-OSullivan.xml
index 24af567..0fc9873 100644
--- a/out/MSR_X-2_2006-OSullivan.xml
+++ b/out/MSR_X-2_2006-OSullivan.xml
@@ -1,23 +1,14 @@
- X.2, 2006
- University of Chicago
+ Shaun O'Sullivan
©2006 by Shaun O'Sullivan. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- religion
+ mamluk
+ X.2, 2006
Coptic Conversion and the Islamization of Egypt
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Coptic
- Islam
- religion
- Shaun O'Sullivan
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_X-2_2006-Petry.xml b/out/MSR_X-2_2006-Petry.xml
index 9f24daa..45190bb 100644
--- a/out/MSR_X-2_2006-Petry.xml
+++ b/out/MSR_X-2_2006-Petry.xml
@@ -1,22 +1,14 @@
- X.2, 2006
- University of Chicago
+ Carl F. Petry
©2006 by Carl F. Petry. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- Ibn Taghribirdi
+ mamluk
+ X.2, 2006
Crime in Mamluk Historiography: A Fraud Case Depicted by Ibn Taghribirdi
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- crime
- Ibn Taghribirdi
- Carl F. Petry
+ X.2, 2006
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
diff --git a/out/MSR_XI-1_2007-Antrim.xml b/out/MSR_XI-1_2007-Antrim.xml
index d9c509c..910c605 100644
--- a/out/MSR_XI-1_2007-Antrim.xml
+++ b/out/MSR_XI-1_2007-Antrim.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Zayde Antrim
©2007 by Zayde Antrim. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
Making Syria Mamluk: Ibn Shaddad's Al-A'laq al-Khatirah
- mamluk
- Zayde Antrim
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-BookReviews.xml b/out/MSR_XI-1_2007-BookReviews.xml
index dcab995..71cb753 100644
--- a/out/MSR_XI-1_2007-BookReviews.xml
+++ b/out/MSR_XI-1_2007-BookReviews.xml
@@ -1,13 +1,5 @@
- XI.1, 2007
- University of Chicago
- ©2007 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2007
- Book Reviews
- mamluk
Th. Emil Homerin
Ralph S. Hattox
Richard McGregor
@@ -19,5 +11,14 @@ mamluk.uchicago.edu/msr.html for more information.
Anne F. Broadbridge
Benjamin Arbel
Geert Jan van Gelder
+ ©2007 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XI.1, 2007
+ Book Reviews
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-Frenkel.xml b/out/MSR_XI-1_2007-Frenkel.xml
index 8942f64..c748efa 100644
--- a/out/MSR_XI-1_2007-Frenkel.xml
+++ b/out/MSR_XI-1_2007-Frenkel.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Yehoshua Frenkel
©2007 by Yehoshua Frenkel. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
Public Projection of Power in Mamluk Bilad al-Sham
- mamluk
- Yehoshua Frenkel
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-Ibrahim.xml b/out/MSR_XI-1_2007-Ibrahim.xml
index d641465..492feb0 100644
--- a/out/MSR_XI-1_2007-Ibrahim.xml
+++ b/out/MSR_XI-1_2007-Ibrahim.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Mahmood Ibrahim
©2007 by Mahmood Ibrahim. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
Practice and Reform in Fourteenth-Century Damascene Madrasahs
- mamluk
- Mahmood Ibrahim
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-Kenney.xml b/out/MSR_XI-1_2007-Kenney.xml
index 7404927..fd7a336 100644
--- a/out/MSR_XI-1_2007-Kenney.xml
+++ b/out/MSR_XI-1_2007-Kenney.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Ellen Kenney
©2007 by Ellen Kenney. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
A Mamluk Monument "Restored": The Dar al-Qur'an wa-al-Hadith of Tankiz al-Nasiri in Damascus
- mamluk
- Ellen Kenney
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-McPhillips-Walmsley.xml b/out/MSR_XI-1_2007-McPhillips-Walmsley.xml
index 614891e..aa374a3 100644
--- a/out/MSR_XI-1_2007-McPhillips-Walmsley.xml
+++ b/out/MSR_XI-1_2007-McPhillips-Walmsley.xml
@@ -1,14 +1,22 @@
- XI.1, 2007
- University of Chicago
+ Stephen McPhillips
+ Alan Walmsley
©2007 by Stephen McPhillips and Alan Walmsley. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ archaeology
+ XI.1, 2007
Fahl during the Early Mamluk Period: Archaeological Perspectives
- "mamluk
- Stephen McPhillips
- Alan Walmsley
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-McQuitty.xml b/out/MSR_XI-1_2007-McQuitty.xml
index c0ca1a3..acbcd56 100644
--- a/out/MSR_XI-1_2007-McQuitty.xml
+++ b/out/MSR_XI-1_2007-McQuitty.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Alison McQuitty
©2007 by Alison McQuitty. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
Khirbat Faris: Vernacular Architecture on the Karak Plateau, Jordan
- mamluk
- Alison McQuitty
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-Michaudel.xml b/out/MSR_XI-1_2007-Michaudel.xml
index 6d4fd5b..56dc140 100644
--- a/out/MSR_XI-1_2007-Michaudel.xml
+++ b/out/MSR_XI-1_2007-Michaudel.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Benjamin Michaudel
©2007 by Benjamin Michaudel. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
The Use of Fortification as a Political Instrument by the Ayyubids and the Mamluks in Bilad al-Sham and in Egypt
- mamluk
- Benjamin Michaudel
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-Tsugitaka.xml b/out/MSR_XI-1_2007-Tsugitaka.xml
index b508f94..d90837e 100644
--- a/out/MSR_XI-1_2007-Tsugitaka.xml
+++ b/out/MSR_XI-1_2007-Tsugitaka.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Sato Tsugitaka
©2007 by Sato Tsugitaka. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
Fiscal Administration in Syria during the Reign of Sultan al-Nasir Muhammad
- mamluk
- Sato Tsugitaka
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-1_2007-Walker.xml b/out/MSR_XI-1_2007-Walker.xml
index 0cc3e96..504dd16 100644
--- a/out/MSR_XI-1_2007-Walker.xml
+++ b/out/MSR_XI-1_2007-Walker.xml
@@ -1,13 +1,14 @@
- XI.1, 2007
- University of Chicago
+ Bethany J. Walker
©2007 by Bethany J. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.1, 2007
Sowing the Seeds of Rural Decline?
- mamluk
- Bethany J. Walker
+ XI.1, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-Aigle.xml b/out/MSR_XI-2_2007-Aigle.xml
index 8e5f5d4..6d4fbce 100644
--- a/out/MSR_XI-2_2007-Aigle.xml
+++ b/out/MSR_XI-2_2007-Aigle.xml
@@ -1,13 +1,14 @@
- XI.2, 2007
- University of Chicago
+ Denise Aigle
©2007 by Denise Aigle. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.2, 2007
The Mongol Invasions of Bilad al-Sham by Ghazan Khan and Ibn Taymiyah's Three "Anti-Mongol" Fatwas
- mamluk
- Denise Aigle
+ XI.2, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-Bauer.xml b/out/MSR_XI-2_2007-Bauer.xml
index 0485032..9e22abf 100644
--- a/out/MSR_XI-2_2007-Bauer.xml
+++ b/out/MSR_XI-2_2007-Bauer.xml
@@ -1,13 +1,14 @@
- XI.2, 2007
- University of Chicago
+ Thomas Bauer
©2007 by Thomas Bauer. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.2, 2007
In Search of "Post-Classical Literature": A Review Article
- mamluk
- Thomas Bauer
+ XI.2, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-BookReviews.xml b/out/MSR_XI-2_2007-BookReviews.xml
index dfa932b..6fb9ae3 100644
--- a/out/MSR_XI-2_2007-BookReviews.xml
+++ b/out/MSR_XI-2_2007-BookReviews.xml
@@ -1,13 +1,5 @@
- XI.2, 2007
- University of Chicago
- ©2007 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2007
- Book Reviews
- mamluk
Frédéric Bauden
Stephan Conermann
John Rodenbeck
@@ -16,5 +8,14 @@ mamluk.uchicago.edu/msr.html for more information.
Albrecht Fuess
Walter E. Kaegi
W. W. Clifford
+ ©2007 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XI.2, 2007
+ Book Reviews
+ XI.2, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-Conermann_Seidensticker.xml b/out/MSR_XI-2_2007-Conermann_Seidensticker.xml
index 03363f3..565d12f 100644
--- a/out/MSR_XI-2_2007-Conermann_Seidensticker.xml
+++ b/out/MSR_XI-2_2007-Conermann_Seidensticker.xml
@@ -1,14 +1,15 @@
- none
- University of Chicago
+ Stephan Conermann
+ Tilman Seidensticker
©2007 by Stephan Conermann and Tilman Seidensticker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
- Some Remarks on Ibn Tawq's Journal Al-Ta'liq, vol. 1
- mamluk
- Stephan Conermann
- Tilman Seidensticker
+ mamluk
+ none
+ Book Reviews
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-Harithy_11MB.xml b/out/MSR_XI-2_2007-Harithy_11MB.xml
index 710c6f3..f9d1351 100644
--- a/out/MSR_XI-2_2007-Harithy_11MB.xml
+++ b/out/MSR_XI-2_2007-Harithy_11MB.xml
@@ -1,13 +1,14 @@
- none
- University of Chicago
+ Howayda Al-Harithy
©2007 by Howayda Al-Harithy. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
- The Four Madrasahs in the Complex of Sultan Hasan (1356-61): The Complete Survey
- mamluk
- Howayda Al-Harithy
+ mamluk
+ none
+ Book Reviews
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-Rapoport.xml b/out/MSR_XI-2_2007-Rapoport.xml
index 3bb5f86..723af5f 100644
--- a/out/MSR_XI-2_2007-Rapoport.xml
+++ b/out/MSR_XI-2_2007-Rapoport.xml
@@ -1,13 +1,14 @@
- none
- University of Chicago
+ Yossef Rapoport
©2007 by Yossef Rapoport. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
- Women and Gender in Mamluk Society: An Overview
- mamluk
- Yossef Rapoport
+ mamluk
+ none
+ Book Reviews
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XI-2_2007-Wing.xml b/out/MSR_XI-2_2007-Wing.xml
index 828e97c..3355ef9 100644
--- a/out/MSR_XI-2_2007-Wing.xml
+++ b/out/MSR_XI-2_2007-Wing.xml
@@ -1,13 +1,14 @@
- XI.2, 2007
- University of Chicago
+ Patrick Wing
©2007 by Patrick Wing. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
+ mamluk
+ XI.2, 2007
The Decline of the Ilkhanate and the Mamluk Sultanate's Eastern Frontier
- mamluk
- Patrick Wing
+ XI.2, 2007
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
diff --git a/out/MSR_XII-1_2008-Amitai-pp119-137.xml b/out/MSR_XII-1_2008-Amitai-pp119-137.xml
index 1d28eb2..1cea673 100644
--- a/out/MSR_XII-1_2008-Amitai-pp119-137.xml
+++ b/out/MSR_XII-1_2008-Amitai-pp119-137.xml
@@ -1,13 +1,14 @@
- XII. 1, 2008
- University of Chicago
+ Reuven Amitai
©2008 by Reuven Amitai. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII. 1, 2008
Mamluks of Mongol Origin and Their Role in Early Mamluk Political Life
- mamluk
- Reuven Amitai
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-1_2008-Bauden-pp51-118.xml b/out/MSR_XII-1_2008-Bauden-pp51-118.xml
index 7a5dc33..29cac04 100644
--- a/out/MSR_XII-1_2008-Bauden-pp51-118.xml
+++ b/out/MSR_XII-1_2008-Bauden-pp51-118.xml
@@ -1,13 +1,14 @@
- XII. 1, 2008
- University of Chicago
+ Frederic Bauden
©2008 by Frederic Bauden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII. 1, 2008
Maqriziana II: Discovery of an Autograph Manuscript of al-Maqrīzī
- mamluk
- Frederic Bauden
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-1_2008-Bauer-pp1-35.xml b/out/MSR_XII-1_2008-Bauer-pp1-35.xml
index 81605fe..cf1813b 100644
--- a/out/MSR_XII-1_2008-Bauer-pp1-35.xml
+++ b/out/MSR_XII-1_2008-Bauer-pp1-35.xml
@@ -1,13 +1,14 @@
- XII. 1, 2008
- University of Chicago
+ Thomas Bauer
©2008 by Thomas Bauer. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII. 1, 2008
Ibn Nubātah al-Miṣrī (686–768/1287–1366): Life and Works, Part I
- mamluk
- Thomas Bauer
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-1_2008-BookReviews-pp193-229.xml b/out/MSR_XII-1_2008-BookReviews-pp193-229.xml
index 7153810..8d8969c 100644
--- a/out/MSR_XII-1_2008-BookReviews-pp193-229.xml
+++ b/out/MSR_XII-1_2008-BookReviews-pp193-229.xml
@@ -1,18 +1,19 @@
- XII. 1, 2008
- University of Chicago
- ©2008 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2008
- Book Reviews
- mamluk
Salma Khadra Jayyusi
Patrick Wing
Li Guo
Robert Irwin
Reuven Amitai
Johannes Pahlitzsch
+ ©2008 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XII. 1, 2008
+ Book Reviews
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-1_2008-Hamza-pp139-172.xml b/out/MSR_XII-1_2008-Hamza-pp139-172.xml
index 9a4810b..5d9c8fa 100644
--- a/out/MSR_XII-1_2008-Hamza-pp139-172.xml
+++ b/out/MSR_XII-1_2008-Hamza-pp139-172.xml
@@ -1,13 +1,14 @@
- XII. 1, 2008
- University of Chicago
+ Hani Hamza
©2008 by Hani Hamza. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII. 1, 2008
Some Aspects of the Economic and Social Life of Ibn Taghrībirdī
- mamluk
- Hani Hamza
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-1_2008-Irwin-pp37-49.xml b/out/MSR_XII-1_2008-Irwin-pp37-49.xml
index 9c5c68c..69bc60e 100644
--- a/out/MSR_XII-1_2008-Irwin-pp37-49.xml
+++ b/out/MSR_XII-1_2008-Irwin-pp37-49.xml
@@ -1,13 +1,14 @@
- XII. 1, 2008
- University of Chicago
+ Robert Irwin
©2008 by Robert Irwin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII. 1, 2008
The Political Thinking of the “Virtuous Ruler,” Qānṣūh al-Ghawri
- mamluk
- Robert Irwin
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-1_2008-Muller-pp173-191.xml b/out/MSR_XII-1_2008-Muller-pp173-191.xml
index de7e74f..b0aebfe 100644
--- a/out/MSR_XII-1_2008-Muller-pp173-191.xml
+++ b/out/MSR_XII-1_2008-Muller-pp173-191.xml
@@ -1,13 +1,14 @@
- XII. 1, 2008
- University of Chicago
+ Christian Muller
©2008 by Christian Muller. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII. 1, 2008
A Legal Instrument in the Service of People and Institutions: Endowments in Mamluk Jerusalem
- mamluk
- Christian Muller
+ XII. 1, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Bauer-pp25-69.xml b/out/MSR_XII-2_2008-Bauer-pp25-69.xml
index a7c987f..0bdad65 100644
--- a/out/MSR_XII-2_2008-Bauer-pp25-69.xml
+++ b/out/MSR_XII-2_2008-Bauer-pp25-69.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Thomas Bauer
©2008 by Thomas Bauer. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
Ibn Nubātah al-Miṣrī (686–768/1287–1366): Life and Works, Part II: The Diwan
- mamluk
- Thomas Bauer
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-BookReviews-pp231-241.xml b/out/MSR_XII-2_2008-BookReviews-pp231-241.xml
index 1f7ce94..d99e3db 100644
--- a/out/MSR_XII-2_2008-BookReviews-pp231-241.xml
+++ b/out/MSR_XII-2_2008-BookReviews-pp231-241.xml
@@ -1,15 +1,16 @@
- XII.2, 2008
- University of Chicago
+ Patrick Wing
+ Thomas T. Allsen
+ Elizabeth Urban
©2008 by review authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
Book Reviews
- mamluk
- Patrick Wing
- Thomas T. Allsen
- Elizabeth Urban
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Conermann-pp1-24.xml b/out/MSR_XII-2_2008-Conermann-pp1-24.xml
index 0faa18b..66d4f8f 100644
--- a/out/MSR_XII-2_2008-Conermann-pp1-24.xml
+++ b/out/MSR_XII-2_2008-Conermann-pp1-24.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Stephan Conermann
©2008 by Stephan Conermann. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
Tankiz ibn ʿAbd Allāh al-Ḥusāmī al-Nāṣirī as Seen by His Contemporary al-Safadi
- mamluk
- Stephan Conermann
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Franz-pp133-158.xml b/out/MSR_XII-2_2008-Franz-pp133-158.xml
index 74817da..2c36a4a 100644
--- a/out/MSR_XII-2_2008-Franz-pp133-158.xml
+++ b/out/MSR_XII-2_2008-Franz-pp133-158.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Kurt Franz
©2008 by Kurt Franz. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
The Ayyubid and Mamluk Revaluation of the Hinterland and Western Historical Cartography
- mamluk
- Kurt Franz
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Fuess-pp71-94.xml b/out/MSR_XII-2_2008-Fuess-pp71-94.xml
index f317eb1..f1b51c9 100644
--- a/out/MSR_XII-2_2008-Fuess-pp71-94.xml
+++ b/out/MSR_XII-2_2008-Fuess-pp71-94.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Albrecht Fuess
©2008 by Albrecht Fuess. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
Sultans with Horns: The Political Significance of Headgear in the Mamluk Empire
- mamluk
- Albrecht Fuess
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Hirschler-pp95-132.xml b/out/MSR_XII-2_2008-Hirschler-pp95-132.xml
index 5a59ae5..6cea8cb 100644
--- a/out/MSR_XII-2_2008-Hirschler-pp95-132.xml
+++ b/out/MSR_XII-2_2008-Hirschler-pp95-132.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Konrad Hirschler
©2008 by Konrad Hirschler. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
The Formation of the Civilian Elite in the Syrian Province: The Case of Ayyubid and Early Mamluk Hamah
- mamluk
- Konrad Hirschler
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Kuhn-pp159-196.xml b/out/MSR_XII-2_2008-Kuhn-pp159-196.xml
index 8c39174..0ba5a54 100644
--- a/out/MSR_XII-2_2008-Kuhn-pp159-196.xml
+++ b/out/MSR_XII-2_2008-Kuhn-pp159-196.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Miriam Kuhn
©2008 by Miriam Kuhn. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
The 'Attar Mosque in Tripoli
- mamluk
- Miriam Kuhn
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Speiser-pp197-221.xml b/out/MSR_XII-2_2008-Speiser-pp197-221.xml
index e52de8a..3226af4 100644
--- a/out/MSR_XII-2_2008-Speiser-pp197-221.xml
+++ b/out/MSR_XII-2_2008-Speiser-pp197-221.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Philipp Speiser
©2008 by Philipp Speiser. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
The Sultan al-Nāṣir Muḥammad Madrasah in Cairo: Restoration and Archaeological Investigation
- mamluk
- Philipp Speiser
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XII-2_2008-Vesely-pp223-229.xml b/out/MSR_XII-2_2008-Vesely-pp223-229.xml
index c6d0076..39a08e5 100644
--- a/out/MSR_XII-2_2008-Vesely-pp223-229.xml
+++ b/out/MSR_XII-2_2008-Vesely-pp223-229.xml
@@ -1,13 +1,14 @@
- XII.2, 2008
- University of Chicago
+ Rudolf Vesely
©2008 by Rudolf Vesely. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
+ mamluk
+ XII.2, 2008
When Is It Possible to Call Something Beautiful?
- mamluk
- Rudolf Vesely
+ XII.2, 2008
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
diff --git a/out/MSR_XIII-1_2009-Bauden_pp53-81.xml b/out/MSR_XIII-1_2009-Bauden_pp53-81.xml
index df21fc3..30aa9b6 100644
--- a/out/MSR_XIII-1_2009-Bauden_pp53-81.xml
+++ b/out/MSR_XIII-1_2009-Bauden_pp53-81.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Frederic Bauden
©2009 by Frederic Bauden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
The Sons of al-Nasir Muhammad and the Politics of Puppets
- mamluk
- Frederic Bauden
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml b/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml
index 067b331..385fb03 100644
--- a/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml
+++ b/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml
@@ -1,13 +1,5 @@
- XIII.1, 2009
- University of Chicago
- ©2009 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2009
- Book Reviews
- mamluk
Frédéric Bauden
John L. Meloy
Caterina Bori
@@ -15,5 +7,14 @@ mamluk.uchicago.edu/msr.html for more information.
René-Vincent du Grandlaunay
Li Guo
Aram Shahin
+ ©2009 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XIII.1, 2009
+ Book Reviews
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml b/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml
index c92d051..d1f1b6c 100644
--- a/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml
+++ b/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Igarashi Daisuke
©2009 by Igarashi Daisuke. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
The Financial Reforms of Sultan Qaytbay
- mamluk
- Igarashi Daisuke
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml b/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml
index dc2b26d..3e33b63 100644
--- a/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml
+++ b/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Yehoshua Frenkel
©2009 by Yehoshua Frenkel. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
Awqaf in Mamluk Bilad al-Sham
- mamluk
- Yehoshua Frenkel
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-Fuess_pp121-147.xml b/out/MSR_XIII-1_2009-Fuess_pp121-147.xml
index 53f0375..17387c0 100644
--- a/out/MSR_XIII-1_2009-Fuess_pp121-147.xml
+++ b/out/MSR_XIII-1_2009-Fuess_pp121-147.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Albrecht Fuess
©2009 by Albrecht Fuess. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
Zulm by Mazalim? The Political Implications of the Use of Mazalim Jurisdiction by the Mamluk Sultans
- mamluk
- Albrecht Fuess
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml b/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml
index 1cc8129..13a1058 100644
--- a/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml
+++ b/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Antonella Ghersetti
©2009 by Antonella Ghersetti. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
An Unpublished Anthology of the Mamluk Period on Generosity and Generous Men
- mamluk
- Antonella Ghersetti
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-Lev_pp1-26.xml b/out/MSR_XIII-1_2009-Lev_pp1-26.xml
index 37a964d..6d60a67 100644
--- a/out/MSR_XIII-1_2009-Lev_pp1-26.xml
+++ b/out/MSR_XIII-1_2009-Lev_pp1-26.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Yaacov Lev
©2009 by Yaacov Lev. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
Symbiotic Relations: Ulama and the Mamluk Sultans
- mamluk
- Yaacov Lev
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-1_2009-Walker_pp83-105.xml b/out/MSR_XIII-1_2009-Walker_pp83-105.xml
index 6d2253d..d832f02 100644
--- a/out/MSR_XIII-1_2009-Walker_pp83-105.xml
+++ b/out/MSR_XIII-1_2009-Walker_pp83-105.xml
@@ -1,13 +1,14 @@
- XIII.1, 2009
- University of Chicago
+ Bethany J. Walker
©2009 by Bethany J. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
+ mamluk
+ XIII.1, 2009
The Tribal Dimension in Mamluk-Jordanian Relations
- mamluk
- Bethany J. Walker
+ XIII.1, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Berkey_pp6-22.xml b/out/MSR_XIII-2_2009-Berkey_pp6-22.xml
index 3526c58..3c6b46d 100644
--- a/out/MSR_XIII-2_2009-Berkey_pp6-22.xml
+++ b/out/MSR_XIII-2_2009-Berkey_pp6-22.xml
@@ -1,22 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Jonathan P. Berkey
©2009 by Jonathan P. Berkey. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Islam
+ mamluk
+ XIII.2, 2009
Mamluk Religious Policy
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- religion
- Islam
- Jonathan P. Berkey
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml b/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml
index ed7346c..240f644 100644
--- a/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml
+++ b/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml
@@ -1,20 +1,5 @@
- XIII. 2, 2009
- University of Chicago
- ©2009 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2009
- history
- Book Reviews
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
Th. Emil Homerin
Paul M. Cobb
Albrecht Fuess
@@ -22,5 +7,14 @@ mamluk.uchicago.edu/msr.html for more information.
Zayde Antrim
Geert Jan van Gelder
Li Guo
+ ©2009 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XIII. 2, 2009
+ Book Reviews
+ XIII. 2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Bori_pp47-67.xml b/out/MSR_XIII-2_2009-Bori_pp47-67.xml
index 0a1be70..c56a062 100644
--- a/out/MSR_XIII-2_2009-Bori_pp47-67.xml
+++ b/out/MSR_XIII-2_2009-Bori_pp47-67.xml
@@ -1,22 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Caterina Bori
©2009 by Caterina Bori. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Islam
+ mamluk
+ XIII.2, 2009
The Collection and Edition of Ibn Taymiyah's Works: Concerns of a Disciple
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- religion
- Islam
- Caterina Bori
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Hunt_pp105-132.xml b/out/MSR_XIII-2_2009-Hunt_pp105-132.xml
index 8dd2240..6bf4f8b 100644
--- a/out/MSR_XIII-2_2009-Hunt_pp105-132.xml
+++ b/out/MSR_XIII-2_2009-Hunt_pp105-132.xml
@@ -1,23 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Lucy-Anne Hunt
©2009 by Lucy-Anne Hunt. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Christianity
+ mamluk
+ XIII.2, 2009
A Christian Arab Gospel Book in its Mamluk Context
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- religion
- Islam
- Christianity
- Lucy-Anne Hunt
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Introduction_pp3-5.xml b/out/MSR_XIII-2_2009-Introduction_pp3-5.xml
index da37924..77941b9 100644
--- a/out/MSR_XIII-2_2009-Introduction_pp3-5.xml
+++ b/out/MSR_XIII-2_2009-Introduction_pp3-5.xml
@@ -1,22 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Johannes Pahlitzsch
©2009 by Johannes Pahlitzsch. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Islam
+ mamluk
+ XIII.2, 2009
Introduction
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- religion
- Islam
- Johannes Pahlitzsch
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-McGregor_pp69-83.xml b/out/MSR_XIII-2_2009-McGregor_pp69-83.xml
index e1388d8..91dc897 100644
--- a/out/MSR_XIII-2_2009-McGregor_pp69-83.xml
+++ b/out/MSR_XIII-2_2009-McGregor_pp69-83.xml
@@ -1,22 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Richard McGregor
©2009 by Richard McGregor. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Islam
+ mamluk
+ XIII.2, 2009
The Problem of Sufism
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Sufism
- Islam
- Richard McGregor
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Obituary_pp1-2.xml b/out/MSR_XIII-2_2009-Obituary_pp1-2.xml
index c964997..4705847 100644
--- a/out/MSR_XIII-2_2009-Obituary_pp1-2.xml
+++ b/out/MSR_XIII-2_2009-Obituary_pp1-2.xml
@@ -1,20 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Bruce D. Craig
©2009 by Bruce D. Craig. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- history
+ mamluk
+ XIII.2, 2009
Winslow W. Clifford, 1954-2009
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Bruce D. Craig
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Rustow_pp133-159.xml b/out/MSR_XIII-2_2009-Rustow_pp133-159.xml
index e1bb6af..f2b9941 100644
--- a/out/MSR_XIII-2_2009-Rustow_pp133-159.xml
+++ b/out/MSR_XIII-2_2009-Rustow_pp133-159.xml
@@ -1,21 +1,14 @@
- XIII.2, 2009
- University of Chicago
+ Marina Rustow
©2009 by Marina Rustow. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- religion
+ mamluk
+ XIII.2, 2009
At the Limits of Communal Autonomy: Jewish Bids for Intervention from the Mamluk State
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- religion
- Marina Rustow
+ XIII.2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml b/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml
index ea3d19e..c369103 100644
--- a/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml
+++ b/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml
@@ -1,22 +1,14 @@
- XIII. 2, 2009
- University of Chicago
+ Daniella Talmon-Heller
©2009 by Daniella Talmon-Heller. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Ayyubids
+ mamluk
+ XIII. 2, 2009
'Ilm, Shafa'ah, and Barakah: The Resources of Ayyubid and Early Mamluk Ulama
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- ulama
- Ayyubids
- Daniella Talmon-Heller
+ XIII. 2, 2009
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIII-2_2009-Thomas_pp85-103.xml b/out/MSR_XIII-2_2009-Thomas_pp85-103.xml
index 23ad6e8..c663b13 100644
--- a/out/MSR_XIII-2_2009-Thomas_pp85-103.xml
+++ b/out/MSR_XIII-2_2009-Thomas_pp85-103.xml
@@ -1,23 +1,14 @@
- none
- University of Chicago
+ David Thomas
©2009 by David Thomas. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- Christianity
- Idealism and Intransigence: A Christian-Muslim Encounter in Early Mamluk Times
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- religion
- Islam
- Christianity
- David Thomas
+ mamluk
+ none
+ 'Ilm, Shafa'ah, and Barakah: The Resources of Ayyubid and Early Mamluk Ulama
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
diff --git a/out/MSR_XIV_2010-Bauden-pp159-232.xml b/out/MSR_XIV_2010-Bauden-pp159-232.xml
index c964944..d4efb5d 100644
--- a/out/MSR_XIV_2010-Bauden-pp159-232.xml
+++ b/out/MSR_XIV_2010-Bauden-pp159-232.xml
@@ -1,21 +1,14 @@
- XIV, 2010
- University of Chicago
+ Frederic Bauden
©2010 by Frederic Bauden. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- al-Maqrizi
+ mamluk
+ XIV, 2010
Maqriziana IX: Should al-Maqrizi Be Thrown Out with the Bath Water?
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- al-Maqrizi
- Frederic Bauden
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Berkey-pp1-17.xml b/out/MSR_XIV_2010-Berkey-pp1-17.xml
index aa4fee3..e9996e2 100644
--- a/out/MSR_XIV_2010-Berkey-pp1-17.xml
+++ b/out/MSR_XIV_2010-Berkey-pp1-17.xml
@@ -1,22 +1,14 @@
- XIV, 2010
- University of Chicago
+ Jonathan P. Berkey
©2010 by Jonathan P. Berkey. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- gender
+ mamluk
+ XIV, 2010
Al-Subki and His Women
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- women
- gender
- Jonathan P. Berkey
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-BookReviews_pp233-253.xml b/out/MSR_XIV_2010-BookReviews_pp233-253.xml
index 1e7ea0c..ad1570f 100644
--- a/out/MSR_XIV_2010-BookReviews_pp233-253.xml
+++ b/out/MSR_XIV_2010-BookReviews_pp233-253.xml
@@ -1,23 +1,17 @@
- XIV, 2010
- University of Chicago
- ©2010 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2010
- history
- Book Reviews
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
Everett K. Rowson
Thomas T. Allsen
Th. Emil Homerin
John Rodenbeck
+ ©2010 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XIV, 2010
+ Book Reviews
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Broadbridge-pp29-42.xml b/out/MSR_XIV_2010-Broadbridge-pp29-42.xml
index b19227c..5e1d099 100644
--- a/out/MSR_XIV_2010-Broadbridge-pp29-42.xml
+++ b/out/MSR_XIV_2010-Broadbridge-pp29-42.xml
@@ -1,22 +1,14 @@
- XIV, 2010
- University of Chicago
+ Anne F. Broadbridge
©2010 by Anne F. Broadbridge. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- defection
+ mamluk
+ XIV, 2010
Spy or Rebel? The Curious Incident of the Temurid Sultan Husayn's Defection to the Mamluks
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Timurids
- defection
- Anne F. Broadbridge
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Daisuke-pp85-108.xml b/out/MSR_XIV_2010-Daisuke-pp85-108.xml
index c8a7ef7..c09f0d1 100644
--- a/out/MSR_XIV_2010-Daisuke-pp85-108.xml
+++ b/out/MSR_XIV_2010-Daisuke-pp85-108.xml
@@ -1,21 +1,14 @@
- XIV, 2010
- University of Chicago
+ Igarashi Daisuke
©2010 by Igarashi Daisuke. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- economics
+ mamluk
+ XIV, 2010
The Evolution of the Sultanic Fisc and al-Dhakirah during the Circassian Mamluk Period
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- economics
- Igarashi Daisuke
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Guo-pp43-62.xml b/out/MSR_XIV_2010-Guo-pp43-62.xml
index bd968a9..f30bcef 100644
--- a/out/MSR_XIV_2010-Guo-pp43-62.xml
+++ b/out/MSR_XIV_2010-Guo-pp43-62.xml
@@ -1,24 +1,14 @@
- XIV, 2010
- University of Chicago
+ Li Guo
©2010 by Li Guo. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- law
+ mamluk
+ XIV, 2010
Mamluk Historical Rajaz Poetry: Ibn Daniyal's Judge List and Its Later Adaptations
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- literature
- poetry
- Arabic
- law
- Li Guo
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Homerin-pp19-28.xml b/out/MSR_XIV_2010-Homerin-pp19-28.xml
index 74a654e..d535033 100644
--- a/out/MSR_XIV_2010-Homerin-pp19-28.xml
+++ b/out/MSR_XIV_2010-Homerin-pp19-28.xml
@@ -1,20 +1,14 @@
- XIV, 2010
- University of Chicago
+ Th. Emil Homerin
©2010 by Th. Emil Homerin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- history
+ mamluk
+ XIV, 2010
Al-Busiri's Lamentations on Life and an Appeal for Cash
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Th. Emil Homerin
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Levanoni-pp63-83.xml b/out/MSR_XIV_2010-Levanoni-pp63-83.xml
index ecde9ff..2e00f13 100644
--- a/out/MSR_XIV_2010-Levanoni-pp63-83.xml
+++ b/out/MSR_XIV_2010-Levanoni-pp63-83.xml
@@ -1,20 +1,14 @@
- XIV, 2010
- University of Chicago
+ Amalia Levanoni
©2010 by Amalia Levanoni. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- history
+ mamluk
+ XIV, 2010
Who Were the "Salt of the Earth" in Fifteenth-Century Egypt?
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Amalia Levanoni
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml b/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml
index 3ce1965..c797afc 100644
--- a/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml
+++ b/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml
@@ -1,20 +1,14 @@
- XIV, 2010
- University of Chicago
+ Middle East Documentation Center
©2010 by The Middle East Documentation Center (MEDOC). This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- history
+ mamluk
+ XIV, 2010
Bibliography of Carl F. Petry's Publications
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Middle East Documentation Center
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIV_2010-Walker-pp109-157.xml b/out/MSR_XIV_2010-Walker-pp109-157.xml
index 151aa6d..b753682 100644
--- a/out/MSR_XIV_2010-Walker-pp109-157.xml
+++ b/out/MSR_XIV_2010-Walker-pp109-157.xml
@@ -1,22 +1,14 @@
- XIV, 2010
- University of Chicago
+ Bethany J. Walker
©2010 by Bethany J. Walker. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- ceramics
+ mamluk
+ XIV, 2010
From Ceramics to Social Theory: Reflections on Mamluk Archaeology Today
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- archaeology
- ceramics
- Bethany J. Walker
+ XIV, 2010
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
diff --git a/out/MSR_XIX_2016_Barker.xml b/out/MSR_XIX_2016_Barker.xml
index 7a775db..0ee8918 100644
--- a/out/MSR_XIX_2016_Barker.xml
+++ b/out/MSR_XIX_2016_Barker.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ Hannah Barker
©2016 by Hannah Barker. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
Purchasing a Slave in Fourteenth-Century Cairo: Ibn al-Akfānī’s Book of Observation and Inspection in the Examination of Slaves
- mamluk
- Hannah Barker
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_Belhaj.xml b/out/MSR_XIX_2016_Belhaj.xml
index 79a56da..9ae90ce 100644
--- a/out/MSR_XIX_2016_Belhaj.xml
+++ b/out/MSR_XIX_2016_Belhaj.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ Abdessamad Belhaj
©2016 by Abdessamad Belhaj. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
Disputation is a Fighting Sport: Munāẓarah according to Ibn Qayyim al-Jawzīyah
- mamluk
- Abdessamad Belhaj
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_BookReviews.xml b/out/MSR_XIX_2016_BookReviews.xml
index 7f85b07..6868cd9 100644
--- a/out/MSR_XIX_2016_BookReviews.xml
+++ b/out/MSR_XIX_2016_BookReviews.xml
@@ -1,15 +1,15 @@
- XIX, 2016
- University of Chicago
Reviews ©2016 by their authors: Bernadette Martel-Thoumian, Valentina Vezzoli, Warren C. Schultz, Nathan Miller, Carl F. Petry. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
- Book Reviews
- mamluk
Bernadette Martel-Thoumian
Valentina Vezzoli
Warren C. Schultz
Nathan Miller
Carl F. Petry
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ mamluk
+ Book Reviews
+ XIX, 2016
diff --git a/out/MSR_XIX_2016_Borsch_Sabraa.xml b/out/MSR_XIX_2016_Borsch_Sabraa.xml
index aa27732..e2022ff 100644
--- a/out/MSR_XIX_2016_Borsch_Sabraa.xml
+++ b/out/MSR_XIX_2016_Borsch_Sabraa.xml
@@ -1,12 +1,13 @@
- XIX, 2016
- University of Chicago
- ©2016 by Stuart Borsch and Tarek Sabraa. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
- Plague Mortality in Late Medieval Cairo: Quantifying the Plague Outbreaks of 833/1430 and 864/1460
- mamluk
Stuart Borsch
Tarek Sabraa
+ ©2016 by Stuart Borsch and Tarek Sabraa. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XIX, 2016
+ Plague Mortality in Late Medieval Cairo: Quantifying the Plague Outbreaks of 833/1430 and 864/1460
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_Landa.xml b/out/MSR_XIX_2016_Landa.xml
index 014b958..7a6f1e7 100644
--- a/out/MSR_XIX_2016_Landa.xml
+++ b/out/MSR_XIX_2016_Landa.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ Ishayahu Landa
©2016 by Ishayahu Landa. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
Oirats in the Ilkhanate and the Mamluk Sultanate in the Thirteenth to the Early Fifteenth Centuries: Two Cases of Assimilation into the Muslim Environment
- mamluk
- Ishayahu Landa
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_Nicolle.xml b/out/MSR_XIX_2016_Nicolle.xml
index 853493a..04ebe2e 100644
--- a/out/MSR_XIX_2016_Nicolle.xml
+++ b/out/MSR_XIX_2016_Nicolle.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ David Nicolle
©2016 by David Nicolle. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
The Iconography of a Military Elite: Military Figures on an Early Thirteenth-Century Candlestick (Part II)
- mamluk
- David Nicolle
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_Ozkan.xml b/out/MSR_XIX_2016_Ozkan.xml
index 21d3687..4a79893 100644
--- a/out/MSR_XIX_2016_Ozkan.xml
+++ b/out/MSR_XIX_2016_Ozkan.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ Hakan Özkan
©2016 by Hakan Özkan. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
Why Stress Does Matter: New Material on Metrics in Zajal Poetry
- mamluk
- Hakan Özkan
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_Pradines.xml b/out/MSR_XIX_2016_Pradines.xml
index 4ea9d38..be62a80 100644
--- a/out/MSR_XIX_2016_Pradines.xml
+++ b/out/MSR_XIX_2016_Pradines.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ Stéphane Pradines
©2016 by Stéphane Pradines. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
The Mamluk Fortifications of Egypt
- mamluk
- Stéphane Pradines
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XIX_2016_Sopracasa.xml b/out/MSR_XIX_2016_Sopracasa.xml
index d501371..f1222b5 100644
--- a/out/MSR_XIX_2016_Sopracasa.xml
+++ b/out/MSR_XIX_2016_Sopracasa.xml
@@ -1,11 +1,12 @@
- XIX, 2016
- University of Chicago
+ Alessio Sopracasa
©2016 by Alessio Sopracasa. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
+ mamluk
+ XIX, 2016
Venetian Merchants and Alexandrian Officials (End of the Fifteenth–Beginning of the Sixteenth Century)
- mamluk
- Alessio Sopracasa
+ XIX, 2016
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
diff --git a/out/MSR_XVIII_2014-15_Antrim.xml b/out/MSR_XVIII_2014-15_Antrim.xml
index a58e69e..8b569e4 100644
--- a/out/MSR_XVIII_2014-15_Antrim.xml
+++ b/out/MSR_XVIII_2014-15_Antrim.xml
@@ -1,18 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Zayde Antrim
©2015 by Zayde Antrim. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- history
+ mamluk
+ XVIII, 2014-2015
The Politics of Place in the Works of Ibn Taymīyah and Ibn Faḍl Allāh al-ʿUmarī
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Zayde Antrim
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Banister.xml b/out/MSR_XVIII_2014-15_Banister.xml
index ba7a71f..ac3e41b 100644
--- a/out/MSR_XVIII_2014-15_Banister.xml
+++ b/out/MSR_XVIII_2014-15_Banister.xml
@@ -1,21 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Mustafa Banister
©2015 by Mustafa Banister. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- religion
+ mamluk
+ XVIII, 2014-2015
“Naught Remains to the Caliph but his Title”: Revisiting Abbasid Authority in Mamluk Cairo
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Abbasid
- Cairo
- religion
- Mustafa Banister
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_BookReviews.xml b/out/MSR_XVIII_2014-15_BookReviews.xml
index 2038729..4bb638c 100644
--- a/out/MSR_XVIII_2014-15_BookReviews.xml
+++ b/out/MSR_XVIII_2014-15_BookReviews.xml
@@ -1,18 +1,6 @@
- XVIII, 2014-2015
- University of Chicago
Reviews ©2015 by their authors: Rodrigo Adem, Malika Dekkiche, Anne-Marie Eddé, Mathieu Eychenne, Yehoshua Frenkel, Th. Emil Homerin, Elias Muhanna, and Adam Talib. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- history
- Book Reviews
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
Rodrigo Adem
Malika Dekkiche
Anne-Marie Eddé
@@ -21,5 +9,10 @@
Th. Emil Homerin
Elias Muhanna
Adam Talib
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ mamluk
+ Book Reviews
+ XVIII, 2014-2015
diff --git a/out/MSR_XVIII_2014-15_Dekkiche.xml b/out/MSR_XVIII_2014-15_Dekkiche.xml
index c2bf3e8..f1d94ec 100644
--- a/out/MSR_XVIII_2014-15_Dekkiche.xml
+++ b/out/MSR_XVIII_2014-15_Dekkiche.xml
@@ -1,20 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Malika Dekkiche
©2015 by Malika Dekkiche. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- religion
+ mamluk
+ XVIII, 2014-2015
New Source, New Debate: Re-evaluation of the Mamluk-Timurid Struggle for Religious Supremacy in the Hijaz (Paris, BnF MS ar. 4440)
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Timurids
- religion
- Malika Dekkiche
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Editorial.xml b/out/MSR_XVIII_2014-15_Editorial.xml
index e50e0be..a705ca3 100644
--- a/out/MSR_XVIII_2014-15_Editorial.xml
+++ b/out/MSR_XVIII_2014-15_Editorial.xml
@@ -1,18 +1,14 @@
- none
- University of Chicago
+ Marlis J. Saleh
©2015. This work is made available under a Creative Commons Attribution 4.0 International
license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.
edu/msr.html for more information.
- 2014-15
- creative commons
- Editorial: Open Access and Copyright
- mamluk
- Middle East
- history
- open access
- creative commons
- Marlis J. Saleh
+ mamluk
+ none
+ New Source, New Debate: Re-evaluation of the Mamluk-Timurid Struggle for Religious Supremacy in the Hijaz (Paris, BnF MS ar. 4440)
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015.
diff --git a/out/MSR_XVIII_2014-15_Jaques.xml b/out/MSR_XVIII_2014-15_Jaques.xml
index 7705207..065426f 100644
--- a/out/MSR_XVIII_2014-15_Jaques.xml
+++ b/out/MSR_XVIII_2014-15_Jaques.xml
@@ -1,21 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ R. Kevin Jaques
©2015 by R. Kevin Jaques. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- religion
+ mamluk
+ XVIII, 2014-2015
Murder in Damascus: The Consequences of Competition among Medieval Muslim Religious Elites
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Damascus
- crime
- religion
- R. Kevin Jaques
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_KumakuraWakako.xml b/out/MSR_XVIII_2014-15_KumakuraWakako.xml
index 59489c5..79cea5f 100644
--- a/out/MSR_XVIII_2014-15_KumakuraWakako.xml
+++ b/out/MSR_XVIII_2014-15_KumakuraWakako.xml
@@ -1,20 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Kumakura Wakako
©2015 by Kumakura Wakako. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- economics
+ mamluk
+ XVIII, 2014-2015
Who Handed over Mamluk Land Registers to the Ottomans? A Study on the Administrators of Land Records in the Late Mamluk Period
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Ottoman Empire
- economics
- Kumakura Wakako
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Mazor.xml b/out/MSR_XVIII_2014-15_Mazor.xml
index f51193b..cd52a59 100644
--- a/out/MSR_XVIII_2014-15_Mazor.xml
+++ b/out/MSR_XVIII_2014-15_Mazor.xml
@@ -1,18 +1,12 @@
- XVIII 2014-15
- University of Chicago
+ Amir Mazor
©2015 by Amir Mazor. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- history
+ mamluk
+ XVIII 2014-15
The “Manṣūrīyah Legacy”: The Manṣūrī Amirs, Their Mamluks, and Their Descendants during al-Nāṣir Muḥammad’s Third Reign and After
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Amir Mazor
+ XVIII 2014-15
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Milwright.xml b/out/MSR_XVIII_2014-15_Milwright.xml
index 0757e01..7d36bc0 100644
--- a/out/MSR_XVIII_2014-15_Milwright.xml
+++ b/out/MSR_XVIII_2014-15_Milwright.xml
@@ -1,20 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Marcus Milwright
©2015 by Marcus Milwright. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- Saladin
+ mamluk
+ XVIII, 2014-2015
An Ayyubid in Mamluk Guise: The Portrait of Saladin in Paolo Giovio’s Elogia virorum bellica virtute illustrium (1575)
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Ayyubids
- Saladin
- Marcus Milwright
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Nicolle.xml b/out/MSR_XVIII_2014-15_Nicolle.xml
index 18fff7f..3717240 100644
--- a/out/MSR_XVIII_2014-15_Nicolle.xml
+++ b/out/MSR_XVIII_2014-15_Nicolle.xml
@@ -1,20 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ David Nicolle
©2015 by David Nicolle. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- art
+ mamluk
+ XVIII, 2014-2015
The Iconography of a Military Elite: Military Figures on an Early Thirteenth-Century Candlestick
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- military
- art
- David Nicolle
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Troadec.xml b/out/MSR_XVIII_2014-15_Troadec.xml
index 85d2939..43e1110 100644
--- a/out/MSR_XVIII_2014-15_Troadec.xml
+++ b/out/MSR_XVIII_2014-15_Troadec.xml
@@ -1,19 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Anne Troadec
©2015 by Anne Troadec. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- Baybars
+ mamluk
+ XVIII, 2014-2015
Baybars and the Cultural Memory of Bilād al-Shām
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Baybars
- Anne Troadec
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Vesely.xml b/out/MSR_XVIII_2014-15_Vesely.xml
index 4d99479..1bd2f77 100644
--- a/out/MSR_XVIII_2014-15_Vesely.xml
+++ b/out/MSR_XVIII_2014-15_Vesely.xml
@@ -1,18 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Rudolf Veselý
©2015 by Rudolf Veselý. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- history
+ mamluk
+ XVIII, 2014-2015
Intention or Pure Happenstance?
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- Rudolf Veselý
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVIII_2014-15_Zouache.xml b/out/MSR_XVIII_2014-15_Zouache.xml
index 56c6632..dd7ac0f 100644
--- a/out/MSR_XVIII_2014-15_Zouache.xml
+++ b/out/MSR_XVIII_2014-15_Zouache.xml
@@ -1,19 +1,12 @@
- XVIII, 2014-2015
- University of Chicago
+ Abbes Zouache
©2015 by Abbes Zouache. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. http://mamluk.uchicago.edu/msr.html
- 2014-15
- military
+ mamluk
+ XVIII, 2014-2015
Western vs. Eastern Way of War in the Late Medieval Near East: An Unsuitable Paradigm: A Review Essay of David Nicolle’s Late Mamlūk Military Equipment
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
- military
- Abbes Zouache
+ XVIII, 2014-2015
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
diff --git a/out/MSR_XVII_2013_Bauer_pp5-22.xml b/out/MSR_XVII_2013_Bauer_pp5-22.xml
index 3dcceba..80f55c9 100644
--- a/out/MSR_XVII_2013_Bauer_pp5-22.xml
+++ b/out/MSR_XVII_2013_Bauer_pp5-22.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Thomas Bauer
©2013 by Thomas Bauer. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
"Ayna hadha min al-Mutanabbi!" Toward an Aesthetics of Mamluk Literature
- mamluk
- Thomas Bauer
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_BookReviews_pp249-265.xml b/out/MSR_XVII_2013_BookReviews_pp249-265.xml
index 99925f4..2438d0f 100644
--- a/out/MSR_XVII_2013_BookReviews_pp249-265.xml
+++ b/out/MSR_XVII_2013_BookReviews_pp249-265.xml
@@ -1,17 +1,18 @@
- XVII, 2013
- University of Chicago
- ©2013 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2013
- Book Revies
- mamluk
Niall Christie
Caterina Bori
Th. Emil Homerin
Jonathan M. Bloom
Hakan Özkan
+ ©2013 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XVII, 2013
+ Book Revies
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Ghersetti_pp72-99.xml b/out/MSR_XVII_2013_Ghersetti_pp72-99.xml
index 0808f81..06d3e07 100644
--- a/out/MSR_XVII_2013_Ghersetti_pp72-99.xml
+++ b/out/MSR_XVII_2013_Ghersetti_pp72-99.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Antonella Ghersetti
©2013 by Antonella Ghersetti. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
On Mamluk Anthologies Again: The Case of Jamal al-Din al-Watwat and his Ghurar...
- mamluk
- Antonella Ghersetti
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Herzog_pp100-129.xml b/out/MSR_XVII_2013_Herzog_pp100-129.xml
index 2e66b06..de3e49d 100644
--- a/out/MSR_XVII_2013_Herzog_pp100-129.xml
+++ b/out/MSR_XVII_2013_Herzog_pp100-129.xml
@@ -1,13 +1,14 @@
- XVIII, 2013
- University of Chicago
+ Thomas Herzog
©2013 by Thomas Herzog. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVIII, 2013
Composition and Worldview of some Bourgeois and Petit-Bourgeois Mamluk Adab-Encyclopedias
- mamluk
- Thomas Herzog
+ XVIII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Holtzman_pp155-198.xml b/out/MSR_XVII_2013_Holtzman_pp155-198.xml
index 574a7f5..750b33e 100644
--- a/out/MSR_XVII_2013_Holtzman_pp155-198.xml
+++ b/out/MSR_XVII_2013_Holtzman_pp155-198.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Livnat Holtzman
©2013 by Livnat Holtzman. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
Insult, Fury, and Frustration: The Martyrological Narrative of Ibn Qayyim al-Jawziyah's Al-Kafiyah al-Shafiyah
- mamluk
- Livnat Holtzman
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Homerin_pp130-154.xml b/out/MSR_XVII_2013_Homerin_pp130-154.xml
index 2df67e8..844605a 100644
--- a/out/MSR_XVII_2013_Homerin_pp130-154.xml
+++ b/out/MSR_XVII_2013_Homerin_pp130-154.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Th. Emil Homerin
©2013 by Th. Emil Homerin. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
"Recalling You, My Lord": 'A'ishah al-Ba'uniyah on Dhikr
- mamluk
- Th. Emil Homerin
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_McGregor_pp199-211.xml b/out/MSR_XVII_2013_McGregor_pp199-211.xml
index fc37c41..668e9b6 100644
--- a/out/MSR_XVII_2013_McGregor_pp199-211.xml
+++ b/out/MSR_XVII_2013_McGregor_pp199-211.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Richard McGregor
©2013 by Richard McGregor. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
Notes on the Literature of Sufi Prayer Commentaries
- mamluk
- Richard McGregor
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Musawi_pp43-71.xml b/out/MSR_XVII_2013_Musawi_pp43-71.xml
index ec26fee..a4c3b52 100644
--- a/out/MSR_XVII_2013_Musawi_pp43-71.xml
+++ b/out/MSR_XVII_2013_Musawi_pp43-71.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Muhsin J. al-Musawi
©2013 by Muhsin J. al-Musawi. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
The Medieval Islamic Literary World-System: The Lexographic Turn
- mamluk
- Muhsin J. al-Musawi
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Ozkan_pp212-248.xml b/out/MSR_XVII_2013_Ozkan_pp212-248.xml
index 56b4146..02c1023 100644
--- a/out/MSR_XVII_2013_Ozkan_pp212-248.xml
+++ b/out/MSR_XVII_2013_Ozkan_pp212-248.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Hakan Ozkan
©2013 by Hakan Ozkan. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
The Drug Zajals in Ibrahim al-Mi'mar's Diwan
- mamluk
- Hakan Ozkan
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_Talib_pp23-42.xml b/out/MSR_XVII_2013_Talib_pp23-42.xml
index 3ae51ba..963cdff 100644
--- a/out/MSR_XVII_2013_Talib_pp23-42.xml
+++ b/out/MSR_XVII_2013_Talib_pp23-42.xml
@@ -1,13 +1,14 @@
- XVII, 2013
- University of Chicago
+ Adam Talib
©2013 by Adam Talib. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
+ mamluk
+ XVII, 2013
Woven Together as Though Randomly Strung: Variations in Naevi Poetry
- mamluk
- Adam Talib
+ XVII, 2013
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVII_2013_al-Rahim_pp1-4.xml b/out/MSR_XVII_2013_al-Rahim_pp1-4.xml
index 75a2e59..dee3269 100644
--- a/out/MSR_XVII_2013_al-Rahim_pp1-4.xml
+++ b/out/MSR_XVII_2013_al-Rahim_pp1-4.xml
@@ -1,13 +1,14 @@
- none
- University of Chicago
+ Ahmed H. al-Rahim
©2013 by Ahmed H. al-Rahim. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
- In Memoriam: David C. Reisman June 21, 1969-January 2, 2011
- mamluk
- Ahmed H. al-Rahim
+ mamluk
+ none
+ Western vs. Eastern Way of War in the Late Medieval Near East: An Unsuitable Paradigm: A Review Essay of David Nicolle’s Late Mamlūk Military Equipment
+ none
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
diff --git a/out/MSR_XVI_2012_BookReviews.xml b/out/MSR_XVI_2012_BookReviews.xml
index 6535988..00a45be 100644
--- a/out/MSR_XVI_2012_BookReviews.xml
+++ b/out/MSR_XVI_2012_BookReviews.xml
@@ -1,12 +1,5 @@
- XVI 2012
- University of Chicago
- ©2012 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2012
- Book Reviews
- mamluk
Olivia Remie Constable
Adam Talib
Th. Emil Homerin
@@ -14,5 +7,13 @@
Li Guo
J. M. Rogers
Richard McGregor
+ ©2012 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XVI 2012
+ Book Reviews
+ XVI 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Frenkel_pp163-164.xml b/out/MSR_XVI_2012_Frenkel_pp163-164.xml
index 6320b9c..4b7c0e5 100644
--- a/out/MSR_XVI_2012_Frenkel_pp163-164.xml
+++ b/out/MSR_XVI_2012_Frenkel_pp163-164.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Yehoshua Frenkel
©2012 by Yehoshua Frenkel. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
An Arabic History of the Byzantine Empire
- mamluk
- Yehoshua Frenkel
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Holtzman_pp1-54.xml b/out/MSR_XVI_2012_Holtzman_pp1-54.xml
index bcfe72f..19c93b0 100644
--- a/out/MSR_XVI_2012_Holtzman_pp1-54.xml
+++ b/out/MSR_XVI_2012_Holtzman_pp1-54.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Livnat Holtzman
©2012 by Livnat Holtzman. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
The Dhimmi's Question on Predetermination and the Ulama's Six Responses
- mamluk
- Livnat Holtzman
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Ibrahim_pp123-142.xml b/out/MSR_XVI_2012_Ibrahim_pp123-142.xml
index f3e8927..b5bba28 100644
--- a/out/MSR_XVI_2012_Ibrahim_pp123-142.xml
+++ b/out/MSR_XVI_2012_Ibrahim_pp123-142.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Mahmood Ibrahim
©2012 by Mahmood Ibrahim. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
The 727/1327 Silk Weavers' Rebllion in Alexandria: Religious Xenophobia, Homophobia, or Economic Grievances
- mamluk
- Mahmood Ibrahim
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Rapoport_pp71-102.xml b/out/MSR_XVI_2012_Rapoport_pp71-102.xml
index 402bdfa..625ae59 100644
--- a/out/MSR_XVI_2012_Rapoport_pp71-102.xml
+++ b/out/MSR_XVI_2012_Rapoport_pp71-102.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Yossef Rapoport
©2012 by Yossef Rapoport. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
Royal Justice and Religious Law: Siyasah and Shari'ah under the Mamluks
- mamluk
- Yossef Rapoport
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Smith_pp143-161.xml b/out/MSR_XVI_2012_Smith_pp143-161.xml
index e9f53d1..5ebe3e8 100644
--- a/out/MSR_XVI_2012_Smith_pp143-161.xml
+++ b/out/MSR_XVI_2012_Smith_pp143-161.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Martyn Smith
©2012 by Martyn Smith. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
Finding Meaning in the City: al-Maqrizi's Use of Poetry in the Khitat
- mamluk
- Martyn Smith
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Tramontana_pp103-122.xml b/out/MSR_XVI_2012_Tramontana_pp103-122.xml
index 328ab32..0f0b3e8 100644
--- a/out/MSR_XVI_2012_Tramontana_pp103-122.xml
+++ b/out/MSR_XVI_2012_Tramontana_pp103-122.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Felicita Tramontana
©2012 by Felicita Tramontana. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
Khubz as Iqta' in Four Authors from the Ayyubid and Early Mamluk Periods
- mamluk
- Felicita Tramontana
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XVI_2012_Yosef_pp55-69.xml b/out/MSR_XVI_2012_Yosef_pp55-69.xml
index 95d27cf..2cf7f49 100644
--- a/out/MSR_XVI_2012_Yosef_pp55-69.xml
+++ b/out/MSR_XVI_2012_Yosef_pp55-69.xml
@@ -1,13 +1,14 @@
- XVI, 2012
- University of Chicago
+ Koby Yosef
©2012 by Koby Yosef. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ XVI, 2012
Mamluks and Their Relatives in the Period of the Mamluk Sultanate (1250-1517)
- mamluk
- Koby Yosef
+ XVI, 2012
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MSR_XV_2011_BookReviews.xml b/out/MSR_XV_2011_BookReviews.xml
index 566811b..14ece17 100644
--- a/out/MSR_XV_2011_BookReviews.xml
+++ b/out/MSR_XV_2011_BookReviews.xml
@@ -1,18 +1,19 @@
- XV, 2011
- University of Chicago
- ©2011 by review authors. This work is made available under a Creative Commons Attribution
-4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
-mamluk.uchicago.edu/msr.html for more information.
- 2011
- Book Reviews
- mamluk
Robert Irwin
Paul E. Walker
Yossef Rapoport
Warren C. Schultz
Bernard O'Kane
John Rodenbeck
+ ©2011 by review authors. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ mamluk
+ XV, 2011
+ Book Reviews
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MSR_XV_2011_Broadbridge_pp1-18.xml b/out/MSR_XV_2011_Broadbridge_pp1-18.xml
index 30f5fc6..914f42d 100644
--- a/out/MSR_XV_2011_Broadbridge_pp1-18.xml
+++ b/out/MSR_XV_2011_Broadbridge_pp1-18.xml
@@ -1,13 +1,14 @@
- XV, 2011
- University of Chicago
+ Anne F. Broadbridge
©2011 by Anne F. Broadbridge. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ XV, 2011
Sending Home for Mom and Dad: The Extended Family Impulse in Mamluk Politics
- mamluk
- Anne F. Broadbridge
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MSR_XV_2011_Levanoni_pp37-65.xml b/out/MSR_XV_2011_Levanoni_pp37-65.xml
index b5c853d..8187317 100644
--- a/out/MSR_XV_2011_Levanoni_pp37-65.xml
+++ b/out/MSR_XV_2011_Levanoni_pp37-65.xml
@@ -1,13 +1,14 @@
- XV, 2011
- University of Chicago
+ Amalia Levanoni
©2011 by Amalia Levanoni. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ XV, 2011
The Halqah in the Mamluk Army
- mamluk
- Amalia Levanoni
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MSR_XV_2011_Perho_pp19-35.xml b/out/MSR_XV_2011_Perho_pp19-35.xml
index 3195e3e..d9dde0c 100644
--- a/out/MSR_XV_2011_Perho_pp19-35.xml
+++ b/out/MSR_XV_2011_Perho_pp19-35.xml
@@ -1,13 +1,14 @@
- XV, 2011
- University of Chicago
+ Irmeli Perho
©2011 by Irmeli Perho. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ XV, 2011
Climbing the Ladder: Social Mobility in the Mamluk Period
- mamluk
- Irmeli Perho
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MSR_XV_2011_Petry_pp87-115.xml b/out/MSR_XV_2011_Petry_pp87-115.xml
index 7b486e9..354de3f 100644
--- a/out/MSR_XV_2011_Petry_pp87-115.xml
+++ b/out/MSR_XV_2011_Petry_pp87-115.xml
@@ -1,13 +1,14 @@
- XV, 2011
- University of Chicago
+ Carl F. Petry
©2011 by Carl F. Petry. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ XV, 2011
The Politics of Insult
- mamluk
- Carl F. Petry
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MSR_XV_2011_Tezcan_pp67-86.xml b/out/MSR_XV_2011_Tezcan_pp67-86.xml
index fd2f912..a2cf979 100644
--- a/out/MSR_XV_2011_Tezcan_pp67-86.xml
+++ b/out/MSR_XV_2011_Tezcan_pp67-86.xml
@@ -1,13 +1,14 @@
- XV, 2011
- University of Chicago
+ Baki Tezcan
©2011 by Baki Tezcan. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ XV, 2011
Hanafism and the Turks in al-Tarasusi's Gift for the Turks (1352)
- mamluk
- Baki Tezcan
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml b/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml
index fbbaf8d..7c8a965 100644
--- a/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml
+++ b/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml
@@ -1,13 +1,14 @@
- XV, 2011
- University of Chicago
+ Jo Van Steenbergen
©2011 by Jo Van Steenbergen. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ XV, 2011
Yalbugha al-Khassaki and the Yalbughawiyah
- mamluk
- Jo Van Steenbergen
+ XV, 2011
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/MamlukStudiesReview_III_1999.xml b/out/MamlukStudiesReview_III_1999.xml
index a60ad2a..d8bcc17 100644
--- a/out/MamlukStudiesReview_III_1999.xml
+++ b/out/MamlukStudiesReview_III_1999.xml
@@ -1,14 +1,11 @@
- University of Chicago
Copyright © 1999, 2012 Middle East Documentation Center, The University of Chicago. Some rights reserved. Content in Mamluk
Studies Review may be downloaded, reproduced, and distributed for non-commercial personal and scholarly use, provided that
Mamluk Studies Review is always properly cited as the original source, and that the work is not altered or transformed in any
way. Please contact the editor regarding uses which may fall outside of this description.
- 1999
- III 1999
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
-
+ University of Chicago
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_II_1998_18MB.xml b/out/MamlukStudiesReview_II_1998_18MB.xml
index 3b9487a..49a8618 100644
--- a/out/MamlukStudiesReview_II_1998_18MB.xml
+++ b/out/MamlukStudiesReview_II_1998_18MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©1998 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1998
- II 1998
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1998
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_IV_2000_29MB.xml b/out/MamlukStudiesReview_IV_2000_29MB.xml
index dc2e10c..5ea5816 100644
--- a/out/MamlukStudiesReview_IV_2000_29MB.xml
+++ b/out/MamlukStudiesReview_IV_2000_29MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2000 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2000
- IV 2000
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2000
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_IX-1_2005_33MB.xml b/out/MamlukStudiesReview_IX-1_2005_33MB.xml
index f3f002d..f251097 100644
--- a/out/MamlukStudiesReview_IX-1_2005_33MB.xml
+++ b/out/MamlukStudiesReview_IX-1_2005_33MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2005 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
- IX, No. 1 2005
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_IX-2_2005.xml b/out/MamlukStudiesReview_IX-2_2005.xml
index d70baa9..f251097 100644
--- a/out/MamlukStudiesReview_IX-2_2005.xml
+++ b/out/MamlukStudiesReview_IX-2_2005.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2005 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2005
- IX, No. 2 2005
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2005
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_I_1997.xml b/out/MamlukStudiesReview_I_1997.xml
index 1972ad7..094336e 100644
--- a/out/MamlukStudiesReview_I_1997.xml
+++ b/out/MamlukStudiesReview_I_1997.xml
@@ -1,13 +1,12 @@
- University of Chicago
©1997 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 1997
- 1 1997
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 1997
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_VII-1_2003.xml b/out/MamlukStudiesReview_VII-1_2003.xml
index becf92f..7aa02b5 100644
--- a/out/MamlukStudiesReview_VII-1_2003.xml
+++ b/out/MamlukStudiesReview_VII-1_2003.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2003 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
- VII, No. 1 2003
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_VII-2_2003_13MB.xml b/out/MamlukStudiesReview_VII-2_2003_13MB.xml
index 258ec66..7aa02b5 100644
--- a/out/MamlukStudiesReview_VII-2_2003_13MB.xml
+++ b/out/MamlukStudiesReview_VII-2_2003_13MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2003 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2003
- VII, No. 2 2003
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2003
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_VIII-1_2004_33MB.xml b/out/MamlukStudiesReview_VIII-1_2004_33MB.xml
index 8a464d0..e5e9f23 100644
--- a/out/MamlukStudiesReview_VIII-1_2004_33MB.xml
+++ b/out/MamlukStudiesReview_VIII-1_2004_33MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2004 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- VIII, No. 1 2004
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_VIII-2_2004_26MB.xml b/out/MamlukStudiesReview_VIII-2_2004_26MB.xml
index 253124e..e5e9f23 100644
--- a/out/MamlukStudiesReview_VIII-2_2004_26MB.xml
+++ b/out/MamlukStudiesReview_VIII-2_2004_26MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2004 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2004
- VIII, No. 2 2004
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2004
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_VI_2002_17MB.xml b/out/MamlukStudiesReview_VI_2002_17MB.xml
index 89e48b7..898abbd 100644
--- a/out/MamlukStudiesReview_VI_2002_17MB.xml
+++ b/out/MamlukStudiesReview_VI_2002_17MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2002 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2002
- VI 2002
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2002
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_V_2001.xml b/out/MamlukStudiesReview_V_2001.xml
index 5c2c9d3..8a1d5a0 100644
--- a/out/MamlukStudiesReview_V_2001.xml
+++ b/out/MamlukStudiesReview_V_2001.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2001 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2001
- V 2001
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2001
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_X-1_2006.xml b/out/MamlukStudiesReview_X-1_2006.xml
index a93935d..24693bc 100644
--- a/out/MamlukStudiesReview_X-1_2006.xml
+++ b/out/MamlukStudiesReview_X-1_2006.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2006 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- X No. 1 2006
- Mamluk Studies Review,
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
+ mamluk
+ Mamluk Studies Review,
diff --git a/out/MamlukStudiesReview_X-2_2006_14MB.xml b/out/MamlukStudiesReview_X-2_2006_14MB.xml
index 41e106b..c79c2c7 100644
--- a/out/MamlukStudiesReview_X-2_2006_14MB.xml
+++ b/out/MamlukStudiesReview_X-2_2006_14MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2006 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2006
- X, No. 2 2006
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2006
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XI-1_2007.xml b/out/MamlukStudiesReview_XI-1_2007.xml
index 43eae89..c9ff570 100644
--- a/out/MamlukStudiesReview_XI-1_2007.xml
+++ b/out/MamlukStudiesReview_XI-1_2007.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2007 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
- XI, no. 1 2007
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XI-2_2007_12MB.xml b/out/MamlukStudiesReview_XI-2_2007_12MB.xml
index d741902..c9ff570 100644
--- a/out/MamlukStudiesReview_XI-2_2007_12MB.xml
+++ b/out/MamlukStudiesReview_XI-2_2007_12MB.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2007 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2007
- XI, no. 2 2007
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2007
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XII-1_2008.xml b/out/MamlukStudiesReview_XII-1_2008.xml
index 951ca98..aa944c0 100644
--- a/out/MamlukStudiesReview_XII-1_2008.xml
+++ b/out/MamlukStudiesReview_XII-1_2008.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2008 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
- XII, no. 1 2008
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XII-2_2008.xml b/out/MamlukStudiesReview_XII-2_2008.xml
index 2cf6b0a..aa944c0 100644
--- a/out/MamlukStudiesReview_XII-2_2008.xml
+++ b/out/MamlukStudiesReview_XII-2_2008.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2008 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2008
- XII, no. 2 2008
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2008
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XIII-1_2009.xml b/out/MamlukStudiesReview_XIII-1_2009.xml
index 10546ac..b22b359 100644
--- a/out/MamlukStudiesReview_XIII-1_2009.xml
+++ b/out/MamlukStudiesReview_XIII-1_2009.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2009 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- XIII, no. 1 2009
- Mamluk Studies Review,
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
+ mamluk
+ Mamluk Studies Review,
diff --git a/out/MamlukStudiesReview_XIII-2_2009.xml b/out/MamlukStudiesReview_XIII-2_2009.xml
index 190288a..e8706de 100644
--- a/out/MamlukStudiesReview_XIII-2_2009.xml
+++ b/out/MamlukStudiesReview_XIII-2_2009.xml
@@ -1,20 +1,12 @@
- University of Chicago
©2009 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2009
- XIII, no. 2 2009
- history
- Mamluk Studies Review
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2009
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XIV_2010.xml b/out/MamlukStudiesReview_XIV_2010.xml
index a8f13a3..bc9a790 100644
--- a/out/MamlukStudiesReview_XIV_2010.xml
+++ b/out/MamlukStudiesReview_XIV_2010.xml
@@ -1,20 +1,12 @@
- University of Chicago
©2010 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2010
- XIV 2010
- history
- Mamluk Studies Review,
- mamluk
- mameluke
- Egypt
- Syria
- sultanate
- Middle East
- history
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2010
+ mamluk
+ Mamluk Studies Review,
diff --git a/out/MamlukStudiesReview_XIX_2016.xml b/out/MamlukStudiesReview_XIX_2016.xml
index a1d6b69..645e64a 100644
--- a/out/MamlukStudiesReview_XIX_2016.xml
+++ b/out/MamlukStudiesReview_XIX_2016.xml
@@ -1,11 +1,10 @@
- University of Chicago
©2016 by individual authors. This work is made available under a Creative Commons Attribution 4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://mamluk.uchicago.edu/msr.html for more information.
- 2016
- XIX 2016
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2016
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XVIII_2014-15.xml b/out/MamlukStudiesReview_XVIII_2014-15.xml
index d38b23e..9ec778c 100644
--- a/out/MamlukStudiesReview_XVIII_2014-15.xml
+++ b/out/MamlukStudiesReview_XVIII_2014-15.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2015 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2014
- XVIII 2014-15
- Mamluk Studies Review
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2015
+ mamluk
+ Mamluk Studies Review
diff --git a/out/MamlukStudiesReview_XVII_2013.xml b/out/MamlukStudiesReview_XVII_2013.xml
index fd6ffda..93ec27d 100644
--- a/out/MamlukStudiesReview_XVII_2013.xml
+++ b/out/MamlukStudiesReview_XVII_2013.xml
@@ -1,13 +1,12 @@
- University of Chicago
©2013 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2013
- XVII 2013
- Mamluk Studies Review,
- mamluk
The Middle East Documentation Center (MEDOC) at The University of Chicago
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2013
+ mamluk
+ Mamluk Studies Review,
diff --git a/out/MamlukStudiesReview_XVI_2012.xml b/out/MamlukStudiesReview_XVI_2012.xml
index aafd8f2..e007382 100644
--- a/out/MamlukStudiesReview_XVI_2012.xml
+++ b/out/MamlukStudiesReview_XVI_2012.xml
@@ -1,13 +1,14 @@
- University of Chicago
+ The Middle East Documentation Center (MEDOC) at The University of Chicago
©2012 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2012
+ mamluk
+ printed none
none
- Mamluk Studies Review XVI (2012)
- mamluk
- The Middle East Documentation Center (MEDOC) at The University of Chicago
+ Mamluk Studies Review,
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2012
diff --git a/out/MamlukStudiesReview_XV_2011.xml b/out/MamlukStudiesReview_XV_2011.xml
index b083df8..79dab93 100644
--- a/out/MamlukStudiesReview_XV_2011.xml
+++ b/out/MamlukStudiesReview_XV_2011.xml
@@ -1,13 +1,14 @@
- University of Chicago
+ The Middle East Documentation Center (MEDOC) at The University of Chicago
©2011 by individual authors. This work is made available under a Creative Commons Attribution
4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
mamluk.uchicago.edu/msr.html for more information.
- 2011
+ mamluk
+ printed none
none
- Mamluk Studies Review XV (2011)
- mamluk
- The Middle East Documentation Center (MEDOC) at The University of Chicago
+ Mamluk Studies Review,
http://mamluk.uchicago.edu/msr.html
+ University of Chicago
+ 2011
diff --git a/out/University of Chicago b/out/University of Chicago
new file mode 100644
index 0000000..5b7c51d
--- /dev/null
+++ b/out/University of Chicago
@@ -0,0 +1,11 @@
+
+
+ University of Chicago
+ University of Chicago
+ University of Chicago
+ 2011
+ ©2011 by Jo Van Steenbergen. This work is made available under a Creative Commons Attribution
+4.0 International license (CC-BY). Mamlūk Studies Review is an Open Access journal. See http://
+mamluk.uchicago.edu/msr.html for more information.
+ University of Chicago
+