Archives for: May 2012, 09

09/05/12

Permalink 04:40:17 pm, by mholmes, 3 words, 80 views   English (CA)
Categories: G&T Hours; Mins. worked: 0

MDH: 171.5 + 1 = 172.5 hours G&T

Procession of visitors...

Permalink 03:17:13 pm, by jnazar, 73 words, 62 views   English (CA)
Categories: Activity log; Mins. worked: 360

HCMC website - Cascade

Worked specifically on grant writing section of website today.
Have learned how to input new content with links now redirected to new site.
Edited html; have implemented two different options for navigating on a page e.g.
linking to tabs below and also text further down same page. (Decisions regarding
which method we will use will be decided later.)

Created new pages within grant writing section.

In progress: working on "in-class workshops" section

Permalink 01:23:28 pm, by mholmes, 36 words, 269 views   English (CA)
Categories: Activity log, Announcements; Mins. worked: 60

Complete set of CO 305 Vol 17 page images added to the Colonial Despatches collection

The complete collection of 1208 page images for CO 305 Vol 17 (in three different sizes) have been added to the collection. These cover the 1861 Vancouver Island Despatches to London. These will now be linked into the transcription documents.

Permalink 11:32:00 am, by Erin, 84 words, 122 views   English (CA)
Categories: Activity log; Mins. worked: 150

biographies and imperialis

May 9th - added themes "pelerinage/pilgrimage", and "louanges/praise for Vesalius". Changes injures_sylvius to "injures/insults". Began to insert into texts. benignewinslow, bordeu, chambaud, de thou vol3, bullart, dethou vol1, eloy, de thou vol4, guillemeau, feller, carlencas, de thou vol3 rigault, lacroixdumaine_et_verdier, moreri_english, moreri, niceron vol5... created xml file for imperialis anecdote _______________________________________________________________________________ to be done: pare x 2, niceron vol10, senac, portal, terilli, strada, teissier, sigaud de la fond, imperialis mark up imperialis....... _______________________________________________________________________________ .....adam, castellanus, lancisi, imperialis are in latin
Permalink 11:16:51 am, by mholmes, 655 words, 132 views   English (CA)
Categories: Activity log; Mins. worked: 210

Two tasks completed

Completed the tasks set yesterday, as follows:

  • Generated a list of all surnames for which multiple ethnicities are associated with owners bearing those surnames (so, for instance, if there are several owners with the surname Lee, and some have ethnicity Chinese while others have Unknown, that surname is added to the list). I used XQuery running against the XML output of the db to do this:
    xquery version "1.0";
    
    (: The purpose of this query is to find all examples where the same 
       owner surname has been associated with different ethnicities. :)
    
    declare namespace saxon="http://saxon.sf.net/";
    declare option saxon:output "method=text";
    
    let $surnames := distinct-values(//own_surname),
    (:return count($surnames):)
    $names := 
    for $name in $surnames
    order by $name
    return <name>
    <surname>{$name}</surname>
    <ids>
    {let $ids := //owners[own_surname = $name]/own_owner_id
    for $id in $ids return xs:string($id)
    }
    </ids>
    <ethnicities>
    {let $ids := //owners[own_surname = $name]/own_owner_id, $eths := //owners_to_ethnicities[ote_owner_id_fk = $ids]
    for $eth in $eths
    return <eth>{$eth/ote_ethnicity_id_fk/text()}</eth>
    }
    </ethnicities>
    </name>
    
    return 
    <names>
    {for $n in $names
    where count(distinct-values($n/ethnicities/eth)) gt 1
    return 
    concat(string-join(($n/surname, ': ',
    for $e in distinct-values($n//eth)
    return //ethnicities[eth_ethnicity_id = $e]/eth_name/text()), ' '), '&#xa;')
    }
    return 
    </names>
    
  • Generated a list of owners who have the same surname and forename, and are associated with titles on the same property. These are likely to be either duplicate owners or cross-generation family transactions. Again, this was done with XQuery:
    xquery version "1.0";
    
    (: The purpose of this query is to pull out instances of 
       owners who have the same surname and forename, 
       and who are associated with titles that have the same
       property. :)
       
       (:declare namespace map="http://www.w3.org/2005/xpath-functions/map";:)
       
    declare namespace saxon="http://saxon.sf.net/";
    declare option saxon:output "method=text";
       
       let $owners := //owners,
       $dupes := for $curr in $owners where $curr/following-sibling::owners[own_surname = $curr/own_surname and own_forenames = $curr/own_forenames and $curr/own_surname != '' and $curr/own_forenames != ''] return $curr,
       $dupeIds := for $d in $dupes 
          let $owner_set := //owners[own_surname = $d/own_surname and own_forenames = $d/own_forenames]
          return <group>
          <surname>{$d/own_surname/text()}</surname>
          <forenames>{$d/own_forenames/text()}</forenames>
          {$owner_set//own_owner_id}
          <properties>
          {let $owner_ids := $owner_set//own_owner_id/text(),
                $titles_for_group := (//owners_to_titles[ott_owner_id_fk = $owner_ids], //sellers_to_titles[stt_owner_id_fk = $owner_ids])
            for $t in $titles_for_group
            return
            if ($t/ott_owner_id_fk) then
            <title><title_id>{$t/ott_title_id_fk/text()}</title_id> <property_id>{//titles[ttl_title_id = $t/ott_title_id_fk/text()]/ttl_property_id_fk/text()}</property_id></title>
            else
            <title><title_id>{$t/stt_title_id_fk/text()}</title_id> <property_id>{//titles[ttl_title_id = $t/stt_title_id_fk/text()]/ttl_property_id_fk/text()}</property_id></title>
          </properties>
          </group>
          
          
       
       return 
       <result>
       {for $d in
       $dupeIds
       where count($d//property_id) gt count(distinct-values($d//property_id))
       order by $d/surname, $d/forenames
       return 
       ('&#x0a;',
       $d/surname/text(),
       ', ',
       $d/forenames/text(),
       '&#x0a;owner ids: ',
       for $o in $d//own_owner_id
       return ($o/text(), ' '),
       for $t in $d//title return
        (
        '&#x0a;&#09;title: ', $t/title_id/text(),
        '&#09;&#09;property: ', $t/property_id/text()
        ),
       '&#x0a;&#x0a;'
       )
       }
    </result>
    

All HCMC Blogs

Actions

Reports

Categories

All HCMC Blogs

Transformer blog

Work on this blogging tool

Image Markup Tool blog

HCMC Project Management

Nxaʔamxcín (Moses) Dictionary Blog

Maintenance

FrancoToile

Mariage

Administration

Academic

Depts

Scandinavian-Canadian Studies

EMLS

Scraps

Image Markup and Presentation

Update of Humanities Sites

viHistory

Vacation, Hours and Sickday Log

Times Colonist Transcript Database

Devonshire

CMC Research Collective

Moodle

Humanities Project Showcase

Peter's blog

teiJournal

Projects

Professional Development

Colonial Despatches

Coup De Des - GUI for concrete poem

Capital Trials at the Old Bailey

Agenda Class Timetabling

Lansdowne Lectures

German Medical Exams

Canadian Mysteries

Map Of London

MyNDIR

Canadian Journal of Buddhist Studies

Adaptive Database

Myths on Maps

Properties

Cascade

Vesalius

DHSI

History of the Philosophy of Language

A City Goes to War

May 2012
Sun Mon Tue Wed Thu Fri Sat
 << < Current> >>
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    

XML Feeds