<div>A pages = true attribute would be a tidy solution.<br></div><div><br></div><div>If you did that I could change the models to test for that instead of rootIcon.projMode which is currently set in the entryFrame script.</div>
<div><br></div><div>I hope your week goes well.</div><div><br></div><div>Kind regards</div><div><br></div><div>Johnathan</div><div><br></div><div class="gmail_quote">On 10 July 2012 08:07, 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">I only added it yesterday. You can play around with it now, the basic logic is there. I might think about whether you can set a pages=true attribute on the LO icon to test? I'm busy a lot of this week with graduation,<br>

________________________________________<br>
From: <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a> [<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a>] On Behalf Of Kemp Johnathan [<a href="mailto:johnathan.kemp@ntlworld.com">johnathan.kemp@ntlworld.com</a>]<br>

Sent: 09 July 2012 14:54<br>
<div class="im">To: For Xerte technical developers<br>
Subject: [Xerte-dev] Re: 1.8 Release<br>
<br>
</div><div class="im">I must have missed something somewhere along the line - I didn't realise that you had added this code.<br>
<br>
Both "Pages" projects and ordinary Xerte projects created using file / new will have an ,rlo extension.<br>
<br>
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".<br>

<br>
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.<br>

<br>
"Pages" projects also have a a setup script that is a child of the entryFrame that includes the line<br>
<br>
rootIcon.projMode = "dev";<br>
<br>
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.<br>
<br>
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.<br>
<br>
If the optimum route was to add a property to the learning object then there are two approaches I can think of<br>
<br>
</div> 1.  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.<br>
 2.  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?)<br>

<div class="im"><br>
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.<br>
<br>
What do you think is best?<br>
<br>
Does any of the above give you the identifier you need?<br>
<br>
Kind regards<br>
<br>
Johnathan<br>
<br>
<br>
<br>
</div><div class="im">On 9 July 2012 11:52, Julian Tenney <<a href="mailto:Julian.Tenney@nottingham.ac.uk">Julian.Tenney@nottingham.ac.uk</a><mailto:<a href="mailto:Julian.Tenney@nottingham.ac.uk">Julian.Tenney@nottingham.ac.uk</a>>> wrote:<br>

It’s not beyond your skills…<br>
<br>
In the wizard I have added this<br>
<br>
//in the change handler for the name field<br>
comp.change = function(obj){<br>
     this.attributes['name'] = htmlToAtt(this.text);<br>
     if (mdm != undefined){<br>
          //set the TOC name in xerte for page projects<br>
          mdm.Forms.editor.callFunction('setNameAttribute', this.text)<br>
     }<br>
}<br>
<br>
And in the editor I have added this:<br>
<br>
function setNameAttribute(nameString){<br>
     //set the name attribute for page projects<br>
     if (tree.selectedNode.parentNode.childNodes.length > 2){<br>
</div>           <a href="http://tree.selectedNode.attributes.name" target="_blank">tree.selectedNode.attributes.name</a><<a href="http://tree.selectedNode.attributes.name" target="_blank">http://tree.selectedNode.attributes.name</a>> = nameString;<br>

<div class="im">           tree.dispatchEvent({type:"change", target:tree});<br>
     }<br>
}<br>
<br>
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…<br>
<br>
…but the logic goes<br>
<br>
//wizard<br>
If mdm exists we are on window xerte not toolkits, so call the function in the editor to set the attribute<br>
<br>
//editor<br>
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…<br>
<br>
So, what is the best test? An .rlt extension denotes templates? A data property on LO? Must be easy to find out.<br>
<br>
</div>From: <a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a><mailto:<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a>> [mailto:<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a><mailto:<a href="mailto:xerte-dev-bounces@lists.nottingham.ac.uk">xerte-dev-bounces@lists.nottingham.ac.uk</a>>] On Behalf Of Kemp Johnathan<br>

