<div>Just when you thought it was safe to go back into the water!<br></div><div><br></div><div>JK</div><br><div class="gmail_quote">On 29 May 2012 10:54, Ron Mitchell <span dir="ltr"><<a href="mailto:ronm@mitchellmedia.co.uk" target="_blank">ronm@mitchellmedia.co.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div bgcolor="white" lang="EN-GB" link="blue" vlink="purple"><div><p class="MsoNormal"><span style="color:#1f497d">Haven't seen any XOT updates today?</span></p>
<p class="MsoNormal"><a name="13798047e8e03755__MailEndCompose"><span style="color:#1f497d"> </span></a></p><div><div style="border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal"><b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext"> <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">xerte-dev-bounces@lists.nottingham.ac.uk</a> [mailto:<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">xerte-dev-bounces@lists.nottingham.ac.uk</a>] <b>On Behalf Of </b>Tom Reijnders</span></p>
<div class="im"><br><b>Sent:</b> 29 May 2012 10:23<br></div><div><div class="h5"><b>To:</b> For Xerte technical developers<br><b>Subject:</b> [Xerte-dev] Re: google doc + page type order</div></div></div></div><div><div class="h5">
<p class="MsoNormal"> </p><p class="MsoNormal">Uploading new xerte-beta.exe as we speak.<br><br>Did you commit the wizard.swf to xot as well, than we can cross out that problem from the google doc... :-)<br><br>Tom<br><br>
Op 29-5-2012 11:11, Julian Tenney schreef: </p><p class="MsoNormal"><span style="color:#1f497d">Thanks, that’s added too,</span></p><p class="MsoNormal"><span style="color:#1f497d"> </span></p><div><div style="border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm">
<p class="MsoNormal" style="margin-left:36.0pt"><b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext"> <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">xerte-dev-bounces@lists.nottingham.ac.uk</a> [<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">mailto:xerte-dev-bounces@lists.nottingham.ac.uk</a>] <b>On Behalf Of </b>Tom Reijnders<br>
<b>Sent:</b> 28 May 2012 21:43<br><b>To:</b> For Xerte technical developers<br><b>Subject:</b> [Xerte-dev] Re: google doc + page type order</span></p></div></div><p class="MsoNormal" style="margin-left:36.0pt"> </p><p class="MsoNormal" style="margin-left:36.0pt">
Julian,<br><br>It's because you push i (the newnode name) on the sortArray. A bit surprising that the sortOn is working, as there is no attribute menuItem to sort on.<br><br>Then you insert the menu's in the order of there newNodes names, and that causes some anomalies.<br>
<br>Also, the orginal code had a provision for that case when the menuItem attribute was not set, and that will not work with your original code. Don't know whether that will ever happen, but I changed that part too:<br>
var sortArray = new Array();<br><tt><span style="font-size:10.0pt">    for (var i in wizard.nfoObject.wizard[nodeType].newNodes){</span></tt><span style="font-size:10.0pt;font-family:"Courier New","serif""><br>
<tt>        if (wizard.nfoObject.wizard[i].menuItem != undefined){</tt><br><tt>            sortArray.push({menuItem:wizard.nfoObject.wizard[i].menuItem, node:i});</tt><br><tt>        }</tt><br><tt>        else</tt><br><tt>        {</tt><br>
<tt>            sortArray.push({menuItem:i, node:i});</tt><br><tt>        }</tt><br><tt>    }</tt><br><tt>    sortArray.sortOn("menuItem", Array.CASEINSENSITIVE);</tt><br><tt>    // dump array</tt><br><tt>    //var str="";</tt><br>
<tt>    //for (var n = 0; n < sortArray.length; n++){</tt><br><tt>    //    i = sortArray[n].node;</tt><br><tt>    //    str += i + ", " + wizard.nfoObject.wizard[i].menuItem + "\n";</tt><br><tt>    //}</tt><br>
<tt>    mdm.Prompt(str);</tt><br><tt>    for (var n = 0; n < sortArray.length; n++){</tt><br><tt>        i = sortArray[n].node;</tt><br><tt>        //for (var i in wizard.nfoObject.wizard[nodeType].newNodes){</tt><br><tt>         if (wizard.nfoObject.wizard[i].menu != undefined){</tt><br>
<tt>            insertMenu[wizard.nfoObject.wizard[i].menu].addMenuItem({label:wizard.nfoObject.wizard[i].menuItem != undefined ? wizard.nfoObject.wizard[i].menuItem : i, icon:wizard.nfoObject.wizard[i].icon, data: i, thumb: wizard.nfoObject.wizard[i].thumb, hint: wizard.nfoObject.wizard[i].hint});</tt><br>
<tt>        } else {</tt><br><tt>            insertMenu.addMenuItem({label:wizard.nfoObject.wizard[i].menuItem != undefined ? wizard.nfoObject.wizard[i].menuItem : i, icon:wizard.nfoObject.wizard[i].icon, data: i, thumb: wizard.nfoObject.wizard[i].thumb, hint: wizard.nfoObject.wizard[i].hint});</tt><br>
<tt>        }</tt><br><tt>    }</tt></span><br><br>Op 28-5-2012 17:53, Julian Tenney schreef: </p><p class="MsoNormal" style="margin-left:36.0pt"><span style="color:#1f497d">Not sure what I’m doing wrong here, and I’ve spent all afternoon trying to figure it out: this approach, building an array of ovbjects first,t then sorting them, then looping over it to drive the menu building more or less works, but a few items don’t appear in a-z order, and I have no idea why not.               I’ve checked the code in for now, take a look by all means, but I’ll have another look tomorrow,</span></p>
<p class="MsoNormal" style="margin-left:36.0pt"><span style="color:#1f497d"> </span></p><p class="MsoNormal" style="margin-left:36.0pt"><span style="color:#1f497d"> </span></p><p class="MsoNormal" style="margin-left:36.0pt">
<b><span style="font-size:8.0pt;font-family:"Courier New","serif"">var sortArray = new Array();</span></b></p><p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">       for (var i in wizard.nfoObject.wizard[nodeType].newNodes[0]){</span></b></p>
<p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">              </span></b></p><p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">              if (wizard.nfoObject.wizard[i].menuItem != undefined){</span></b></p>
<p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">                     sortArray.push(i);</span></b></p><p class="MsoNormal" style="margin-left:36.0pt">
<b><span style="font-size:8.0pt;font-family:"Courier New","serif"">              }</span></b></p><p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">       }</span></b></p>
<p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">       sortArray.sortOn('menuItem' );</span></b></p><p class="MsoNormal" style="margin-left:36.0pt">
<b><span style="font-size:8.0pt;font-family:"Courier New","serif""> </span></b></p><p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">       for (var n = 0; n < sortArray.length; n++){</span></b></p>
<p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">              </span></b></p><p class="MsoNormal" style="margin-left:36.0pt"><b><span style="font-size:8.0pt;font-family:"Courier New","serif"">              i = sortArray[n];</span></b></p>
<p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif""> </span></p><p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif"">       //for (var i in wizard.nfoObject.wizard[nodeType].newNodes){</span></p>
<p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif"">              if (wizard.nfoObject.wizard[i].menu != undefined){</span></p><p class="MsoNormal" style="margin-left:36.0pt">
<span style="font-size:8.0pt;font-family:"Courier New","serif"">                     insertMenu[wizard.nfoObject.wizard[i].menu].addMenuItem({label:wizard.nfoObject.wizard[i].menuItem != undefined ? wizard.nfoObject.wizard[i].menuItem : i, icon:wizard.nfoObject.wizard[i].icon, data: i, thumb: wizard.nfoObject.wizard[i].thumb, hint: wizard.nfoObject.wizard[i].hint});</span></p>
<p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif"">              } else {</span></p><p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif"">                     insertMenu.addMenuItem({label:wizard.nfoObject.wizard[i].menuItem != undefined ? wizard.nfoObject.wizard[i].menuItem : i, icon:wizard.nfoObject.wizard[i].icon, data: i, thumb: wizard.nfoObject.wizard[i].thumb, hint: wizard.nfoObject.wizard[i].hint});</span></p>
<p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif"">              }</span></p><p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:8.0pt;font-family:"Courier New","serif"">       }</span></p>
<p class="MsoNormal" style="margin-left:36.0pt"><span style="color:#1f497d"> </span></p><div><div style="border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal" style="margin-left:72.0pt">
<b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext"> <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">xerte-dev-bounces@lists.nottingham.ac.uk</a> [<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">mailto:xerte-dev-bounces@lists.nottingham.ac.uk</a>] <b>On Behalf Of </b>Tom Reijnders<br>
<b>Sent:</b> 28 May 2012 13:34<br><b>To:</b> For Xerte technical developers<br><b>Subject:</b> [Xerte-dev] Re: google doc + page type order</span></p></div></div><p class="MsoNormal" style="margin-left:72.0pt"> </p><p class="MsoNormal" style="margin-left:72.0pt">
I don't do that, you did in the wizard (at least that's how I understand the code, makeInsertMenu(nodeType)) or am I looking in the wrong place? I didn't touch that code.<br><br>Op 28-5-2012 14:30, Julian Tenney schreef: </p>
<p class="MsoNormal" style="margin-left:72.0pt"><span style="color:#1f497d">You’re building it off the order of the nodes in the xwd?</span></p><p class="MsoNormal" style="margin-left:72.0pt"><span style="color:#1f497d"> </span></p>
<p class="MsoNormal" style="margin-left:72.0pt"><span style="color:#1f497d">I don’t know either, but they do come out reversed.</span></p><p class="MsoNormal" style="margin-left:72.0pt"><span style="color:#1f497d"> </span></p>
<div><div style="border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal" style="margin-left:108.0pt"><b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext"> <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">xerte-dev-bounces@lists.nottingham.ac.uk</a> [<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">mailto:xerte-dev-bounces@lists.nottingham.ac.uk</a>] <b>On Behalf Of </b>Tom Reijnders<br>
<b>Sent:</b> 28 May 2012 13:29<br><b>To:</b> For Xerte technical developers<br><b>Subject:</b> [Xerte-dev] Re: google doc + page type order</span></p></div></div><p class="MsoNormal" style="margin-left:108.0pt"> </p><p class="MsoNormal" style="margin-left:108.0pt">
I thought I did that (or at least in the order of the newNodes, which strictly speaking is not alphabetical but close (the name of the xwd is not the name of the menu)<br><br>However, even doing that, the meu comes out in reverse order, and I like to understand why before fixing things.<br>
<br><br>Op 28-5-2012 14:25, Julian Tenney schreef: </p><p class="MsoNormal" style="margin-left:108.0pt"><span style="color:#1f497d">The insert menu is fine like that, can we sort the child menus to be A-Z?</span></p><p class="MsoNormal" style="margin-left:108.0pt">
<span style="color:#1f497d"> </span></p><div><div style="border:none;border-top:solid #b5c4df 1.0pt;padding:3.0pt 0cm 0cm 0cm"><p class="MsoNormal" style="margin-left:144.0pt"><b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext"> <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">xerte-dev-bounces@lists.nottingham.ac.uk</a> [<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk" target="_blank">mailto:xerte-dev-bounces@lists.nottingham.ac.uk</a>] <b>On Behalf Of </b>Tom Reijnders<br>
<b>Sent:</b> 28 May 2012 12:27<br><b>To:</b> For Xerte technical developers<br><b>Subject:</b> [Xerte-dev] Re: google doc + page type order</span></p></div></div><p class="MsoNormal" style="margin-left:144.0pt"> </p><p class="MsoNormal" style="margin-left:144.0pt">
The page order is determined by the order in which the newNodes appear in the data.xwd (template.xwd). The builder (at the moment) does that in the order it encounters the files on disk. I tried to order on the xwds but somehow the menu is still not ordered the way I would expect.<br>
<br>Not sure what to do about it.<br><br>And yes the builder is ready, we use it all the time.<br><br>Tom<br><br>Op 28-5-2012 13:10, Ron Mitchell schreef: </p><p class="MsoNormal" style="margin-left:144.0pt">Hi all</p><p class="MsoNormal" style="margin-left:144.0pt">
a quick update re the issues listed in the Google doc</p><p class="MsoNormal" style="margin-left:144.0pt"> </p><p class="MsoNormal" style="margin-left:144.0pt">Jonathan - thanks for updating the Google doc. I've moved all the issues that you've indicated as closed to the fixed sheet. I know you've committed some updated files to the Xerte svn so I assume you'll be updating the XOT svn with the same files at some point? I'll watch the rss feed for any updates and update the test install when those updates are notified by the feed.</p>
<p class="MsoNormal" style="margin-left:144.0pt"> </p><p class="MsoNormal" style="margin-left:144.0pt">All -  at the moment there are 4 issues remaining in the tests and issues sheet. I think most of these are minor but can't recall if we've discussed the order of page types in each category and if there's a change needed? e.g. at the moment the order of page types within each category doesn't appear to be alphabetical or in the same order as previous versions. I seem to recall the consensus was that the category order is fine now e.g. Text then Media then Navigators etc but for instance at the moment the media category looks like this:</p>
<p class="MsoNormal" style="margin-left:144.0pt"><img border="0" width="217" height="322" src="cid:image001.jpg@01CD3D89.6A244C30"></p><p class="MsoNormal" style="margin-left:144.0pt">Which doesn't appear to be alphabetical but can it be?</p>
<p class="MsoNormal" style="margin-left:144.0pt"> </p><p class="MsoNormal" style="margin-left:144.0pt">Also a related question for Tom I guess - is your xwd builder code ready for this release? Would be great to test that and I think would be especially useful if we can document how admins might add or remove page types and then re-run the builder direct in XOT.</p>
<p class="MsoNormal" style="margin-left:144.0pt"> </p><p class="MsoNormal" style="margin-left:144.0pt">Cheers</p><p class="MsoNormal" style="margin-left:144.0pt">Ron</p><p class="MsoNormal" style="margin-left:144.0pt"><span style="font-size:12.0pt"> </span></p>
<p style="margin-left:144.0pt">This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. </p>
<p style="margin-left:144.0pt">This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. </p>
<p class="MsoNormal" style="margin-left:144.0pt"><span style="font-size:12.0pt"><br><br><br><br><br><br><br></span></p><pre style="margin-left:144.0pt">_______________________________________________</pre><pre style="margin-left:144.0pt">
Xerte-dev mailing list</pre><pre style="margin-left:144.0pt"><a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">Xerte-dev@lists.nottingham.ac.uk</a></pre><pre style="margin-left:144.0pt"><a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a></pre>
<pre style="margin-left:144.0pt"> </pre><pre style="margin-left:144.0pt">This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.</pre>
<pre style="margin-left:144.0pt"> </pre><pre style="margin-left:144.0pt">This message has been checked for viruses but the contents of an attachment</pre><pre style="margin-left:144.0pt">may still contain software viruses which could damage your computer system:</pre>
<pre style="margin-left:144.0pt">you are advised to perform your own checks. Email communications with the</pre><pre style="margin-left:144.0pt">University of Nottingham may be monitored as permitted by UK legislation.</pre>
<pre style="margin-left:144.0pt"> </pre><p class="MsoNormal" style="margin-left:144.0pt"><span style="font-size:12.0pt"><br><br><br><br><br><br></span></p><pre style="margin-left:144.0pt">-- </pre><pre style="margin-left:144.0pt">
--</pre><pre style="margin-left:144.0pt"> </pre><pre style="margin-left:144.0pt">Tom Reijnders</pre><pre style="margin-left:144.0pt">TOR Informatica</pre><pre style="margin-left:144.0pt">Chopinlaan 27</pre><pre style="margin-left:144.0pt">
5242HM Rosmalen</pre><pre style="margin-left:144.0pt">Tel: 073 5226191</pre><pre style="margin-left:144.0pt">Fax: 073 5226196</pre><pre style="margin-left:144.0pt"> </pre><p class="MsoNormal" style="margin-left:108.0pt"><span style="font-size:12.0pt"><br>
<br><br><br><br><br></span></p><pre style="margin-left:108.0pt">_______________________________________________</pre><pre style="margin-left:108.0pt">Xerte-dev mailing list</pre><pre style="margin-left:108.0pt"><a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">Xerte-dev@lists.nottingham.ac.uk</a></pre>
<pre style="margin-left:108.0pt"><a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a></pre><pre style="margin-left:108.0pt"> </pre>
<pre style="margin-left:108.0pt">This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.</pre>
<pre style="margin-left:108.0pt"> </pre><pre style="margin-left:108.0pt">This message has been checked for viruses but the contents of an attachment</pre><pre style="margin-left:108.0pt">may still contain software viruses which could damage your computer system:</pre>
<pre style="margin-left:108.0pt">you are advised to perform your own checks. Email communications with the</pre><pre style="margin-left:108.0pt">University of Nottingham may be monitored as permitted by UK legislation.</pre>
<pre style="margin-left:108.0pt"> </pre><p class="MsoNormal" style="margin-left:108.0pt"><span style="font-size:12.0pt"><br><br><br><br><br></span></p><pre style="margin-left:108.0pt">-- </pre><pre style="margin-left:108.0pt">
--</pre><pre style="margin-left:108.0pt"> </pre><pre style="margin-left:108.0pt">Tom Reijnders</pre><pre style="margin-left:108.0pt">TOR Informatica</pre><pre style="margin-left:108.0pt">Chopinlaan 27</pre><pre style="margin-left:108.0pt">
5242HM Rosmalen</pre><pre style="margin-left:108.0pt">Tel: 073 5226191</pre><pre style="margin-left:108.0pt">Fax: 073 5226196</pre><pre style="margin-left:108.0pt"> </pre><p class="MsoNormal" style="margin-left:72.0pt"><span style="font-size:12.0pt"><br>
<br><br><br><br></span></p><pre style="margin-left:72.0pt">_______________________________________________</pre><pre style="margin-left:72.0pt">Xerte-dev mailing list</pre><pre style="margin-left:72.0pt"><a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">Xerte-dev@lists.nottingham.ac.uk</a></pre>
<pre style="margin-left:72.0pt"><a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a></pre><pre style="margin-left:72.0pt"> </pre><pre style="margin-left:72.0pt">
This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.</pre>
<pre style="margin-left:72.0pt"> </pre><pre style="margin-left:72.0pt">This message has been checked for viruses but the contents of an attachment</pre><pre style="margin-left:72.0pt">may still contain software viruses which could damage your computer system:</pre>
<pre style="margin-left:72.0pt">you are advised to perform your own checks. Email communications with the</pre><pre style="margin-left:72.0pt">University of Nottingham may be monitored as permitted by UK legislation.</pre>
<pre style="margin-left:72.0pt"> </pre><p class="MsoNormal" style="margin-left:72.0pt"><span style="font-size:12.0pt"><br><br><br><br></span></p><pre style="margin-left:72.0pt">-- </pre><pre style="margin-left:72.0pt">--</pre>
<pre style="margin-left:72.0pt"> </pre><pre style="margin-left:72.0pt">Tom Reijnders</pre><pre style="margin-left:72.0pt">TOR Informatica</pre><pre style="margin-left:72.0pt">Chopinlaan 27</pre><pre style="margin-left:72.0pt">
5242HM Rosmalen</pre><pre style="margin-left:72.0pt">Tel: 073 5226191</pre><pre style="margin-left:72.0pt">Fax: 073 5226196</pre><pre style="margin-left:72.0pt"> </pre><p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:12.0pt;font-family:"Times New Roman , serif","serif""><br>
<br><br><br></span></p><pre style="margin-left:36.0pt">_______________________________________________</pre><pre style="margin-left:36.0pt">Xerte-dev mailing list</pre><pre style="margin-left:36.0pt"><a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">Xerte-dev@lists.nottingham.ac.uk</a></pre>
<pre style="margin-left:36.0pt"><a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a></pre><pre style="margin-left:36.0pt"> </pre><pre style="margin-left:36.0pt">
This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.</pre>
<pre style="margin-left:36.0pt"> </pre><pre style="margin-left:36.0pt">This message has been checked for viruses but the contents of an attachment</pre><pre style="margin-left:36.0pt">may still contain software viruses which could damage your computer system:</pre>
<pre style="margin-left:36.0pt">you are advised to perform your own checks. Email communications with the</pre><pre style="margin-left:36.0pt">University of Nottingham may be monitored as permitted by UK legislation.</pre>
<pre style="margin-left:36.0pt"> </pre><p class="MsoNormal" style="margin-left:36.0pt"><span style="font-size:12.0pt;font-family:"Times New Roman , serif","serif""><br><br><br></span></p><pre style="margin-left:36.0pt">
-- </pre><pre style="margin-left:36.0pt">--</pre><pre style="margin-left:36.0pt"> </pre><pre style="margin-left:36.0pt">Tom Reijnders</pre><pre style="margin-left:36.0pt">TOR Informatica</pre><pre style="margin-left:36.0pt">
Chopinlaan 27</pre><pre style="margin-left:36.0pt">5242HM Rosmalen</pre><pre style="margin-left:36.0pt">Tel: 073 5226191</pre><pre style="margin-left:36.0pt">Fax: 073 5226196</pre><pre style="margin-left:36.0pt"> </pre><p class="MsoNormal">
<span style="font-size:12.0pt;font-family:"Times New Roman","serif""><br><br><br></span></p><pre>_______________________________________________</pre><pre>Xerte-dev mailing list</pre><pre><a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">Xerte-dev@lists.nottingham.ac.uk</a></pre>
<pre><a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a></pre><pre> </pre><pre>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.</pre>
<pre> </pre><pre>This message has been checked for viruses but the contents of an attachment</pre><pre>may still contain software viruses which could damage your computer system:</pre><pre>you are advised to perform your own checks. Email communications with the</pre>
<pre>University of Nottingham may be monitored as permitted by UK legislation.</pre><pre> </pre><p class="MsoNormal"><span style="font-size:12.0pt;font-family:"Times New Roman","serif""><br><br></span></p>
<pre>-- </pre><pre>--</pre><pre> </pre><pre>Tom Reijnders</pre><pre>TOR Informatica</pre><pre>Chopinlaan 27</pre><pre>5242HM Rosmalen</pre><pre>Tel: 073 5226191</pre><pre>Fax: 073 5226196</pre><pre> </pre></div></div></div>
</div><br>_______________________________________________<br>
Xerte-dev mailing list<br>
<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><br>
<a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev</a><br>
<br>
This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.   Please do not use, copy or disclose the information contained in this message or in any attachment.  Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.<br>

<br>
This message has been checked for viruses but the contents of an attachment<br>
may still contain software viruses which could damage your computer system:<br>
you are advised to perform your own checks. Email communications with the<br>
University of Nottingham may be monitored as permitted by UK legislation.<br>
<br>
<br></blockquote></div><br>