<div>I must have missed something somewhere along the line - I didn't realise that you had added this code.<br></div><div><br></div><div>Both "Pages" projects and ordinary Xerte projects created using file / new will have an ,rlo extension.</div>
<div><br></div><div>File / New projects are named by the author e.g. myProject.rlo whilst "Pages" projects always have the file pages.rlo so testing for the existence of pages.rlo would be unique in all cases save the chance situation in which someone created a File / New project and decided to name their project "pages".</div>
<div><br></div><div>A further possible identifier might be the existence of a folder called "pages" in the project folder. This folder does not exist when you create a "Pages" project. But it is created when you add the first page from the selection of pre-defined pages. </div>
<div><br></div><div>"Pages" projects also have a a setup script that is a child of the entryFrame that includes the line</div><div><br></div><div>rootIcon.projMode = "dev";</div><div><br></div><div>This sets the variable that is tested for by every model file to identify if the project is a pages project or a XOT / pageTemplate project.</div>
<div><br></div><div>However I am guessing that this will only e set at run time so would not be of use as a value to test for in the editor.</div><div><br></div><div>If the optimum route was to add a property to the learning object then there are two approaches I can think of</div>
<ol><li>The learning object in a pages project has its own xwd form pages.xwd and it would be simple enough to add a property to that form as an identifier. </li><li>A better solution might be to add a new property to the learning object itself - i.e. to show up in the learning object's property panel. (Would this require a change in the code that defines a learning object?)</li>
</ol><div>If either 1 or 2 were implemented as a solution then it might be tidier then to modify the test in the model files to use this value rather than a value set in a setup script.</div><div><br></div><div>What do you think is best?</div>
<div><br></div><div>Does any of the above give you the identifier you need?</div><div><br></div><div>Kind regards</div><div><br></div><div>Johnathan</div><div><br></div><div><br></div><br><div class="gmail_quote">On 9 July 2012 11:52, Julian Tenney <span dir="ltr"><<a href="mailto:Julian.Tenney@nottingham.ac.uk" target="_blank">Julian.Tenney@nottingham.ac.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div lang="EN-GB" link="blue" vlink="purple"><div><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">It’s not beyond your skills…</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">In the wizard I have added this</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">//in the change handler for the name field</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New";color:#a6a6a6">comp.change = function(obj){</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New";color:#a6a6a6">     this.attributes['name'] = htmlToAtt(this.text);</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">     if (mdm != undefined){</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">          //set the TOC name in xerte for page projects</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">          mdm.Forms.editor.callFunction('setNameAttribute', this.text)</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">     }</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New";color:#a6a6a6">}</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New";color:#a6a6a6"> </span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">And in the editor I have added this:</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New";color:#a6a6a6"> </span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">function setNameAttribute(nameString){</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">     //set the name attribute for page projects</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">     <b>if (tree.selectedNode.parentNode.childNodes.length > 2){</b></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">           <a href="http://tree.selectedNode.attributes.name" target="_blank">tree.selectedNode.attributes.name</a> = nameString;</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">           tree.dispatchEvent({type:"change", target:tree});</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">     }</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New"">}</span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Courier New""> </span></p><p class="MsoNormal">
<span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">What I need to know (and have asked before) is how to know it’s  pages project? The bold line isn’t a good test for one…</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">…but the logic goes</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">//wizard</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">If mdm exists we are on window xerte not toolkits, so call the function in the editor to set the attribute</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">//editor</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">Ah! Wizard wants to set the name attribute. If this is a pages project, I should go ahead and set it. But how do I know it’s a pages project? It might be a big template…</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d">So, what is the best test? An .rlt extension denotes templates? A data property on LO? Must be easy to find out.</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1f497d"> </span></p><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"">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> <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>Kemp Johnathan<br>
<b>Sent:</b> 08 July 2012 08:02<br><b>To:</b> For Xerte technical developers<br><b>Subject:</b> [Xerte-dev] Re: 1.8 Release</span></p></div><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt"> </p><div><p class="MsoNormal" style="margin-left:36.0pt">
Are we looking to release Xerte desktop at the same time as XOT?</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">If so there are a few issues remaining with desktop Xerte, which are listed on Ron's spreadsheet.</p>
</div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">The most critical is the current inability to capture the page title for display in the TOC and on the displayed page.</p>
</div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">This is something that is outside of my skill set to rectify.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
 </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Kind regards</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Johnathan</p></div>