<div class="im">Sent: 08 July 2012 08:02<br>
To: For Xerte technical developers<br>
Subject: [Xerte-dev] Re: 1.8 Release<br>
<br>
Are we looking to release Xerte desktop at the same time as XOT?<br>
<br>
If so there are a few issues remaining with desktop Xerte, which are listed on Ron's spreadsheet.<br>
<br>
The most critical is the current inability to capture the page title for display in the TOC and on the displayed page.<br>
<br>
This is something that is outside of my skill set to rectify.<br>
<br>
Kind regards<br>
<br>
Johnathan<br>
<br>
</div><div class="im">On 7 July 2012 17:53, Tom Reijnders <<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a><mailto:<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a>>> wrote:<br>
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<br>
Op 7-7-2012 15:46, Kemp Johnathan schreef:<br>
Many thanks.<br>
<br>
JK<br>
<br>
</div><div class="im">On 7 July 2012 08:47, Tom Reijnders <<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a><mailto:<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a>>> wrote:<br>
Sorry for the mistake. Corrected the spelling of your name :-).<br>
<br>
Tom<br>
Op 7-7-2012 6:45, Kemp Johnathan schreef:<br>
OK, I successfully downloaded it this morning.<br>
<br>
Thanks for the mention on the copyright notice on the installer.<br>
<br>
Would you mind correcting the spelling of "Jonathan" in the copyright listing<br>
<br>
correct is "Johnathan"<br>
<br>
Kind regards<br>
<br>
Johnathan<br>
<br>
</div><div class="im">On 6 July 2012 20:19, Tom Reijnders <<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a><mailto:<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a>>> wrote:<br>
No, my mistake, sorry.<br>
Please try again.<br>
<br>
Tom<br>
Op 6-7-2012 16:26, Kemp Johnathan schreef:<br>
Hello Tom,<br>
<br>
I just tried to download the new xerte 1.8 beta from<br>
<br>
<a href="http://www.xerte.org.uk/beta/xerte-beta.exe" target="_blank">http://www.xerte.org.uk/beta/xerte-beta.exe</a><br>
<br>
but got an Access forbidden! Error 403 message displayed.<br>
<br>
Has the url changed or have I made a mistake in the url I am trying to use?<br>
<br>
Kind regards<br>
<br>
Johnathan<br>
<br>
</div><div class="im">On 6 July 2012 09:51, Tom Reijnders <<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a><mailto:<a href="mailto:reijnders@tor.nl">reijnders@tor.nl</a>>> wrote:<br>
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>
Op 6-7-2012 9:11, Tom Reijnders schreef:<br>
I'll finish up today.<br>
Op 5-7-2012 12:36, Kemp Johnathan schreef:<br>
I have just downloaded the current beta from Tom's site, installed it and run a few tests.<br>
<br>
The beta is not using the latest models from svn/runtime/pages/models.<br>
Also the issues currently identified in Ron's spreadsheet remain.<br>
<br>
I am am sorry but other than test them there is not much I can do about them.<br>
<br>
I have completed a range of pdt files to provide some support for the new stuff, with perhaps two omissions<br>
<br>
1.      How the language features work<br>
2.      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.)<br>
<br>
Kind regards<br>
<br>
Johnathan<br>
<br>
</div><div class="im">On 5 July 2012 10:20, Julian Tenney <<a href="mailto:Julian.Tenney@nottingham.ac.uk">Julian.Tenney@nottingham.ac.uk</a><mailto:<a href="mailto:Julian.Tenney@nottingham.ac.uk">Julian.Tenney@nottingham.ac.uk</a>>> wrote:<br>

Fellow completer-finishers,<br>
<br>
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?<br>
<br>
J<br>
<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 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.<br>

