* Copyright (C) 1995-2007, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: marcdisp.c,v 1.43 2007-01-06 16:08:04 adam Exp $
+ * $Id: marcdisp.c,v 1.44 2007-01-18 14:45:05 adam Exp $
*/
/**
return mt->nmem;
}
+static void marc_iconv_reset(yaz_marc_t mt, WRBUF wr)
+{
+ if (mt->iconv_cd)
+ {
+#if 1
+ char outbuf[12];
+ size_t outbytesleft = sizeof(outbuf);
+ char *outp = outbuf;
+ size_t r = yaz_iconv(mt->iconv_cd, 0, 0, &outp, &outbytesleft);
+ if (r != (size_t) (-1))
+ wrbuf_write(wr, outbuf, outp - outbuf);
+#else
+ int pos = wr->pos;
+ wrbuf_iconv_puts(wr, mt->iconv_cd, " ");
+ if (pos != wr->pos)
+ wr->pos--;
+ yaz_iconv(mt->iconv_cd, 0, 0, 0, 0);
+#endif
+ }
+}
+
static int marc_exec_leader(const char *leader_spec, char *leader,
size_t size);
wrbuf_iconv_puts(wr, mt->iconv_cd, " ");
wrbuf_iconv_puts(wr, mt->iconv_cd,
s->code_data + using_code_len);
- wrbuf_iconv_puts(wr, mt->iconv_cd, " ");
- wr->pos--;
+ marc_iconv_reset(mt, wr);
}
wrbuf_puts (wr, mt->endline_str);
break;
wrbuf_printf(wr, "%s", n->u.controlfield.tag);
wrbuf_iconv_puts(wr, mt->iconv_cd, " ");
wrbuf_iconv_puts(wr, mt->iconv_cd, n->u.controlfield.data);
- wrbuf_iconv_puts(wr, mt->iconv_cd, " ");
- wr->pos--;
+ marc_iconv_reset(mt, wr);
wrbuf_puts (wr, mt->endline_str);
break;
case YAZ_MARC_COMMENT:
wrbuf_iconv_write_cdata(wr, mt->iconv_cd,
s->code_data + using_code_len,
strlen(s->code_data + using_code_len));
+ marc_iconv_reset(mt, wr);
wrbuf_iconv_puts(wr, mt->iconv_cd, "</subfield>");
wrbuf_puts(wr, "\n");
}
strlen(n->u.controlfield.tag));
wrbuf_iconv_puts(wr, mt->iconv_cd, "\">");
wrbuf_iconv_puts(wr, mt->iconv_cd, n->u.controlfield.data);
+
+ marc_iconv_reset(mt, wr);
wrbuf_iconv_puts(wr, mt->iconv_cd, "</controlfield>");
wrbuf_puts(wr, "\n");
break;
wrbuf_rewind(wr_cdata);
wrbuf_iconv_puts(wr_cdata, mt->iconv_cd,
s->code_data + using_code_len);
-
+ marc_iconv_reset(mt, wr_cdata);
ptr_subfield = xmlNewTextChild(
ptr, ns_record,
BAD_CAST "subfield", BAD_CAST wrbuf_cstr(wr_cdata));
case YAZ_MARC_CONTROLFIELD:
wrbuf_rewind(wr_cdata);
wrbuf_iconv_puts(wr_cdata, mt->iconv_cd, n->u.controlfield.data);
-
+ marc_iconv_reset(mt, wr_cdata);
+
ptr = xmlNewTextChild(record_ptr, ns_record,
BAD_CAST "controlfield",
BAD_CAST wrbuf_cstr(wr_cdata));
/* write dummy IDFS + content */
wrbuf_iconv_putchar(wr_data_tmp, mt->iconv_cd, ' ');
wrbuf_iconv_puts(wr_data_tmp, mt->iconv_cd, s->code_data);
+ marc_iconv_reset(mt, wr_data_tmp);
}
/* write dummy FS (makes MARC-8 to become ASCII) */
wrbuf_iconv_putchar(wr_data_tmp, mt->iconv_cd, ' ');
wrbuf_rewind(wr_data_tmp);
wrbuf_iconv_puts(wr_data_tmp, mt->iconv_cd,
n->u.controlfield.data);
+ marc_iconv_reset(mt, wr_data_tmp);
wrbuf_iconv_putchar(wr_data_tmp, mt->iconv_cd, ' ');/* field sep */
data_length += wrbuf_len(wr_data_tmp);
break;
{
wrbuf_putc(wr, ISO2709_IDFS);
wrbuf_iconv_puts(wr, mt->iconv_cd, s->code_data);
- /* write dummy blank - makes MARC-8 to become ASCII */
- wrbuf_iconv_putchar(wr, mt->iconv_cd, ' ');
- wr->pos--;
+ marc_iconv_reset(mt, wr);
}
wrbuf_putc(wr, ISO2709_FS);
break;
case YAZ_MARC_CONTROLFIELD:
wrbuf_iconv_puts(wr, mt->iconv_cd, n->u.controlfield.data);
- /* write dummy blank - makes MARC-8 to become ASCII */
- wrbuf_iconv_putchar(wr, mt->iconv_cd, ' ');
- wr->pos--;
+ marc_iconv_reset(mt, wr);
wrbuf_putc(wr, ISO2709_FS);
break;
case YAZ_MARC_COMMENT:
* Copyright (C) 1995-2007, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: siconv.c,v 1.32 2007-01-03 08:42:15 adam Exp $
+ * $Id: siconv.c,v 1.33 2007-01-18 14:45:05 adam Exp $
*/
/**
* \file siconv.c
size_t (*write_handle)(yaz_iconv_t cd, unsigned long x,
char **outbuf, size_t *outbytesleft,
int last);
+ size_t (*flush_handle)(yaz_iconv_t cd,
+ char **outbuf, size_t *outbytesleft);
int marc8_esc_mode;
int comb_offset;
return 0;
}
+static size_t yaz_flush_marc8(yaz_iconv_t cd,
+ char **outbuf, size_t *outbytesleft)
+{
+ if (strcmp(cd->write_marc8_page_chr, "\033(B"))
+ {
+ if (*outbytesleft < 3)
+ {
+ cd->my_errno = YAZ_ICONV_E2BIG;
+ return (size_t) (-1);
+ }
+ memcpy(*outbuf, "\033(B", 3);
+ (*outbuf) += 3;
+ *outbytesleft -= 3;
+ }
+ return 0;
+}
+
static size_t yaz_write_marc8(yaz_iconv_t cd, unsigned long x,
char **outbuf, size_t *outbytesleft,
int last)
cd->write_handle = 0;
cd->read_handle = 0;
cd->init_handle = 0;
+ cd->flush_handle = 0;
cd->my_errno = YAZ_ICONV_UNKNOWN;
/* a useful hack: if fromcode has leading @,
else if (!yaz_matchstr(tocode, "UCS4LE"))
cd->write_handle = yaz_write_UCS4LE;
else if (!yaz_matchstr(tocode, "MARC8"))
+ {
cd->write_handle = yaz_write_marc8;
+ cd->flush_handle = yaz_flush_marc8;
+ }
else if (!yaz_matchstr(tocode, "MARC8s"))
+ {
cd->write_handle = yaz_write_marc8;
+ cd->flush_handle = yaz_flush_marc8;
+ }
#if HAVE_WCHAR_H
else if (!yaz_matchstr(tocode, "WCHAR_T"))
cd->write_handle = yaz_write_wchar_t;
size_t yaz_iconv(yaz_iconv_t cd, char **inbuf, size_t *inbytesleft,
char **outbuf, size_t *outbytesleft)
{
- char *inbuf0;
+ char *inbuf0 = 0;
size_t r = 0;
#if HAVE_ICONV_H
return r;
}
#endif
- if (inbuf == 0 || *inbuf == 0)
+
+ if (inbuf)
+ inbuf0 = *inbuf;
+
+ if (cd->init_flag)
{
- cd->init_flag = 1;
cd->my_errno = YAZ_ICONV_UNKNOWN;
- return 0;
+ cd->marc8_esc_mode = 'B';
+
+ cd->comb_offset = cd->comb_size = 0;
+ cd->compose_char = 0;
+
+ cd->write_marc8_comb_no = 0;
+ cd->write_marc8_second_half_char = 0;
+ cd->write_marc8_last = 0;
+ cd->write_marc8_page_chr = "\033(B";
+
+ cd->unget_x = 0;
+ cd->no_read_x = 0;
}
- inbuf0 = *inbuf;
if (cd->init_flag)
{
- if (cd->init_handle)
+ if (cd->init_handle && inbuf && *inbuf)
{
size_t no_read = 0;
size_t r = (cd->init_handle)(cd, (unsigned char *) *inbuf,
*inbytesleft -= no_read;
*inbuf += no_read;
}
- cd->marc8_esc_mode = 'B';
-
- cd->comb_offset = cd->comb_size = 0;
- cd->compose_char = 0;
-
- cd->write_marc8_comb_no = 0;
- cd->write_marc8_second_half_char = 0;
- cd->write_marc8_last = 0;
- cd->write_marc8_page_chr = "\033(B";
-
- cd->init_flag = 0;
- cd->unget_x = 0;
- cd->no_read_x = 0;
}
+ cd->init_flag = 0;
+
while (1)
{
unsigned long x;
size_t no_read;
- if (*inbytesleft == 0)
+ if (cd->unget_x)
{
- r = *inbuf - inbuf0;
- break;
+ x = cd->unget_x;
+ no_read = cd->no_read_x;
}
- if (!cd->unget_x)
+ else if (inbuf && *inbuf)
{
+ if (*inbytesleft == 0)
+ {
+ r = *inbuf - inbuf0;
+ break;
+ }
x = (cd->read_handle)(cd, (unsigned char *) *inbuf, *inbytesleft,
&no_read);
if (no_read == 0)
}
else
{
- x = cd->unget_x;
- no_read = cd->no_read_x;
+ r = 0;
+ if (cd->flush_handle && outbuf && *outbuf)
+ r = (*cd->flush_handle)(cd, outbuf, outbytesleft);
+ if (r == 0)
+ cd->init_flag = 1;
+ break;
}
if (x)
{
tst_tpath
tst_timing
tst_timing.log
-nfatest1
-nfaxmltest1
-nfaxmltest1.log
+tst_comstack
+tst_comstack.log
--- /dev/null
+02647nam^^2200469^^^4500001001400000005001700014006001900031007001500050008004100065035001500106037009000121040004500211100002300256245028100279246006300560246006300623260014400686300001100830500001300841500005700854500009300911500002901004500005701033510002401090530004201114533008901156655002901245650004301274700003601317700002801353793003101381852001501412852001401427856015401441856015401595852003001749852002801779856015401807856014901961830004702110901002002157\1eUCD-002592301\1e20061209034435.0\1em d \1ecr bn |||a|bb|\1e920330s1583 enk s 000 0 eng d\1e \1fa99851339eo\1e \1faCL0036000039\1fbProQuest Information and Learning. 300 N. Zeeb Rd., Ann Arbor, MI 48106\1e \1faCu-RivES\1fcCu-RivES\1fdCStRLIN\1fedcrb\1fdWaOLN\1e1 \1faClinton, Atkinson.\1e00\1faClinton, Purser & Arnold, to their countreymen wheresoeuer\1fh[electronic resource] :\1fbWherein is described by their own hands their vnfeigned penitence for their offences past: their patience in welcoming their death, & their duetiful minds towardes her most excellent Maiestie\1e2 \1faClinton, Purser & Arnold, to their countreymen wheresoever\1e2 \1faClinton, Purser & Arnold, to their countreymen wheresoever\1e \1faLondon :\1fbImprinted by Iohn Wolfe and are to be sold [by W. Wright] at the middle shop in the Poultry, ioyning S. Mildreds Church,\1fc[1583?]\1e \1fa[12] p\1e \1faIn verse\1e \1faThe first poem is signed: Thomas Walton alias Purser\1e \1faClinton's full name and bookseller's name from, and publication date conjectured by, STC\1e \1faSignatures: A\ep4\e(B B\ep2\1e \1faReproduction of the original in the Bodleian Library\1e4 \1faSTC (2nd ed.)\1fc5431\1e \1faAlso issued in print and on microform\1e \1faElectronic reproduction.\1fnMode of access: World Wide Web.\1fnRestricted to UC campuses\1e 7\1faElectronic texts.\1f2local\1e 0\1faPirates\1fzEngland\1fvEarly works to 1800.\1e1 \1faWalton, Thomas,\1fdfl. 1583.\1f4aut\1e1 \1faArnold,\1fdfl. 1583.\1f4aut\1e0 \1faEarly English books online\1e \1faMER\1fbkmain\1e \1faSCB\1fbnnet\1e40\1fzRestricted to UC campuses\1fxSCP UCSD\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1e40\1fzRestricted to UC campuses\1fxSCP UCSD\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1e \1faDVXL\1fbELECT-GEN\1fhInternet\1e \1faLAGE\1fbin\1f3Online access\1e40\1fzRestricted to UC campuses\1fxSCP UCSD\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1e40\1fzRestricted to UC campuses\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1fxCDL\1e 0\1faEarly English books, 1475-1640 ;\1fv1406:13.\1e \1faDVXL\1fb002592301\1e\1d
\ No newline at end of file
--- /dev/null
+<record xmlns="http://www.loc.gov/MARC21/slim">
+ <leader>02647nam^a2200469^^^4500</leader>
+ <controlfield tag="001">UCD-002592301</controlfield>
+ <controlfield tag="005">20061209034435.0</controlfield>
+ <controlfield tag="006">m d </controlfield>
+ <controlfield tag="007">cr bn |||a|bb|</controlfield>
+ <controlfield tag="008">920330s1583 enk s 000 0 eng d</controlfield>
+ <datafield tag="035" ind1=" " ind2=" ">
+ <subfield code="a">99851339eo</subfield>
+ </datafield>
+ <datafield tag="037" ind1=" " ind2=" ">
+ <subfield code="a">CL0036000039</subfield>
+ <subfield code="b">ProQuest Information and Learning. 300 N. Zeeb Rd., Ann Arbor, MI 48106</subfield>
+ </datafield>
+ <datafield tag="040" ind1=" " ind2=" ">
+ <subfield code="a">Cu-RivES</subfield>
+ <subfield code="c">Cu-RivES</subfield>
+ <subfield code="d">CStRLIN</subfield>
+ <subfield code="e">dcrb</subfield>
+ <subfield code="d">WaOLN</subfield>
+ </datafield>
+ <datafield tag="100" ind1="1" ind2=" ">
+ <subfield code="a">Clinton, Atkinson.</subfield>
+ </datafield>
+ <datafield tag="245" ind1="0" ind2="0">
+ <subfield code="a">Clinton, Purser & Arnold, to their countreymen wheresoeuer</subfield>
+ <subfield code="h">[electronic resource] :</subfield>
+ <subfield code="b">Wherein is described by their own hands their vnfeigned penitence for their offences past: their patience in welcoming their death, & their duetiful minds towardes her most excellent Maiestie</subfield>
+ </datafield>
+ <datafield tag="246" ind1="2" ind2=" ">
+ <subfield code="a">Clinton, Purser & Arnold, to their countreymen wheresoever</subfield>
+ </datafield>
+ <datafield tag="246" ind1="2" ind2=" ">
+ <subfield code="a">Clinton, Purser & Arnold, to their countreymen wheresoever</subfield>
+ </datafield>
+ <datafield tag="260" ind1=" " ind2=" ">
+ <subfield code="a">London :</subfield>
+ <subfield code="b">Imprinted by Iohn Wolfe and are to be sold [by W. Wright] at the middle shop in the Poultry, ioyning S. Mildreds Church,</subfield>
+ <subfield code="c">[1583?]</subfield>
+ </datafield>
+ <datafield tag="300" ind1=" " ind2=" ">
+ <subfield code="a">[12] p</subfield>
+ </datafield>
+ <datafield tag="500" ind1=" " ind2=" ">
+ <subfield code="a">In verse</subfield>
+ </datafield>
+ <datafield tag="500" ind1=" " ind2=" ">
+ <subfield code="a">The first poem is signed: Thomas Walton alias Purser</subfield>
+ </datafield>
+ <datafield tag="500" ind1=" " ind2=" ">
+ <subfield code="a">Clinton's full name and bookseller's name from, and publication date conjectured by, STC</subfield>
+ </datafield>
+ <datafield tag="500" ind1=" " ind2=" ">
+ <subfield code="a">Signatures: A⁴ B²</subfield>
+ </datafield>
+ <datafield tag="500" ind1=" " ind2=" ">
+ <subfield code="a">Reproduction of the original in the Bodleian Library</subfield>
+ </datafield>
+ <datafield tag="510" ind1="4" ind2=" ">
+ <subfield code="a">STC (2nd ed.)</subfield>
+ <subfield code="c">5431</subfield>
+ </datafield>
+ <datafield tag="530" ind1=" " ind2=" ">
+ <subfield code="a">Also issued in print and on microform</subfield>
+ </datafield>
+ <datafield tag="533" ind1=" " ind2=" ">
+ <subfield code="a">Electronic reproduction.</subfield>
+ <subfield code="n">Mode of access: World Wide Web.</subfield>
+ <subfield code="n">Restricted to UC campuses</subfield>
+ </datafield>
+ <datafield tag="655" ind1=" " ind2="7">
+ <subfield code="a">Electronic texts.</subfield>
+ <subfield code="2">local</subfield>
+ </datafield>
+ <datafield tag="650" ind1=" " ind2="0">
+ <subfield code="a">Pirates</subfield>
+ <subfield code="z">England</subfield>
+ <subfield code="v">Early works to 1800.</subfield>
+ </datafield>
+ <datafield tag="700" ind1="1" ind2=" ">
+ <subfield code="a">Walton, Thomas,</subfield>
+ <subfield code="d">fl. 1583.</subfield>
+ <subfield code="4">aut</subfield>
+ </datafield>
+ <datafield tag="700" ind1="1" ind2=" ">
+ <subfield code="a">Arnold,</subfield>
+ <subfield code="d">fl. 1583.</subfield>
+ <subfield code="4">aut</subfield>
+ </datafield>
+ <datafield tag="793" ind1="0" ind2=" ">
+ <subfield code="a">Early English books online</subfield>
+ </datafield>
+ <datafield tag="852" ind1=" " ind2=" ">
+ <subfield code="a">MER</subfield>
+ <subfield code="b">kmain</subfield>
+ </datafield>
+ <datafield tag="852" ind1=" " ind2=" ">
+ <subfield code="a">SCB</subfield>
+ <subfield code="b">nnet</subfield>
+ </datafield>
+ <datafield tag="856" ind1="4" ind2="0">
+ <subfield code="z">Restricted to UC campuses</subfield>
+ <subfield code="x">SCP UCSD</subfield>
+ <subfield code="u">http://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610</subfield>
+ </datafield>
+ <datafield tag="856" ind1="4" ind2="0">
+ <subfield code="z">Restricted to UC campuses</subfield>
+ <subfield code="x">SCP UCSD</subfield>
+ <subfield code="u">http://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610</subfield>
+ </datafield>
+ <datafield tag="852" ind1=" " ind2=" ">
+ <subfield code="a">DVXL</subfield>
+ <subfield code="b">ELECT-GEN</subfield>
+ <subfield code="h">Internet</subfield>
+ </datafield>
+ <datafield tag="852" ind1=" " ind2=" ">
+ <subfield code="a">LAGE</subfield>
+ <subfield code="b">in</subfield>
+ <subfield code="3">Online access</subfield>
+ </datafield>
+ <datafield tag="856" ind1="4" ind2="0">
+ <subfield code="z">Restricted to UC campuses</subfield>
+ <subfield code="x">SCP UCSD</subfield>
+ <subfield code="u">http://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610</subfield>
+ </datafield>
+ <datafield tag="856" ind1="4" ind2="0">
+ <subfield code="z">Restricted to UC campuses</subfield>
+ <subfield code="u">http://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610</subfield>
+ <subfield code="x">CDL</subfield>
+ </datafield>
+ <datafield tag="830" ind1=" " ind2="0">
+ <subfield code="a">Early English books, 1475-1640 ;</subfield>
+ <subfield code="v">1406:13.</subfield>
+ </datafield>
+ <datafield tag="901" ind1=" " ind2=" ">
+ <subfield code="a">DVXL</subfield>
+ <subfield code="b">002592301</subfield>
+ </datafield>
+</record>
--- /dev/null
+02643nam^a2200469^^^4500001001400000005001700014006001900031007001500050008004100065035001500106037009000121040004500211100002300256245028100279246006300560246006300623260014400686300001100830500001300841500005700854500009300911500002501004500005701029510002401086530004201110533008901152655002901241650004301270700003601313700002801349793003101377852001501408852001401423856015401437856015401591852003001745852002801775856015401803856014901957830004702106901002002153\1eUCD-002592301\1e20061209034435.0\1em d \1ecr bn |||a|bb|\1e920330s1583 enk s 000 0 eng d\1e \1fa99851339eo\1e \1faCL0036000039\1fbProQuest Information and Learning. 300 N. Zeeb Rd., Ann Arbor, MI 48106\1e \1faCu-RivES\1fcCu-RivES\1fdCStRLIN\1fedcrb\1fdWaOLN\1e1 \1faClinton, Atkinson.\1e00\1faClinton, Purser & Arnold, to their countreymen wheresoeuer\1fh[electronic resource] :\1fbWherein is described by their own hands their vnfeigned penitence for their offences past: their patience in welcoming their death, & their duetiful minds towardes her most excellent Maiestie\1e2 \1faClinton, Purser & Arnold, to their countreymen wheresoever\1e2 \1faClinton, Purser & Arnold, to their countreymen wheresoever\1e \1faLondon :\1fbImprinted by Iohn Wolfe and are to be sold [by W. Wright] at the middle shop in the Poultry, ioyning S. Mildreds Church,\1fc[1583?]\1e \1fa[12] p\1e \1faIn verse\1e \1faThe first poem is signed: Thomas Walton alias Purser\1e \1faClinton's full name and bookseller's name from, and publication date conjectured by, STC\1e \1faSignatures: A⁴ B²\1e \1faReproduction of the original in the Bodleian Library\1e4 \1faSTC (2nd ed.)\1fc5431\1e \1faAlso issued in print and on microform\1e \1faElectronic reproduction.\1fnMode of access: World Wide Web.\1fnRestricted to UC campuses\1e 7\1faElectronic texts.\1f2local\1e 0\1faPirates\1fzEngland\1fvEarly works to 1800.\1e1 \1faWalton, Thomas,\1fdfl. 1583.\1f4aut\1e1 \1faArnold,\1fdfl. 1583.\1f4aut\1e0 \1faEarly English books online\1e \1faMER\1fbkmain\1e \1faSCB\1fbnnet\1e40\1fzRestricted to UC campuses\1fxSCP UCSD\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1e40\1fzRestricted to UC campuses\1fxSCP UCSD\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1e \1faDVXL\1fbELECT-GEN\1fhInternet\1e \1faLAGE\1fbin\1f3Online access\1e40\1fzRestricted to UC campuses\1fxSCP UCSD\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1e40\1fzRestricted to UC campuses\1fuhttp://gateway.proquest.com/openurl?ctx_ver=Z39.88-2003&res_id=xri:eebo&rft_val_fmt=&rft_id=xri:eebo:image:16610\1fxCDL\1e 0\1faEarly English books, 1475-1640 ;\1fv1406:13.\1e \1faDVXL\1fb002592301\1e\1d
\ No newline at end of file