LiliElbe_EngagedLearners icon indicating copy to clipboard operation
LiliElbe_EngagedLearners copied to clipboard

1932-07-16HoyerSchumann

Open RJP43 opened this issue 4 years ago • 2 comments

Assigned To: Darcy

@cmccraw TEIheader needs to be revised

RJP43 avatar Feb 03 '20 06:02 RJP43

What needs to be revised in the TEIheader? I'm not quite sure what to add/fix.

darcybrady avatar Feb 05 '20 04:02 darcybrady

hey @darcybrady -- the teiHeader looks as if much of the metadata (links and description information within the teiHeader) still have the template information in it or just simply haven't been filled out. For example, notice how your very first element in the file:

<TEI xmlns="http://www.tei-c.org/ns/1.0" rendition=""
    xml:base="">

is missing the links to the HTML (in the rendition attribute) and XML (in the xml:base attribute). Check out our example files to see how those should be formatted. In addition to missing information, it looks like some of the template text has been erased that needs to be there in order for the correct metadata information to show up in the HTML view. For example:

<respStmt>
<resp>XML transformed into HTML <date>2019-10-29</date> by</resp>
<persName ref="">         </persName>
</respStmt>

The above section comes from your file, but as stated in the teiHeader template this <respStmt> should be left as in the template. See below:

<respStmt>
<resp>XML transformed into HTML <date><!-- exact transformation date generated during transformation; leave this one alone --></date> by</resp>
<persName ref="rjp">Rebecca J. Parker</persName>
</respStmt>

All of the other metadata information comes from the LEDA Metadata Spreadsheet. Simply look up the title of your file in the object column and then the rest of the columns provide the various details that need inserted in place of the xml comments included in the template. I hope this is clear enough, but if not no big deal a more experienced coder can help out or you and I can plan to meet after or right before the conference to handle any questions. @cmccraw might also have office hours in the next week where you two could schedule to meet and correct these issues.

RJP43 avatar Feb 07 '20 01:02 RJP43