View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/addons/genealogy
In directory usw-pr-cvs1:/tmp/cvs-serv26042/addons/genealogy
Added Files:
elis.xml gros.xml
Log Message:
added two searches: 1) Ellis Island Records and 2) General Register Office for
Scotland
--- NEW FILE: elis.xml ---
<search function="elis">
<name>Ellis Island Immigration Records 1892-1924</name>
<category>Genealogy</category>
<contributor>Brent Beardsley</contributor>
<link>http://www.ellisislandrecords.org/</link>
<email></email>
<description>
Search Ellis Island Immigration Records
<div class="helpboxDescLabels">Examples:</div>
<table class="helpboxDescTable">
<tr><td>elis mcglashan</td></tr>
<tr><td>elis mcglashan, alexander</td></tr>
</table>
</description>
<form name="elisf"
method="get"
action="http://www.ellisislandrecords.org/search/matchmore.asp">
<input type="hidden" name="FNM" value="" />
<input type="hidden" name="LNM" value="" />
<input type="hidden" name="kind" value="exact" />
</form>
<script src="addons/genealogy/genealogy_lib.js"></script>
<script><![CDATA[
function elis(q)
{
if( nullArgs("elis", q) )
return;
document.elisf.FNM.value = genealogy_parse_givenname(q);
document.elisf.LNM.value = genealogy_parse_surname(q);
submitForm(elisf);
}
]]></script>
</search>
--- NEW FILE: gros.xml ---
<search function="gros">
<name>General Register Office for Scotland 1553-1951</name>
<category>Genealogy</category>
<contributor>Brent Beardsley</contributor>
<link>http://www.scotlandspeople.gov.uk/</link>
<email></email>
<description>
Search the General Register Office for Scotland 1553-1951.
<div class="helpboxDescLabels">Switches:</div>
<table class="helpboxDescTable">
<tr><td>/from</td><td> - </td><td>From year between 1553 and 1951 - default
being 1553.</td></tr>
<tr><td>/to</td><td> - </td><td>To year between 1553 and 1951 - default being
1951.</td></tr>
</table>
<div class="helpboxDescLabels">Examples:</div>
<table class="helpboxDescTable">
<tr><td>gros stewart</td></tr>
<tr><td>gros /from:1800 /to:1843 mcglashan</td></tr>
</table>
</description>
<form name="grosf"
method="post"
action="http://public.scotlandspeople.gov.uk/index.php?YXJlYT1mcmVlc2VhcmNoJmlkPS05OQ==">
<input type="hidden" name="var_surname" value="" />
<input type="hidden" name="var_year_from" value="1553" />
<input type="hidden" name="var_year_to" value="1951" />
</form>
<script src="addons/genealogy/genealogy_lib.js"></script>
<script><![CDATA[
function gros(q)
{
if( nullArgs("gros", q) )
return;
var switch_list = new Array("from", "to");
var args = parseArgs(q, switch_list);
if (typeof args.switch_val[switch_list[0]] == "undefined" ||
args.switch_val[switch_list[0]] == "") {
document.grosf.var_year_from.value = "1553";
} else {
document.grosf.var_year_from.value = args.switch_val[switch_list[0]];
}
if (typeof args.switch_val[switch_list[1]] == "undefined" ||
args.switch_val[switch_list[1]] == "") {
document.grosf.var_year_to.value = "1951";
} else {
document.grosf.var_year_to.value = args.switch_val[switch_list[1]];
}
document.grosf.var_surname.value = genealogy_parse_surname(args.q);
submitForm(grosf);
}
]]></script>
</search>
-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone? Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/