<p class="MsoNormal" style="margin-left:36.0pt"> </p></div></div><div><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt">On 7 July 2012 17:53, Tom Reijnders <<a href="mailto:reijnders@tor.nl" target="_blank">reijnders@tor.nl</a>> wrote:</p>
</div></div><div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">I am not going to commit anything global before the next release. <br>All changes will be part of the 'language pack'.<br>
<br>So, as far as I am concerned, nothing is prohibiting a release.<br><br>Regards,<br><br>Tom</p><div><p class="MsoNormal" style="margin-left:36.0pt">Op 7-7-2012 15:46, Kemp Johnathan schreef:</p></div></div></div><div><div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><p class="MsoNormal" style="margin-left:36.0pt">Many thanks.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
JK</p></div><p class="MsoNormal" style="margin-left:36.0pt"> </p><div><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt">On 7 July 2012 08:47, Tom Reijnders <<a href="mailto:reijnders@tor.nl" target="_blank">reijnders@tor.nl</a>> wrote:</p>
</div></div><div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">Sorry for the mistake. Corrected the spelling of your name :-).<br><br>Tom</p><div><p class="MsoNormal" style="margin-left:36.0pt">
Op 7-7-2012 6:45, Kemp Johnathan schreef:</p></div></div></div><div><div><blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><div class="h5"><div><p class="MsoNormal" style="margin-left:36.0pt">OK, I successfully downloaded it this morning.</p>
</div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Thanks for the mention on the copyright notice on the installer.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
 </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Would you mind correcting the spelling of "Jonathan" in the copyright listing</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div>
<div><p class="MsoNormal" style="margin-left:36.0pt">correct is "Johnathan"</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Kind regards</p>
</div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Johnathan</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div></div></div><div>
<div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt">On 6 July 2012 20:19, Tom Reijnders <<a href="mailto:reijnders@tor.nl" target="_blank">reijnders@tor.nl</a>> wrote:</p></div></div><div><div><div class="h5">
<p class="MsoNormal" style="margin-left:36.0pt">No, my mistake, sorry.<br>Please try again.<br><br>Tom</p><div><p class="MsoNormal" style="margin-left:36.0pt">Op 6-7-2012 16:26, Kemp Johnathan schreef:</p></div></div></div>
<div><div><blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><div class="h5"><div><p class="MsoNormal" style="margin-left:36.0pt">Hello Tom,</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div>
<div><p class="MsoNormal" style="margin-left:36.0pt">I just tried to download the new xerte 1.8 beta from </p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
<a href="http://www.xerte.org.uk/beta/xerte-beta.exe" target="_blank">http://www.xerte.org.uk/beta/xerte-beta.exe</a></p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
but got an Access forbidden! Error 403 message displayed.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Has the url changed or have I made a mistake in the url I am trying to use?</p>
</div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Kind regards</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
Johnathan</p></div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div></div><div><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt">On 6 July 2012 09:51, Tom Reijnders <<a href="mailto:reijnders@tor.nl" target="_blank">reijnders@tor.nl</a>> wrote:</p>
</div></div><div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">Xertetrans is operational again<br>Latest xerte-beta is uploading as we speak....<br><br>Will commit last changes to xot (if not too dangerous) later today.<br>
<br>As far as I am concerned, xerte standalone is ready for (beta) release.<br><br>Julian, I committed my inno setup file as well (it contains one line to include the Dutch translation of the wizards, but you might want to skip that)<br>
<br></p><div><p class="MsoNormal" style="margin-left:36.0pt">Op 6-7-2012 9:11, Tom Reijnders schreef:</p></div></div></div><div><div><blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">
I'll finish up today.</p><div><p class="MsoNormal" style="margin-left:36.0pt">Op 5-7-2012 12:36, Kemp Johnathan schreef:</p></div></div></div><blockquote style="margin-top:5.0pt;margin-bottom:5.0pt"><div><div class="h5">
<div><p class="MsoNormal" style="margin-left:36.0pt">I have just downloaded the current beta from Tom's site, installed it and run a few tests.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div>
<div><p class="MsoNormal" style="margin-left:36.0pt">The beta is not using the latest models from svn/runtime/pages/models.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Also the issues currently identified in Ron's spreadsheet remain.</p>
</div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">I am am sorry but other than test them there is not much I can do about them.</p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
 </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">I have completed a range of pdt files to provide some support for the new stuff, with perhaps two omissions</p></div><div><p class="MsoNormal" style="margin-left:36.0pt">
 </p></div></div></div><p class="MsoNormal" style="margin-left:72.0pt"><span>1.<span style="font:7.0pt "Times New Roman"">      </span></span>How the language features work</p><p class="MsoNormal" style="margin-left:72.0pt">
