Link Content to Pages and Databases
¶Introduction
This manual provides instructions for encoders, editors, and contributors working
on MoEML’s XML documents. Please do not hesitate to
contact the MoEML team for additional assistance.
Because MoEML’s practices are always being updated,
please refer back to this manual frequently.
MoEML uses links to connect strings of text to
different parts of the website. Links can also connect strings of text to
external web pages. Depending on what type of content the string of text
contains, different encoding practices are used.
¶Link to MoEML Webpages
The following section outlines how to encode internal links to (1) other documents
(2) different sections within the same document.
¶Link to Another Document
Link to another MoEML webpage using a mol:uri pointer and the page’s
@xml:id
as follows:
Consult <ref target="mol:editorial_style">Editorial Style</ref> for more
information.
A complete list of MoEML’s
@xml:id
s can be found on the XML
Identification List.
The above example links to the top of the referenced web page. To link to a specific
section
of a MoEML webpage, enter a
@target
value that contains a mol:uri pointer and the page’s @xml:id
followed by a number sign (#) and the @xml:id
attached to the <div>
in the document you want to link to. Generally speaking, the @xml:id
for a <div>
in a document will always consist of the document’s @xml:id
followed by an underscore character (_) and a word or phrase that describes the <div>
. For example, there is a <div>
in the Whitefriars Theatre encyclopedia article with the @xml:id
"WHIT17_managers"
. Link to this <div>
as follows:
As discussed in the <ref target="mol:WHIT17#WHIT17_managers">earlier section</ref><gap reason="editorial"/>
Some pages on the MoEML site are not derived from TEI
documents which have
@xml:id
attributes; they are generated by queries
running on the xml source which collect information from across the collection. Some
examples of such pages are the azindex.htm page and
the many table-of-content pages generated from the MoEML document
type taxonomy, such as mdtlist:EncyclopediaTopic.
It is incorrect to link to these pages using the mol:
protocol; instead, for the A-Z Index page, create a link like this:
<ref target="azindex.htm">A-Z Index</ref>
For the document type taxonomy pages, use the mdtlist:
protocol:
<ref target="mdtlist:mdtEncyclopediaTopic">Encyclopedia Topics</ref>
There is one additional way to link to taxonomy pages: by default, they
show all the documents in a category, but another variant shows instead
all the subcategories. For example,
<ref target="mdtlist:mdtEncyclopediaLocation_subcategories">Placeography</ref>
¶Link within the Same Document
As per usual, use a
<ref>
tag with a @target
element to link to different section within the document. The @target
value should consist of a number sign (#) followed by the <div>
’s @xml:id
("#xml:id"
). For example, if I wanted to encode a link to the Introduction of this page (@xml:id
="linking_intro"
), I would use the following code:
Here is a link to the <ref target="#linking_intro">introduction</ref>.
¶Link to External Web Pages
Link to an external web page thus:
Consult the <ref target="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/">TEI
Guidelines</ref> for more information.
Guidelines</ref> for more information.
¶Link to YouTube Videos
External YouTube videos render in a CSS
lightboxwithin the MoEML website. We link to YouTube videos using the
<media>
element. Consider, for instance, the following example from index.xml in which the encoder provides a link to Janelle Jenstad’s UVic Faces of Researchinterview on YouTube:
<p>
<media rend="youtubeEmbed" n="klkLh76fOc8" url="https://www.youtube.com/watch?v=klkLh76fOc8" mimeType="video/x-flv" width="560px" height="315px">
<desc><title level="m">MoEML</title> Director Janelle Jenstad introduces the project.</desc>
</media>
</p>
<media rend="youtubeEmbed" n="klkLh76fOc8" url="https://www.youtube.com/watch?v=klkLh76fOc8" mimeType="video/x-flv" width="560px" height="315px">
<desc><title level="m">MoEML</title> Director Janelle Jenstad introduces the project.</desc>
</media>
</p>
Note that the
<media>
element uses six attributes to define the video settings:
-
The
@rend
attribute will always have a value of"youtubeEmbed"
, which tells the XSLT that it needs to create a lightbox. -
The
@n
value contains the id of the video on YouTube. -
The
@url
value contains the url address of the video on YouTube. -
The
@mimeType
attribute will normally have a value of"video/x-flv"
, which specifies the proper multimedia internet mail extension (MIME) media type. As YouTube transitions from Flash to HTML5 video, this may change. -
The
@width
and@height
values for a YouTube video will normally be"560px"
and"315px"
respectively; these values come from YouTube’s instructions for embedding the video.
<desc>
element nested inside the <media>
element. Whatever text string is inside the <desc>
element renders as a link to the video. Because the text renders as a link, the text
string cannot contain any other links. Note, for instance, that, in the previous example,
Janelle Jenstad’s name is not linked to her entry in PERS1.xml.
¶Link to Audio Files
In order to link to an audio file in a born-digital or primary source document, the
file must first be added to the
db/data/binary_docsfolder in the SVN repository. Write a description of the audio and tag it using a
<ref>
element with a @target
attribute pointing to the audio file’s URL. For example, see how we link to the Smiths’
Song in Scott Trudell’s Sounds of Pageantryarticle:
<p><ref target="docs/plumly_smiths_song.mp3">Listen to the Smiths’ Song</ref>, read by <ref target="http://www.poets.org/poetsorg/poet/stanley-plumly">Stanley Plumly, poet laureate of the state of Maryland</ref>.</p>
Note that the
binary_docsfolder is represented as simply
docs/
in the URL path.
¶Encode Graphics
To include a graphic in a born-digital document on the site, first create the graphic
and save it
in the
graphicsfolder within the MoEML subversion repository. Make sure that the file has a sensible filename (no spaces, no capitals, no punctuation, etc.), then add and commit the file to SVN. Screenshots go in a subfolder in SVN called
graphics/screenshots.We use screenshots in our documentation to demonstrate encoding practices. Digital facsimiles of early books (of our copy of the 1633 Stow, for example) go in the
facsimilesfolder in SVN.
Once the file is available, you can refer to it in an XML file as follows:
<figure type="fullWidth">
<graphic url="graphics/your_graphic_name.jpg"/>
</figure>
<graphic url="graphics/your_graphic_name.jpg"/>
</figure>
The example above, with
@type
="fullWidth"
, will give you a graphic which takes up almost the full width of the page, leaving
a reasonable margin on either side. If your graphic is small or relatively insignificant,
you may choose to place it to the left or the right of the page, and let the following
text flow around it; to do this, use @type
="leftFloat"
or @type
="rightFloat"
on the <figure>
element.
In most cases, when you are inserting a graphic into a born-digital document, you
will want to supply a
caption for it. This is done by adding
a
<figDesc>
element containing the caption:
<figure type="leftFloat">
<graphic url="graphics/web_team_photos_2013_new/kim_mclean-fiander.jpg"/>
<figDesc><name ref="mol:MCFI1">Kim McLean Fiander</name> (Asst. Project Director &
Research Fellow)</figDesc>
</figure>
The <graphic url="graphics/web_team_photos_2013_new/kim_mclean-fiander.jpg"/>
<figDesc><name ref="mol:MCFI1">Kim McLean Fiander</name> (Asst. Project Director &
Research Fellow)</figDesc>
</figure>
<graphic>
element always comes first, followed by the <figDesc>
. In the output, the caption will
automatically be set to the same width as the graphic, so it wraps appropriately.
The
<figure>
element is also used in primary source document transcriptions, where it typically
does not
contain a <graphic>
element; instead, the <figDesc>
alone is used to provide a brief description of an ornamental
feature on a page.
There are three more ways in which you can use figures in
born-digital documents. If you have a collection of many images
and you would like to display them as a set, then you can use
this approach:
<div type="picGallery">
<figure>
<graphic url="graphics/pic1.png"/>
<figDesc>Pic 1...</figDesc>
</figure>
<figure>
<graphic url="graphics/pic2.png"/>
<figDesc>Pic 2...</figDesc>
</figure>
<figure>
<graphic url="graphics/pic3.png"/>
<figDesc>Pic 3...</figDesc>
</figure>
</div>
In this case, the <figure>
<graphic url="graphics/pic1.png"/>
<figDesc>Pic 1...</figDesc>
</figure>
<figure>
<graphic url="graphics/pic2.png"/>
<figDesc>Pic 2...</figDesc>
</figure>
<figure>
<graphic url="graphics/pic3.png"/>
<figDesc>Pic 3...</figDesc>
</figure>
</div>
<figure>
elements do not require the
@type
attribute. The collection of images with
captions will be laid out appropriately in a grid based on
the page width.
Also, there may be rare occasions when you need to bracket
together an image with a block of text which is too large to
be called a caption. In this case, you can use this structure:
<div type="picAndBlock">
<figure>
<graphic url="graphics/pic1.png"/>
<figDesc>Pic 1...</figDesc>
</figure>
<div>
<p>Para 1...</p>
<p>Para 2...</p>
</div>
</div>
This structure will place the image to the left, and the text
to the right. In contrast with the <figure>
<graphic url="graphics/pic1.png"/>
<figDesc>Pic 1...</figDesc>
</figure>
<div>
<p>Para 1...</p>
<p>Para 2...</p>
</div>
</div>
leftFloatapproach described above, in this case, the text will remain in a single block, rather than wrapping when it reaches the bottom of the image.
Finally, you may need to include a tiny image inline in
your text, when (for example) talking about a toolbar button
in Oxygen. This is the way to do that:
<figure type="icon">
<graphic url="graphics/run_transform_icon.png"/>
<figDesc>Apply Oxygen Transformation Scenario</figDesc>
</figure>
Here, the <graphic url="graphics/run_transform_icon.png"/>
<figDesc>Apply Oxygen Transformation Scenario</figDesc>
</figure>
<figDesc>
element will be used
to create the mouseover popup explanation.
¶Markup (Tag) and Pull Data from Databases
MoEML marks up all early modern London locations,
people, events, and livery companies, in addition to bibliographical
references. Each entry in these databases is assigned a unique
@xml:id
, which is used as the target in XML tags. For a complete list of all @xml:id
s in use by MoEML, refer to MoEML’s list of @xml:ids.
¶Link to Location Files
To mark up a string of text containing a location, simply create a
<ref>
link (as above) to that location’s encyclopedia page. Remember to use the
"mol:uri"
pointer to specify that the item is part of the MoEML project. For example,
The <ref target="mol:COCK5">Cockpit</ref>, also known as the <ref target="mol:COCK5">Phoenix</ref>, was an indoor commercial playhouse planned and built by the theatre entrepreneur
and actor Christopher Beeston.
Note that the definite article (i.e.,
the) is not included in the
<ref>
tag, even if the article is part of the authority name (e.g., the Swan).
If the place you need to link to does not yet exist in the project, and
you are unable to add a new location file when you need to, you can link
instead to the placeholder location
mol:LLLL1
, and then come
back to the problem later. When linking to the placeholder,
make sure you include a comment with full details of what needs to be done.
¶Link to People in PERS1.xml
To tag people, use the
<name>
element with a @ref
value of "mol:"
followed by the person’s @xml:id
, which
links to that person’s entry in the personography database. For example,
<name ref="mol:HENS1">Philip Henslowe</name>
It is not uncommon to come across literary persons who have similar roles, but are
distinct characters. For example, in Greek mythology, Chthoon is the personification of earth; in Roman mythology, Terra is the personification of earth. After properly tagging these characters following
the distinctions outlined in the Encode Persons page in Praxis, it may be necessary to add an editorial note in the literary text
that explains the use of different names for the same essential character.
If the person you need to link to does not yet appear in PERS1, and you are
unable to add an entry to PERS1 when you need to, you can link instead to
the placeholder entry
mol:PPPP1
, and then come back to the
problem later. When linking to the placeholder, make sure you include a
comment with full details of what needs to be done.
For instructions on linking to persons within an organization entry, see documentation
on
Orgography (ORGS1.xml).
¶Link to Reference Material in BIBL1.xml
To tag reference material in parentheses, use a
<ref>
element with a @type
value of "bibl"
and
a @target
value of "mol:"
followed by the source’s
@xml:id
, which links the string of text to the source’s entry
in the bibliography database. Note that the rendering system does not automatically
supply parentheses for in-text
references, so you will need to supply them yourself. Tag the entire parenthetical
reference (excluding the
parentheses themselves) with the <ref>
element. We only
tag BIBL.xml content when it is in the parenthetical documentation,
not in the main text. For example,
As Jean Howard has argued, <quote>early modern playwrights imaginatively transformed urban places
into settings for specific kinds of social
interaction</quote> (<ref type="bibl" target="mol:HOWA2">Howard 3</ref>).
If the the author being cited is mentioned in the sentence itself (as is the case
in the example above),
tag them with a into settings for specific kinds of social
interaction</quote> (<ref type="bibl" target="mol:HOWA2">Howard 3</ref>).
<name>
element and the @xml:id
associated with their PERS1.xml entry,
but only do so if they are historical.
According to <name ref="mol:STOW6">Stow</name>, <ref target="mol:MOOR1">Moorfields</ref> acquired its
name because of the <quote>moorish nature of that ground</quote> (<ref type="bibl" target="mol:STOW1">Stow 1: 33</ref>).
Do not tag contemporary authors. For more on tagging with <name>
elements, see linking to people in PERS1.xml.
If the bibliography item you need to link does not yet exist in BIBL1,
and you are unable to add a new entry when you need to, you can link
instead to the placeholder entry
mol:BBBB1
, and then
come back to the problem later. When linking to the placeholder,
make sure you include a comment with full details of what needs to be done.
¶Link to Two or More Works by the Same Author in BIBL1.xml
When citing two or more works by the same author in a document, include both the author’s
name and a short title for the cited monograph/article in the parenthetical citation.
Tag the citation as per usual, using the
<ref>
element with a @target
value containing a "mol:uri"
pointer followed by the source’s @xml:id
. Within the <ref>
tag, make sure to use the <title>
tag with a @level
value of either "m"
(for monograph) or "a"
(for article) to tag the monograph or article title . For example,
The Honest Whore plays, the first written by Middleton and Dekker, and the second
by Dekker alone, were initially played at the Fortune in the early Jacobean period,
but later revived at the Cockpit around 1635 (<ref type="bibl" target="mol:GURR8">Gurr, <title level="m">Shakespearean Stage</title> 292</ref>).
For more information about the
<title>
element, see documentation on using TEI to tag text styles.
¶Link to Webpages in BIBL1.xml
In most cases, cited websites will have only one entry in the BIBL1.xml database (i.e.,
individual parts/articles within websites are not given individual entries in BIBL1.xml).
When referring to
different parts or articles within a single website, parenthesize the website title
(or, in some instances, the surname of the website’s author) and the title of the
part/article. Link the website title (or author’s surname) to the BIBL1.xml entry
for the website and link the title of the part/article to the http:// address for
the part/article. For example,
Archaeological excavations have found evidence of rubbish pits likely associated with
the processing of animal carcasses for furs and hides (<ref type="bibl" target="mol:LAAR1"><title level="m">LAARC</title></ref> <ref target="http://archive.museumoflondon.org.uk/laarc/catalogue/siteinfo.asp?id=19649&code=FEU08&terms=Fenchurch&search=simple&go=Go"><title level="a">Site Record FEU008</title></ref>).
¶Link to Cited MoEML Content
Referencing a MoEML page as a bibliographic item within a MoEML page is distinct from simply linking to a MoEML page. To cite a MoEML page as a bibliographic item, use the
<ref>
element with a @type
value of "mol:bibl"
. Most often, this practice will be used to cite MoEML’s editions of library texts or encyclopedia articles. Cite these pages as if they
were a standard part/article from a website. For example,
<ref target="mol:SHOR1">Shoreditch</ref> followed Roman roads near Kingsland Road, a continuation of Ermine Street, and <ref target="mol:OLDS1">Old Street</ref>, a continuation of <ref target="mol:WATL1">Waitling</ref> or <ref target="mol:WATL1">Watling Street</ref> (<ref type="mol:bibl" target="mol:SHOR2">Campbell</ref>).
The citation will appear in a pop-up and in the list of references at the bottom of
the page. The citation is generated dynamically through the metadata (particularly
the
<respStmt>
s) in the <teiHeader>
. See Create a MoEML <teiHeader>
for more information regarding document metadata.
¶Link to ODNB Articles in BIBL1.xml
The practice of citing websites, not parts/articles, does not apply to Oxford Dictionary of National Bibliography (ODNB) articles. Individual ODNB articles are given individual entries in BIBL1.xml. When citing an ODNB article, parenthesize only the author’s surname. Link the author’s surname to the
BIBL1.xml entry for their article using the
<ref>
element with a @type
value of "bibl"
and a @target
value containing a mol:uri pointing to the author’s article in BIBL1. For example,
A memorial near his grave, paid for by his wife, still exists today (<ref type="bibl" target="mol:BEER3">Beer</ref>).
¶Link to BHO Monographs in BIBL1.xml
The practice of citing websites, not parts/articles, also does not apply to British History Online (BHO) editions of monographs such as Stow (1603) and Harben (1918). Like ODNB articles, BHO editions are given individual entries in BIBL1.xml. When citing a BHO edition in text, parenthesize the author’s surname, a semicolon, and
BHO.Link the author’s surname to the BIBL1.xml entry for the BHO edition of their monograph and link the
BHOacronym to the url for the webpage containing the quote or source. For example,
The Wrestlers was a house in Bishopsgate Ward located on the north side of Camomile
Street, near the city wall and Bishopsgate (<ref type="bibl" target="mol:STOW15">Stow</ref>; <ref target="http://www.british-history.ac.uk/report.aspx?compid=60032">BHO</ref>).
¶Encode Block Quotations
Block quotes are encoded differently than in-line quotations. To encode a block quote,
nest a
<quote>
element and a <bibl>
element inside a <cit>
element. Use the <quote>
element to tag the text being quoted by the author; use the <bibl>
element to tag the parenthetical citation associated with it. The parenthetical citation
should also include a <ref>
element that links to an entry in BIBL1.xml or, in the cases listed above, to an
outside URL. Note that the parentheses around the citation will render automatically.
The following example from CHAR3.xml shows how to encode a block quotation:
<cit>
<quote>This Song being ended, they went to revelling till ten of the clock the next day, by which time, they having ſatiſfied themselves with chamber exerciſe, they fetcht a walk towards <ref target="mol:SMIT1">Smithfield</ref>, and went into <ref target="mol:CHAR3">Charter-houſe lane</ref>, where they had a leſſon played on the Organs, danced mixed dances <gap reason="editorial"/> After this, ſome of the creatures went into rooms apart to milk and fodder; and others (whose chiefeſt pleasure was in drinking) ſung [a] catch.</quote>
<bibl><ref type="bibl" target="mol:READ3">Reading sig. A3v</ref></bibl></cit>
<quote>This Song being ended, they went to revelling till ten of the clock the next day, by which time, they having ſatiſfied themselves with chamber exerciſe, they fetcht a walk towards <ref target="mol:SMIT1">Smithfield</ref>, and went into <ref target="mol:CHAR3">Charter-houſe lane</ref>, where they had a leſſon played on the Organs, danced mixed dances <gap reason="editorial"/> After this, ſome of the creatures went into rooms apart to milk and fodder; and others (whose chiefeſt pleasure was in drinking) ſung [a] catch.</quote>
<bibl><ref type="bibl" target="mol:READ3">Reading sig. A3v</ref></bibl></cit>
When rendered, the previous code generates the following block quote:
This Song being ended, they went to revelling till ten of the clock the next day, by which time, they having ſatiſfied themselves with chamber exerciſe, they fetcht a walk towards Smithfield, and went into Charter-houſe lane, where they had a leſſon played on the Organs, danced mixed dances Gap in transcription. Reason: Editorial omission for reasons of length or relevance. Use only in quotations in born-digital documents.[…] After this, ſome of the creatures went into rooms apart to milk and fodder; and others (whose chiefeſt pleasure was in drinking) ſung [a] catch. (Reading sig. A3v)
¶More Information
For more information about MoEML’s in-text citation practices, see documentation on styling parenthetical citations.
For information about how to encode reference material in the project’s bibliography,
see documentation on the BIBL1.xml database.
¶Link to Glossary Terms in GLOSS1.xml
To link a term somewhere on the website to its corresponding entry in the
GLOSS1.xml
database, tag it with a <term>
element and a
@corresp
attribute containing a value of "molgls:"
and then the
term’s @xml:id
. For example,
<term corresp="molgls:LIVE101">livery company</term>
If the term does not yet have a database entry, create one or contact the MoEML team.
¶Link to Organizations in ORGS1.xml
To tag a string of text referencing an organization, use the
<name>
element with a @type
value of "org"
and a @ref
value of "mol:"
followed by the organization’s @xml:id
. This process links the string of text to the organization’s entry in the orgography
database. For example,
the <name type="org" ref="mol:KIME1">King’s Men</name>
Note that the definite article (i.e.,
the) is not included in the
<ref>
tag.
If the organization you need to link to does not yet exist in ORGS1, and
you are unable to add a new entry when you need to, you can link instead
to the placeholder entry
mol:OOOO1
, and then come back to
the problem later. When linking to the placeholder, make sure you include
a comment with full details of what needs to be done.
¶Link to Related Documents in LINKS1.xml
Although individual documents contain lists of
related documentswhen rendered on the live site, links between related documents are encoded wholly inside the LINKS1.xml database and require no input in individual documents. For further information, see documentation regarding how to use the LINKS1.xml database.
References
-
Citation
British History Online. IHR. http://www.british-history.ac.uk/.This item is cited in the following documents:
-
Citation
Harben, Henry A. A Dictionary of London. London: Herbert Jenkins, 1918.This item is cited in the following documents:
-
Citation
ODNB. The Oxford Dictionary of National Biography. Ed. Lawrence Goldman. Oxford UP. http://www.oxforddnb.com/. [The ODNB is a subscription database. Most university and college institutions will have a subscription.] -
Citation
Reading, John. The Ranters Ranting. London: Printed by B. Alsop, 1650. Wing R450. Reprint. EEBO. Web.This item is cited in the following documents:
-
Citation
Stow, John. A Survey of London. Reprinted from the Text of 1603. Ed. Charles Lethbridge Kingsford. 2 vols. Oxford: Clarendon, 1908. Remediated by British History Online. [Kingsford edition, courtesy of The Centre for Metropolitan History. Articles written 2011 or later cite from this searchable transcription.]This item is cited in the following documents:
Cite this page
MLA citation
Link Content to Pages and Databases.The Map of Early Modern London, edited by , U of Victoria, 26 Jun. 2020, mapoflondon.uvic.ca/linking.htm.
Chicago citation
Link Content to Pages and Databases.The Map of Early Modern London. Ed. . Victoria: University of Victoria. Accessed June 26, 2020. https://mapoflondon.uvic.ca/linking.htm.
APA citation
The Map of Early Modern London. Victoria: University of Victoria. Retrieved from https://mapoflondon.uvic.ca/linking.htm.
, , , & 2020. Link Content to Pages and Databases. In (Ed), RIS file (for RefMan, EndNote etc.)
Provider: University of Victoria Database: The Map of Early Modern London Content: text/plain; charset="utf-8" TY - ELEC A1 - Landels-Gruenewald, Tye A1 - Holmes, Martin A1 - Butt, Cameron A1 - Jenstad, Janelle ED - Jenstad, Janelle T1 - Link Content to Pages and Databases T2 - The Map of Early Modern London PY - 2020 DA - 2020/06/26 CY - Victoria PB - University of Victoria LA - English UR - https://mapoflondon.uvic.ca/linking.htm UR - https://mapoflondon.uvic.ca/xml/standalone/linking.xml ER -
RefWorks
RT Web Page SR Electronic(1) A1 Landels-Gruenewald, Tye A1 Holmes, Martin A1 Butt, Cameron A1 Jenstad, Janelle A6 Jenstad, Janelle T1 Link Content to Pages and Databases T2 The Map of Early Modern London WP 2020 FD 2020/06/26 RD 2020/06/26 PP Victoria PB University of Victoria LA English OL English LK https://mapoflondon.uvic.ca/linking.htm
TEI citation
<bibl type="mla"><author><name ref="#LAND2"><surname>Landels-Gruenewald</surname>,
<forename>Tye</forename></name></author>, <author><name ref="#HOLM3"><forename>Martin</forename>
<forename>D.</forename> <surname>Holmes</surname></name></author>, <author><name ref="#BUTT1"><forename>Cameron</forename>
<surname>Butt</surname></name></author>, and <author><name ref="#JENS1"><forename>Janelle</forename>
<surname>Jenstad</surname></name></author>. <title level="a">Link Content to Pages
and Databases</title>. <title level="m">The Map of Early Modern London</title>, edited
by <editor><name ref="#JENS1"><forename>Janelle</forename> <surname>Jenstad</surname></name></editor>,
<publisher>U of Victoria</publisher>, <date when="2020-06-26">26 Jun. 2020</date>,
<ref target="https://mapoflondon.uvic.ca/linking.htm">mapoflondon.uvic.ca/linking.htm</ref>.</bibl>
Personography
-
Tracey El Hajj
TEH
Junior Programmer, 2018-present. Tracey is a PhD candidate in the English Department at the University of Victoria. Her research focuses on Critical Technical Practice, more specifically Algorhythmics. She is interested in how technologies communicate without humans, affecting social and cultural environments in complex ways.Roles played in the project
-
Author
-
Junior Programmer
-
Revising Author
Contributions by this author
Tracey El Hajj is a member of the following organizations and/or groups:
Tracey El Hajj is mentioned in the following documents:
-
-
Carly Cumpstone
CC
Research Assistant, 2018. Carly was a graduate student in the Department of English at the University of Victoria. Her primary research interests included early modern literature, specifically drama and performance. She had a special interest in contemporary adaptations of early modern drama, especially the portrayal of onstage violence.Roles played in the project
-
Encoder
-
Geo-Coordinate Researcher
-
Researcher
Carly Cumpstone is a member of the following organizations and/or groups:
Carly Cumpstone is mentioned in the following documents:
-
-
Joey Takeda
JT
Programmer, 2018-present. Junior Programmer, 2015-2017. Research Assistant, 2014-2017. Joey Takeda was a graduate student at the University of British Columbia in the Department of English (Science and Technology research stream). He completed his BA honours in English (with a minor in Women’s Studies) at the University of Victoria in 2016. His primary research interests included diasporic and indigenous Canadian and American literature, critical theory, cultural studies, and the digital humanities.Roles played in the project
-
Abstract Author
-
Author
-
Author of Abstract
-
Author of Introduction
-
Author of Stub
-
CSS Editor
-
Compiler
-
Conceptor
-
Copy Editor
-
Copy Editor and Revisor
-
Data Manager
-
Date Encoder
-
Editor
-
Encoder
-
Encoder (Bibliography)
-
Geographic Information Specialist
-
Geographic Information Specialist (Agas)
-
Junior Programmer
-
Markup Editor
-
Metadata Co-Architect
-
MoEML Encoder
-
MoEML Transcriber
-
Post-conversion processing and markup correction
-
Programmer
-
Proofreader
-
Researcher
-
Second Author
-
Toponymist
-
Transcriber
-
Transcription Editor
Contributions by this author
Joey Takeda is a member of the following organizations and/or groups:
Joey Takeda is mentioned in the following documents:
-
-
Tye Landels-Gruenewald
TLG
Data Manager, 2015-2016. Research Assistant, 2013-2015. Tye completed his undergraduate honours degree in English at the University of Victoria in 2015.Roles played in the project
-
Author
-
Author of Term Descriptions
-
CSS Editor
-
Compiler
-
Conceptor
-
Copy Editor
-
Data Manager
-
Editor
-
Encoder
-
Geographic Information Specialist
-
Markup Editor
-
Metadata Architect
-
MoEML Researcher
-
Name Encoder
-
Proofreader
-
Researcher
-
Toponymist
-
Transcriber
Contributions by this author
Tye Landels-Gruenewald is a member of the following organizations and/or groups:
Tye Landels-Gruenewald is mentioned in the following documents:
-
-
Cameron Butt
CB
Research Assistant, 2012–2013. Cameron Butt completed his undergraduate honours degree in English at the University of Victoria in 2013. He minored in French and has a keen interest in Shakespeare, film, media studies, popular culture, and the geohumanities.Roles played in the project
-
Author
-
CSS Editor
-
Conceptor
-
Contributing Author
-
Copy Editor
-
Creator
-
Data Manager
-
Encoder
-
Markup Editor
-
Metadata Architect
-
Proofreader
-
Researcher
-
Transcriber
Contributions by this author
Cameron Butt is a member of the following organizations and/or groups:
Cameron Butt is mentioned in the following documents:
-
-
Kim McLean-Fiander
KMF
Director of Pedagogy and Outreach, 2015–present. Associate Project Director, 2015–present. Assistant Project Director, 2013-2014. MoEML Research Fellow, 2013. Kim McLean-Fiander comes to The Map of Early Modern London from the Cultures of Knowledge digital humanities project at the University of Oxford, where she was the editor of Early Modern Letters Online, an open-access union catalogue and editorial interface for correspondence from the sixteenth to eighteenth centuries. She is currently Co-Director of a sister project to EMLO called Women’s Early Modern Letters Online (WEMLO). In the past, she held an internship with the curator of manuscripts at the Folger Shakespeare Library, completed a doctorate at Oxford on paratext and early modern women writers, and worked a number of years for the Bodleian Libraries and as a freelance editor. She has a passion for rare books and manuscripts as social and material artifacts, and is interested in the development of digital resources that will improve access to these materials while ensuring their ongoing preservation and conservation. An avid traveler, Kim has always loved both London and maps, and so is particularly delighted to be able to bring her early modern scholarly expertise to bear on the MoEML project.Roles played in the project
-
Associate Project Director
-
Author
-
Author of MoEML Introduction
-
CSS Editor
-
Compiler
-
Contributor
-
Copy Editor
-
Data Contributor
-
Data Manager
-
Director of Pedagogy and Outreach
-
Editor
-
Encoder
-
Encoder (People)
-
Geographic Information Specialist
-
JCURA Co-Supervisor
-
Managing Editor
-
Markup Editor
-
Metadata Architect
-
Metadata Co-Architect
-
MoEML Research Fellow
-
MoEML Transcriber
-
Proofreader
-
Second Author
-
Secondary Author
-
Secondary Editor
-
Toponymist
-
Vetter
Contributions by this author
Kim McLean-Fiander is a member of the following organizations and/or groups:
Kim McLean-Fiander is mentioned in the following documents:
-
-
Janelle Jenstad
JJ
Janelle Jenstad is Associate Professor of English at the University of Victoria, Director of The Map of Early Modern London, and PI of Linked Early Modern Drama Online. She has taught at Queen’s University, the Summer Academy at the Stratford Festival, the University of Windsor, and the University of Victoria. With Jennifer Roberts-Smith and Mark Kaethler, she co-edited Shakespeare’s Language in Digital Media (Routledge). She has prepared a documentary edition of John Stow’s A Survey of London (1598 text) for MoEML and is currently editing The Merchant of Venice (with Stephen Wittek) and Heywood’s 2 If You Know Not Me You Know Nobody for DRE. Her articles have appeared in Digital Humanities Quarterly, Renaissance and Reformation,Journal of Medieval and Early Modern Studies, Early Modern Literary Studies, Elizabethan Theatre, Shakespeare Bulletin: A Journal of Performance Criticism, and The Silver Society Journal. Her book chapters have appeared (or will appear) in Institutional Culture in Early Modern Society (Brill, 2004), Shakespeare, Language and the Stage, The Fifth Wall: Approaches to Shakespeare from Criticism, Performance and Theatre Studies (Arden/Thomson Learning, 2005), Approaches to Teaching Othello (Modern Language Association, 2005), Performing Maternity in Early Modern England (Ashgate, 2007), New Directions in the Geohumanities: Art, Text, and History at the Edge of Place (Routledge, 2011), Early Modern Studies and the Digital Turn (Iter, 2016), Teaching Early Modern English Literature from the Archives (MLA, 2015), Placing Names: Enriching and Integrating Gazetteers (Indiana, 2016), Making Things and Drawing Boundaries (Minnesota, 2017), and Rethinking Shakespeare’s Source Study: Audiences, Authors, and Digital Technologies (Routledge, 2018).Roles played in the project
-
Annotator
-
Author
-
Author of Abstract
-
Author of Stub
-
Author of Term Descriptions
-
Author of Textual Introduction
-
Compiler
-
Conceptor
-
Copy Editor
-
Copyeditor
-
Course Instructor
-
Course Supervisor
-
Course supervisor
-
Data Manager
-
Editor
-
Encoder
-
Encoder (Structure and Toponyms)
-
Final Markup Editor
-
GIS Specialist
-
Geographic Information Specialist
-
Geographic Information Specialist (Modern)
-
Geographical Information Specialist
-
JCURA Co-Supervisor
-
Main Transcriber
-
Markup Editor
-
Metadata Co-Architect
-
MoEML Project Director
-
MoEML Transcriber
-
Name Encoder
-
Peer Reviewer
-
Primary Author
-
Project Director
-
Proofreader
-
Researcher
-
Reviser
-
Revising Author
-
Second Author
-
Second Encoder
-
Toponymist
-
Transcriber
-
Transcription Proofreader
-
Vetter
Contributions by this author
Janelle Jenstad is a member of the following organizations and/or groups:
Janelle Jenstad is mentioned in the following documents:
Janelle Jenstad authored or edited the following items in MoEML’s bibliography:
-
Jenstad, Janelle.
Building a Gazetteer for Early Modern London, 1550-1650.
Placing Names. Ed. Merrick Lex Berman, Ruth Mostern, and Humphrey Southall. Bloomington and Indianapolis: Indiana UP, 2016. 129-145. -
Jenstad, Janelle.
The Burse and the Merchant’s Purse: Coin, Credit, and the Nation in Heywood’s 2 If You Know Not Me You Know Nobody.
The Elizabethan Theatre XV. Ed. C.E. McGee and A.L. Magnusson. Toronto: P.D. Meany, 2002. 181–202. Print. -
Jenstad, Janelle.
Early Modern Literary Studies 8.2 (2002): 5.1–26..The City Cannot Hold You
: Social Conversion in the Goldsmith’s Shop. -
Jenstad, Janelle.
The Silver Society Journal 10 (1998): 40–43.The Gouldesmythes Storehowse
: Early Evidence for Specialisation. -
Jenstad, Janelle.
Lying-in Like a Countess: The Lisle Letters, the Cecil Family, and A Chaste Maid in Cheapside.
Journal of Medieval and Early Modern Studies 34 (2004): 373–403. doi:10.1215/10829636–34–2–373. -
Jenstad, Janelle.
Public Glory, Private Gilt: The Goldsmiths’ Company and the Spectacle of Punishment.
Institutional Culture in Early Modern Society. Ed. Anne Goldgar and Robert Frost. Leiden: Brill, 2004. 191–217. Print. -
Jenstad, Janelle.
Smock Secrets: Birth and Women’s Mysteries on the Early Modern Stage.
Performing Maternity in Early Modern England. Ed. Katherine Moncrief and Kathryn McPherson. Aldershot: Ashgate, 2007. 87–99. Print. -
Jenstad, Janelle.
Using Early Modern Maps in Literary Studies: Views and Caveats from London.
GeoHumanities: Art, History, Text at the Edge of Place. Ed. Michael Dear, James Ketchum, Sarah Luria, and Doug Richardson. London: Routledge, 2011. Print. -
Jenstad, Janelle.
Versioning John Stow’s A Survey of London, or, What’s New in 1618 and 1633?.
Janelle Jenstad Blog. https://janellejenstad.com/2013/03/20/versioning-john-stows-a-survey-of-london-or-whats-new-in-1618-and-1633/. -
Shakespeare, William. The Merchant of Venice. Ed. Janelle Jenstad. Internet Shakespeare Editions. Open.
-
Stow, John. A SVRVAY OF LONDON. Contayning the Originall, Antiquity, Increase, Moderne estate, and description of that Citie, written in the yeare 1598. by Iohn Stow Citizen of London. Also an Apologie (or defence) against the opinion of some men, concerning that Citie, the greatnesse thereof. With an Appendix, containing in Latine, Libellum de situ & nobilitate Londini: written by William Fitzstephen, in the raigne of Henry the second. Ed. Janelle Jenstad and the MoEML Team. MoEML. Transcribed. Web.
-
-
Scott Trudell
ST
Scott A. Trudell is Assistant Professor of English at the University of Maryland, College Park, where his research and teaching focus on early modern literature, media theory and music. In addition to his current book project about song and mediation from Sidney and Shakespeare to Jonson and Milton, he has research interests in gender studies, digital humanities, pageantry and itinerant theatricality. His work has been published in Shakespeare Quarterly, Studies in Philology and edited collections. See Trudell’s profile at the University of Maryland and his professional website.Roles played in the project
-
Author
Contributions by this author
Scott Trudell is mentioned in the following documents:
-
-
Martin D. Holmes
MDH
Programmer at the University of Victoria Humanities Computing and Media Centre (HCMC). Martin ported the MOL project from its original PHP incarnation to a pure eXist database implementation in the fall of 2011. Since then, he has been lead programmer on the project and has also been responsible for maintaining the project schemas. He was a co-applicant on MoEML’s 2012 SSHRC Insight Grant.Roles played in the project
-
Abstract Author
-
Author
-
Author of abstract
-
Conceptor
-
Encoder
-
Markup editor
-
Name Encoder
-
Post-conversion and Markup Editor
-
Post-conversion processing and markup correction
-
Programmer
-
Proofreader
-
Researcher
Contributions by this author
Martin D. Holmes is a member of the following organizations and/or groups:
Martin D. Holmes is mentioned in the following documents:
-
-
Terra is mentioned in the following documents:
-
Chthoon
Personification of the earth. Appears as an allegorical character in mayoral shows.Chthoon is mentioned in the following documents:
Locations
-
The Swan
The Swan was the second of the Bankside theatres. It was located at Paris Garden. It was in use from 1595 and possibly staged some of the plays of William Shakespeare (SHaLT).The Swan is mentioned in the following documents:
-
Smithfield
Smithfield was an open, grassy area located outside the Wall. Because of its location close to the city centre, Smithfield was used as a site for markets, tournaments, and public executions. From 1123 to 1855, the Bartholomew’s Fair took place at Smithfield (Weinreb, Hibbert, Keay, and Keay 842).Smithfield is mentioned in the following documents:
-
Charterhouse Lane
Charterhouse Lane was a narrow road that ran north-south between the London Charterhouse and St. John’s Street. The street earned its name due to its proximity to the London Charterhouse, which housed Carthusian monks. Following the dissolution of London monasteries between 1536 and 1541, Charterhouse Lane became a well known and documented site of poverty, crime, and drinking. After a series of demolitions in the eighteenth and nineteenth centuries, Charterhouse Lane was restructured as part of the modern-day Charterhouse Street.Charterhouse Lane is mentioned in the following documents: