<?xml version="1.0" encoding="utf-8"?><!-- generator="b2evolution/1.9.3" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Lansdowne Lectures</title>
						<link>http://hcmc.uvic.ca/blogs/index.php?blog=38</link>
				<description></description>
				<language>en-CA</language>
				<docs>http://backend.userland.com/rss</docs>
				<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=1.9.3"/>
				<ttl>60</ttl>
								<item>
					<title>Added JN's code to svn</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=added_jn_s_code_to_svn&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Fri, 02 Nov 2012 22:17:12 +0000</pubDate>
					<dc:creator>Greg</dc:creator>
					<category domain="main">Activity log</category>					<guid isPermaLink="false">10214@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 60) I added the code JN wrote to a new svn repo called lansdowne.</description>
					<content:encoded><![CDATA[I added the code JN wrote to a new svn repo called lansdowne.]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=10214&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>Notes upon my departure</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=notes_upon_my_departure_1&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Mon, 29 Aug 2011 21:09:15 +0000</pubDate>
					<dc:creator>jamie</dc:creator>
					<category domain="main">Notes</category>					<guid isPermaLink="false">8547@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 0) The website is located at: http://pear.hcmc.uvic.ca:8081/lansdowne/site/index.xql

the Lansdowne app lives in the webapps-dev directory on Pear.

To connect to the database: see the documentation ODT.

The Website

The website is a feature-complete, sparse prototype. The site is based on a version of the FrancoToile site, albeit without a lot of the FrancoToile features such as multi-language support.

Pages

Home and About: these are two simple pages that simply display static content.

Browse: grabs a list of movies from the collection, and simply loops over and formats them into an unordered list.

Search: Upon form submission, an XPath statement is dynamically built from the options selected by the user.

The comment in the search.xql script explaining how the results are parsed and formatted:

Search for videos using the XPath filters constructed above. Because the filters are constructed dynamically  and stored as an xs:string, we need to use util:eval to grab the collection because the collection() function doesn't accept variables, just a hard string for an argument.

The search uses the eXist KWIC ('keywords in content') module to parse search results:
http://demo.exist-db.org/exist/functions/kwic
    		  
Each result in the initial for ... in loop is expanded with kwic:expand(), which formats the query results and turns them into organized search hits. Then, the kwic:get-summary() function is executed on each record in the search result. This returns a &#60;p&#62; element with three child &#60;span&#62; elements: the hit itself, and the chunks of text that come before and after the hit. These results are output as a list element.

The Transcripts and Incidents

The most interesting part of the site – and the only part that differs from, or goes beyond, FrancoToile – is the incident or 'event' support. While the FrancoToile site displays the transcript – that is, tei:u (utterance) elements in the data – corresponding to the time of the video, the Lansdowne player also displays 'incidents', which are extra sets of information in the tei:body element of a data file. On the public-facing website, these incidents are called events. Gbua1.xml has an 'incident' set that looks like this:


