diff --git a/bin/extractor.py b/bin/extractor.py
index bb5396a..b1c5ef5 100644
--- a/bin/extractor.py
+++ b/bin/extractor.py
@@ -6,8 +6,10 @@
import csv
import json
from json.decoder import JSONDecodeError
-from os.path import basename
+from os.path import basename, join
from os import _exit, scandir
+from xml.etree.ElementTree import tostring
+from xml.dom import minidom
from mamlukimport.parser import Parser
from mamlukimport.mapper import Mapper
@@ -35,49 +37,137 @@ def main():
for n in a_generator:
try:
data = json.load(open(n, encoding='utf-8'))[0]
- output = namedtuple("data", "creator title rights keywords subject createdate filename")
- creator = data["Creator"] if not isinstance(data["Creator"], list) else ', '.join(data["Creator"])
- title = data["Title"]
- rights = data["Rights"]
- print(rights.split(' ')[0])
- keywords = data["Keywords"] if not isinstance(data["Keywords"], list) else ', '.join([re.sub(';', '', x) for x in data["Keywords"]])
- subject = data["Subject"] if not isinstance(data["Subject"], list) else ', '.join([re.sub(';', '', x) for x in data["Subject"]])
- createdate = data["CreateDate"]
- filename = data["FileName"]
- volume = filename.split('_')[2]
+ publisher = {1: "University of Chicago"}
+ if not isinstance(data["Creator"], list):
+ creator = {1: data["Creator"]}
+ else:
+ crtr_count = 1
+ creator_dict = {}
+ for n_creator in data["Creator"]:
+ creator_dict[crtr_count] = n_creator
+ crtr_count += 1
+ creator = creator_dict
+ title = {1: data["Title"]}
+ rights = {1: data["Rights"]}
+
+ if not isinstance(data["Keywords"], list):
+ kw_count = 1
+ kw_dict = {}
+ for n_keyw in data["Keywords"].split(';'):
+ n_keyw = n_keyw.lstrip().strip()
+ if n_keyw != "":
+ kw_dict[kw_count] = n_keyw
+ kw_count += 1
+ keywords = kw_dict
+ else:
+ kw_count = 1
+ kw_dict = {}
+ for n_keyw in data["Keywords"][0].split(';'):
+ n_keyw = n_keyw.lstrip().strip()
+ if n_keyw != "":
+ kw_dict[kw_count] = n_keyw
+ kw_count += 1
+ keywords = kw_dict
+
+ if not isinstance(data["Subject"], list):
+ subj_count = 1
+ subj_dict = {}
+ for n_subj in data["Subject"].split(';'):
+ n_subj = n_keyw.lstrip().strip()
+ if n_subj != "":
+ subj_dict[subj_count] = n_subj
+ subj_count += 1
+ subject = subj_dict
+
+ else:
+ subj_count = 1
+ subj_dict = {}
+ for n_subj in data["Subject"][0].split(';'):
+ n_subj = n_keyw.lstrip().strip()
+ if n_subj != "":
+ subj_dict[subj_count] = n_subj
+ subj_count += 1
+ subject = subj_dict
+
+ createdate = {1: data["CreateDate"]}
+ filename = {1: data["FileName"]}
+ volume = filename[1].split('_')[2]
temp = volume.split('-')
- if len(temp) == 2:
- if '.pdf' in temp[1]:
- volume = temp[0]
- else:
- volume = volume
- publisher = "University of Chicago"
+ if len(temp) >= 2:
+ head = [temp[0]]
+ tail = temp[1:]
+ tail = [x for x in tail if re.compile('\d{1,}$').match(x)]
+ copyrightdate = head + tail
+ else:
+ copyrightdate = [re.sub(r'[a-z]', '', re.sub(r'\.', '', x))
+ for x in temp]
+ copyrightdate = {1: '-'.join(copyrightdate)}
+
+ msr_pattern = re.compile('MSR').search(title[1])
+ vol_pattern = re.compile('Vol.').search(title[1])
+ volume_option = re.compile('(\(MSR .*\))').search(title[1])
+ volume_option2 = re.compile('(Vol. .*)').search(title[1])
+ if msr_pattern:
+ volume = title[1][title[1].index('MSR')+3:].lstrip().strip()
+ title = {1: title[1][0:title[1].index('MSR')]}
+ print(title)
+ elif vol_pattern:
+ volume = title[1][title[1].index('Vol.')+4:].lstrip().strip()
+ title = {1: title[1][0:title[1].index('Vol.')]}
+ else:
+ volume = "none"
+ title = {1: title[1].lstrip().strip()}
+
+ first_check = title[1][-1]
+ if first_check == '(':
+ title[1] = title[1][0:-1].strip().lstrip()
+ second_check = title[1][-1]
+ if second_check == ":":
+ title[1] = title[1][0:-1].strip().lstrip()
try:
webstatement = data["WebStatement"]
except KeyError:
webstatement = ""
- output.creator = creator
- output.title = title
- output.rights = rights
- output.keywords = keywords
- output.subject = subject
- output.createdate = createdate
- output.filename = filename
+ webstatement = {1: webstatement}
+ str_filen = filename[1]
+ output = {'creator': creator,
+ 'title': title,
+ 'rights': rights,
+ 'keyword': keywords,
+ 'subject': subject,
+ 'createdate': copyrightdate,
+ 'filename': filename,
+ 'webstatement': webstatement,
+ 'publisher': publisher,
+ }
+ if volume:
+ volume = re.sub(r'\)', '', re.sub(r'\(', '', volume))
+ volume = {1: volume}
+ if 'MamlukStudiesReview' in filename[1]:
+ output["formatof"] = volume
+ else:
+ output["part"] = volume
outputs.append(output)
- row = [filename, creator, title, re.sub(r'\n', ' ', rights), webstatement, subject, keywords, createdate, publisher]
- rows.append(row)
except JSONDecodeError:
pass
- with open(args.output_file, "w", encoding="utf-8") as csv_file:
- csvfieldnames = ["filename", "creator", "title", "rights", "webstatement", "subject", "keywords", "publisher", "createdate"]
- writer = csv.writer(csv_file, quoting=csv.QUOTE_ALL, quotechar="\"")
- writer.writerow(csvfieldnames)
- for n_row in rows:
- total_files += 1
- writer.writerow(n_row)
+ # with open(args.output_file, "w", encoding="utf-8") as csv_file:
+ # csvfieldnames = ["filename", "creator", "title", "rights", "webstatement", "subject", "keywords", "publisher", "createdate"]
+ # writer = csv.writer(csv_file, quoting=csv.QUOTE_ALL, quotechar="\"")
+ # writer.writerow(csvfieldnames)
+ # for n_row in rows:
+ # total_files += 1
+ # writer.writerow(n_row)
for n_record in outputs:
+ filename = n_record["filename"]
+ del n_record["filename"]
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()
+ with open(join('./out', new_filename), "w", encoding="utf-8") as write_file:
+ write_file.write(xml_string)
return 0
except KeyboardInterrupt:
return 131
diff --git a/mamlukimport/mapper.py b/mamlukimport/mapper.py
index 477434c..640d5ea 100644
--- a/mamlukimport/mapper.py
+++ b/mamlukimport/mapper.py
@@ -1,5 +1,5 @@
-from xml.etree.ElementTree import Element, SubElement
+from xml.etree.ElementTree import Element, ElementTree, SubElement
from sys import stderr
class Mapper(object):
@@ -7,14 +7,15 @@ def __init__(self, input):
self._in = input
self._lookup = {'title': {'element':'title', 'qualifier':'none'},
'createdate': {'element': 'date', 'qualifier':'copyright'},
- 'creator': {'element':'contributor', 'qualifiier':'author'},
+ 'creator': {'element':'contributor', 'qualifier':'author'},
'rights': {'element': 'rights', 'qualifier': 'statement'},
'webstatement': {'element': 'rights', 'qualifier': 'url'},
'subject': {'element': 'subject', 'qualifier': 'none'},
'keyword': {'element': 'subject', 'qualifier': 'keyword'},
'source': {'element': 'source', 'qualifier': 'none'},
- 'isPartOf': {'element': 'relation', 'qualifier' :'isPartOf'},
- 'isFormatOf': {'element': 'relation', 'qualifier': 'isPartOf'},
+ 'part': {'element': 'relation', 'qualifier' :'isPartOf'},
+ 'formatof': {'element': 'relation', 'qualifier' :'isFormatOf'},
+ 'publisher': {'element': 'publisher', 'qualifier': 'none'},
}
self.out = self._transform()
@@ -23,13 +24,19 @@ def _transform(self):
for n_key in self._in:
try:
instructions = self._lookup.get(n_key)
- new_element = SubElement(root, "dc_value")
- new_element.set("element", instructions["element"])
- new_element.set("qualifier", instructions["qualifier"])
- new_element.text = self._in[n_key]
except KeyError:
- stderr.write("{} is an invalid field for this mapping.".format(n_key))
- self.out = root
+ instructions = None
+ stderr.write("{} is an invalid field for this mapping.\n".format(n_key))
+ if instructions:
+ for n_value in self._in[n_key]:
+ new_element = SubElement(root, "dc_value")
+ new_element.set("element", instructions["element"])
+ new_element.set("qualifier", instructions["qualifier"])
+ if isinstance(self._in[n_key], str):
+ new_element.text = self._in[n_key]
+ else:
+ new_element.text = str(self._in[n_key][n_value])
+ return root
def get_output(self):
return self.out
\ No newline at end of file
diff --git a/out/MSR_III_1999-Amitai.xml b/out/MSR_III_1999-Amitai.xml
new file mode 100644
index 0000000..f60d6b6
--- /dev/null
+++ b/out/MSR_III_1999-Amitai.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ David Ayalon, 1914-1998
+ mamluk
+ Reuven Amitai
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Behrens-Abouseif.xml b/out/MSR_III_1999-Behrens-Abouseif.xml
new file mode 100644
index 0000000..e949974
--- /dev/null
+++ b/out/MSR_III_1999-Behrens-Abouseif.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ Qaytbay's Madrasahs in the Holy Cities and the Evolution of Haram Architecture
+ mamluk
+ Doris Behrens-Abouseif
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Bloom.xml b/out/MSR_III_1999-Bloom.xml
new file mode 100644
index 0000000..e2ebe36
--- /dev/null
+++ b/out/MSR_III_1999-Bloom.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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 Art and Architectural History: A Review Article
+ mamluk
+ Jonathan M. Bloom
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-BookReviews.xml b/out/MSR_III_1999-BookReviews.xml
new file mode 100644
index 0000000..ce11689
--- /dev/null
+++ b/out/MSR_III_1999-BookReviews.xml
@@ -0,0 +1,23 @@
+
+
+ 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
+ Thomas Bauer
+ Reuven Amitai
+ Frédéric Bauden
+ Donald P. Little
+ Nuha N. N. Khoury
+ Th. Emil Homerin
+ Stefan H. Winter
+ Marlis Saleh
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Broadbridge.xml b/out/MSR_III_1999-Broadbridge.xml
new file mode 100644
index 0000000..96e6d02
--- /dev/null
+++ b/out/MSR_III_1999-Broadbridge.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ Academic Rivalry and the Patronage System in Fifteenth-Century Egypt
+ mamluk
+ Anne F. Broadbridge
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Homerin.xml b/out/MSR_III_1999-Homerin.xml
new file mode 100644
index 0000000..7b327f7
--- /dev/null
+++ b/out/MSR_III_1999-Homerin.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ Saving Muslim Souls: The Kanqah and the Sufi Duty in Mamluk Lands
+ mamluk
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Petry.xml b/out/MSR_III_1999-Petry.xml
new file mode 100644
index 0000000..a594177
--- /dev/null
+++ b/out/MSR_III_1999-Petry.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ "Quis Custodiet Custodes?" Revisited: The Prosecution of Crime in the Late Mamluk Sultanate
+ mamluk
+ Carl F. Petry
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Schultz.xml b/out/MSR_III_1999-Schultz.xml
new file mode 100644
index 0000000..36e8a00
--- /dev/null
+++ b/out/MSR_III_1999-Schultz.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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 Monetary History: A Review Essay
+ mamluk
+ Warren C. Schultz
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Tucker.xml b/out/MSR_III_1999-Tucker.xml
new file mode 100644
index 0000000..f362931
--- /dev/null
+++ b/out/MSR_III_1999-Tucker.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ Environmental Hazards, Natural Disasters, Economic Loss, and Mortality in Mamluk Syria
+ mamluk
+ William Tucker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_III_1999-Winter.xml b/out/MSR_III_1999-Winter.xml
new file mode 100644
index 0000000..a5ed2fe
--- /dev/null
+++ b/out/MSR_III_1999-Winter.xml
@@ -0,0 +1,13 @@
+
+
+ III, 1999
+ University of Chicago
+ ©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
+ Shams al-Din Muhammad ibn Makki "al-Shahid al-Awwal" and the Shi'ah of Syria
+ mamluk
+ Stefan H. Winter
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-Behrens-Abouseif.xml b/out/MSR_II_1998-Behrens-Abouseif.xml
new file mode 100644
index 0000000..0dba734
--- /dev/null
+++ b/out/MSR_II_1998-Behrens-Abouseif.xml
@@ -0,0 +1,13 @@
+
+
+ II, 1998
+ University of Chicago
+ ©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
+ Qaytbay's Foundation in Medina, the Madrasah, the Ribat and the Dashishah
+ mamluk
+ Doris Behrens-Abouseif
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-BookReviews.xml b/out/MSR_II_1998-BookReviews.xml
new file mode 100644
index 0000000..e8ef5be
--- /dev/null
+++ b/out/MSR_II_1998-BookReviews.xml
@@ -0,0 +1,23 @@
+
+
+ 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
+ Franz Rosenthal
+ Michael Winter
+ Leonor Fernandes
+ Doris Behrens-Abouseif
+ Li Guo
+ Jonathan P. Berkey
+ Paul E. Walker
+ Stephan Conermann
+ Michael Chamberlain
+ R. Sthephen Humphreys
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-Humphreys.xml b/out/MSR_II_1998-Humphreys.xml
new file mode 100644
index 0000000..964c291
--- /dev/null
+++ b/out/MSR_II_1998-Humphreys.xml
@@ -0,0 +1,13 @@
+
+
+ II, 1998
+ University of Chicago
+ ©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
+ Ayyubids, Mamluks, and the Latin East in the Thirteenth Century
+ mamluk
+ R. Stephen Humphreys
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-Little.xml b/out/MSR_II_1998-Little.xml
new file mode 100644
index 0000000..4eecd07
--- /dev/null
+++ b/out/MSR_II_1998-Little.xml
@@ -0,0 +1,13 @@
+
+
+ II, 1998
+ University of Chicago
+ ©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
+ Documents Related to the Estates of a Merchant and His Wife in Late 14th Century Jerusalem
+ mamluk
+ Donald P. Little
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-Petry.xml b/out/MSR_II_1998-Petry.xml
new file mode 100644
index 0000000..837deb9
--- /dev/null
+++ b/out/MSR_II_1998-Petry.xml
@@ -0,0 +1,13 @@
+
+
+ II, 1998
+ University of Chicago
+ ©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
+ A Geniza for Mamluk Studies? Charitable Trust (Waqf) Documents as a Source
+ mamluk
+ Carl F. Petry
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-Reisman.xml b/out/MSR_II_1998-Reisman.xml
new file mode 100644
index 0000000..bd4b6c8
--- /dev/null
+++ b/out/MSR_II_1998-Reisman.xml
@@ -0,0 +1,13 @@
+
+
+ II, 1998
+ University of Chicago
+ ©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
+ A Holograph MS of Ibn Qadi Shuhbah's "Dhayl"
+ mamluk
+ David C. Reisman
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_II_1998-Tsugitaka.xml b/out/MSR_II_1998-Tsugitaka.xml
new file mode 100644
index 0000000..60bcaac
--- /dev/null
+++ b/out/MSR_II_1998-Tsugitaka.xml
@@ -0,0 +1,13 @@
+
+
+ II, 1998
+ University of Chicago
+ ©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
+ The Proposers and Supervisors of al-Rawk al-Nasiri in Mamluk Egypt
+ mamluk
+ Sato Tsugitaka
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Berkey.xml b/out/MSR_IV_2000-Berkey.xml
new file mode 100644
index 0000000..3a26fe0
--- /dev/null
+++ b/out/MSR_IV_2000-Berkey.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Storytelling, Preaching and Power in Mamluk Cairo
+ mamluk
+ Jonathan P. Berkey
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-BookReviews.xml b/out/MSR_IV_2000-BookReviews.xml
new file mode 100644
index 0000000..cd2fe2c
--- /dev/null
+++ b/out/MSR_IV_2000-BookReviews.xml
@@ -0,0 +1,21 @@
+
+
+ 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
+ Bernard O'Kane
+ Stephan Conermann
+ Nabil Al-Tikriti
+ Bernadette Martel-Thoumian
+ Thomas Bauer
+ Paul E. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Borsch.xml b/out/MSR_IV_2000-Borsch.xml
new file mode 100644
index 0000000..398af5b
--- /dev/null
+++ b/out/MSR_IV_2000-Borsch.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Nile Floods and the Irrigation System in Fifteenth-Century Egypt
+ mamluk
+ Stuart J. Borsch
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Conermann.xml b/out/MSR_IV_2000-Conermann.xml
new file mode 100644
index 0000000..81a1c1b
--- /dev/null
+++ b/out/MSR_IV_2000-Conermann.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Ulrich Haarmann, 1942-1999
+ mamluk
+ Stephan Conermann
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Hallenberg.xml b/out/MSR_IV_2000-Hallenberg.xml
new file mode 100644
index 0000000..ba62a5c
--- /dev/null
+++ b/out/MSR_IV_2000-Hallenberg.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ The Sultan Who Loved Sufis: How Qaytbay Endowed a Shrine Complex in Dasuq
+ mamluk
+ Helena Hallenberg
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Irwin.xml b/out/MSR_IV_2000-Irwin.xml
new file mode 100644
index 0000000..ca2e657
--- /dev/null
+++ b/out/MSR_IV_2000-Irwin.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Under Western Eyes: A History of Mamluk Studies
+ mamluk
+ Robert Irwin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Puin.xml b/out/MSR_IV_2000-Puin.xml
new file mode 100644
index 0000000..86e5e79
--- /dev/null
+++ b/out/MSR_IV_2000-Puin.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Silver Coins of the Mamluk Sultan Qalawun from the Mints of Cairo, Damascus, Hamah and al-Marqab
+ mamluk
+ Elisabeth Puin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-Walker_18MB.xml b/out/MSR_IV_2000-Walker_18MB.xml
new file mode 100644
index 0000000..682444e
--- /dev/null
+++ b/out/MSR_IV_2000-Walker_18MB.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Rethinking Mamluk Textiles
+ mamluk
+ Bethany J. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IV_2000-alHarithy.xml b/out/MSR_IV_2000-alHarithy.xml
new file mode 100644
index 0000000..1b1b4f7
--- /dev/null
+++ b/out/MSR_IV_2000-alHarithy.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ The Patronage of al-Nasir Muhammad ibn Qalawun, 1310-1341
+ mamluk
+ Howayda al-Harithy
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Amitai_13MB.xml b/out/MSR_IX-1_2005-Amitai_13MB.xml
new file mode 100644
index 0000000..2ab6311
--- /dev/null
+++ b/out/MSR_IX-1_2005-Amitai_13MB.xml
@@ -0,0 +1,13 @@
+
+
+ IX.1, 2005
+ University of Chicago
+ ©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
+ The Conquest of Arsuf by Baybars: Political and Military Aspects
+ mamluk
+ Reuven Amitai
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Bauden.xml b/out/MSR_IX-1_2005-Bauden.xml
new file mode 100644
index 0000000..01c2a07
--- /dev/null
+++ b/out/MSR_IX-1_2005-Bauden.xml
@@ -0,0 +1,13 @@
+
+
+ IX.1, 2005
+ University of Chicago
+ ©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 Era Documentary Studies: The State of the Art
+ mamluk
+ Frederic Bauden
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-BookReviews.xml b/out/MSR_IX-1_2005-BookReviews.xml
new file mode 100644
index 0000000..ce5a7fb
--- /dev/null
+++ b/out/MSR_IX-1_2005-BookReviews.xml
@@ -0,0 +1,17 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Guo.xml b/out/MSR_IX-1_2005-Guo.xml
new file mode 100644
index 0000000..9ce2f19
--- /dev/null
+++ b/out/MSR_IX-1_2005-Guo.xml
@@ -0,0 +1,13 @@
+
+
+ IX.1, 2005
+ University of Chicago
+ ©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
+ Tales of a Medieval Cairene Harem: Domestic Life in al-Biqa'i's Autobiographical Chronicle
+ mamluk
+ Li Guo
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Humphreys.xml b/out/MSR_IX-1_2005-Humphreys.xml
new file mode 100644
index 0000000..cf1c163
--- /dev/null
+++ b/out/MSR_IX-1_2005-Humphreys.xml
@@ -0,0 +1,13 @@
+
+
+ IX.1, 2005
+ University of Chicago
+ ©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
+ The Politics of the Mamluk Sultanate: A Review Essay
+ mamluk
+ R. Stephen Humphreys
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Levanoni.xml b/out/MSR_IX-1_2005-Levanoni.xml
new file mode 100644
index 0000000..c690f57
--- /dev/null
+++ b/out/MSR_IX-1_2005-Levanoni.xml
@@ -0,0 +1,13 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Lutfi.xml b/out/MSR_IX-1_2005-Lutfi.xml
new file mode 100644
index 0000000..b6dfb81
--- /dev/null
+++ b/out/MSR_IX-1_2005-Lutfi.xml
@@ -0,0 +1,13 @@
+
+
+ IX.1, 2005
+ University of Chicago
+ ©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
+ The Construction of Gender Symbolism in Ibn Sirin's and Ibn Shahin's Medieval Arabic Dream Texts
+ mamluk
+ Huda Lutfi
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Massoud.xml b/out/MSR_IX-1_2005-Massoud.xml
new file mode 100644
index 0000000..1677595
--- /dev/null
+++ b/out/MSR_IX-1_2005-Massoud.xml
@@ -0,0 +1,13 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Publications-Donald-Little.xml b/out/MSR_IX-1_2005-Publications-Donald-Little.xml
new file mode 100644
index 0000000..ffd5b04
--- /dev/null
+++ b/out/MSR_IX-1_2005-Publications-Donald-Little.xml
@@ -0,0 +1,13 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml b/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml
new file mode 100644
index 0000000..3cf5861
--- /dev/null
+++ b/out/MSR_IX-1_2005-Raphael-Tepper_17MB.xml
@@ -0,0 +1,14 @@
+
+
+ IX.1, 2005
+ University of Chicago
+ ©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
+ The Archaeological Evidence from the Mamluk Siege of Arsuf
+ mamluk
+ Kate Raphael
+ Yotam Tepper
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Bauer.xml b/out/MSR_IX-2_2005-Bauer.xml
new file mode 100644
index 0000000..7b58a1b
--- /dev/null
+++ b/out/MSR_IX-2_2005-Bauer.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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 Literature: Misunderstandings and New Approaches
+ mamluk
+ Thomas Bauer
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Behrens-Abouseif.xml b/out/MSR_IX-2_2005-Behrens-Abouseif.xml
new file mode 100644
index 0000000..62b4626
--- /dev/null
+++ b/out/MSR_IX-2_2005-Behrens-Abouseif.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ Veneto-Saracenic Metalware, a Mamluk Art
+ mamluk
+ Doris Behrens-Abouseif
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Berkey.xml b/out/MSR_IX-2_2005-Berkey.xml
new file mode 100644
index 0000000..1783ca6
--- /dev/null
+++ b/out/MSR_IX-2_2005-Berkey.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ Popular Culture under the Mamluks: A Historiographical Survey
+ mamluk
+ Jonathan P. Berkey
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-BookReviews.xml b/out/MSR_IX-2_2005-BookReviews.xml
new file mode 100644
index 0000000..554b333
--- /dev/null
+++ b/out/MSR_IX-2_2005-BookReviews.xml
@@ -0,0 +1,19 @@
+
+
+ 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
+ Niall Christie
+ Bethany J. Walker
+ Stuart Borsch
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Homerin.xml b/out/MSR_IX-2_2005-Homerin.xml
new file mode 100644
index 0000000..ad3e2df
--- /dev/null
+++ b/out/MSR_IX-2_2005-Homerin.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ The Study of Islam within Mamluk Domains
+ mamluk
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Levanoni.xml b/out/MSR_IX-2_2005-Levanoni.xml
new file mode 100644
index 0000000..2c49ac1
--- /dev/null
+++ b/out/MSR_IX-2_2005-Levanoni.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ Food and Cooking during the Mamluk Era: Social and Political Implications
+ mamluk
+ Amalia Levanoni
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Martel-Thoumian.xml b/out/MSR_IX-2_2005-Martel-Thoumian.xml
new file mode 100644
index 0000000..e7cd537
--- /dev/null
+++ b/out/MSR_IX-2_2005-Martel-Thoumian.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ The Sale of Office and Its Economic Consequences during the Rule of the Last Circassians
+ mamluk
+ Bernadette Martel-Thoumian
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Meloy.xml b/out/MSR_IX-2_2005-Meloy.xml
new file mode 100644
index 0000000..ce1492a
--- /dev/null
+++ b/out/MSR_IX-2_2005-Meloy.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ Economic Intervention and the Political Economy of the Mamluk State under al-Ashraf Barsbay
+ mamluk
+ John L. Meloy
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-Pahlitzsch.xml b/out/MSR_IX-2_2005-Pahlitzsch.xml
new file mode 100644
index 0000000..7a1f4b9
--- /dev/null
+++ b/out/MSR_IX-2_2005-Pahlitzsch.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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
+ Mediators Between East and West: Christians Under Mamluk Rule
+ mamluk
+ Johannes Pahlitzsch
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_IX-2_2005-VanSteenbergen.xml b/out/MSR_IX-2_2005-VanSteenbergen.xml
new file mode 100644
index 0000000..5ae1ec2
--- /dev/null
+++ b/out/MSR_IX-2_2005-VanSteenbergen.xml
@@ -0,0 +1,13 @@
+
+
+ IX.2, 2005
+ University of Chicago
+ ©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 Elite on the Eve of al-Nasir Muhammad's Death
+ mamluk
+ Jo Van Steenbergen
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-Behrens-Abouseif.xml b/out/MSR_I_1997-Behrens-Abouseif.xml
new file mode 100644
index 0000000..8ad9ce6
--- /dev/null
+++ b/out/MSR_I_1997-Behrens-Abouseif.xml
@@ -0,0 +1,11 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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
+ The Mahmal Legend and the Pilgrimage of the Ladies of the Mamluk Court
+ mamluk
+ Doris Behrens-Abouseif
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-BookReviews.xml b/out/MSR_I_1997-BookReviews.xml
new file mode 100644
index 0000000..9908735
--- /dev/null
+++ b/out/MSR_I_1997-BookReviews.xml
@@ -0,0 +1,29 @@
+
+
+ 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
+ David C. Reisman
+ John E. Woods
+ Richard T. Mortel
+ Th. Emil Homerin
+ Deborah Derylak
+ Warren C. Schultz
+ Linda S. Northrup
+ John L. Meloy
+ Anne F. Broadbridge
+ Walter E. Kaegi
+ Lutz Wiederhold
+ Gilles Hennequin
+ Donald P. Little
+ Michael Winter
+ W. W. Clifford
+ Jonathan M. Bloom
+
+
diff --git a/out/MSR_I_1997-Clifford.xml b/out/MSR_I_1997-Clifford.xml
new file mode 100644
index 0000000..d134e8a
--- /dev/null
+++ b/out/MSR_I_1997-Clifford.xml
@@ -0,0 +1,13 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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
+ Ubi Sumus? Mamluk History and Social Theory
+ mamluk
+ W. W. Clifford
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-Fernandes.xml b/out/MSR_I_1997-Fernandes.xml
new file mode 100644
index 0000000..4291fe5
--- /dev/null
+++ b/out/MSR_I_1997-Fernandes.xml
@@ -0,0 +1,13 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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 Architecture and the Question of Patronage
+ mamluk
+ Leonor Fernandes
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-Guo.xml b/out/MSR_I_1997-Guo.xml
new file mode 100644
index 0000000..307e93e
--- /dev/null
+++ b/out/MSR_I_1997-Guo.xml
@@ -0,0 +1,13 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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 Historiographic Studies: The State of the Art
+ mamluk
+ Li Guo
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-Homerin.xml b/out/MSR_I_1997-Homerin.xml
new file mode 100644
index 0000000..fe02c6d
--- /dev/null
+++ b/out/MSR_I_1997-Homerin.xml
@@ -0,0 +1,13 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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
+ Reflections on Arabic Poetry in the Mamluk Age
+ mamluk
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-Little.xml b/out/MSR_I_1997-Little.xml
new file mode 100644
index 0000000..2352bcc
--- /dev/null
+++ b/out/MSR_I_1997-Little.xml
@@ -0,0 +1,13 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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
+ The Use of Documents for the Study of Mamluk History
+ mamluk
+ Donald P. Little
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_I_1997-Whitcomb.xml b/out/MSR_I_1997-Whitcomb.xml
new file mode 100644
index 0000000..fbdcd08
--- /dev/null
+++ b/out/MSR_I_1997-Whitcomb.xml
@@ -0,0 +1,13 @@
+
+
+ I, 1997
+ University of Chicago
+ ©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 Archaeological Studies: A Review
+ mamluk
+ Donald Whitcomb
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Bauer_pp49-95.xml b/out/MSR_VII-1_2003-Bauer_pp49-95.xml
new file mode 100644
index 0000000..f0f55d5
--- /dev/null
+++ b/out/MSR_VII-1_2003-Bauer_pp49-95.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Communication and Emotion: The Case of Ibn Nubatah's Kindertotenlieder
+ mamluk
+ Thomas Bauer
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-BookReview_pp237-272.xml b/out/MSR_VII-1_2003-BookReview_pp237-272.xml
new file mode 100644
index 0000000..329139c
--- /dev/null
+++ b/out/MSR_VII-1_2003-BookReview_pp237-272.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 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
+ Middle East Documentation Center
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Buturovic_pp149-176.xml b/out/MSR_VII-1_2003-Buturovic_pp149-176.xml
new file mode 100644
index 0000000..284d999
--- /dev/null
+++ b/out/MSR_VII-1_2003-Buturovic_pp149-176.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ The Shadow Play in Mamluk Egypt: The Genre and Its Cultural Implications
+ mamluk
+ Amila Buturovic
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Guo_pp177-209.xml b/out/MSR_VII-1_2003-Guo_pp177-209.xml
new file mode 100644
index 0000000..ff3778b
--- /dev/null
+++ b/out/MSR_VII-1_2003-Guo_pp177-209.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ The Devil's Advocate: Ibn Daniyal's Art of Parody in His Qasidah No. 71
+ mamluk
+ Li Guo
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Herzog_pp137-148.xml b/out/MSR_VII-1_2003-Herzog_pp137-148.xml
new file mode 100644
index 0000000..a229416
--- /dev/null
+++ b/out/MSR_VII-1_2003-Herzog_pp137-148.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ The First Layer of the Sirat Baybars: Popular Romance and Political Propaganda
+ mamluk
+ Thomas Herzog
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Homerin_pp211-234.xml b/out/MSR_VII-1_2003-Homerin_pp211-234.xml
new file mode 100644
index 0000000..4730689
--- /dev/null
+++ b/out/MSR_VII-1_2003-Homerin_pp211-234.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Living Love: The Mystical Writings of 'A'ishah al-Ba'uniyah
+ mamluk
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Irwin_pp1-29.xml b/out/MSR_VII-1_2003-Irwin_pp1-29.xml
new file mode 100644
index 0000000..930a0e7
--- /dev/null
+++ b/out/MSR_VII-1_2003-Irwin_pp1-29.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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 Literature
+ mamluk
+ Robert Irwin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Obituary_pp235.xml b/out/MSR_VII-1_2003-Obituary_pp235.xml
new file mode 100644
index 0000000..8dba6f3
--- /dev/null
+++ b/out/MSR_VII-1_2003-Obituary_pp235.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Laila 'Ali Ibrahim, 1917-2002
+ mamluk
+ Nasser Rabbat
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-Rowson_pp97-110.xml b/out/MSR_VII-1_2003-Rowson_pp97-110.xml
new file mode 100644
index 0000000..ec0f90d
--- /dev/null
+++ b/out/MSR_VII-1_2003-Rowson_pp97-110.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ An Alexandrian Age in Fourteenth-Century Damascus
+ mamluk
+ Everett K. Rowson
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml b/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml
new file mode 100644
index 0000000..ecac962
--- /dev/null
+++ b/out/MSR_VII-1_2003-al-Musawi_pp111-135.xml
@@ -0,0 +1,12 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Vindicating a Profession or a Personal Career? Al-Qalqashandi's Maqamah in Context
+ mamluk
+ Muhsin Jassim al-Musawi
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-1_2003-vanGelder_pp31-48.xml b/out/MSR_VII-1_2003-vanGelder_pp31-48.xml
new file mode 100644
index 0000000..65c7a6f
--- /dev/null
+++ b/out/MSR_VII-1_2003-vanGelder_pp31-48.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Poetry for Easy Listening: Insijam and Related Concepts in Ibn Hijjah's Khizanat al-Adab
+ mamluk
+ Geert Jan van Gelder
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Amitai_pp99-118.xml b/out/MSR_VII-2_2003-Amitai_pp99-118.xml
new file mode 100644
index 0000000..bf1f58e
--- /dev/null
+++ b/out/MSR_VII-2_2003-Amitai_pp99-118.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi as a Historian of the Early Mamluk Sultanate
+ mamluk
+ Reuven Amitai
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml b/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml
new file mode 100644
index 0000000..943ce74
--- /dev/null
+++ b/out/MSR_VII-2_2003-Bauden_pp21-68_10MB.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Maqriziana I: Discovery of an Autograph Manuscript of al-Maqrizi
+ mamluk
+ Frederic Bauden
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-BookReviews_pp247-264.xml b/out/MSR_VII-2_2003-BookReviews_pp247-264.xml
new file mode 100644
index 0000000..d4c54cd
--- /dev/null
+++ b/out/MSR_VII-2_2003-BookReviews_pp247-264.xml
@@ -0,0 +1,18 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml b/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml
new file mode 100644
index 0000000..568b6fe
--- /dev/null
+++ b/out/MSR_VII-2_2003-Broadbridge_pp231-245.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Royal Authority, Justice, and Order in Society: The Influence of Ibn Khaldun
+ mamluk
+ Anne F. Broadbridge
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Cobb_pp69-81.xml b/out/MSR_VII-2_2003-Cobb_pp69-81.xml
new file mode 100644
index 0000000..d836749
--- /dev/null
+++ b/out/MSR_VII-2_2003-Cobb_pp69-81.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi, Hashimism, and the Early Caliphates
+ mamluk
+ Paul M. Cobb
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Irwin_pp217-230.xml b/out/MSR_VII-2_2003-Irwin_pp217-230.xml
new file mode 100644
index 0000000..dff5006
--- /dev/null
+++ b/out/MSR_VII-2_2003-Irwin_pp217-230.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi and Ibn Khaldun, Historians of the Unseen
+ mamluk
+ Robert Irwin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Little_pp205-215.xml b/out/MSR_VII-2_2003-Little_pp205-215.xml
new file mode 100644
index 0000000..f6d256e
--- /dev/null
+++ b/out/MSR_VII-2_2003-Little_pp205-215.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ A Comparison of al-Maqrizi and al-'Ayni as Historians of Contemporary Events
+ mamluk
+ Donald P. Little
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Massoud_pp119-136.xml b/out/MSR_VII-2_2003-Massoud_pp119-136.xml
new file mode 100644
index 0000000..932ea18
--- /dev/null
+++ b/out/MSR_VII-2_2003-Massoud_pp119-136.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi as a Historian of the Reign of Barquq
+ mamluk
+ Sami G. Massoud
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Meloy_pp183-203.xml b/out/MSR_VII-2_2003-Meloy_pp183-203.xml
new file mode 100644
index 0000000..92c2239
--- /dev/null
+++ b/out/MSR_VII-2_2003-Meloy_pp183-203.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ The Merits of Economic History: Re-Reading al-Maqrizi's Ighathah and Shudhur
+ mamluk
+ John L. Meloy
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Petry_pp137-143.xml b/out/MSR_VII-2_2003-Petry_pp137-143.xml
new file mode 100644
index 0000000..f7e8ac2
--- /dev/null
+++ b/out/MSR_VII-2_2003-Petry_pp137-143.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi's Discussion of Imprisonment and Description of Jails in the Khitat
+ mamluk
+ Carl F. Petry
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Rabbat_pp1-19.xml b/out/MSR_VII-2_2003-Rabbat_pp1-19.xml
new file mode 100644
index 0000000..e2025f8
--- /dev/null
+++ b/out/MSR_VII-2_2003-Rabbat_pp1-19.xml
@@ -0,0 +1,13 @@
+
+
+ VII.2, 2003
+ University of Chicago
+ ©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
+ Who Was al-Maqrizi? A Biographical Sketch
+ mamluk
+ Nasser Rabbat
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Raymond_pp145-167.xml b/out/MSR_VII-2_2003-Raymond_pp145-167.xml
new file mode 100644
index 0000000..85741e3
--- /dev/null
+++ b/out/MSR_VII-2_2003-Raymond_pp145-167.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi's Khitat and the Urban Structure of Mamluk Cairo
+ mamluk
+ Andre Raymond
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Schultz_pp169-181.xml b/out/MSR_VII-2_2003-Schultz_pp169-181.xml
new file mode 100644
index 0000000..0751138
--- /dev/null
+++ b/out/MSR_VII-2_2003-Schultz_pp169-181.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Placing al-Maqrizi's Comments on Money in a Wider Context
+ mamluk
+ Warren C. Schultz
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VII-2_2003-Walker_pp83-97.xml b/out/MSR_VII-2_2003-Walker_pp83-97.xml
new file mode 100644
index 0000000..b8aa13f
--- /dev/null
+++ b/out/MSR_VII-2_2003-Walker_pp83-97.xml
@@ -0,0 +1,13 @@
+
+
+ VII.1, 2003
+ University of Chicago
+ ©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
+ Al-Maqrizi and the Fatimids
+ mamluk
+ Paul E. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml b/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml
new file mode 100644
index 0000000..7d8da27
--- /dev/null
+++ b/out/MSR_VIII-1_2004-Beaumont_pp201-225.xml
@@ -0,0 +1,21 @@
+
+
+ VIII.1, 2004
+ University of Chicago
+ ©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
+ Political Violence and Ideology in Mamluk Society
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ politics
+ Daniel Beaumont
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml b/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml
new file mode 100644
index 0000000..c6e441b
--- /dev/null
+++ b/out/MSR_VIII-1_2004-Behrens-Abouseif_pp279-297.xml
@@ -0,0 +1,22 @@
+
+
+ VIII.1, 2004
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml b/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml
new file mode 100644
index 0000000..a8b5d26
--- /dev/null
+++ b/out/MSR_VIII-1_2004-BookReviews_pp299-334.xml
@@ -0,0 +1,20 @@
+
+
+ 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
+ Jo Van Steenbergen
+ Michael B. Schur
+ Irina Lyuter
+ Everett K. Rowson
+ Anne F. Broadbridge
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml b/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml
new file mode 100644
index 0000000..4d26acc
--- /dev/null
+++ b/out/MSR_VIII-1_2004-Chevedden_pp228-277_26MB.xml
@@ -0,0 +1,22 @@
+
+
+ VIII.1, 2004
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-Conermann_pp115-139.xml b/out/MSR_VIII-1_2004-Conermann_pp115-139.xml
new file mode 100644
index 0000000..e621bdf
--- /dev/null
+++ b/out/MSR_VIII-1_2004-Conermann_pp115-139.xml
@@ -0,0 +1,20 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml b/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml
new file mode 100644
index 0000000..902e32a
--- /dev/null
+++ b/out/MSR_VIII-1_2004-Sarraf_pp141-200.xml
@@ -0,0 +1,20 @@
+
+
+ VIII.1, 2004
+ University of Chicago
+ ©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 Furusiyah Literature and Its Antecedents
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ literature
+ Shihab al-Sarraf
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-1_2004-Walker_pp1-114.xml b/out/MSR_VIII-1_2004-Walker_pp1-114.xml
new file mode 100644
index 0000000..52ca2fb
--- /dev/null
+++ b/out/MSR_VIII-1_2004-Walker_pp1-114.xml
@@ -0,0 +1,22 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Arbel.xml b/out/MSR_VIII-2_2004-Arbel.xml
new file mode 100644
index 0000000..bab545f
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Arbel.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ The Last Decades of Venice's Trade with the Mamluks: Importations into Egypt and Syria
+ mamluk
+ Benjamin Arbel
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-BookReviews.xml b/out/MSR_VIII-2_2004-BookReviews.xml
new file mode 100644
index 0000000..05a3f58
--- /dev/null
+++ b/out/MSR_VIII-2_2004-BookReviews.xml
@@ -0,0 +1,20 @@
+
+
+ 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
+ Bethany J. Walker
+ Warren C. SChultz
+ Carl F. Petry
+ Michael Winter
+ William Tucker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Borsch.xml b/out/MSR_VIII-2_2004-Borsch.xml
new file mode 100644
index 0000000..fa89263
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Borsch.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ Thirty Years after Lopez, Miskimin, and Udovitch
+ mamluk
+ Stuart J. Borsch
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Burke.xml b/out/MSR_VIII-2_2004-Burke.xml
new file mode 100644
index 0000000..9ba456a
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Burke.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ A Note on Archaeological Evidence for Sugar Production in the Middle Islamic Periods in Bilad al-Sham
+ mamluk
+ Katherine Strange Burke
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Christie_11MB.xml b/out/MSR_VIII-2_2004-Christie_11MB.xml
new file mode 100644
index 0000000..ed65f53
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Christie_11MB.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ Reconstructing Life in Medieval Alexandria from an Eighth/Fourteenth Century Waqf Document
+ mamluk
+ Niall Christie
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Hattox.xml b/out/MSR_VIII-2_2004-Hattox.xml
new file mode 100644
index 0000000..4fe5d63
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Hattox.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ Sharp Practice in Levantine Trade in the Late Middle Ages: The Brizi-Corner Affair of 1376-77
+ mamluk
+ Ralph S. Hattox
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Lev.xml b/out/MSR_VIII-2_2004-Lev.xml
new file mode 100644
index 0000000..1f1e6b0
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Lev.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ The Regime and the Urban Wheat Market: The Famine of 662/1263-64 in Cairo
+ mamluk
+ Yaacov Lev
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Rapoport.xml b/out/MSR_VIII-2_2004-Rapoport.xml
new file mode 100644
index 0000000..a7014d4
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Rapoport.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ Invisible Peasants, Marauding Nomads: Taxation, Tribalism and Rebellion in Mamluk Egypt
+ mamluk
+ Yossef Rapoport
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Sabra.xml b/out/MSR_VIII-2_2004-Sabra.xml
new file mode 100644
index 0000000..f0ddfa3
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Sabra.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ The Rise of a New Class? Land Tenure in Fifteenth-Century Egypt
+ mamluk
+ Adam Sabra
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Tsugitaka.xml b/out/MSR_VIII-2_2004-Tsugitaka.xml
new file mode 100644
index 0000000..3d15e54
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Tsugitaka.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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
+ Sugar in the Economic Life of Mamluk Egypt
+ mamluk
+ Sato Tsugitaka
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VIII-2_2004-Walker_12MB.xml b/out/MSR_VIII-2_2004-Walker_12MB.xml
new file mode 100644
index 0000000..b76eb6c
--- /dev/null
+++ b/out/MSR_VIII-2_2004-Walker_12MB.xml
@@ -0,0 +1,13 @@
+
+
+ VIII.2, 2004
+ University of Chicago
+ ©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 Investment in Transjordan: a "Boom and Bust" Economy
+ mamluk
+ Bethany J. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml b/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml
new file mode 100644
index 0000000..7507970
--- /dev/null
+++ b/out/MSR_VI_2002-Behrens-Abouseif_pp71-94.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Sultan al-Ghawri and the Arts
+ mamluk
+ Doris Behrens-Abouseif
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-BookReviews_pp191-239.xml b/out/MSR_VI_2002-BookReviews_pp191-239.xml
new file mode 100644
index 0000000..d888fb5
--- /dev/null
+++ b/out/MSR_VI_2002-BookReviews_pp191-239.xml
@@ -0,0 +1,27 @@
+
+
+ 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
+ Mustapha Kamal
+ Otfried Weintritt
+ Thomas Herzog
+ Leonor Fernandes
+ Niall Christie
+ Johannes Pahlitzsch
+ Josef W. Meri
+ Li Guo
+ Thomas Bauer
+ Bethany J. Walker
+ Amalia Levanoni
+ Amina Elbendary
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Clifford_pp1-8.xml b/out/MSR_VI_2002-Clifford_pp1-8.xml
new file mode 100644
index 0000000..4696ad2
--- /dev/null
+++ b/out/MSR_VI_2002-Clifford_pp1-8.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ "Mediators and Wanderers": Ulrich Haarmann and Mamluk Studies
+ mamluk
+ W. W. Clifford
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml b/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml
new file mode 100644
index 0000000..7980acd
--- /dev/null
+++ b/out/MSR_VI_2002-Conermann-Saghbini_pp21-50_9MB.xml
@@ -0,0 +1,14 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Awlad al-Nas as Founders of Pious Endowments
+ mamluk
+ Stephan Conermann
+ Suad Saghbini
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Fernandes_pp95-108.xml b/out/MSR_VI_2002-Fernandes_pp95-108.xml
new file mode 100644
index 0000000..0c2fd07
--- /dev/null
+++ b/out/MSR_VI_2002-Fernandes_pp95-108.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Between Qadis and Muftis: To Whom Does the Mamluk Sultan Listen?
+ mamluk
+ Leonor Fernandes
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Hattox_pp177-190.xml b/out/MSR_VI_2002-Hattox_pp177-190.xml
new file mode 100644
index 0000000..08ce1fa
--- /dev/null
+++ b/out/MSR_VI_2002-Hattox_pp177-190.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Qaytbay's Diplomatic Dilemma: Concerning the Flight of Cem Sultan (1481-82)
+ mamluk
+ Ralph S. Hattox
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Irwin_pp63-70.xml b/out/MSR_VI_2002-Irwin_pp63-70.xml
new file mode 100644
index 0000000..86821f3
--- /dev/null
+++ b/out/MSR_VI_2002-Irwin_pp63-70.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ The Privatization of "Justice" under the Circassian Mamluks
+ mamluk
+ Robert Irwin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Little_pp9-20.xml b/out/MSR_VI_2002-Little_pp9-20.xml
new file mode 100644
index 0000000..144f8c3
--- /dev/null
+++ b/out/MSR_VI_2002-Little_pp9-20.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Notes on Mamluk Madrasahs
+ mamluk
+ Donald P. Little
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Luz_pp133-154.xml b/out/MSR_VI_2002-Luz_pp133-154.xml
new file mode 100644
index 0000000..dd998d2
--- /dev/null
+++ b/out/MSR_VI_2002-Luz_pp133-154.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Aspects of Islamization of Space and Society in Mamluk Jerusalem and its Hinterland
+ mamluk
+ Nimrod Luz
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Morimoto_pp109-131.xml b/out/MSR_VI_2002-Morimoto_pp109-131.xml
new file mode 100644
index 0000000..a93393b
--- /dev/null
+++ b/out/MSR_VI_2002-Morimoto_pp109-131.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ What Ibn Khaldun Saw: The Judiciary of Mamluk Egypt
+ mamluk
+ Morimoto Kosei
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Rabbat_pp155-176.xml b/out/MSR_VI_2002-Rabbat_pp155-176.xml
new file mode 100644
index 0000000..9beb1f0
--- /dev/null
+++ b/out/MSR_VI_2002-Rabbat_pp155-176.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Perception of Architecture in Mamluk Sources
+ mamluk
+ Nasser Rabbat
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_VI_2002-Reinfandt_pp51-70.xml b/out/MSR_VI_2002-Reinfandt_pp51-70.xml
new file mode 100644
index 0000000..4f3302d
--- /dev/null
+++ b/out/MSR_VI_2002-Reinfandt_pp51-70.xml
@@ -0,0 +1,13 @@
+
+
+ VI, 2002
+ University of Chicago
+ ©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
+ Religious Endowments and Succession to Rule: The Career of a Sultan's Son
+ mamluk
+ Lucian Reinfandt
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Book Reviews.xml b/out/MSR_V_2001-Book Reviews.xml
new file mode 100644
index 0000000..638f3d5
--- /dev/null
+++ b/out/MSR_V_2001-Book Reviews.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Book Reviews
+ mamluk
+ Middle East Documentation Center
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Broadbridge.xml b/out/MSR_V_2001-Broadbridge.xml
new file mode 100644
index 0000000..1a619d0
--- /dev/null
+++ b/out/MSR_V_2001-Broadbridge.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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 Legitimacy and the Mongols: The Reign of Baybars and Qalawun
+ mamluk
+ Anne F. Broadbridge
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Elbendary.xml b/out/MSR_V_2001-Elbendary.xml
new file mode 100644
index 0000000..f7cda4a
--- /dev/null
+++ b/out/MSR_V_2001-Elbendary.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ The Sultan, The Tyrant, and the Hero: Changing Medieval Perceptions of al-Zahir Baybars
+ mamluk
+ Amina A. Elbendary
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Fuess.xml b/out/MSR_V_2001-Fuess.xml
new file mode 100644
index 0000000..134a899
--- /dev/null
+++ b/out/MSR_V_2001-Fuess.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Rotting Ships and Razed Harbors: The Naval Policy of the Mamluks
+ mamluk
+ Albrecht Fuess
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Haarmann.xml b/out/MSR_V_2001-Haarmann.xml
new file mode 100644
index 0000000..d333bc7
--- /dev/null
+++ b/out/MSR_V_2001-Haarmann.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ The Mamluk System of Rule in the Eyes of Western Travelers
+ mamluk
+ Ulrich Haarmann
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Northrup.xml b/out/MSR_V_2001-Northrup.xml
new file mode 100644
index 0000000..61795b2
--- /dev/null
+++ b/out/MSR_V_2001-Northrup.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Qalawun's Patronage of the Medical Sciences in Thirteenth-Century Egypt
+ mamluk
+ Linda S. Northrup
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Saleh.xml b/out/MSR_V_2001-Saleh.xml
new file mode 100644
index 0000000..47aec93
--- /dev/null
+++ b/out/MSR_V_2001-Saleh.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Al-Suyuti and His Works: Their Place in Islamic Scholarship from Mamluk Times
+ mamluk
+ Marlis J. Saleh
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Schick.xml b/out/MSR_V_2001-Schick.xml
new file mode 100644
index 0000000..4602b29
--- /dev/null
+++ b/out/MSR_V_2001-Schick.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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
+ Arabic Studies of Mamluk Jerusalem: A Review Article
+ mamluk
+ Robert Schick
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_V_2001-Schulz.xml b/out/MSR_V_2001-Schulz.xml
new file mode 100644
index 0000000..962cb36
--- /dev/null
+++ b/out/MSR_V_2001-Schulz.xml
@@ -0,0 +1,13 @@
+
+
+ IV, 2000
+ University of Chicago
+ ©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 Egyptian Copper Coinage Before 759/1357-1358: A Preliminary Inquiry
+ mamluk
+ Warren C. Schulz
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-BookReviews.xml b/out/MSR_X-1_2006-BookReviews.xml
new file mode 100644
index 0000000..614cee1
--- /dev/null
+++ b/out/MSR_X-1_2006-BookReviews.xml
@@ -0,0 +1,20 @@
+
+
+ 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
+ Walid Saleh
+ Johannes Pahlitzsch
+ Thomas Bauer
+ Th. Emil Homerin
+ Everett K. Rowson
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Igarashi-Daisuke.xml b/out/MSR_X-1_2006-Igarashi-Daisuke.xml
new file mode 100644
index 0000000..941bbae
--- /dev/null
+++ b/out/MSR_X-1_2006-Igarashi-Daisuke.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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
+ The Establishment and Development of al-Diwan al-Mufrad
+ mamluk
+ Igarashi Daisuke
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml b/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml
new file mode 100644
index 0000000..dfedb6d
--- /dev/null
+++ b/out/MSR_X-1_2006-Kikuchi-Tadayoshi.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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
+ An Analysis of 'Abd al-Basit al-Hanafi al-Malati's Description of the Year 848
+ mamluk
+ Kikuchi Tadayoshi
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Miura-Toru.xml b/out/MSR_X-1_2006-Miura-Toru.xml
new file mode 100644
index 0000000..d448455
--- /dev/null
+++ b/out/MSR_X-1_2006-Miura-Toru.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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
+ Urban Society in Damascus as the Mamluk Era Was Ending
+ mamluk
+ Miura Toru
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml b/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml
new file mode 100644
index 0000000..644cfd1
--- /dev/null
+++ b/out/MSR_X-1_2006-Nakamachi-Nobutaka.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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
+ The Rank and Status of Military Refugees in the Mamluk Army: A Reconsideration of the Wafidiyah
+ mamluk
+ Nakamachi Nobutaka
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml b/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml
new file mode 100644
index 0000000..5859a64
--- /dev/null
+++ b/out/MSR_X-1_2006-Ohtoshi-Tetsuya.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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
+ Cairene Cemeteries as Public Loci in Mamluk Egypt
+ mamluk
+ Ohtoshi Tetsuya
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml b/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml
new file mode 100644
index 0000000..ff5ee72
--- /dev/null
+++ b/out/MSR_X-1_2006-Sato-Tsugitaka_1.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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 Studies in Japan: Retrospect and Prospect
+ mamluk
+ Sato Tsugitaka
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml b/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml
new file mode 100644
index 0000000..3bd624b
--- /dev/null
+++ b/out/MSR_X-1_2006-Sato-Tsugitaka_2.xml
@@ -0,0 +1,13 @@
+
+
+ X.1, 2006
+ University of Chicago
+ ©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
+ Slave Traders and Karimi Merchants during the Mamluk Period
+ mamluk
+ Sato Tsugitaka
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-Armstrong.xml b/out/MSR_X-2_2006-Armstrong.xml
new file mode 100644
index 0000000..66f7797
--- /dev/null
+++ b/out/MSR_X-2_2006-Armstrong.xml
@@ -0,0 +1,23 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-Bauden.xml b/out/MSR_X-2_2006-Bauden.xml
new file mode 100644
index 0000000..f65e41b
--- /dev/null
+++ b/out/MSR_X-2_2006-Bauden.xml
@@ -0,0 +1,23 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-BookReviews.xml b/out/MSR_X-2_2006-BookReviews.xml
new file mode 100644
index 0000000..7131c97
--- /dev/null
+++ b/out/MSR_X-2_2006-BookReviews.xml
@@ -0,0 +1,21 @@
+
+
+ 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
+ Patrick Franke
+ Richard McGregor
+ John Rodenbeck
+ Vanessa De Gifis
+ Peter Heath
+ Nasser Rabbat
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-Darling.xml b/out/MSR_X-2_2006-Darling.xml
new file mode 100644
index 0000000..98600ef
--- /dev/null
+++ b/out/MSR_X-2_2006-Darling.xml
@@ -0,0 +1,21 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ Medieval Egyptian Society and the Concept of the Circle of Justice
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ justice
+ law
+ Linda T. Darling
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-Hamza_13MB.xml b/out/MSR_X-2_2006-Hamza_13MB.xml
new file mode 100644
index 0000000..2606918
--- /dev/null
+++ b/out/MSR_X-2_2006-Hamza_13MB.xml
@@ -0,0 +1,20 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ The Turbah of Tankizbugha
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Hani Hamza
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-Krawietz.xml b/out/MSR_X-2_2006-Krawietz.xml
new file mode 100644
index 0000000..e0b3504
--- /dev/null
+++ b/out/MSR_X-2_2006-Krawietz.xml
@@ -0,0 +1,20 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ Ibn Qayyim al-Jawziyah: His Life and Works
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Birgit Krawietz
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-OSullivan.xml b/out/MSR_X-2_2006-OSullivan.xml
new file mode 100644
index 0000000..24af567
--- /dev/null
+++ b/out/MSR_X-2_2006-OSullivan.xml
@@ -0,0 +1,23 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ Coptic Conversion and the Islamization of Egypt
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Coptic
+ Islam
+ religion
+ Shaun O'Sullivan
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_X-2_2006-Petry.xml b/out/MSR_X-2_2006-Petry.xml
new file mode 100644
index 0000000..9f24daa
--- /dev/null
+++ b/out/MSR_X-2_2006-Petry.xml
@@ -0,0 +1,22 @@
+
+
+ X.2, 2006
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Antrim.xml b/out/MSR_XI-1_2007-Antrim.xml
new file mode 100644
index 0000000..d9c509c
--- /dev/null
+++ b/out/MSR_XI-1_2007-Antrim.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Making Syria Mamluk: Ibn Shaddad's Al-A'laq al-Khatirah
+ mamluk
+ Zayde Antrim
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-BookReviews.xml b/out/MSR_XI-1_2007-BookReviews.xml
new file mode 100644
index 0000000..dcab995
--- /dev/null
+++ b/out/MSR_XI-1_2007-BookReviews.xml
@@ -0,0 +1,23 @@
+
+
+ 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
+ Bethany J. Walker
+ Jon Hoover
+ Stuart Borsch
+ Syrinx von Hees
+ Amalia Levanoni
+ Anne F. Broadbridge
+ Benjamin Arbel
+ Geert Jan van Gelder
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Frenkel.xml b/out/MSR_XI-1_2007-Frenkel.xml
new file mode 100644
index 0000000..8942f64
--- /dev/null
+++ b/out/MSR_XI-1_2007-Frenkel.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Public Projection of Power in Mamluk Bilad al-Sham
+ mamluk
+ Yehoshua Frenkel
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Ibrahim.xml b/out/MSR_XI-1_2007-Ibrahim.xml
new file mode 100644
index 0000000..d641465
--- /dev/null
+++ b/out/MSR_XI-1_2007-Ibrahim.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Practice and Reform in Fourteenth-Century Damascene Madrasahs
+ mamluk
+ Mahmood Ibrahim
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Kenney.xml b/out/MSR_XI-1_2007-Kenney.xml
new file mode 100644
index 0000000..7404927
--- /dev/null
+++ b/out/MSR_XI-1_2007-Kenney.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ A Mamluk Monument "Restored": The Dar al-Qur'an wa-al-Hadith of Tankiz al-Nasiri in Damascus
+ mamluk
+ Ellen Kenney
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-McPhillips-Walmsley.xml b/out/MSR_XI-1_2007-McPhillips-Walmsley.xml
new file mode 100644
index 0000000..614891e
--- /dev/null
+++ b/out/MSR_XI-1_2007-McPhillips-Walmsley.xml
@@ -0,0 +1,14 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Fahl during the Early Mamluk Period: Archaeological Perspectives
+ "mamluk
+ Stephen McPhillips
+ Alan Walmsley
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-McQuitty.xml b/out/MSR_XI-1_2007-McQuitty.xml
new file mode 100644
index 0000000..c0ca1a3
--- /dev/null
+++ b/out/MSR_XI-1_2007-McQuitty.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Khirbat Faris: Vernacular Architecture on the Karak Plateau, Jordan
+ mamluk
+ Alison McQuitty
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Michaudel.xml b/out/MSR_XI-1_2007-Michaudel.xml
new file mode 100644
index 0000000..6d4fd5b
--- /dev/null
+++ b/out/MSR_XI-1_2007-Michaudel.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ The Use of Fortification as a Political Instrument by the Ayyubids and the Mamluks in Bilad al-Sham and in Egypt
+ mamluk
+ Benjamin Michaudel
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Tsugitaka.xml b/out/MSR_XI-1_2007-Tsugitaka.xml
new file mode 100644
index 0000000..b508f94
--- /dev/null
+++ b/out/MSR_XI-1_2007-Tsugitaka.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Fiscal Administration in Syria during the Reign of Sultan al-Nasir Muhammad
+ mamluk
+ Sato Tsugitaka
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-1_2007-Walker.xml b/out/MSR_XI-1_2007-Walker.xml
new file mode 100644
index 0000000..0cc3e96
--- /dev/null
+++ b/out/MSR_XI-1_2007-Walker.xml
@@ -0,0 +1,13 @@
+
+
+ XI.1, 2007
+ University of Chicago
+ ©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
+ Sowing the Seeds of Rural Decline?
+ mamluk
+ Bethany J. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-Aigle.xml b/out/MSR_XI-2_2007-Aigle.xml
new file mode 100644
index 0000000..8e5f5d4
--- /dev/null
+++ b/out/MSR_XI-2_2007-Aigle.xml
@@ -0,0 +1,13 @@
+
+
+ XI.2, 2007
+ University of Chicago
+ ©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
+ The Mongol Invasions of Bilad al-Sham by Ghazan Khan and Ibn Taymiyah's Three "Anti-Mongol" Fatwas
+ mamluk
+ Denise Aigle
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-Bauer.xml b/out/MSR_XI-2_2007-Bauer.xml
new file mode 100644
index 0000000..0485032
--- /dev/null
+++ b/out/MSR_XI-2_2007-Bauer.xml
@@ -0,0 +1,13 @@
+
+
+ XI.2, 2007
+ University of Chicago
+ ©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
+ In Search of "Post-Classical Literature": A Review Article
+ mamluk
+ Thomas Bauer
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-BookReviews.xml b/out/MSR_XI-2_2007-BookReviews.xml
new file mode 100644
index 0000000..dfa932b
--- /dev/null
+++ b/out/MSR_XI-2_2007-BookReviews.xml
@@ -0,0 +1,20 @@
+
+
+ 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
+ Li Guo
+ June Dahy
+ Albrecht Fuess
+ Walter E. Kaegi
+ W. W. Clifford
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-Conermann_Seidensticker.xml b/out/MSR_XI-2_2007-Conermann_Seidensticker.xml
new file mode 100644
index 0000000..03363f3
--- /dev/null
+++ b/out/MSR_XI-2_2007-Conermann_Seidensticker.xml
@@ -0,0 +1,14 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-Harithy_11MB.xml b/out/MSR_XI-2_2007-Harithy_11MB.xml
new file mode 100644
index 0000000..710c6f3
--- /dev/null
+++ b/out/MSR_XI-2_2007-Harithy_11MB.xml
@@ -0,0 +1,13 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-Rapoport.xml b/out/MSR_XI-2_2007-Rapoport.xml
new file mode 100644
index 0000000..3bb5f86
--- /dev/null
+++ b/out/MSR_XI-2_2007-Rapoport.xml
@@ -0,0 +1,13 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XI-2_2007-Wing.xml b/out/MSR_XI-2_2007-Wing.xml
new file mode 100644
index 0000000..828e97c
--- /dev/null
+++ b/out/MSR_XI-2_2007-Wing.xml
@@ -0,0 +1,13 @@
+
+
+ XI.2, 2007
+ University of Chicago
+ ©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
+ The Decline of the Ilkhanate and the Mamluk Sultanate's Eastern Frontier
+ mamluk
+ Patrick Wing
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-Amitai-pp119-137.xml b/out/MSR_XII-1_2008-Amitai-pp119-137.xml
new file mode 100644
index 0000000..1d28eb2
--- /dev/null
+++ b/out/MSR_XII-1_2008-Amitai-pp119-137.xml
@@ -0,0 +1,13 @@
+
+
+ XII. 1, 2008
+ University of Chicago
+ ©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
+ Mamluks of Mongol Origin and Their Role in Early Mamluk Political Life
+ mamluk
+ Reuven Amitai
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-Bauden-pp51-118.xml b/out/MSR_XII-1_2008-Bauden-pp51-118.xml
new file mode 100644
index 0000000..7a5dc33
--- /dev/null
+++ b/out/MSR_XII-1_2008-Bauden-pp51-118.xml
@@ -0,0 +1,13 @@
+
+
+ XII. 1, 2008
+ University of Chicago
+ ©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
+ Maqriziana II: Discovery of an Autograph Manuscript of al-Maqrīzī
+ mamluk
+ Frederic Bauden
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-Bauer-pp1-35.xml b/out/MSR_XII-1_2008-Bauer-pp1-35.xml
new file mode 100644
index 0000000..81605fe
--- /dev/null
+++ b/out/MSR_XII-1_2008-Bauer-pp1-35.xml
@@ -0,0 +1,13 @@
+
+
+ XII. 1, 2008
+ University of Chicago
+ ©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
+ Ibn Nubātah al-Miṣrī (686–768/1287–1366): Life and Works, Part I
+ mamluk
+ Thomas Bauer
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-BookReviews-pp193-229.xml b/out/MSR_XII-1_2008-BookReviews-pp193-229.xml
new file mode 100644
index 0000000..7153810
--- /dev/null
+++ b/out/MSR_XII-1_2008-BookReviews-pp193-229.xml
@@ -0,0 +1,18 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-Hamza-pp139-172.xml b/out/MSR_XII-1_2008-Hamza-pp139-172.xml
new file mode 100644
index 0000000..9a4810b
--- /dev/null
+++ b/out/MSR_XII-1_2008-Hamza-pp139-172.xml
@@ -0,0 +1,13 @@
+
+
+ XII. 1, 2008
+ University of Chicago
+ ©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
+ Some Aspects of the Economic and Social Life of Ibn Taghrībirdī
+ mamluk
+ Hani Hamza
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-Irwin-pp37-49.xml b/out/MSR_XII-1_2008-Irwin-pp37-49.xml
new file mode 100644
index 0000000..9c5c68c
--- /dev/null
+++ b/out/MSR_XII-1_2008-Irwin-pp37-49.xml
@@ -0,0 +1,13 @@
+
+
+ XII. 1, 2008
+ University of Chicago
+ ©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
+ The Political Thinking of the “Virtuous Ruler,” Qānṣūh al-Ghawri
+ mamluk
+ Robert Irwin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-1_2008-Muller-pp173-191.xml b/out/MSR_XII-1_2008-Muller-pp173-191.xml
new file mode 100644
index 0000000..de7e74f
--- /dev/null
+++ b/out/MSR_XII-1_2008-Muller-pp173-191.xml
@@ -0,0 +1,13 @@
+
+
+ XII. 1, 2008
+ University of Chicago
+ ©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
+ A Legal Instrument in the Service of People and Institutions: Endowments in Mamluk Jerusalem
+ mamluk
+ Christian Muller
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Bauer-pp25-69.xml b/out/MSR_XII-2_2008-Bauer-pp25-69.xml
new file mode 100644
index 0000000..a7c987f
--- /dev/null
+++ b/out/MSR_XII-2_2008-Bauer-pp25-69.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ Ibn Nubātah al-Miṣrī (686–768/1287–1366): Life and Works, Part II: The Diwan
+ mamluk
+ Thomas Bauer
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-BookReviews-pp231-241.xml b/out/MSR_XII-2_2008-BookReviews-pp231-241.xml
new file mode 100644
index 0000000..1f7ce94
--- /dev/null
+++ b/out/MSR_XII-2_2008-BookReviews-pp231-241.xml
@@ -0,0 +1,15 @@
+
+
+ XII.2, 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
+ Patrick Wing
+ Thomas T. Allsen
+ Elizabeth Urban
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Conermann-pp1-24.xml b/out/MSR_XII-2_2008-Conermann-pp1-24.xml
new file mode 100644
index 0000000..0faa18b
--- /dev/null
+++ b/out/MSR_XII-2_2008-Conermann-pp1-24.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ Tankiz ibn ʿAbd Allāh al-Ḥusāmī al-Nāṣirī as Seen by His Contemporary al-Safadi
+ mamluk
+ Stephan Conermann
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Franz-pp133-158.xml b/out/MSR_XII-2_2008-Franz-pp133-158.xml
new file mode 100644
index 0000000..74817da
--- /dev/null
+++ b/out/MSR_XII-2_2008-Franz-pp133-158.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ The Ayyubid and Mamluk Revaluation of the Hinterland and Western Historical Cartography
+ mamluk
+ Kurt Franz
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Fuess-pp71-94.xml b/out/MSR_XII-2_2008-Fuess-pp71-94.xml
new file mode 100644
index 0000000..f317eb1
--- /dev/null
+++ b/out/MSR_XII-2_2008-Fuess-pp71-94.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ Sultans with Horns: The Political Significance of Headgear in the Mamluk Empire
+ mamluk
+ Albrecht Fuess
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Hirschler-pp95-132.xml b/out/MSR_XII-2_2008-Hirschler-pp95-132.xml
new file mode 100644
index 0000000..5a59ae5
--- /dev/null
+++ b/out/MSR_XII-2_2008-Hirschler-pp95-132.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ The Formation of the Civilian Elite in the Syrian Province: The Case of Ayyubid and Early Mamluk Hamah
+ mamluk
+ Konrad Hirschler
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Kuhn-pp159-196.xml b/out/MSR_XII-2_2008-Kuhn-pp159-196.xml
new file mode 100644
index 0000000..8c39174
--- /dev/null
+++ b/out/MSR_XII-2_2008-Kuhn-pp159-196.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ The 'Attar Mosque in Tripoli
+ mamluk
+ Miriam Kuhn
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Speiser-pp197-221.xml b/out/MSR_XII-2_2008-Speiser-pp197-221.xml
new file mode 100644
index 0000000..e52de8a
--- /dev/null
+++ b/out/MSR_XII-2_2008-Speiser-pp197-221.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ The Sultan al-Nāṣir Muḥammad Madrasah in Cairo: Restoration and Archaeological Investigation
+ mamluk
+ Philipp Speiser
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XII-2_2008-Vesely-pp223-229.xml b/out/MSR_XII-2_2008-Vesely-pp223-229.xml
new file mode 100644
index 0000000..c6d0076
--- /dev/null
+++ b/out/MSR_XII-2_2008-Vesely-pp223-229.xml
@@ -0,0 +1,13 @@
+
+
+ XII.2, 2008
+ University of Chicago
+ ©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
+ When Is It Possible to Call Something Beautiful?
+ mamluk
+ Rudolf Vesely
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Bauden_pp53-81.xml b/out/MSR_XIII-1_2009-Bauden_pp53-81.xml
new file mode 100644
index 0000000..df21fc3
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Bauden_pp53-81.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ The Sons of al-Nasir Muhammad and the Politics of Puppets
+ mamluk
+ Frederic Bauden
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml b/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml
new file mode 100644
index 0000000..067b331
--- /dev/null
+++ b/out/MSR_XIII-1_2009-BookReviews_pp167-202.xml
@@ -0,0 +1,19 @@
+
+
+ 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
+ Paulina B. Lewicka
+ René-Vincent du Grandlaunay
+ Li Guo
+ Aram Shahin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml b/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml
new file mode 100644
index 0000000..c92d051
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Daisuke_pp27-51.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ The Financial Reforms of Sultan Qaytbay
+ mamluk
+ Igarashi Daisuke
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml b/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml
new file mode 100644
index 0000000..dc2b26d
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Frenkel_pp149-155.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ Awqaf in Mamluk Bilad al-Sham
+ mamluk
+ Yehoshua Frenkel
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Fuess_pp121-147.xml b/out/MSR_XIII-1_2009-Fuess_pp121-147.xml
new file mode 100644
index 0000000..53f0375
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Fuess_pp121-147.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ Zulm by Mazalim? The Political Implications of the Use of Mazalim Jurisdiction by the Mamluk Sultans
+ mamluk
+ Albrecht Fuess
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml b/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml
new file mode 100644
index 0000000..1cc8129
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Ghersetti_pp107-120.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ An Unpublished Anthology of the Mamluk Period on Generosity and Generous Men
+ mamluk
+ Antonella Ghersetti
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Lev_pp1-26.xml b/out/MSR_XIII-1_2009-Lev_pp1-26.xml
new file mode 100644
index 0000000..37a964d
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Lev_pp1-26.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ Symbiotic Relations: Ulama and the Mamluk Sultans
+ mamluk
+ Yaacov Lev
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-1_2009-Walker_pp83-105.xml b/out/MSR_XIII-1_2009-Walker_pp83-105.xml
new file mode 100644
index 0000000..6d2253d
--- /dev/null
+++ b/out/MSR_XIII-1_2009-Walker_pp83-105.xml
@@ -0,0 +1,13 @@
+
+
+ XIII.1, 2009
+ University of Chicago
+ ©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
+ The Tribal Dimension in Mamluk-Jordanian Relations
+ mamluk
+ Bethany J. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Berkey_pp6-22.xml b/out/MSR_XIII-2_2009-Berkey_pp6-22.xml
new file mode 100644
index 0000000..3526c58
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Berkey_pp6-22.xml
@@ -0,0 +1,22 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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 Religious Policy
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ religion
+ Islam
+ Jonathan P. Berkey
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml b/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml
new file mode 100644
index 0000000..ed7346c
--- /dev/null
+++ b/out/MSR_XIII-2_2009-BookReviews_pp161-178.xml
@@ -0,0 +1,26 @@
+
+
+ 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
+ Igarashi Daisuke
+ Zayde Antrim
+ Geert Jan van Gelder
+ Li Guo
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Bori_pp47-67.xml b/out/MSR_XIII-2_2009-Bori_pp47-67.xml
new file mode 100644
index 0000000..0a1be70
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Bori_pp47-67.xml
@@ -0,0 +1,22 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Hunt_pp105-132.xml b/out/MSR_XIII-2_2009-Hunt_pp105-132.xml
new file mode 100644
index 0000000..8dd2240
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Hunt_pp105-132.xml
@@ -0,0 +1,23 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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
+ A Christian Arab Gospel Book in its Mamluk Context
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ religion
+ Islam
+ Christianity
+ Lucy-Anne Hunt
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Introduction_pp3-5.xml b/out/MSR_XIII-2_2009-Introduction_pp3-5.xml
new file mode 100644
index 0000000..da37924
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Introduction_pp3-5.xml
@@ -0,0 +1,22 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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
+ Introduction
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ religion
+ Islam
+ Johannes Pahlitzsch
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-McGregor_pp69-83.xml b/out/MSR_XIII-2_2009-McGregor_pp69-83.xml
new file mode 100644
index 0000000..e1388d8
--- /dev/null
+++ b/out/MSR_XIII-2_2009-McGregor_pp69-83.xml
@@ -0,0 +1,22 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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
+ The Problem of Sufism
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Sufism
+ Islam
+ Richard McGregor
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Obituary_pp1-2.xml b/out/MSR_XIII-2_2009-Obituary_pp1-2.xml
new file mode 100644
index 0000000..c964997
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Obituary_pp1-2.xml
@@ -0,0 +1,20 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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
+ Winslow W. Clifford, 1954-2009
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Bruce D. Craig
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Rustow_pp133-159.xml b/out/MSR_XIII-2_2009-Rustow_pp133-159.xml
new file mode 100644
index 0000000..e1bb6af
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Rustow_pp133-159.xml
@@ -0,0 +1,21 @@
+
+
+ XIII.2, 2009
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml b/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml
new file mode 100644
index 0000000..ea3d19e
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Talmon-Heller_pp23-45.xml
@@ -0,0 +1,22 @@
+
+
+ XIII. 2, 2009
+ University of Chicago
+ ©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
+ '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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIII-2_2009-Thomas_pp85-103.xml b/out/MSR_XIII-2_2009-Thomas_pp85-103.xml
new file mode 100644
index 0000000..23ad6e8
--- /dev/null
+++ b/out/MSR_XIII-2_2009-Thomas_pp85-103.xml
@@ -0,0 +1,23 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Bauden-pp159-232.xml b/out/MSR_XIV_2010-Bauden-pp159-232.xml
new file mode 100644
index 0000000..c964944
--- /dev/null
+++ b/out/MSR_XIV_2010-Bauden-pp159-232.xml
@@ -0,0 +1,21 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ Maqriziana IX: Should al-Maqrizi Be Thrown Out with the Bath Water?
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ al-Maqrizi
+ Frederic Bauden
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Berkey-pp1-17.xml b/out/MSR_XIV_2010-Berkey-pp1-17.xml
new file mode 100644
index 0000000..aa4fee3
--- /dev/null
+++ b/out/MSR_XIV_2010-Berkey-pp1-17.xml
@@ -0,0 +1,22 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ Al-Subki and His Women
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ women
+ gender
+ Jonathan P. Berkey
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-BookReviews_pp233-253.xml b/out/MSR_XIV_2010-BookReviews_pp233-253.xml
new file mode 100644
index 0000000..1e7ea0c
--- /dev/null
+++ b/out/MSR_XIV_2010-BookReviews_pp233-253.xml
@@ -0,0 +1,23 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Broadbridge-pp29-42.xml b/out/MSR_XIV_2010-Broadbridge-pp29-42.xml
new file mode 100644
index 0000000..b19227c
--- /dev/null
+++ b/out/MSR_XIV_2010-Broadbridge-pp29-42.xml
@@ -0,0 +1,22 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Daisuke-pp85-108.xml b/out/MSR_XIV_2010-Daisuke-pp85-108.xml
new file mode 100644
index 0000000..c8a7ef7
--- /dev/null
+++ b/out/MSR_XIV_2010-Daisuke-pp85-108.xml
@@ -0,0 +1,21 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Guo-pp43-62.xml b/out/MSR_XIV_2010-Guo-pp43-62.xml
new file mode 100644
index 0000000..bd968a9
--- /dev/null
+++ b/out/MSR_XIV_2010-Guo-pp43-62.xml
@@ -0,0 +1,24 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Homerin-pp19-28.xml b/out/MSR_XIV_2010-Homerin-pp19-28.xml
new file mode 100644
index 0000000..74a654e
--- /dev/null
+++ b/out/MSR_XIV_2010-Homerin-pp19-28.xml
@@ -0,0 +1,20 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ Al-Busiri's Lamentations on Life and an Appeal for Cash
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Levanoni-pp63-83.xml b/out/MSR_XIV_2010-Levanoni-pp63-83.xml
new file mode 100644
index 0000000..ecde9ff
--- /dev/null
+++ b/out/MSR_XIV_2010-Levanoni-pp63-83.xml
@@ -0,0 +1,20 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ Who Were the "Salt of the Earth" in Fifteenth-Century Egypt?
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Amalia Levanoni
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml b/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml
new file mode 100644
index 0000000..3ce1965
--- /dev/null
+++ b/out/MSR_XIV_2010-Petry_Publications_ppvii-xi.xml
@@ -0,0 +1,20 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ Bibliography of Carl F. Petry's Publications
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Middle East Documentation Center
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIV_2010-Walker-pp109-157.xml b/out/MSR_XIV_2010-Walker-pp109-157.xml
new file mode 100644
index 0000000..151aa6d
--- /dev/null
+++ b/out/MSR_XIV_2010-Walker-pp109-157.xml
@@ -0,0 +1,22 @@
+
+
+ XIV, 2010
+ University of Chicago
+ ©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
+ From Ceramics to Social Theory: Reflections on Mamluk Archaeology Today
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ archaeology
+ ceramics
+ Bethany J. Walker
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Barker.xml b/out/MSR_XIX_2016_Barker.xml
new file mode 100644
index 0000000..7a775db
--- /dev/null
+++ b/out/MSR_XIX_2016_Barker.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Belhaj.xml b/out/MSR_XIX_2016_Belhaj.xml
new file mode 100644
index 0000000..79a56da
--- /dev/null
+++ b/out/MSR_XIX_2016_Belhaj.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ Disputation is a Fighting Sport: Munāẓarah according to Ibn Qayyim al-Jawzīyah
+ mamluk
+ Abdessamad Belhaj
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_BookReviews.xml b/out/MSR_XIX_2016_BookReviews.xml
new file mode 100644
index 0000000..7f85b07
--- /dev/null
+++ b/out/MSR_XIX_2016_BookReviews.xml
@@ -0,0 +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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Borsch_Sabraa.xml b/out/MSR_XIX_2016_Borsch_Sabraa.xml
new file mode 100644
index 0000000..aa27732
--- /dev/null
+++ b/out/MSR_XIX_2016_Borsch_Sabraa.xml
@@ -0,0 +1,12 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Landa.xml b/out/MSR_XIX_2016_Landa.xml
new file mode 100644
index 0000000..014b958
--- /dev/null
+++ b/out/MSR_XIX_2016_Landa.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Nicolle.xml b/out/MSR_XIX_2016_Nicolle.xml
new file mode 100644
index 0000000..853493a
--- /dev/null
+++ b/out/MSR_XIX_2016_Nicolle.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ The Iconography of a Military Elite: Military Figures on an Early Thirteenth-Century Candlestick (Part II)
+ mamluk
+ David Nicolle
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Ozkan.xml b/out/MSR_XIX_2016_Ozkan.xml
new file mode 100644
index 0000000..21d3687
--- /dev/null
+++ b/out/MSR_XIX_2016_Ozkan.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ Why Stress Does Matter: New Material on Metrics in Zajal Poetry
+ mamluk
+ Hakan Özkan
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Pradines.xml b/out/MSR_XIX_2016_Pradines.xml
new file mode 100644
index 0000000..4ea9d38
--- /dev/null
+++ b/out/MSR_XIX_2016_Pradines.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ The Mamluk Fortifications of Egypt
+ mamluk
+ Stéphane Pradines
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XIX_2016_Sopracasa.xml b/out/MSR_XIX_2016_Sopracasa.xml
new file mode 100644
index 0000000..d501371
--- /dev/null
+++ b/out/MSR_XIX_2016_Sopracasa.xml
@@ -0,0 +1,11 @@
+
+
+ XIX, 2016
+ University of Chicago
+ ©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
+ Venetian Merchants and Alexandrian Officials (End of the Fifteenth–Beginning of the Sixteenth Century)
+ mamluk
+ Alessio Sopracasa
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Antrim.xml b/out/MSR_XVIII_2014-15_Antrim.xml
new file mode 100644
index 0000000..a58e69e
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Antrim.xml
@@ -0,0 +1,18 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Banister.xml b/out/MSR_XVIII_2014-15_Banister.xml
new file mode 100644
index 0000000..ba7a71f
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Banister.xml
@@ -0,0 +1,21 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ “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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_BookReviews.xml b/out/MSR_XVIII_2014-15_BookReviews.xml
new file mode 100644
index 0000000..2038729
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_BookReviews.xml
@@ -0,0 +1,25 @@
+
+
+ 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é
+ Mathieu Eychenne
+ Yehoshua Frenkel
+ Th. Emil Homerin
+ Elias Muhanna
+ Adam Talib
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Dekkiche.xml b/out/MSR_XVIII_2014-15_Dekkiche.xml
new file mode 100644
index 0000000..c2bf3e8
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Dekkiche.xml
@@ -0,0 +1,20 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Editorial.xml b/out/MSR_XVIII_2014-15_Editorial.xml
new file mode 100644
index 0000000..e50e0be
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Editorial.xml
@@ -0,0 +1,18 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Jaques.xml b/out/MSR_XVIII_2014-15_Jaques.xml
new file mode 100644
index 0000000..7705207
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Jaques.xml
@@ -0,0 +1,21 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_KumakuraWakako.xml b/out/MSR_XVIII_2014-15_KumakuraWakako.xml
new file mode 100644
index 0000000..59489c5
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_KumakuraWakako.xml
@@ -0,0 +1,20 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Mazor.xml b/out/MSR_XVIII_2014-15_Mazor.xml
new file mode 100644
index 0000000..f51193b
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Mazor.xml
@@ -0,0 +1,18 @@
+
+
+ XVIII 2014-15
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Milwright.xml b/out/MSR_XVIII_2014-15_Milwright.xml
new file mode 100644
index 0000000..0757e01
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Milwright.xml
@@ -0,0 +1,20 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Nicolle.xml b/out/MSR_XVIII_2014-15_Nicolle.xml
new file mode 100644
index 0000000..18fff7f
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Nicolle.xml
@@ -0,0 +1,20 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Troadec.xml b/out/MSR_XVIII_2014-15_Troadec.xml
new file mode 100644
index 0000000..85d2939
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Troadec.xml
@@ -0,0 +1,19 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ Baybars and the Cultural Memory of Bilād al-Shām
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Baybars
+ Anne Troadec
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Vesely.xml b/out/MSR_XVIII_2014-15_Vesely.xml
new file mode 100644
index 0000000..4d99479
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Vesely.xml
@@ -0,0 +1,18 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ Intention or Pure Happenstance?
+ mamluk
+ mameluke
+ Egypt
+ Syria
+ sultanate
+ Middle East
+ history
+ Rudolf Veselý
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVIII_2014-15_Zouache.xml b/out/MSR_XVIII_2014-15_Zouache.xml
new file mode 100644
index 0000000..56c6632
--- /dev/null
+++ b/out/MSR_XVIII_2014-15_Zouache.xml
@@ -0,0 +1,19 @@
+
+
+ XVIII, 2014-2015
+ University of Chicago
+ ©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
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Bauer_pp5-22.xml b/out/MSR_XVII_2013_Bauer_pp5-22.xml
new file mode 100644
index 0000000..3dcceba
--- /dev/null
+++ b/out/MSR_XVII_2013_Bauer_pp5-22.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ "Ayna hadha min al-Mutanabbi!" Toward an Aesthetics of Mamluk Literature
+ mamluk
+ Thomas Bauer
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_BookReviews_pp249-265.xml b/out/MSR_XVII_2013_BookReviews_pp249-265.xml
new file mode 100644
index 0000000..99925f4
--- /dev/null
+++ b/out/MSR_XVII_2013_BookReviews_pp249-265.xml
@@ -0,0 +1,17 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Ghersetti_pp72-99.xml b/out/MSR_XVII_2013_Ghersetti_pp72-99.xml
new file mode 100644
index 0000000..0808f81
--- /dev/null
+++ b/out/MSR_XVII_2013_Ghersetti_pp72-99.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ On Mamluk Anthologies Again: The Case of Jamal al-Din al-Watwat and his Ghurar...
+ mamluk
+ Antonella Ghersetti
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Herzog_pp100-129.xml b/out/MSR_XVII_2013_Herzog_pp100-129.xml
new file mode 100644
index 0000000..2e66b06
--- /dev/null
+++ b/out/MSR_XVII_2013_Herzog_pp100-129.xml
@@ -0,0 +1,13 @@
+
+
+ XVIII, 2013
+ University of Chicago
+ ©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
+ Composition and Worldview of some Bourgeois and Petit-Bourgeois Mamluk Adab-Encyclopedias
+ mamluk
+ Thomas Herzog
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Holtzman_pp155-198.xml b/out/MSR_XVII_2013_Holtzman_pp155-198.xml
new file mode 100644
index 0000000..574a7f5
--- /dev/null
+++ b/out/MSR_XVII_2013_Holtzman_pp155-198.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ Insult, Fury, and Frustration: The Martyrological Narrative of Ibn Qayyim al-Jawziyah's Al-Kafiyah al-Shafiyah
+ mamluk
+ Livnat Holtzman
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Homerin_pp130-154.xml b/out/MSR_XVII_2013_Homerin_pp130-154.xml
new file mode 100644
index 0000000..2df67e8
--- /dev/null
+++ b/out/MSR_XVII_2013_Homerin_pp130-154.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ "Recalling You, My Lord": 'A'ishah al-Ba'uniyah on Dhikr
+ mamluk
+ Th. Emil Homerin
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_McGregor_pp199-211.xml b/out/MSR_XVII_2013_McGregor_pp199-211.xml
new file mode 100644
index 0000000..fc37c41
--- /dev/null
+++ b/out/MSR_XVII_2013_McGregor_pp199-211.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ Notes on the Literature of Sufi Prayer Commentaries
+ mamluk
+ Richard McGregor
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Musawi_pp43-71.xml b/out/MSR_XVII_2013_Musawi_pp43-71.xml
new file mode 100644
index 0000000..ec26fee
--- /dev/null
+++ b/out/MSR_XVII_2013_Musawi_pp43-71.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ The Medieval Islamic Literary World-System: The Lexographic Turn
+ mamluk
+ Muhsin J. al-Musawi
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Ozkan_pp212-248.xml b/out/MSR_XVII_2013_Ozkan_pp212-248.xml
new file mode 100644
index 0000000..56b4146
--- /dev/null
+++ b/out/MSR_XVII_2013_Ozkan_pp212-248.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ The Drug Zajals in Ibrahim al-Mi'mar's Diwan
+ mamluk
+ Hakan Ozkan
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_Talib_pp23-42.xml b/out/MSR_XVII_2013_Talib_pp23-42.xml
new file mode 100644
index 0000000..3ae51ba
--- /dev/null
+++ b/out/MSR_XVII_2013_Talib_pp23-42.xml
@@ -0,0 +1,13 @@
+
+
+ XVII, 2013
+ University of Chicago
+ ©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
+ Woven Together as Though Randomly Strung: Variations in Naevi Poetry
+ mamluk
+ Adam Talib
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVII_2013_al-Rahim_pp1-4.xml b/out/MSR_XVII_2013_al-Rahim_pp1-4.xml
new file mode 100644
index 0000000..75a2e59
--- /dev/null
+++ b/out/MSR_XVII_2013_al-Rahim_pp1-4.xml
@@ -0,0 +1,13 @@
+
+
+ none
+ University of Chicago
+ ©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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_BookReviews.xml b/out/MSR_XVI_2012_BookReviews.xml
new file mode 100644
index 0000000..6535988
--- /dev/null
+++ b/out/MSR_XVI_2012_BookReviews.xml
@@ -0,0 +1,18 @@
+
+
+ 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
+ Martyn Smith
+ Li Guo
+ J. M. Rogers
+ Richard McGregor
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Frenkel_pp163-164.xml b/out/MSR_XVI_2012_Frenkel_pp163-164.xml
new file mode 100644
index 0000000..6320b9c
--- /dev/null
+++ b/out/MSR_XVI_2012_Frenkel_pp163-164.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ An Arabic History of the Byzantine Empire
+ mamluk
+ Yehoshua Frenkel
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Holtzman_pp1-54.xml b/out/MSR_XVI_2012_Holtzman_pp1-54.xml
new file mode 100644
index 0000000..bcfe72f
--- /dev/null
+++ b/out/MSR_XVI_2012_Holtzman_pp1-54.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ The Dhimmi's Question on Predetermination and the Ulama's Six Responses
+ mamluk
+ Livnat Holtzman
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Ibrahim_pp123-142.xml b/out/MSR_XVI_2012_Ibrahim_pp123-142.xml
new file mode 100644
index 0000000..f3e8927
--- /dev/null
+++ b/out/MSR_XVI_2012_Ibrahim_pp123-142.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ The 727/1327 Silk Weavers' Rebllion in Alexandria: Religious Xenophobia, Homophobia, or Economic Grievances
+ mamluk
+ Mahmood Ibrahim
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Rapoport_pp71-102.xml b/out/MSR_XVI_2012_Rapoport_pp71-102.xml
new file mode 100644
index 0000000..402bdfa
--- /dev/null
+++ b/out/MSR_XVI_2012_Rapoport_pp71-102.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ Royal Justice and Religious Law: Siyasah and Shari'ah under the Mamluks
+ mamluk
+ Yossef Rapoport
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Smith_pp143-161.xml b/out/MSR_XVI_2012_Smith_pp143-161.xml
new file mode 100644
index 0000000..e9f53d1
--- /dev/null
+++ b/out/MSR_XVI_2012_Smith_pp143-161.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ Finding Meaning in the City: al-Maqrizi's Use of Poetry in the Khitat
+ mamluk
+ Martyn Smith
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Tramontana_pp103-122.xml b/out/MSR_XVI_2012_Tramontana_pp103-122.xml
new file mode 100644
index 0000000..328ab32
--- /dev/null
+++ b/out/MSR_XVI_2012_Tramontana_pp103-122.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ Khubz as Iqta' in Four Authors from the Ayyubid and Early Mamluk Periods
+ mamluk
+ Felicita Tramontana
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XVI_2012_Yosef_pp55-69.xml b/out/MSR_XVI_2012_Yosef_pp55-69.xml
new file mode 100644
index 0000000..95d27cf
--- /dev/null
+++ b/out/MSR_XVI_2012_Yosef_pp55-69.xml
@@ -0,0 +1,13 @@
+
+
+ XVI, 2012
+ University of Chicago
+ ©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
+ Mamluks and Their Relatives in the Period of the Mamluk Sultanate (1250-1517)
+ mamluk
+ Koby Yosef
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_BookReviews.xml b/out/MSR_XV_2011_BookReviews.xml
new file mode 100644
index 0000000..566811b
--- /dev/null
+++ b/out/MSR_XV_2011_BookReviews.xml
@@ -0,0 +1,18 @@
+
+
+ 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
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_Broadbridge_pp1-18.xml b/out/MSR_XV_2011_Broadbridge_pp1-18.xml
new file mode 100644
index 0000000..30f5fc6
--- /dev/null
+++ b/out/MSR_XV_2011_Broadbridge_pp1-18.xml
@@ -0,0 +1,13 @@
+
+
+ XV, 2011
+ University of Chicago
+ ©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
+ Sending Home for Mom and Dad: The Extended Family Impulse in Mamluk Politics
+ mamluk
+ Anne F. Broadbridge
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_Levanoni_pp37-65.xml b/out/MSR_XV_2011_Levanoni_pp37-65.xml
new file mode 100644
index 0000000..b5c853d
--- /dev/null
+++ b/out/MSR_XV_2011_Levanoni_pp37-65.xml
@@ -0,0 +1,13 @@
+
+
+ XV, 2011
+ University of Chicago
+ ©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
+ The Halqah in the Mamluk Army
+ mamluk
+ Amalia Levanoni
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_Perho_pp19-35.xml b/out/MSR_XV_2011_Perho_pp19-35.xml
new file mode 100644
index 0000000..3195e3e
--- /dev/null
+++ b/out/MSR_XV_2011_Perho_pp19-35.xml
@@ -0,0 +1,13 @@
+
+
+ XV, 2011
+ University of Chicago
+ ©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
+ Climbing the Ladder: Social Mobility in the Mamluk Period
+ mamluk
+ Irmeli Perho
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_Petry_pp87-115.xml b/out/MSR_XV_2011_Petry_pp87-115.xml
new file mode 100644
index 0000000..7b486e9
--- /dev/null
+++ b/out/MSR_XV_2011_Petry_pp87-115.xml
@@ -0,0 +1,13 @@
+
+
+ XV, 2011
+ University of Chicago
+ ©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
+ The Politics of Insult
+ mamluk
+ Carl F. Petry
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_Tezcan_pp67-86.xml b/out/MSR_XV_2011_Tezcan_pp67-86.xml
new file mode 100644
index 0000000..fd2f912
--- /dev/null
+++ b/out/MSR_XV_2011_Tezcan_pp67-86.xml
@@ -0,0 +1,13 @@
+
+
+ XV, 2011
+ University of Chicago
+ ©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
+ Hanafism and the Turks in al-Tarasusi's Gift for the Turks (1352)
+ mamluk
+ Baki Tezcan
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml b/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml
new file mode 100644
index 0000000..fbbaf8d
--- /dev/null
+++ b/out/MSR_XV_2011_VanSteenbergen_pp117-152.xml
@@ -0,0 +1,13 @@
+
+
+ XV, 2011
+ University of Chicago
+ ©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
+ Yalbugha al-Khassaki and the Yalbughawiyah
+ mamluk
+ Jo Van Steenbergen
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MamlukStudiesReview_III_1999.xml b/out/MamlukStudiesReview_III_1999.xml
new file mode 100644
index 0000000..a60ad2a
--- /dev/null
+++ b/out/MamlukStudiesReview_III_1999.xml
@@ -0,0 +1,14 @@
+
+
+ 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
+
+
diff --git a/out/MamlukStudiesReview_II_1998_18MB.xml b/out/MamlukStudiesReview_II_1998_18MB.xml
new file mode 100644
index 0000000..3b9487a
--- /dev/null
+++ b/out/MamlukStudiesReview_II_1998_18MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_IV_2000_29MB.xml b/out/MamlukStudiesReview_IV_2000_29MB.xml
new file mode 100644
index 0000000..dc2e10c
--- /dev/null
+++ b/out/MamlukStudiesReview_IV_2000_29MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_IX-1_2005_33MB.xml b/out/MamlukStudiesReview_IX-1_2005_33MB.xml
new file mode 100644
index 0000000..f3f002d
--- /dev/null
+++ b/out/MamlukStudiesReview_IX-1_2005_33MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_IX-2_2005.xml b/out/MamlukStudiesReview_IX-2_2005.xml
new file mode 100644
index 0000000..d70baa9
--- /dev/null
+++ b/out/MamlukStudiesReview_IX-2_2005.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_I_1997.xml b/out/MamlukStudiesReview_I_1997.xml
new file mode 100644
index 0000000..1972ad7
--- /dev/null
+++ b/out/MamlukStudiesReview_I_1997.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_VII-1_2003.xml b/out/MamlukStudiesReview_VII-1_2003.xml
new file mode 100644
index 0000000..becf92f
--- /dev/null
+++ b/out/MamlukStudiesReview_VII-1_2003.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_VII-2_2003_13MB.xml b/out/MamlukStudiesReview_VII-2_2003_13MB.xml
new file mode 100644
index 0000000..258ec66
--- /dev/null
+++ b/out/MamlukStudiesReview_VII-2_2003_13MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_VIII-1_2004_33MB.xml b/out/MamlukStudiesReview_VIII-1_2004_33MB.xml
new file mode 100644
index 0000000..8a464d0
--- /dev/null
+++ b/out/MamlukStudiesReview_VIII-1_2004_33MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_VIII-2_2004_26MB.xml b/out/MamlukStudiesReview_VIII-2_2004_26MB.xml
new file mode 100644
index 0000000..253124e
--- /dev/null
+++ b/out/MamlukStudiesReview_VIII-2_2004_26MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_VI_2002_17MB.xml b/out/MamlukStudiesReview_VI_2002_17MB.xml
new file mode 100644
index 0000000..89e48b7
--- /dev/null
+++ b/out/MamlukStudiesReview_VI_2002_17MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_V_2001.xml b/out/MamlukStudiesReview_V_2001.xml
new file mode 100644
index 0000000..5c2c9d3
--- /dev/null
+++ b/out/MamlukStudiesReview_V_2001.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_X-1_2006.xml b/out/MamlukStudiesReview_X-1_2006.xml
new file mode 100644
index 0000000..a93935d
--- /dev/null
+++ b/out/MamlukStudiesReview_X-1_2006.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_X-2_2006_14MB.xml b/out/MamlukStudiesReview_X-2_2006_14MB.xml
new file mode 100644
index 0000000..41e106b
--- /dev/null
+++ b/out/MamlukStudiesReview_X-2_2006_14MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XI-1_2007.xml b/out/MamlukStudiesReview_XI-1_2007.xml
new file mode 100644
index 0000000..43eae89
--- /dev/null
+++ b/out/MamlukStudiesReview_XI-1_2007.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XI-2_2007_12MB.xml b/out/MamlukStudiesReview_XI-2_2007_12MB.xml
new file mode 100644
index 0000000..d741902
--- /dev/null
+++ b/out/MamlukStudiesReview_XI-2_2007_12MB.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XII-1_2008.xml b/out/MamlukStudiesReview_XII-1_2008.xml
new file mode 100644
index 0000000..951ca98
--- /dev/null
+++ b/out/MamlukStudiesReview_XII-1_2008.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XII-2_2008.xml b/out/MamlukStudiesReview_XII-2_2008.xml
new file mode 100644
index 0000000..2cf6b0a
--- /dev/null
+++ b/out/MamlukStudiesReview_XII-2_2008.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XIII-1_2009.xml b/out/MamlukStudiesReview_XIII-1_2009.xml
new file mode 100644
index 0000000..10546ac
--- /dev/null
+++ b/out/MamlukStudiesReview_XIII-1_2009.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XIII-2_2009.xml b/out/MamlukStudiesReview_XIII-2_2009.xml
new file mode 100644
index 0000000..190288a
--- /dev/null
+++ b/out/MamlukStudiesReview_XIII-2_2009.xml
@@ -0,0 +1,20 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XIV_2010.xml b/out/MamlukStudiesReview_XIV_2010.xml
new file mode 100644
index 0000000..a8f13a3
--- /dev/null
+++ b/out/MamlukStudiesReview_XIV_2010.xml
@@ -0,0 +1,20 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XIX_2016.xml b/out/MamlukStudiesReview_XIX_2016.xml
new file mode 100644
index 0000000..a1d6b69
--- /dev/null
+++ b/out/MamlukStudiesReview_XIX_2016.xml
@@ -0,0 +1,11 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XVIII_2014-15.xml b/out/MamlukStudiesReview_XVIII_2014-15.xml
new file mode 100644
index 0000000..d38b23e
--- /dev/null
+++ b/out/MamlukStudiesReview_XVIII_2014-15.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XVII_2013.xml b/out/MamlukStudiesReview_XVII_2013.xml
new file mode 100644
index 0000000..fd6ffda
--- /dev/null
+++ b/out/MamlukStudiesReview_XVII_2013.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+
diff --git a/out/MamlukStudiesReview_XVI_2012.xml b/out/MamlukStudiesReview_XVI_2012.xml
new file mode 100644
index 0000000..aafd8f2
--- /dev/null
+++ b/out/MamlukStudiesReview_XVI_2012.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+ none
+ Mamluk Studies Review XVI (2012)
+ mamluk
+ The Middle East Documentation Center (MEDOC) at The University of Chicago
+ http://mamluk.uchicago.edu/msr.html
+
diff --git a/out/MamlukStudiesReview_XV_2011.xml b/out/MamlukStudiesReview_XV_2011.xml
new file mode 100644
index 0000000..b083df8
--- /dev/null
+++ b/out/MamlukStudiesReview_XV_2011.xml
@@ -0,0 +1,13 @@
+
+
+ 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
+ none
+ Mamluk Studies Review XV (2011)
+ mamluk
+ The Middle East Documentation Center (MEDOC) at The University of Chicago
+ http://mamluk.uchicago.edu/msr.html
+