<br>
_______________________________________________<br>
Xerte-dev mailing list<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<br>
<br>
_______________________________________________<br>
<br>
Xerte-dev mailing list<br>
<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<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>
<br>
<br>
This message has been checked for viruses but the contents of an attachment<br>
<br>
may still contain software viruses which could damage your computer system:<br>
<br>
you are advised to perform your own checks. Email communications with the<br>
<br>
University of Nottingham may be monitored as permitted by UK legislation.<br>
<br>
<br>
<br>
<br>
<br>
--<br>
<br>
--<br>
<br>
<br>
<br>
Tom Reijnders<br>
<br>
TOR Informatica<br>
<br>
Chopinlaan 27<br>
<br>
<br>
5242HM Rosmalen<br>
<br>
Tel: 073 5226191<br>
<br>
Fax: 073 5226196<br>
<br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
<br>
Xerte-dev mailing list<br>
<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<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>
<br>
<br>
This message has been checked for viruses but the contents of an attachment<br>
<br>
may still contain software viruses which could damage your computer system:<br>
<br>
you are advised to perform your own checks. Email communications with the<br>
<br>
University of Nottingham may be monitored as permitted by UK legislation.<br>
<br>
<br>
<br>
<br>
<br>
--<br>
<br>
--<br>
<br>
<br>
<br>
Tom Reijnders<br>
<br>
TOR Informatica<br>
<br>
Chopinlaan 27<br>
<br>
<br>
5242HM Rosmalen<br>
<br>
Tel: 073 5226191<br>
<br>
Fax: 073 5226196<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
Xerte-dev mailing list<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<br>
_______________________________________________<br>
<br>
Xerte-dev mailing list<br>
<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<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>
<br>
<br>
This message has been checked for viruses but the contents of an attachment<br>
<br>
may still contain software viruses which could damage your computer system:<br>
<br>
you are advised to perform your own checks. Email communications with the<br>
<br>
University of Nottingham may be monitored as permitted by UK legislation.<br>
<br>
<br>
<br>
<br>
<br>
--<br>
<br>
--<br>
<br>
<br>
<br>
Tom Reijnders<br>
<br>
TOR Informatica<br>
<br>
Chopinlaan 27<br>
<br>
<br>
5242HM Rosmalen<br>
<br>
Tel: 073 5226191<br>
<br>
Fax: 073 5226196<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
Xerte-dev mailing list<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<br>
_______________________________________________<br>
<br>
Xerte-dev mailing list<br>
<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<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>
<br>
<br>
This message has been checked for viruses but the contents of an attachment<br>
<br>
may still contain software viruses which could damage your computer system:<br>
<br>
you are advised to perform your own checks. Email communications with the<br>
<br>
University of Nottingham may be monitored as permitted by UK legislation.<br>
<br>
<br>
<br>
<br>
<br>
--<br>
<br>
--<br>
<br>
<br>
<br>
Tom Reijnders<br>
<br>
TOR Informatica<br>
<br>
Chopinlaan 27<br>
<br>
<br>
5242HM Rosmalen<br>
<br>
Tel: 073 5226191<br>
<br>
Fax: 073 5226196<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
Xerte-dev mailing list<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<br>
_______________________________________________<br>
<br>
Xerte-dev mailing list<br>
<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
<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>
<br>
<br>
This message has been checked for viruses but the contents of an attachment<br>
<br>
may still contain software viruses which could damage your computer system:<br>
<br>
you are advised to perform your own checks. Email communications with the<br>
<br>
University of Nottingham may be monitored as permitted by UK legislation.<br>
<br>
<br>
<br>
<br>
<br>
--<br>
<br>
--<br>
<br>
<br>
<br>
Tom Reijnders<br>
<br>
TOR Informatica<br>
<br>
Chopinlaan 27<br>
<br>
<br>
5242HM Rosmalen<br>
<br>
Tel: 073 5226191<br>
<br>
Fax: 073 5226196<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
Xerte-dev mailing list<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="im"><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>
<br>
_______________________________________________<br>
Xerte-dev mailing list<br>
</div><a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a><mailto:<a href="mailto:Xerte-dev@lists.nottingham.ac.uk">Xerte-dev@lists.nottingham.ac.uk</a>><br>
<div class="HOEnZb"><div class="h5"><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>
<br>
<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>
</div></div></blockquote></div><br>