&#60;div type="incidents" xml:id="slideIncidents"&#62;
                &#60;div xml:lang="en" type="lang"&#62;
                    &#60;head&#62;Slides&#60;/head&#62;
                    &#60;incident start="gbua1s0" end="gbua1s1"&#62;
                        &#60;desc&#62;slide 1 - &#60;ref target="http://en.wikipedia.org/wiki/Archivo_General_de_Indias"&#62;Archives of the Indies and Seville&#60;/ref&#62;
                        &#60;/desc&#62;
                    &#60;/incident&#62;
                    &#60;incident start="gbua1s1" end="gbua1s2"&#62;
                        &#60;desc&#62;slide 2 - Arial view of the Rio Belen, Panama&#60;/desc&#62;
                    &#60;/incident&#62;
                    &#60;incident start="gbua1s2" end="gbua1s3"&#62;
                        &#60;desc&#62;slide 3 - People using a &#60;ref target="http://en.wikipedia.org/wiki/Magnetometer"&#62;magnetometer&#60;/ref&#62; on the beach in &#60;ref target="http://maps.google.com/maps?f=q&#38;hl=en&#38;q=Jamaica&#38;ll=18.442973,-77.198009&#38;spn=0.113828,0.190716&#38;t=k"&#62;St. Anne's Bay, Jamaica&#60;/ref&#62;
                        &#60;/desc&#62;
                    &#60;/incident&#62;
                    &#60;incident start="gbua1s3" end="gbua1s4"&#62;
                        &#60;desc&#62;slide 4 - Researchers examining seabed core samples&#60;/desc&#62;
                    &#60;/incident&#62;Default
                    &#60;incident start="gbua1s4" end="gbua1s5"&#62;
                        &#60;desc&#62;slide 5 - Underwater photo of a Byzantine wreck&#60;/desc&#62;
                    &#60;/incident&#62;
                    &#60;incident start="gbua1s5" end="gbua1s6"&#62;
                        &#60;desc&#62;slide 6 - Turkish sponge diver standing on the deck of a boat&#60;/desc&#62;
                    &#60;/incident&#62;
                &#60;/div&#62;
            &#60;/div&#62;


Each incident's @start and @end must correspond to a timeline/when element, just like an utterance.

To make a series of events appear on the player page, one need only add the XML markup like above. Each series of events (that is, div type=”incidents”) will automatically be loaded into the page via an XSLT transformation using xslt/incidents.xsl. The full transcript of each event series will appear in the “Events” tab of the player, while the individual incidents themselves will appear below the movie at the appropriate time as defined in the timeline.

What's to be done now?