<span>2.<span style="font:7.0pt "Times New Roman"">      </span></span>How to create a new page in Xerte and add it to XOT (I wasn't sure if this would soon become obsolete in the light of the HTML5 developments.)</p>
<div><div class="h5"><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div><div><p class="MsoNormal" style="margin-left:36.0pt">Kind regards</p></div><div><p class="MsoNormal" style="margin-left:36.0pt"> </p></div>
<div><p class="MsoNormal" style="margin-left:36.0pt">Johnathan</p></div><p class="MsoNormal" style="margin-left:36.0pt"> </p><div><p class="MsoNormal" style="margin-left:36.0pt">On 5 July 2012 10:20, Julian Tenney <<a href="mailto:Julian.Tenney@nottingham.ac.uk" target="_blank">Julian.Tenney@nottingham.ac.uk</a>> wrote:</p>
<div><div><p class="MsoNormal" style="margin-left:36.0pt">Fellow completer-finishers,</p><p class="MsoNormal" style="margin-left:36.0pt"> </p><p class="MsoNormal" style="margin-left:36.0pt">Before we get distracted with new stuff, let’s finish off the existing stuff: did all the outstanding things that various people were going to do get done and are we ready to go?</p>
<p class="MsoNormal" style="margin-left:36.0pt"> </p><p class="MsoNormal" style="margin-left:36.0pt">J</p></div><p class="MsoNormal" style="margin-left:36.0pt"> </p><p 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. </p>
<p style="margin-left:36.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>
</div><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br>_______________________________________________<br>Xerte-dev mailing list<br><a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">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></p></div><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br><br></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></div></div></blockquote><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt"><br><br></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" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">
<br><br><br></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></div></div></blockquote><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt"><br><br></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" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">
 </p></div></div></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br>_______________________________________________<br>Xerte-dev mailing list<br>
<a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">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></p></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br><br></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></div></div></blockquote><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt"><br><br></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" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">
 </p></div></div></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br>_______________________________________________<br>Xerte-dev mailing list<br>
<a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">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></p></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br><br></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></div></div></blockquote><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt"><br><br></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" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">
 </p></div></div></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br>_______________________________________________<br>Xerte-dev mailing list<br>
<a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">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></p></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br><br></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></div></div></blockquote><div><div class="h5"><p class="MsoNormal" style="margin-left:36.0pt"><br><br></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" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt">
 </p></div></div></div></div></div><div><div class="h5"><p class="MsoNormal" style="margin-right:0cm;margin-bottom:12.0pt;margin-left:36.0pt"><br>_______________________________________________<br>Xerte-dev mailing list<br>
<a href="mailto:Xerte-dev@lists.nottingham.ac.uk" target="_blank">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></p></div></div></div><p class="MsoNormal" style="margin-left:36.0pt"> </p></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>