Without much data, it's tough to say what kind of changes and improvements this website needs. It's feature-complete for now, but undoubtedly will require some expansion if a full suite of data is ever added. For example, the 'browse' page could probably use pagination and sorting options, the player page may need to display the events/incidents with more bells and whistles, and so on.</description>
					<content:encoded><![CDATA[<p>The website is located at: <a href="http://pear.hcmc.uvic.ca:8081/lansdowne/site/index.xql">http://pear.hcmc.uvic.ca:8081/lansdowne/site/index.xql</a></p>

<p>the Lansdowne app lives in the webapps-dev directory on Pear.</p>

<p>To connect to the database: see the documentation ODT.</p>

<p><strong>The Website</strong></p>

<p>The website is a feature-complete, sparse prototype. The site is based on a version of the FrancoToile site, albeit without a lot of the FrancoToile features such as multi-language support.</p>

<p><strong>Pages</strong></p>

<p>Home and About: these are two simple pages that simply display static content.</p>

<p>Browse: grabs a list of movies from the collection, and simply loops over and formats them into an unordered list.</p>

<p>Search: Upon form submission, an XPath statement is dynamically built from the options selected by the user.</p>

<p>The comment in the search.xql script explaining how the results are parsed and formatted:</p>

<p>Search for videos using the XPath filters constructed above. Because the filters are constructed dynamically  and stored as an xs:string, we need to use util:eval to grab the collection because the collection() function doesn't accept variables, just a hard string for an argument.</p>

<p>The search uses the eXist KWIC ('keywords in content') module to parse search results:<br />
<a href="http://demo.exist-db.org/exist/functions/kwic">http://demo.exist-db.org/exist/functions/kwic</a><br />
    		  <br />
Each result in the initial for ... in loop is expanded with kwic:expand(), which formats the query results and turns them into organized search hits. Then, the kwic:get-summary() function is executed on each record in the search result. This returns a &lt;p&gt; element with three child &lt;span&gt; elements: the hit itself, and the chunks of text that come before and after the hit. These results are output as a list element.</p>

<p><strong>The Transcripts and Incidents</strong></p>

<p>The most interesting part of the site – and the only part that differs from, or goes beyond, FrancoToile – is the incident or 'event' support. While the FrancoToile site displays the transcript – that is, tei:u (utterance) elements in the data – corresponding to the time of the video, the Lansdowne player also displays 'incidents', which are extra sets of information in the tei:body element of a data file. On the public-facing website, these incidents are called events. Gbua1.xml has an 'incident' set that looks like this:</p>

<pre><code>
&lt;div type="incidents" xml:id="slideIncidents"&gt;
                &lt;div xml:lang="en" type="lang"&gt;
                    &lt;head&gt;Slides&lt;/head&gt;
                    &lt;incident start="gbua1s0" end="gbua1s1"&gt;
                        &lt;desc&gt;slide 1 - &lt;ref target="http://en.wikipedia.org/wiki/Archivo_General_de_Indias"&gt;Archives of the Indies and Seville&lt;/ref&gt;
                        &lt;/desc&gt;
                    &lt;/incident&gt;
                    &lt;incident start="gbua1s1" end="gbua1s2"&gt;
                        &lt;desc&gt;slide 2 - Arial view of the Rio Belen, Panama&lt;/desc&gt;
                    &lt;/incident&gt;
                    &lt;incident start="gbua1s2" end="gbua1s3"&gt;
                        &lt;desc&gt;slide 3 - People using a &lt;ref target="http://en.wikipedia.org/wiki/Magnetometer"&gt;magnetometer&lt;/ref&gt; on the beach in &lt;ref target="http://maps.google.com/maps?f=q&amp;hl=en&amp;q=Jamaica&amp;ll=18.442973,-77.198009&amp;spn=0.113828,0.190716&amp;t=k"&gt;St. Anne's Bay, Jamaica&lt;/ref&gt;
                        &lt;/desc&gt;
                    &lt;/incident&gt;
                    &lt;incident start="gbua1s3" end="gbua1s4"&gt;
                        &lt;desc&gt;slide 4 - Researchers examining seabed core samples&lt;/desc&gt;
                    &lt;/incident&gt;Default
                    &lt;incident start="gbua1s4" end="gbua1s5"&gt;
                        &lt;desc&gt;slide 5 - Underwater photo of a Byzantine wreck&lt;/desc&gt;
                    &lt;/incident&gt;
                    &lt;incident start="gbua1s5" end="gbua1s6"&gt;
                        &lt;desc&gt;slide 6 - Turkish sponge diver standing on the deck of a boat&lt;/desc&gt;
                    &lt;/incident&gt;
                &lt;/div&gt;
            &lt;/div&gt;
</code></pre>

<p>Each incident's @start and @end must correspond to a timeline/when element, just like an utterance.</p>

<p>To make a series of events appear on the player page, one need only add the XML markup like above. Each series of events (that is, div type=”incidents”) will automatically be loaded into the page via an XSLT transformation using xslt/incidents.xsl. The full transcript of each event series will appear in the “Events” tab of the player, while the individual incidents themselves will appear below the movie at the appropriate time as defined in the timeline.</p>

<p><strong>What's to be done now?</strong></p>

<p>Without much data, it's tough to say what kind of changes and improvements this website needs. It's feature-complete for now, but undoubtedly will require some expansion if a full suite of data is ever added. For example, the 'browse' page could probably use pagination and sorting options, the player page may need to display the events/incidents with more bells and whistles, and so on.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=8547&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>HTML5 video element with multiple source children does not validate</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=html5_video_element_with_multiple_source&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Thu, 25 Aug 2011 18:47:45 +0000</pubDate>
					<dc:creator>jamie</dc:creator>
					<category domain="main">Notes</category>					<guid isPermaLink="false">8533@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 0) According to the HTML5 spec, this is valid code:



&#60;video controls="controls" width="320" height="256" id="gbua1"&#62; 
                            &#60;source src="http://lettuce.tapor.uvic.ca/~taprlans/media/gbua1.m4v" type="video/mp4; codecs=&#34;avc1, mp4a&#34;"&#62;&#60;/source&#62; 
                            &#60;source src="http://lettuce.tapor.uvic.ca/~taprlans/media/gbua1.ogv" type="video/ogg; codecs=&#34;theora, vorbis&#34;"&#62;&#60;/source&#62; 
                            &#60;p&#62; 
                                &#60;a href="http://lettuce.tapor.uvic.ca/~taprlans/media/gbua1.m4v"&#62;Download the video&#60;/a&#62;.&#60;/p&#62; 
                        &#60;/video&#62;



According to the W3 validator, however, it's invalid. Removing one of the source elements gets rid of the validation error. This doesn't affect the performance of the video. So, it's just a case of waiting for the validator to catch up to the standard.</description>
					<content:encoded><![CDATA[<p>According to the HTML5 spec, this is valid code:</p>

<pre>
<code>
&lt;video controls="controls" width="320" height="256" id="gbua1"&gt; 
                            &lt;source src="http://lettuce.tapor.uvic.ca/~taprlans/media/gbua1.m4v" type="video/mp4; codecs=&#34;avc1, mp4a&#34;"&gt;&lt;/source&gt; 
                            &lt;source src="http://lettuce.tapor.uvic.ca/~taprlans/media/gbua1.ogv" type="video/ogg; codecs=&#34;theora, vorbis&#34;"&gt;&lt;/source&gt; 
                            &lt;p&gt; 
                                &lt;a href="http://lettuce.tapor.uvic.ca/~taprlans/media/gbua1.m4v"&gt;Download the video&lt;/a&gt;.&lt;/p&gt; 
                        &lt;/video&gt;
</code>
</pre>

<p>According to the W3 validator, however, it's invalid. Removing one of the source elements gets rid of the validation error. This doesn't affect the performance of the video. So, it's just a case of waiting for the validator to catch up to the standard.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=8533&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>Stopping and starting Lansdowne webapp froze Tomcat</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=stopping_and_starting_lansdowne_webapp_f&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Fri, 19 Aug 2011 23:54:33 +0000</pubDate>
					<dc:creator>jamie</dc:creator>
					<category domain="main">Notes</category>					<guid isPermaLink="false">8511@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 0) After I successfully deployed the Lansdowne eXist app on Pear I had to make a minor change to controller-config.xml, after which I needed to stop and start the app. So, I attempted to do so in the Tomcat manager. Stopping the app worked, but upon pressing 'Start' Tomcat basically froze up, resulting in timeout errors for all Tomcat apps on pear.hcmc.uvic.ca:8081 . I submitted an urgent ticket and sysadmin restarted Tomcat within 20 minutes.

I've used the stop/start functionality before on pear (for Francotoile), so I'm not sure what happened here.</description>
					<content:encoded><![CDATA[<p>After I successfully deployed the Lansdowne eXist app on Pear I had to make a minor change to controller-config.xml, after which I needed to stop and start the app. So, I attempted to do so in the Tomcat manager. Stopping the app worked, but upon pressing 'Start' Tomcat basically froze up, resulting in timeout errors for all Tomcat apps on pear.hcmc.uvic.ca:8081 . I submitted an urgent ticket and sysadmin restarted Tomcat within 20 minutes.</p>

<p>I've used the stop/start functionality before on pear (for Francotoile), so I'm not sure what happened here.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=8511&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>eXist rebuild on Pear</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=exist_rebuild_on_pear&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Fri, 19 Aug 2011 23:07:08 +0000</pubDate>
					<dc:creator>jamie</dc:creator>
					<category domain="main">Notes</category>					<guid isPermaLink="false">8510@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 0) I've put the eXist version of the Lansdowne site, which is essentially a feature-complete prototype, on Pear:

http://pear.hcmc.uvic.ca:8081/lansdowne/site/index.xql

All is running well.</description>
					<content:encoded><![CDATA[<p>I've put the eXist version of the Lansdowne site, which is essentially a feature-complete prototype, on Pear:</p>

<p><a href="http://pear.hcmc.uvic.ca:8081/lansdowne/site/index.xql">http://pear.hcmc.uvic.ca:8081/lansdowne/site/index.xql</a></p>

<p>All is running well.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=8510&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>Starting eXist rebuild</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=starting_exist_rebuild&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Thu, 16 Jun 2011 23:18:04 +0000</pubDate>
					<dc:creator>jamie</dc:creator>
					<category domain="main">Activity log</category>					<guid isPermaLink="false">8323@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 20) Using the eXist version of FrancoToile as a starting point, I've started a rebuild of the Lansdowne site. Since most of the grunt work has already been completed for FrancoToile, I don't expect this to take me more than a couple of weeks. I started by making a copy of FranoToile on my local machine, and will be editing from there. There are only two videos with completed transcripts at this time, so there isn't much test data to play with.
</description>
					<content:encoded><![CDATA[<p>Using the eXist version of FrancoToile as a starting point, I've started a rebuild of the Lansdowne site. Since most of the grunt work has already been completed for FrancoToile, I don't expect this to take me more than a couple of weeks. I started by making a copy of FranoToile on my local machine, and will be editing from there. There are only two videos with completed transcripts at this time, so there isn't much test data to play with.</p>
]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=8323&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>Data Entry Guidelines</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=data_entry_guidelines&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Thu, 11 Nov 2010 21:35:27 +0000</pubDate>
					<dc:creator>Carly</dc:creator>
					<category domain="main">Activity log</category>					<guid isPermaLink="false">7378@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 120) Carly, Greg, Dr. Bowman and Filiz met to determine some blanket rules for data entry that came up repeatedly as major issues. The following decisions were made:

Almost every sentence containing a verb becomes an "event".
Statements of interest will be included in the notes field and not as "events".
If Jim has Tiffany, Heather, Cody, Dylan and Dermot by Brandine, then these are entered as "relationships" ONLY, with the marriage, sex, conception and birthing implied, and not listed as actual events.
If two people get married and there's a huge hullabulou, then the marriage is listed as an event, and they are also entered as "relationships". Same for if it's a famous rape or birth. Marriage, sex and births aren't an event unless they're a big deal.

If someone is said to be somewhere, they should be linked to that "place" without a mediating, made-up event. eg. "Carly was in Victoria" becomes a link Carly=Victoria, not an event like "Carly existed in Victoria" and then link that to Carly and to Victoria. 
If someone's going on a journey, make two "events". "Carly left Victoria to go home to Whitehorse for the holidays" becomes "Carly leaves Victoria", (one event, link to Carly and Vic) and "Carly arrives in Whitehorse" (another event, link to Carly and to Whitehorse).

If there is an embedded citation or contested information in the text, enter it as if it were true, make a note, and write Greg about it. We will make the notes field for this case available, and note the reported nature of the information. This happens most often for Character/Character/Citation.

Greg's going to see if he can create an "uber-character" that is a group that constitutes many characters that we can associate with events.

Carly's going to come up with a sample journey describing any one labour of Hercules from listing events in the database in order. Also continue answering any emails from Filiz and Amy.

Filiz is going to keep entering Apollodorus.

Dr.Bowman is going to finish disambiguating and eventually proof-read all this data.</description>
					<content:encoded><![CDATA[<p>Carly, Greg, Dr. Bowman and Filiz met to determine some blanket rules for data entry that came up repeatedly as major issues. The following decisions were made:</p>

<p>Almost every sentence containing a verb becomes an "event".<br />
Statements of interest will be included in the notes field and not as "events".<br />
If Jim has Tiffany, Heather, Cody, Dylan and Dermot by Brandine, then these are entered as "relationships" ONLY, with the marriage, sex, conception and birthing implied, and not listed as actual events.<br />
If two people get married and there's a huge hullabulou, then the marriage is listed as an event, and they are also entered as "relationships". Same for if it's a famous rape or birth. Marriage, sex and births aren't an event unless they're a big deal.</p>

<p>If someone is said to be somewhere, they should be linked to that "place" without a mediating, made-up event. eg. "Carly was in Victoria" becomes a link Carly=Victoria, not an event like "Carly existed in Victoria" and then link that to Carly and to Victoria. <br />
If someone's going on a journey, make two "events". "Carly left Victoria to go home to Whitehorse for the holidays" becomes "Carly leaves Victoria", (one event, link to Carly and Vic) and "Carly arrives in Whitehorse" (another event, link to Carly and to Whitehorse).</p>

<p>If there is an embedded citation or contested information in the text, enter it as if it were true, make a note, and write Greg about it. We will make the notes field for this case available, and note the reported nature of the information. This happens most often for Character/Character/Citation.</p>

<p>Greg's going to see if he can create an "uber-character" that is a group that constitutes many characters that we can associate with events.</p>

<p>Carly's going to come up with a sample journey describing any one labour of Hercules from listing events in the database in order. Also continue answering any emails from Filiz and Amy.</p>

<p>Filiz is going to keep entering Apollodorus.</p>

<p>Dr.Bowman is going to finish disambiguating and eventually proof-read all this data.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=7378&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>settle payments for Lansdowne data preparation</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=settle_payments_for_lansdowne_data_prepa&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Mon, 10 May 2010 18:27:40 +0000</pubDate>
					<dc:creator>sarneil</dc:creator>
					<category domain="main">Activity log</category>					<guid isPermaLink="false">6599@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 30) Worked out arrangements with AS of Dean's office to pay CM the agreed-on lump-sum of $1190 for digitizing work on Lansdowne. AS will take care of this.</description>
					<content:encoded><![CDATA[Worked out arrangements with AS of Dean's office to pay CM the agreed-on lump-sum of $1190 for digitizing work on Lansdowne. AS will take care of this.]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=6599&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>April 20 Update</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=april_20_update&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Tue, 20 Apr 2010 21:05:39 +0000</pubDate>
					<dc:creator>Carly</dc:creator>
					<category domain="main">Activity log</category>					<guid isPermaLink="false">6502@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 40) Yesterday I booked all of the movies left, and plan to digitize them over the next two weeks.
For exporting videos in iMovie, use: stream dv; NTSC; Progressive Scan Mode; 4:3 ratio; 44.100.
Jouet was in iMovie from before, I exported and handbraked it, and put it on the server.
O'Reilly was captured, exported and handbraked, and I put it on the server.
Halle was captured and exported.
At start of week I had 22 hours left.</description>
					<content:encoded><![CDATA[<p>Yesterday I booked all of the movies left, and plan to digitize them over the next two weeks.<br />
For exporting videos in iMovie, use: stream dv; NTSC; Progressive Scan Mode; 4:3 ratio; 44.100.<br />
Jouet was in iMovie from before, I exported and handbraked it, and put it on the server.<br />
O'Reilly was captured, exported and handbraked, and I put it on the server.<br />
Halle was captured and exported.<br />
At start of week I had 22 hours left.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=6502&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
								<item>
					<title>February 9-12</title>
					<link>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;title=february_9_12&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</link>
					<pubDate>Wed, 10 Feb 2010 00:27:11 +0000</pubDate>
					<dc:creator>Carly</dc:creator>
					<category domain="main">Activity log</category>					<guid isPermaLink="false">6155@http://hcmc.uvic.ca/blogs/</guid>
					<description> (Mins: 45) I captured Jouet.
I handbraked Calder.
I re-exported Klepfisz in standard ratio to see how big a difference it made.</description>
					<content:encoded><![CDATA[<p>I captured Jouet.<br />
I handbraked Calder.<br />
I re-exported Klepfisz in standard ratio to see how big a difference it made.</p>]]></content:encoded>
					<comments>http://hcmc.uvic.ca/blogs/index.php?blog=38&amp;p=6155&amp;c=1&amp;tb=1&amp;pb=1#comments</comments>
				</item>
					</channel>
</rss>
